/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ─────────────────────────────────────────
   TOP BAR
───────────────────────────────────────── */
.top-bar {
    background: #0d47a1;
    color: #fff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.top-bar a {
    color: #ffd54f;
    text-decoration: underline;
    margin-left: 8px;
}

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
nav {
    background: #fff;
    border-bottom: 1px solid #e8edf5;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 68px;
    gap: 8px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0d47a1;
    white-space: nowrap;
    margin-right: 20px;
    flex-shrink: 0;
}

.logo span {
    color: #f57c00;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    border-radius: 6px;
    transition: background .15s, color .15s;
    cursor: pointer;
}

.nav-link:hover {
    background: #f0f4ff;
    color: #0d47a1;
}

.nav-link .arrow {
    font-size: 10px;
    opacity: .6;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 20px;
    min-width: 220px;
    z-index: 1000;
}

.dropdown.wide {
    min-width: 480px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

.nav-item:hover .dropdown {
    display: block;
}

.dd-section-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0d47a1;
    margin-bottom: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f0f2f8;
}

.dd-section-title:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.dropdown a {
    display: block;
    padding: 6px 8px;
    font-size: 13px;
    color: #444;
    border-radius: 5px;
    transition: background .12s, color .12s;
}

.dropdown a:hover {
    background: #f0f4ff;
    color: #0d47a1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-phone {
    font-size: 13px;
    font-weight: 600;
    color: #0d47a1;
    white-space: nowrap;
}

.btn-consult {
    background: #f57c00;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 7px;
    white-space: nowrap;
    transition: background .2s;
}

.btn-consult:hover {
    background: #e65100;
}


.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #0d47a1;
    padding: 4px;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #f0f4ff 0%, #fef8f0 100%);
    padding: 80px 24px 70px;
    border-bottom: 1px solid #e4eaf5;
    text-align: center;
}

.hero-inner {
    max-width: 860px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f0fe;
    color: #0d47a1;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    border: 1px solid #c5d8fb;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    background: #0d47a1;
    border-radius: 50%;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #0d1b3e;
    margin-bottom: 16px;
}

.hero h1 span {
    color: #0d47a1;
}

.hero-sub {
    font-size: 16px;
    color: #4a5580;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    justify-content: center;
}

.quick-link {
    background: #fff;
    border: 1.5px solid #d0daf5;
    color: #0d47a1;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: 8px;
    transition: all .2s;
    box-shadow: 0 2px 8px rgba(13, 71, 161, 0.06);
}

.quick-link:hover {
    background: #0d47a1;
    color: #fff;
    border-color: #0d47a1;
}

.hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-hero-primary {
    background: #0d47a1;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    transition: background .2s;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}

.btn-hero-primary:hover {
    background: #1565c0;
}

.btn-hero-secondary {
    background: #fff;
    color: #0d47a1;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid #0d47a1;
    transition: all .2s;
}

.btn-hero-secondary:hover {
    background: #f0f4ff;
}

.hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
}

