:root {
    --primary-orange: #FF6A00;
    --primary-dark: #000;
    --light-gray: #f5f7fa;
    --text-dark: #1e2a3b;
    --text-light: #666666;
    --white: #ffffff;
    --border-light: #e8ecf1;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
    --font-bodoni: "Bodoni MT", "Bodoni 72", "Bodoni", "Libre Bodoni", "Didot", Georgia, "Times New Roman", serif;
    --font-sans: "Poppins", system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
    font-variant: normal;
}

input, select, textarea {
    font-family: var(--font-sans);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 100;
}

.navbar-container {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 22px 24px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-img {
    width: 92px;
    height: 92px;
    object-fit: contain;
}

.logo-text h1 {
    .logo-text h1 { color: #666666 !important; }
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-gray);
    line-height: 1.1;
    letter-spacing: -0.3px;
    font-family: var(--font-sans);
    font-variant: normal;
}

.logo-text p {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 2px;
    margin-top: 2px;
    font-family: var(--font-sans);
    font-variant: normal;
}

.nav-menu {
    display: flex;
    gap: 44px;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin-left: 24px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-link {
    font-size: 18.5px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.03em;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.apply-btn {
    background: var(--primary-orange);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16.5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.03em;
}

.apply-btn:hover {
    background: #e55a00;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 12px;
    background: rgba(255, 106, 0, 0.08);
    border: 1px solid rgba(255, 106, 0, 0.16);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff5f0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

.hero-title .highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
    font-family: var(--font-sans);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.btn {
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #e55a00;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 106, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.info-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 25px;
    border-radius: 10px;
    width: 280px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

.info-card p {
    font-size: 14px;
    margin-bottom: 8px;
    font-family: var(--font-sans);
}

.info-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-callback {
    width: 100%;
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.03em;
}

.btn-callback:hover {
    background: #e55a00;
}

/* Stats Bar */
.stats-bar {
    background: #d2d3d5;
    padding: 36px 24px;
    border-radius: 14px;
    color: #ffffff;
    max-width: 1280px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.skycapital-member {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
}

.skycapital-real-logo {
    max-height: 140px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    background: #d2d3d5;
    padding: 14px 22px;
    border-radius: 16px;
    flex-shrink: 0;
}

.skycapital-text p {
    font-size: 28px;
    font-weight: 600;
    color: #666666;
    letter-spacing: 0.6px;
    margin: 0;
    line-height: 1.3;
    font-family: var(--font-sans);
    font-variant:0;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-variant: normal;
}

.stat p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-sans);
}

/* Who We Are Section */
.who-we-are {
    padding: 80px 0;
    background: var(--light-gray);
}

.who-we-are .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.section-image {
    position: relative;
    flex-shrink: 0;
}

.section-image img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: block;
    aspect-ratio: 4 / 3;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-orange);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-variant: normal;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

.section-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: var(--font-sans);
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.value-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

.value-item p {
    font-size: 14px;
    color: var(--text-light);
    font-family: var(--font-sans);
}

/* Services Section */
.services {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.service-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: var(--font-sans);
}

.learn-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-orange);
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.03em;
}

.learn-more:hover {
    gap: 5px;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #d2d3d5;
    color: var(--white);
}

.why-choose .section-label {
    color: var(--primary-orange);
}

.why-choose .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.advantage {
    text-align: center;
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.advantage h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

.advantage p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-sans);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--light-gray);
}

.how-it-works .section-header {
    margin-bottom: 60px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 15px;
    font-family: var(--font-sans);
    font-variant: normal;
}

.step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

.step p {
    font-size: 14px;
    color: var(--text-light);
    font-family: var(--font-sans);
}

.how-it-works .section-header + .steps-container + .btn {
    display: block;
    margin: 0 auto;
}

/* Calculator Section */
.calculator {
    padding: 80px 0;
    background: var(--white);
}

.calculator .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.calculator-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.03em;
}

.calculator-form input,
.calculator-form select {
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.calculator-form input:focus,
.calculator-form select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.result-card {
    background:#666666;
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.result-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.9;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.03em;
}

.result-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 25px;
    font-family: var(--font-sans);
    font-variant: normal;
}

.result-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.result-details p {
    font-size: 14px;
    margin-bottom: 10px;
    font-family: var(--font-sans);
}

