/* HERO */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #0055bb 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 5vw 90px
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.12) 0%, transparent 70%)
}

.hero-inner {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--saffron);
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.4
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 700px
}

.hero h1 em {
    color: var(--saffron);
    font-style: normal
}

.hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 300
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px
}

.btn-primary {
    background: var(--saffron);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-primary:hover {
    background: var(--saffron-light);
    transform: translateY(-1px)
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08)
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap
}

.hero-stat {
    text-align: left
}

.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-top: 2px
}

/* SERVICE BADGES */
.service-badges {
    background: var(--white);
    padding: 32px 5vw;
    border-bottom: 1px solid var(--border)
}

.service-badges-inner {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center
}

.s-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: all .2s;
    cursor: pointer
}

.s-badge:hover {
    border-color: var(--navy);
    background: #eef3ff;
    transform: translateY(-2px)
}

/* SECTION COMMON */
.section {
    padding: 80px 5vw
}

.section-inner {
    max-width: 1350px;
    margin: 0 auto
}

.section-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--saffron);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 16px
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 48px;
    font-weight: 300
}

/* WHY US */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0
}

.why-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px
}

.why-text p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300
}

.why-visual {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 420px;
    background: linear-gradient(135deg, #eef3ff, #dce7ff);
    display: flex;
    align-items: center;
    justify-content: center
}

.why-visual-inner {
    text-align: center;
    padding: 40px
}

.why-visual-icon {
    font-size: 5rem;
    margin-bottom: 16px
}

.why-visual-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 700
}

/* SERVICES */
.services-bg {
    background: var(--off)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all .3s;
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.service-card:hover {
    border-color: var(--navy);
    box-shadow: 0 12px 40px rgba(0, 53, 128, 0.12);
    transform: translateY(-4px)
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-icon {
    border-radius: 14px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 16px;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px
}

.service-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 300
}

.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.service-bullets li {
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 300
}

.service-bullets li::before {
    content: '✓';
    color: var(--green-ind);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none
}

.service-card-link:hover {
    gap: 10px
}

/* HOW IT WORKS */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(16.66% + 24px);
    right: calc(16.66% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--navy), var(--border));
    z-index: 0
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 24px
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 2px var(--navy)
}

.step h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px
}

.step p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300
}

/* SCROLLING TICKER */
.ticker2 {
    background: var(--saffron);
    padding: 14px 0;
    overflow: hidden
}

.ticker2-inner {
    display: flex;
    animation: tick 20s linear infinite;
    white-space: nowrap
}

.ticker2-item {
    padding: 0 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px
}

.ticker2-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem
}

/* TRUST */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    text-align: center
}

.trust-card {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 20px
}

.trust-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px
}

.trust-label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 400;
    line-height: 1.4
}

/* BLOG */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all .2s
}

.blog-card:hover {
    box-shadow: 0 8px 32px rgba(0, 53, 128, 0.1);
    transform: translateY(-2px)
}

.blog-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem
}

.blog-body {
    padding: 20px
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--saffron);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px
}

.blog-body h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 10px
}

.blog-body p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300
}

.blog-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none
}

/* FAQ */
.faq-bg {
    background: var(--off)
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden
}

.faq-q {
    padding: 20px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none
}

.faq-q:hover {
    color: var(--navy)
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--navy);
    flex-shrink: 0;
    transition: transform .3s
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    padding: 0 24px
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 24px 20px
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 80px 5vw;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center bottom, rgba(255, 140, 0, 0.15) 0%, transparent 70%)
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto 32px;
    font-weight: 300;
    position: relative;
    z-index: 1
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    flex-wrap: wrap
}

.cta-input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border-radius: 8px;
    border: none;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    outline: none
}

.cta-btn {
    background: var(--saffron);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: background .2s;
    white-space: nowrap
}

.cta-btn:hover {
    background: var(--saffron-light)
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px
}

.testimonial {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px
}

.testimonial-stars {
    color: var(--saffron);
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 2px
}

.testimonial p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0
}

.testimonial-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text)
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--muted)
}

/* FOOTER */
footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 5vw 0
}

.footer-grid {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 16px;
    display: inline-flex
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
    font-weight: 300
}

.footer-col h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-col ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color .2s;
    font-weight: 300
}

.footer-col ul li a:hover {
    color: #fff
}

.footer-bottom {
    max-width: 1350px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 10px
}

.footer-bottom-links {
    display: flex;
    gap: 20px
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color .2s
}

.footer-bottom-links a:hover {
    color: #fff
}

/* GOVT PORTAL STRIP */
.govt-strip {
    background: #f0f4ff;
    border-top: 3px solid var(--navy);
    border-bottom: 1px solid var(--border);
    padding: 14px 5vw
}

.govt-strip-inner {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.govt-strip-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap
}

.govt-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.govt-link {
    font-size: 0.78rem;
    padding: 5px 14px;
    border: 1px solid var(--navy);
    border-radius: 100px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: all .2s
}

.govt-link:hover {
    background: var(--navy);
    color: #fff
}

@media(max-width:768px) {
    .why-grid {
        grid-template-columns: 1fr
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .steps-grid::before {
        display: none
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .nav-links {
        display: none
    }

    .hero h1 {
        font-size: 1.8rem
    }
}