.trust-icon {
    font-size: 18px;
}

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats-bar {
    background: #0d47a1;
    padding: 22px 24px;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-num span {
    color: #ffd54f;
}

.stat-label {
    font-size: 12px;
    color: #90caf9;
    margin-top: 4px;
}

/* ─────────────────────────────────────────
   SECTION COMMONS
───────────────────────────────────────── */
section {
    padding: 64px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f57c00;
    background: #fff3e0;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #0d1b3e;
    line-height: 1.25;
    margin-bottom: 10px;
}

.section-sub {
    font-size: 15px;
    color: #5a6a8a;
    line-height: 1.75;
    max-width: 580px;
}

/* ─────────────────────────────────────────
   WHY CHOOSE US
───────────────────────────────────────── */
.why-section {
    background: #f7f9ff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.why-card {
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 12px;
    padding: 26px 20px;
    transition: box-shadow .2s, transform .2s;
}

.why-card:hover {
    box-shadow: 0 6px 24px rgba(13, 71, 161, 0.1);
    transform: translateY(-3px);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.why-icon.blue {
    background: #e8f0fe;
}

.why-icon.orange {
    background: #fff3e0;
}

.why-icon.green {
    background: #e8f5e9;
}

.why-icon.purple {
    background: #f3e5f5;
}

.why-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #0d1b3e;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: #5a6a8a;
    line-height: 1.65;
}

/* ─────────────────────────────────────────
   POPULAR SERVICES
───────────────────────────────────────── */
.services-section {
    background: #fff;
}

.services-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-view-all {
    border: 1.5px solid #0d47a1;
    color: #0d47a1;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 7px;
    transition: all .2s;
}

.btn-view-all:hover {
    background: #0d47a1;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    border: 1.5px solid #e4eaf5;
    border-radius: 14px;
    padding: 26px 22px;
    transition: box-shadow .2s, border-color .2s, transform .2s;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0d47a1, #1976d2);
    opacity: 0;
    transition: opacity .2s;
}

.service-card:hover {
    box-shadow: 0 8px 32px rgba(13, 71, 161, 0.12);
    border-color: #c5d8fb;
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.svc-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0d1b3e;
    margin-bottom: 8px;
}

.svc-price {
    font-size: 13.5px;
    color: #0d47a1;
    font-weight: 600;
    margin-bottom: 12px;
}

.svc-price span {
    font-weight: 400;
    color: #8a95b0;
    font-size: 12px;
}

.svc-features {
    margin-bottom: 18px;
}

.svc-features li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 13px;
    color: #4a5580;
    padding: 3px 0;
    line-height: 1.5;
}

.svc-features li::before {
    content: '✓';
    color: #2e7d32;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.btn-svc {
    display: block;
    background: #0d47a1;
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 8px;
    text-align: center;
    transition: background .2s;
}

.btn-svc:hover {
    background: #1565c0;
}