.result-details span {
    color: var(--primary-orange);
    font-weight: 700;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 20px;
    font-family: var(--font-sans);
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background: var(--light-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.industry-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    color: var(--primary-orange);
}

.industry-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.industry-item p {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 10px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.quote-mark {
    font-size: 48px;
    color: var(--primary-orange);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    left: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    margin-top: 10px;
    font-family: var(--font-sans);
}

.testimonial-author {
    display: flex;
    gap: 15px;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-sans);
    font-variant: normal;
}

.testimonial-author p {
    font-size: 12px;
    color: var(--text-light);
    font-family: var(--font-sans);
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: var(--light-gray);
}

.blog-coming-soon {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.coming-soon-icon {
    font-size: 72px;
    line-height: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FFF3E6 0%, #FFE4CC 100%);
    border-radius: 20px;
    color: var(--primary-orange);
}

.coming-soon-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

.coming-soon-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 10px;
    font-family: var(--font-sans);
}

.coming-soon-subscribe {
    margin-bottom: 0 !important;
    font-weight: 500;
    color: var(--primary-orange) !important;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 12px;
    color: var(--primary-orange);
    font-weight: 600;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.03em;
}

.blog-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 15px 0;
    line-height: 1.6;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-orange);
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.03em;
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0d2847 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    margin-bottom: 30px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-sans);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-family: var(--font-sans);
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 15px;
    font-family: var(--font-sans);
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-family: var(--font-sans);
}

.btn-small {
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.03em;
}

.btn-small:hover {
    background: #e55a00;
}

/* ========== NDPC Data Protection Compliance (Footer) ========== */
.footer-compliance {
    margin: 0 0 32px;
    position: relative;
}

.footer-compliance-card {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.08) 0%, rgba(0, 50, 0, 0.04) 100%);
    border: 1px solid rgba(0, 100, 0, 0.22);
    border-left: 5px solid #006400;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

.footer-compliance-card:hover {
    background: linear-gradient(135deg, rgba(0, 100, 0, 0.13) 0%, rgba(0, 50, 0, 0.07) 100%);
    border-color: rgba(0, 100, 0, 0.38);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 40, 0, 0.18);
}

.footer-compliance-badge {
    flex-shrink: 0;
    width: 136px;
    height: 136px;
    position: relative;
}

.compliance-badge-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    display: block;
}