.badge-popular {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f57c00;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────
   ALL SERVICES GRID
───────────────────────────────────────── */
.all-services-section {
    background: #f7f9ff;
}

.services-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.svc-category {
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 12px;
    padding: 22px 18px;
}

.svc-category h4 {
    font-size: 13px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.svc-category h4 .cat-icon {
    font-size: 16px;
}

.svc-category ul {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.svc-category li a {
    font-size: 13px;
    color: #4a5580;
    transition: color .15s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.svc-category li a:hover {
    color: #0d47a1;
}

.svc-category li a::before {
    content: '›';
    color: #0d47a1;
    font-weight: 700;
}

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.process-section {
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 44px;
    position: relative;
}

.process-connector {
    position: absolute;
    top: 36px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    background: linear-gradient(90deg, #0d47a1, #90caf9);
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 14px;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #0d47a1;
    color: #0d47a1;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
}

.process-step h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0d1b3e;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: #5a6a8a;
    line-height: 1.6;
}

/* ─────────────────────────────────────────
   EXPERT CTA STRIP
───────────────────────────────────────── */
.expert-strip {
    background: linear-gradient(135deg, #0d47a1, #1565c0);
    padding: 44px 24px;
}

.expert-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.expert-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.expert-text p {
    font-size: 14px;
    color: #90caf9;
}

.expert-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-call {
    background: #fff;
    color: #0d47a1;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-call:hover {
    background: #e8f0fe;
}

.btn-wa {
    background: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-wa:hover {
    background: #1ebe5a;
}

/* ─────────────────────────────────────────
   COMBO SERVICES
───────────────────────────────────────── */
.combo-section {
    background: #fff;
}

.combo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.combo-card {
    background: #f7f9ff;
    border: 1.5px solid #e4eaf5;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}

.combo-card:hover {
    box-shadow: 0 8px 28px rgba(13, 71, 161, 0.1);
    transform: translateY(-4px);
    border-color: #c5d8fb;
}

.combo-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.combo-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0d1b3e;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.combo-card p {
    font-size: 13px;
    color: #5a6a8a;
    line-height: 1.65;
    margin-bottom: 18px;
}

.btn-combo {
    display: inline-block;
    background: #0d47a1;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 7px;
    transition: background .2s;
}

.btn-combo:hover {
    background: #1565c0;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testi-section {
    background: #f7f9ff;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.testi-card {
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 12px;
    padding: 24px 20px;
    transition: box-shadow .2s;
}

.testi-card:hover {
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.08);
}

.testi-stars {
    color: #f57c00;
    font-size: 15px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testi-service-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #0d47a1;
    background: #e8f0fe;
    padding: 3px 9px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.testi-text {
    font-size: 13.5px;
    color: #3a4a6a;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 16px;
}

.testi-text::before {
    content: '"';
    font-size: 40px;
    color: #e8f0fe;
    line-height: 0;
    vertical-align: -18px;
    margin-right: 3px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid #f0f3fb;
    padding-top: 14px;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0d47a1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.testi-name {
    font-size: 13px;
    font-weight: 600;
    color: #0d1b3e;
}

.testi-date {
    font-size: 11px;
    color: #8a95b0;
    margin-top: 1px;
}

/* ─────────────────────────────────────────
   ABOUT / OUR STORY
───────────────────────────────────────── */
.about-section {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-desc {
    font-size: 15px;
    color: #5a6a8a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #1a1a2e;
    font-weight: 500;
}

.video-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(13, 71, 161, 0.12);
    aspect-ratio: 16/9;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ─────────────────────────────────────────
   CLIENTS
───────────────────────────────────────── */
.clients-section {
    background: #f7f9ff;
}

/* ─────────────────────────────────────────
   CLIENTS LOGO GRID
───────────────────────────────────────── */
.clients-section {
    background: #f7f9ff;
}

.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.client-logo-card {
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 10px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow .2s, transform .2s;
    min-height: 80px;
}

.client-logo-card:hover {
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.10);
    transform: translateY(-3px);
    border-color: #c5d8fb;
}

/* .client-logo-card img {
    max-width: 110px;
    max-height: 55px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter .2s, opacity .2s;
}

.client-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
} */

@media (max-width: 900px) {
    .clients-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .clients-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.client-pill:hover {
    border-color: #0d47a1;
    color: #0d47a1;
    box-shadow: 0 2px 12px rgba(13, 71, 161, 0.08);
}

/* ─────────────────────────────────────────
   MEDIA LOGOS
───────────────────────────────────────── */
.media-section {
    background: #fff;
    padding: 40px 24px;
}

.media-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.media-title {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #8a95b0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.media-logo-pill {
    background: #f7f9ff;
    border: 1px solid #e4eaf5;
    border-radius: 8px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    color: #5a6a8a;
}

/* ─────────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────────── */
.contact-section {
    background: #f7f9ff;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #0d1b3e;
    margin-bottom: 12px;
}

.contact-info p {
    font-size: 15px;
    color: #5a6a8a;
    line-height: 1.75;
    margin-bottom: 32px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: box-shadow .2s;
}

.contact-card:hover {
    box-shadow: 0 4px 16px rgba(13, 71, 161, 0.08);
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: #0d1b3e;
    margin-bottom: 3px;
}

.contact-card-text a,
.contact-card-text span {
    font-size: 14px;
    color: #0d47a1;
    font-weight: 500;
}

.contact-form-card {
    background: #fff;
    border: 1px solid #e4eaf5;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 8px 40px rgba(13, 71, 161, 0.08);
}

.contact-form-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0d1b3e;
    margin-bottom: 6px;
}

.contact-form-card>p {
    font-size: 14px;
    color: #6b7a99;
    margin-bottom: 24px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    border: 1.5px solid #dde4f5;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #fff;
    outline: none;
    transition: border-color .2s;
}

.form-row textarea {
    resize: vertical;
    min-height: 90px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: #0d47a1;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #aab3cc;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.btn-form-submit {
    width: 100%;
    background: #0d47a1;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background .2s;
    margin-top: 4px;
}

.btn-form-submit:hover {
    background: #1565c0;
}

.form-secure {
    font-size: 12px;
    color: #8a95b0;
    text-align: center;
    margin-top: 12px;
}

.form-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.stars {
    color: #f57c00;
    font-size: 13px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
    background: #0a1628;
    padding: 56px 24px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 28px;
}

.footer-brand .logo {
    font-size: 22px;
    color: #fff;
    margin-bottom: 14px;
    display: block;
}

.footer-brand .logo span {
    color: #ffd54f;
}

.footer-brand p {
    font-size: 13px;
    color: #607d9e;
    line-height: 1.75;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    color: #90caf9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background .2s;
}

.social-btn:hover {
    background: #0d47a1;
    color: #fff;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #90caf9;
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-col li a {
    font-size: 13px;
    color: #607d9e;
    transition: color .15s;
}

.footer-col li a:hover {
    color: #ffd54f;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: #607d9e;
    margin-bottom: 10px;
}

.footer-contact-item .icon {
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-item a {
    color: #90caf9;
    transition: color .15s;
}

.footer-contact-item a:hover {
    color: #ffd54f;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: #3a4a6a;
}

.footer-bottom a {
    color: #3a4a6a;
    transition: color .15s;
}

.footer-bottom a:hover {
    color: #90caf9;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   FLOATING WHATSAPP
───────────────────────────────────────── */
.float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform .2s;
    color: #fff;
    text-decoration: none;
}

.float-wa:hover {
    transform: scale(1.1);
}

/* ─────────────────────────────────────────
   MOBILE NAV
───────────────────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 9998;
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mobile-close {
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: #333;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
    border-radius: 8px;
    transition: background .15s;
}

.mobile-nav-link:hover {
    background: #f0f4ff;
    color: #0d47a1;
}

.mobile-divider {
    height: 1px;
    background: #f0f2f8;
    margin: 10px 0;
}

.mobile-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.mobile-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.mobile-btn.primary {
    background: #0d47a1;
    color: #fff;
}

.mobile-btn.orange {
    background: #f57c00;
    color: #fff;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .combo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .nav-menu,
    .nav-right .nav-phone {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 28px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .process-connector {
        display: none;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-category-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .combo-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        gap: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .expert-inner {
        flex-direction: column;
        text-align: center;
    }

    .expert-actions {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* ═══════════════════════════════════════════
   INNER PAGE — PROPRIETORSHIP
═══════════════════════════════════════════ */

/* ── Inner Hero ── */
.inner-hero { background: linear-gradient(135deg, #f0f4ff 0%, #fef8f0 100%); border-bottom: 1px solid #e4eaf5; padding: 48px 24px; }
.inner-hero-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #8a95b0; margin-bottom: 16px; }
.breadcrumb a { color: #0d47a1; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.inner-hero-content h1 { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 700; color: #0d1b3e; line-height: 1.25; margin-bottom: 14px; }
.inner-hero-content p { font-size: 15px; color: #4a5580; line-height: 1.75; margin-bottom: 20px; }
.inner-hero-price { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; background: #fff; border: 1px solid #e4eaf5; border-radius: 10px; padding: 12px 18px; }
.price-label { font-size: 13px; color: #5a6a8a; }
.price-amount { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 700; color: #0d47a1; }
.price-note { font-size: 12px; color: #8a95b0; }
.inner-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.inner-trust-row { display: flex; flex-wrap: wrap; gap: 14px; }
.inner-trust-row span { font-size: 12.5px; color: #4a5580; font-weight: 500; }
.inner-hero-img img { border-radius: 14px; box-shadow: 0 12px 40px rgba(13,71,161,0.12); width: 100%; object-fit: cover; }

/* ── Plans ── */
.plans-section { background: #f7f9ff; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card { background: #fff; border: 1.5px solid #e4eaf5; border-radius: 14px; padding: 28px 24px; position: relative; transition: box-shadow .2s, transform .2s; }
.plan-card:hover { box-shadow: 0 8px 28px rgba(13,71,161,0.1); transform: translateY(-4px); }
.plan-popular { border-color: #0d47a1; box-shadow: 0 4px 20px rgba(13,71,161,0.1); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #f57c00; color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.05em; }
.plan-head { text-align: center; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid #f0f3fb; }
.plan-name { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: #0d1b3e; margin-bottom: 8px; }
.plan-price { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 700; color: #0d47a1; line-height: 1; }
.plan-price span { font-size: 14px; font-weight: 400; color: #8a95b0; }
.plan-note { font-size: 11px; color: #8a95b0; margin-top: 4px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: #4a5580; }
.plan-features li::before { content: '✓'; color: #2e7d32; font-weight: 700; flex-shrink: 0; }
.btn-plan { display: block; text-align: center; background: #0d47a1; color: #fff; font-size: 14px; font-weight: 600; padding: 12px; border-radius: 8px; transition: background .2s; font-family: 'Poppins', sans-serif; }
.btn-plan:hover { background: #1565c0; }
.plan-popular .btn-plan { background: #f57c00; }
.plan-popular .btn-plan:hover { background: #e65100; }

/* ── Inner Content Layout ── */
.inner-content-section { background: #fff; }
.inner-content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.inner-content-right { position: sticky; top: 84px; display: flex; flex-direction: column; gap: 20px; }

/* ── Content Blocks ── */
.content-block { margin-bottom: 44px; }
.content-block h2 { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: #0d1b3e; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #e8f0fe; }
.content-block p { font-size: 14.5px; color: #4a5580; line-height: 1.8; margin-bottom: 12px; }

/* ── Benefits ── */
.benefit-card { display: flex; gap: 16px; align-items: flex-start; background: #f7f9ff; border: 1px solid #e4eaf5; border-radius: 10px; padding: 18px; margin-bottom: 12px; transition: box-shadow .2s; }
.benefit-card:hover { box-shadow: 0 4px 14px rgba(13,71,161,0.08); }
.benefit-icon { font-size: 24px; flex-shrink: 0; }
.benefit-card h4 { font-size: 14px; font-weight: 700; color: #0d1b3e; margin-bottom: 5px; }
.benefit-card p { font-size: 13px; color: #5a6a8a; line-height: 1.65; margin: 0; }

/* ── Docs Grid ── */
.docs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.doc-card { background: #f7f9ff; border: 1px solid #e4eaf5; border-radius: 10px; padding: 18px; transition: box-shadow .2s; }
.doc-card:hover { box-shadow: 0 4px 14px rgba(13,71,161,0.08); border-color: #c5d8fb; }
.doc-num { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: #c5d8fb; margin-bottom: 6px; }
.doc-card h4 { font-size: 13.5px; font-weight: 700; color: #0d1b3e; margin-bottom: 6px; }
.doc-card p { font-size: 12.5px; color: #5a6a8a; line-height: 1.65; margin: 0; }

/* ── Compliance List ── */
.compliance-list { display: flex; flex-direction: column; gap: 14px; }
.compliance-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px; border: 1px solid #e4eaf5; border-radius: 10px; background: #fff; transition: box-shadow .2s; }
.compliance-item:hover { box-shadow: 0 4px 14px rgba(13,71,161,0.07); }
.compliance-icon { font-size: 22px; flex-shrink: 0; }
.compliance-item h4 { font-size: 14px; font-weight: 700; color: #0d1b3e; margin-bottom: 4px; }
.compliance-item p { font-size: 13px; color: #5a6a8a; line-height: 1.65; margin: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid #e4eaf5; border-radius: 10px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; cursor: pointer; font-size: 14px; font-weight: 600; color: #0d1b3e; background: #f7f9ff; transition: background .15s; gap: 12px; }
.faq-question:hover { background: #e8f0fe; }
.faq-arrow { font-size: 16px; color: #0d47a1; flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
/* ── FAQ improved ── */
.faq-answer {
    display: none;
    padding: 16px 18px;
    font-size: 13.5px;
    color: #4a5580;
    line-height: 1.75;
    border-top: 1px solid #e4eaf5;
    background: #fff;
    animation: fadeIn 0.2s ease;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question { background: #e8f0fe; color: #0d47a1; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: #0d47a1; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}.faq-item.open .faq-answer { display: block; }

/* ── Sticky Form ── */
.inner-form-card { background: #fff; border: 1px solid #e4eaf5; border-radius: 16px; padding: 28px 24px; box-shadow: 0 8px 40px rgba(13,71,161,0.08); }
.inner-form-card h3 { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: #0d1b3e; margin-bottom: 4px; }
.inner-form-card > p { font-size: 13px; color: #6b7a99; margin-bottom: 20px; }

/* ── Why BDS Box ── */
.inner-why-box { background: #0d47a1; border-radius: 14px; padding: 22px 20px; }
.inner-why-box h4 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.inner-why-box ul { display: flex; flex-direction: column; gap: 10px; }
.inner-why-box li { font-size: 13.5px; color: #90caf9; }

/* ── FSSAI Hero with Form ── */
.inner-hero-form { display: flex; flex-direction: column; gap: 16px; align-self: start; }
.inner-hero-form .inner-form-card { box-shadow: 0 12px 40px rgba(13,71,161,0.12); }
.fssai-content { max-width: 900px; }

/* ═══════════════════════════════════════════
   FSSAI SERVICE PAGES
═══════════════════════════════════════════ */
.fssai-page { background: #fff; padding: 36px 24px 60px; }
.fssai-page-inner { max-width: 920px; margin: 0 auto; }
.fssai-page-title { font-family: 'Poppins', sans-serif; font-size: 26px; font-weight: 700; color: #0d1b3e; margin-bottom: 8px; line-height: 1.3; }
.fssai-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: #8a95b0; margin-bottom: 22px; }
.fssai-breadcrumb a { color: #0d47a1; font-weight: 500; }
.fssai-breadcrumb a:hover { text-decoration: underline; }
.fssai-breadcrumb span { color: #b0baca; }

/* ── Banner + Form grid ── */
.fssai-grid { display: grid; grid-template-columns: 1fr 300px; gap: 20px; margin-bottom: 36px; align-items: start; }

/* ── Left banner ── */
.fssai-banner { border-radius: 10px; overflow: hidden; border: 1px solid #e4eaf5; }
.fssai-banner-img { background: linear-gradient(135deg, #e65100 0%, #f57c00 60%, #ff9800 100%); padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.fssai-banner-img h3 { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: #fff; line-height: 1.45; }
.fssai-banner-photo { width: 100%; border-radius: 7px; max-height: 130px; object-fit: cover; display: block; }
.fssai-banner-cta { background: #fff; padding: 14px 18px; display: flex; align-items: center; gap: 10px; }
.fssai-banner-cta-text { font-size: 13px; color: #4a5580; line-height: 1.5; }
.fssai-banner-cta-text a { display: inline-block; margin-top: 4px; color: #0d47a1; font-weight: 700; font-size: 13.5px; }
.fssai-banner-cta-text a:hover { text-decoration: underline; }
.fssai-callnow-icon { font-size: 26px; flex-shrink: 0; }

/* ── Right form card ── */
.fssai-form-card { border: 1px solid #e4eaf5; border-radius: 10px; overflow: hidden; }
.fssai-form-header { background: #0d47a1; padding: 16px 18px; text-align: center; }
.fssai-form-header h3 { font-family: 'Poppins', sans-serif; font-size: 14.5px; font-weight: 700; color: #fff; line-height: 1.45; }
.fssai-form-body { padding: 16px 18px; background: #fff; }
.fssai-form-row { margin-bottom: 11px; }
.fssai-form-row label { display: block; font-size: 11.5px; font-weight: 600; color: #6b7a99; margin-bottom: 3px; }
.fssai-form-row input,
.fssai-form-row select { width: 100%; padding: 7px 10px; border: 1px solid #d8e0f0; border-radius: 5px; font-size: 12.5px; color: #333; font-family: inherit; outline: none; transition: border-color .15s; }
.fssai-form-row input:focus,
.fssai-form-row select:focus { border-color: #0d47a1; }
.fssai-form-submit { width: 100%; background: #0d47a1; color: #fff; font-size: 13.5px; font-weight: 700; padding: 11px; border: none; border-radius: 6px; cursor: pointer; margin-top: 6px; font-family: 'Poppins', sans-serif; transition: background .2s; }
.fssai-form-submit:hover { background: #1565c0; }
.fssai-form-note { font-size: 11px; color: #8a95b0; text-align: center; margin-top: 8px; }

/* ── Content area ── */
.fssai-intro { font-size: 14px; color: #4a5580; line-height: 1.85; margin-bottom: 24px; }
.fssai-intro strong { color: #0d47a1; }

/* ── Accordion ── */
.fssai-accordion { display: flex; flex-direction: column; gap: 8px; }
.fssai-acc-item { border: 1px solid #e4eaf5; border-radius: 8px; overflow: hidden; }
.fssai-acc-head { display: flex; justify-content: space-between; align-items: center; padding: 13px 16px; cursor: pointer; background: #f7f9ff; font-size: 14px; font-weight: 600; color: #0d1b3e; gap: 10px; transition: background .15s, color .15s; user-select: none; }
.fssai-acc-head:hover { background: #e8f0fe; color: #0d47a1; }
.fssai-acc-arrow { font-size: 15px; color: #0d47a1; flex-shrink: 0; transition: transform .22s; }
.fssai-acc-item.open .fssai-acc-head { background: #e8f0fe; color: #0d47a1; }
.fssai-acc-item.open .fssai-acc-arrow { transform: rotate(180deg); }
.fssai-acc-body { display: none; padding: 16px 18px; background: #fff; border-top: 1px solid #e4eaf5; font-size: 13.5px; color: #4a5580; line-height: 1.8; }
.fssai-acc-item.open .fssai-acc-body { display: block; }
.fssai-acc-body p { margin-bottom: 10px; }
.fssai-acc-body p:last-child { margin-bottom: 0; }
.fssai-acc-body ol, .fssai-acc-body ul { padding-left: 20px; margin-bottom: 10px; }
.fssai-acc-body li { margin-bottom: 7px; }
.fssai-acc-body strong { color: #0d1b3e; }

/* ── Plans inside accordion ── */
.fssai-plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.fssai-plan-box { background: #f7f9ff; border: 1.5px solid #e4eaf5; border-radius: 8px; padding: 16px; }
.fssai-plan-box.popular { border-color: #0d47a1; }
.fssai-plan-box h4 { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: #0d1b3e; margin-bottom: 6px; }
.fssai-plan-box .fssai-plan-price { font-size: 20px; font-weight: 700; color: #0d47a1; font-family: 'Poppins', sans-serif; margin-bottom: 12px; }
.fssai-plan-box .fssai-plan-price span { font-size: 12px; font-weight: 400; color: #8a95b0; }
.fssai-plan-box ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.fssai-plan-box li { font-size: 13px; color: #4a5580; display: flex; gap: 8px; align-items: flex-start; }
.fssai-plan-box li::before { content: '✓'; color: #2e7d32; font-weight: 700; flex-shrink: 0; }

@media (max-width: 768px) {
    .fssai-grid { grid-template-columns: 1fr; }
    .fssai-plans-grid { grid-template-columns: 1fr; }
    .fssai-page-title { font-size: 22px; }
}

/* ── Inner Page Responsive ── */
@media (max-width: 1024px) {
    .inner-hero-wrap { grid-template-columns: 1fr; }
    .inner-hero-img { display: none; }
    .plans-grid { grid-template-columns: 1fr 1fr; }
    .inner-content-grid { grid-template-columns: 1fr; }
    .inner-content-right { position: static; }
}
@media (max-width: 600px) {
    .inner-hero-content h1 { font-size: 26px; }
    .plans-grid { grid-template-columns: 1fr; }
    .docs-grid { grid-template-columns: 1fr; }
}
/* ── Doc Card Full Width ── */
.doc-card-full {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f7f9ff;
    border: 1px solid #e4eaf5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 14px;
    transition: box-shadow .2s;
}
.doc-card-full:hover {
    box-shadow: 0 4px 16px rgba(13,71,161,0.08);
    border-color: #c5d8fb;
}
.doc-card-full .doc-num {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #c5d8fb;
    flex-shrink: 0;
    line-height: 1;
    min-width: 36px;
}
.doc-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0d1b3e;
    margin-bottom: 10px;
}
.doc-points {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding: 0;
}
.doc-points li {
    font-size: 13.5px;
    color: #4a5580;
    line-height: 1.65;
    padding-left: 14px;
    position: relative;
}
.doc-points li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #0d47a1;
    font-weight: 700;
}
.doc-points li strong {
    color: #0d1b3e;
}