.compliance-badge-fallback {
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(145deg, #007a00 0%, #004d00 100%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 40, 0, 0.22);
}

.badge-shield {
    width: 68px;
    height: 74px;
    background: linear-gradient(180deg, #ffffff 0%, #e8f5e0 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 -3px 8px rgba(0, 60, 0, 0.12);
}

.badge-lock {
    font-size: 32px;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.badge-initials {
    font-family: var(--font-sans);
    font-variant: normal;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.footer-compliance-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compliance-title {
    font-family: var(--font-sans);
    font-variant: normal;
    font-size: 20px;
    font-weight: 700;
    color: #005a00;
    letter-spacing: 0.03em;
    margin: 0;
}

.compliance-company {
    font-family: var(--font-sans);
    font-variant: normal;
    font-size: 16.5px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.compliance-cert {
    font-family: var(--font-sans);
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-light);
    margin: 4px 0 10px;
}

.compliance-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-sans);
    font-variant: normal;
    font-weight: 600;
    font-size: 14px;
    color: #006400;
    letter-spacing: 0.03em;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.2s ease;
}

.footer-compliance-card:hover .compliance-link {
    color: #004400;
    gap: 9px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-sans);
}

.footer-links a:hover {
    color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .navbar-container {
        padding: 18px 18px;
        max-width: 100%;
    }

    .logo {
        gap: 14px;
    }

    .logo-img {
        width: 76px;
        height: 76px;
    }

    .logo-text h1 {
        font-size: 26px;
    }

    .logo-text p {
        font-size: 13px;
        letter-spacing: 1.6px;
    }

    .apply-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        background: var(--white);
        padding: 20px;
        border-radius: 18px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border-light);
        margin-left: 0;
        z-index: 110;
    }

    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        padding: 10px 0;
    }

    .navbar-actions {
        margin-left: auto;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        flex-wrap: wrap;
        padding: 14px 14px;
        gap: 14px;
    }

    .logo {
        gap: 10px;
    }

    .logo-img {
        width: 62px;
        height: 62px;
    }

    .logo-text h1 {
        font-size: 20px;
        letter-spacing: -0.2px;
    }

    .logo-text p {
        font-size: 10.5px;
        letter-spacing: 1.1px;
    }

    .hamburger {
        gap: 5px;
    }

    .hamburger span {
        width: 28px;
        height: 3.5px;
    }

    .apply-btn {
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 7px;
    }

    .navbar-actions {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .navbar-actions > a {
        flex: 1;
    }

    .navbar-actions .apply-btn {
        width: 100%;
        text-align: center;
    }

    .hero-content,
    .who-we-are .container,
    .calculator .container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .skycapital-text p {
        font-size: 18px;
        text-align: center;
        letter-spacing: 0.4px;
    }

    .skycapital-member {
        gap: 18px;
        flex-direction: column;
    }

    .skycapital-real-logo {
        max-height: 100px;
        padding: 10px 18px;
    }

    .stats-bar {
        padding: 30px 20px;
    }
    
    .blog-coming-soon {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
        gap: 20px;
    }
    
    .coming-soon-icon {
        width: 100px;
        height: 100px;
        font-size: 60px;
    }
    
    .steps-container,
    .values,
    .testimonials-grid,
    .blog-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .info-card {
        position: static;
        width: 100%;
    }

    .section-image img,
    .hero-img {
        width: 100%;
    }

    .footer-compliance {
        margin: 0 0 24px;
    }

    .footer-compliance-card {
        flex-direction: column;
        gap: 18px;
        padding: 20px;
        text-align: center;
        align-items: center;
    }

    .footer-compliance-badge {
        width: 110px;
        height: 110px;
    }

    .badge-shield {
        width: 54px;
        height: 60px;
    }

    .badge-lock {
        font-size: 26px;
    }

    .badge-initials {
        font-size: 14px;
    }

    .compliance-link {
        align-self: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 16px;
    }

    .nav-menu {
        left: 14px;
        right: 14px;
    }

    .services-grid,
    .advantages-grid,
    .industries-grid,
    .steps-container,
    .values {
        grid-template-columns: 1fr;
    }

    .service-card,
    .industry-item,
    .step,
    .value-item,
    .advantage {
        padding-left: 22px;
        padding-right: 22px;
    }

    .calculator-form {
        gap: 18px;
    }

    .result-card {
        padding: 28px 22px;
    }

    .result-amount {
        font-size: 38px;
    }

    .blog-coming-soon {
        padding: 28px 20px;
    }

    .coming-soon-content h4 {
        font-size: 20px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section img {
        margin: 0 auto;
    }
}

@media (max-width: 420px) {
    .logo-text h1 {
        font-size: 17px;
    }

    .logo-text p {
        font-size: 9px;
        letter-spacing: 0.8px;
    }

    .logo-img {
        width: 54px;
        height: 54px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title,
    .cta-content h2 {
        font-size: 24px;
    }

    .skycapital-text p {
        font-size: 16px;
    }
}

.orb-one {
  width: 260px;
  height: 260px;
  background: var(--accent-gold);
  top: -40px;
  left: -60px;
}

.orb-two {
  width: 220px;
  height: 220px;
  background: var(--primary-blue);
  right: -70px;
  bottom: 80px;
  animation-duration: 10s;
}

.orb-three {
  width: 160px;
  height: 160px;
  background: #d6e3f4;
  left: 45%;
  top: 12%;
  animation-duration: 7s;
}

.hero-shell {
  min-height: 100vh;
  padding: 28px 24px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.topbar {
  width: min(1180px, 100%);
  margin: 0 auto 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--primary-blue);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-deep));
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 700;
}

.brand-text small {
  font-size: 0.74rem;
  color: #5a6a80;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.08);
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 0 6px rgba(244, 180, 0, 0.15);
}

.hero-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 24px 0;
}

.hero-copy {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 106, 0, 0.08);
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  animation: fadeInUp 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.14);
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 14px;
}

.hero-badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.hero-copy h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.hero-copy p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4f5f74;
  margin-bottom: 18px;
}

.construction-illustration {
  margin: 12px 0 22px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.06), rgba(255, 106, 0, 0.12));
  border-radius: 20px;
  animation: float 5s ease-in-out infinite;
}

.progress-card,
.countdown-card {
  background: var(--light-gray);
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #4b5d75;
}

.progress-meta strong {
  color: var(--primary-blue);
}

.progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #dfe7f2;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
  transition: width 1.2s ease;
}

.countdown-card h2 {
  font-size: 1rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.time-block {
  text-align: center;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 6px;
}

.time-block span {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.time-block label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6c7a91;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.subscribe-form input {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
  padding: 13px 15px;
  border-radius: 999px;
  font: inherit;
  color: var(--text-dark);
  outline: none;
}

.subscribe-form input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.subscribe-form button,
.glow-btn {
  border: none;
  cursor: pointer;
  padding: 13px 18px;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-deep));
  box-shadow: 0 12px 24px rgba(255, 106, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.subscribe-form button:hover,
.glow-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(255, 106, 0, 0.25);
}

.form-message {
  min-height: 24px;
  margin-top: 10px;
  color: var(--primary-blue);
  font-weight: 500;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 16px;
}

.contact-strip div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
  background: rgba(255, 106, 0, 0.04);
  border-radius: 14px;
  padding: 10px 12px;
}

.contact-strip strong {
  color: var(--primary-blue);
  font-size: 0.9rem;
}

.contact-strip span {
  color: #5f6f86;
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--primary-blue);
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 106, 0, 0.14);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.9s ease both;
}

.hero-visual img {
  width: min(100%, 480px);
  filter: drop-shadow(0 20px 40px rgba(255, 106, 0, 0.12));
  animation: float 6s ease-in-out infinite;
}

.site-footer {
  text-align: center;
  padding: 0 24px 18px;
  color: #6c7a91;
  font-size: 0.95rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-shell {
    padding: 20px 16px 32px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy {
    padding: 24px;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-strip {
    flex-direction: column;
  }
}

/* ===== Service Detail Modal ===== */
.service-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-modal.is-open {
    display: flex;
    animation: serviceModalFadeIn 0.25s ease both;
}

.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 31, 64, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.service-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    animation: serviceModalPopIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.service-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: var(--primary-dark);
    font-size: 28px;
    line-height: 1;
    display: grid;
    place-items: center;
    z-index: 2;
    transition: all 0.2s ease;
}

.service-modal-close:hover {
    background: rgba(255, 106, 0, 0.1);
    color: var(--primary-orange);
    transform: rotate(90deg);
}

.service-modal-header {
    padding: 40px 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, #F5F9FF 0%, #FFF3E6 100%);
    border-radius: 18px 18px 0 0;
}

.service-modal-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    font-size: 36px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(255, 106, 0, 0.12);
}

.service-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
    margin: 0;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.02em;
}

.service-modal-body {
    padding: 28px 40px;
}

.service-modal-body p {
    font-size: 15.5px;
    color: #3D4A5F;
    line-height: 1.85;
    margin: 0;
    font-family: var(--font-sans);
}

.service-modal-footer {
    padding: 22px 40px 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.service-modal-footer .btn {
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14.5px;
    font-family: var(--font-sans);
    font-variant: normal;
    letter-spacing: 0.03em;
}

.service-modal-close-btn {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--border-light);
}

.service-modal-close-btn:hover {
    border-color: var(--primary-dark);
    background: rgba(9, 31, 64, 0.04);
    color: var(--primary-dark);
}

.service-modal-apply {
    background: var(--primary-orange);
    color: var(--white);
}

.service-modal-apply:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(255, 106, 0, 0.3);
}

body.modal-open {
    overflow: hidden;
}

@keyframes serviceModalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes serviceModalPopIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal  mobile */
@media (max-width: 640px) {
    .service-modal {
        padding: 10px;
        align-items: flex-end;
    }

    .service-modal-dialog {
        max-height: 92vh;
        border-radius: 18px 18px 14px 14px;
        animation: serviceModalSlideUp 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .service-modal-header {
        padding: 48px 22px 20px;
    }

    .service-modal-title {
        font-size: 20px;
    }

    .service-modal-icon {
        width: 56px;
        height: 56px;
        font-size: 30px;
    }

    .service-modal-body {
        padding: 22px;
    }

    .service-modal-body p {
        font-size: 14.5px;
        line-height: 1.75;
    }

    .service-modal-footer {
        padding: 18px 22px 26px;
        flex-direction: column-reverse;
    }

    .service-modal-footer .btn {
        width: 100%;
    }

    .service-modal-close {
        top: 10px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

@keyframes serviceModalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   REQUESTED FONT UPDATE
   Main site font: Poppins
   Logo company name: original Bodoni styling
   Slider membership text: original styling
   ========================================================= */

.logo-text h1 {
    font-family: var(--font-bodoni) !important;
    font-variant: small-caps !important;
}

/* Slider membership text - preserve original styling */
.slider-membership,
.member-text,
.hero-member,
.hero-subtitle-member,
.member-of {
    font-family: var(--font-bodoni) !important;
    font-variant: small-caps !important;
}