/* ════════════════════════════════════════════════════════════
   GROWTH PARTNER PRO LANDING PAGE - BRAND SYSTEM
   ════════════════════════════════════════════════════════════ */

:root {
    --primary-blue: #003B5C;
    --primary-blue-light: #005086;
    --primary-gold: #F2A900;
    --primary-gold-dark: #E27D22;
    --teal: #1ca2bd;
    --teal-dark: #0c7b91;
    --teal-light: #e6f6f9;
    --text-main: #2C3E50;
    --text-muted: #6C7A89;
    --bg-light: #F4F7F6;
    --bg-cream: #FAF9F6;
    --white: #FFFFFF;
    --border-color: #E0E6ED;
    --gold: #F2A900;
    --green: #10B981;
    --red: #EF4444;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 40px rgba(0,59,92,0.12);
    
    /* Animation */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Common Section Styling */
section {
    padding: 100px 0;
    position: relative;
}

.section-head {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-head h2 {
    font-size: 2.75rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-top: 10px;
    letter-spacing: -0.5px;
}

.section-sub {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-top: 15px;
}

.section-closing {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 40px;
}

/* Eyebrows */
.eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.eyebrow-light {
    color: var(--primary-gold);
}

.eyebrow-dark {
    color: var(--teal-dark);
}

.eyebrow-gold {
    color: var(--primary-gold);
}

/* Typography Helpers */
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.highlight { color: var(--primary-gold); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--primary-blue-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background-color: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.btn-gold:hover {
    background-color: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    margin-top: 20px;
    background-color: #f1f4f8;
    color: var(--primary-blue);
}

.btn-full:hover {
    background-color: #e2e8f0;
}

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */

.header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition);
}

.header.scrolled .header-container {
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.header.scrolled .nav-logo {
    height: 50px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a:not(.btn) {
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.95rem;
}

.nav a:not(.btn):hover {
    color: var(--teal-dark);
}

/* ════════════════════════════════════════════════════════════
   S1: HERO
   ════════════════════════════════════════════════════════════ */

.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at 85% 15%, rgba(242, 169, 0, 0.15) 0%, rgba(0, 59, 92, 0) 60%),
                linear-gradient(135deg, #001B2F 0%, #003B5C 50%, #0c5675 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 3.85rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-highlight {
    background: linear-gradient(120deg, var(--primary-gold) 0%, #ffeaa7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-body {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 750px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.trust-strip {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    border-radius: 100px;
    width: fit-content;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.trust-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* ════════════════════════════════════════════════════════════
   S2: OPPORTUNITY & GAP
   ════════════════════════════════════════════════════════════ */

.gap-section {
    background-color: var(--bg-cream);
}

.gap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.gap-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.gap-card-emoji {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gap-card h3 {
    font-size: 1.75rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.gap-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.stat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stat-pill {
    background-color: #E2ECE9;
    color: var(--teal-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.gap-card--risk {
    border-top: 5px solid var(--primary-gold);
}

.gap-card--green {
    border-top: 5px solid var(--green);
}

/* ════════════════════════════════════════════════════════════
   S3: WHO WE ARE
   ════════════════════════════════════════════════════════════ */

.who-section {
    background: linear-gradient(135deg, #001B2F 0%, #002D4A 100%);
    color: var(--white);
}

.who-headline {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-top: 10px;
    margin-bottom: 25px;
}

.who-body {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin-bottom: 50px;
}

.pull-quote {
    font-size: 1.65rem;
    font-style: italic;
    color: #ffeaa7;
    border-left: 4px solid var(--primary-gold);
    padding-left: 30px;
    margin-bottom: 60px;
    max-width: 800px;
    line-height: 1.4;
    position: relative;
}

.segment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.segment-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 24px;
    transition: var(--transition);
}

.segment-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.segment-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.segment-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.segment-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   S4: WHAT'S INCLUDED
   ════════════════════════════════════════════════════════════ */

.included-section {
    background-color: var(--bg-cream);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.included-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.inc-tag {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.tag-teal { background-color: #E2ECE9; color: var(--teal-dark); }
.tag-blue { background-color: #E1EDF2; color: var(--primary-blue-light); }
.tag-gold { background-color: #FCF4E0; color: #B37D00; }

.included-card h3 {
    font-size: 1.35rem;
    color: var(--primary-blue);
    margin-top: 15px;
    margin-bottom: 12px;
}

.included-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   S5: CONSULTING PROGRAM
   ════════════════════════════════════════════════════════════ */

.consulting-section {
    background-color: var(--white);
}

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.consulting-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
}

.consulting-card:hover {
    background-color: var(--white);
    border-color: var(--teal);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.consulting-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.consulting-card h4 {
    font-size: 1.15rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.consulting-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════
   S6: TRAINING SERVICES
   ════════════════════════════════════════════════════════════ */

.training-section {
    background-color: var(--bg-light);
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.training-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.track-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold-dark);
    background-color: #FCF4E0;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.training-card h4 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.training-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   S7: BROCHURE DOWNLOAD
   ════════════════════════════════════════════════════════════ */

.brochure-section {
    background: linear-gradient(135deg, #001B2F 0%, #002D4A 100%);
    color: var(--white);
    overflow: hidden;
}

.brochure-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.brochure-content h2 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.brochure-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.7;
}

.brochure-visual {
    display: flex;
    justify-content: center;
}

.brochure-doc-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    width: 280px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.doc-icon {
    margin-bottom: 25px;
}

.doc-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.doc-line {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.doc-line--wide { width: 100%; }
.doc-line--mid { width: 75%; margin: 0 auto; }

.doc-label {
    display: block;
    font-size: 0.75rem;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════
   S8: CHOOSE YOUR PACKAGE & ACCORDION MATRIX
   ════════════════════════════════════════════════════════════ */

.pricing-section {
    background-color: var(--bg-cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--white);
    border-radius: 18px;
    padding: 40px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-card.premium {
    border-color: var(--primary-gold);
    background: linear-gradient(180deg, #fff 0%, #fffdf4 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.card-header h3 {
    font-size: 1.15rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--primary-blue);
}

.currency {
    font-size: 1.15rem;
    font-weight: 600;
    margin-right: 4px;
}

.amount {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.features-list {
    list-style: none;
    flex-grow: 1;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '✓';
    color: var(--green);
    font-weight: bold;
    margin-right: 8px;
}

.features-list li.disabled {
    color: #9CA3AF;
}

.features-list li.disabled::before {
    content: '—';
    color: #9CA3AF;
}

.features-list li .sub-text {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: auto;
}

.disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Comparison Matrix Table */
.comparison-wrap {
    margin-top: 60px;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.matrix-title {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.matrix-scroll {
    overflow-x: auto;
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.matrix-table th, .matrix-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.matrix-table th {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    font-weight: 700;
}

.matrix-table th small {
    font-weight: 400;
    color: var(--text-muted);
}

.matrix-table tbody tr:hover {
    background-color: var(--bg-light);
}

.matrix-table td:not(:first-child) {
    text-align: center;
    font-weight: 500;
}

.matrix-table .col-popular {
    background-color: rgba(28, 162, 189, 0.03);
}

.matrix-table .col-gold {
    background-color: rgba(242, 169, 0, 0.02);
}

/* ════════════════════════════════════════════════════════════
   S9: LEAD FORM (GET STARTED)
   ════════════════════════════════════════════════════════════ */

.lead-section {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    color: var(--white);
}

.lead-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.lead-copy h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
}

.lead-copy p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.lead-bullets {
    list-style: none;
}

.lead-bullets li {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 45px;
    box-shadow: var(--shadow-lg);
    border: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    background-color: var(--bg-light);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--teal);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(28, 162, 189, 0.15);
}

textarea.form-control {
    resize: vertical;
}

/* ════════════════════════════════════════════════════════════
   S10: PAYMENT
   ════════════════════════════════════════════════════════════ */

.payment-section {
    background-color: var(--white);
}

.payment-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.payment-card {
    background: var(--white);
    border-radius: 20px;
    padding: 45px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.payment-card--alt {
    background-color: var(--bg-light);
}

.payment-card-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-card-head h3 {
    font-size: 1.35rem;
    color: var(--primary-blue);
}

.bank-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
    font-size: 0.95rem;
}

.bank-row span {
    color: var(--text-muted);
}

.bank-row strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.bank-row.amount-row {
    border-bottom: none;
    padding: 15px;
    background-color: #E2ECE9;
    border-radius: 8px;
    margin-top: 10px;
}

.bank-row.amount-row span {
    color: var(--teal-dark);
    font-weight: 700;
}

.bank-row.amount-row strong {
    color: var(--teal-dark);
    font-size: 1.25rem;
}

.qr-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.qr-image {
    width: 160px;
    height: 160px;
    display: block;
}

/* ════════════════════════════════════════════════════════════
   S11: FAQ
   ════════════════════════════════════════════════════════════ */

.faq-section {
    background-color: var(--bg-cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    box-shadow: var(--shadow-sm);
    border-color: var(--teal);
}

.faq-q {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: var(--transition);
}

.faq-q:hover {
    color: var(--teal-dark);
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--teal);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-item.open .faq-a {
    max-height: 200px; /* Big enough for QA content */
}

.faq-a p {
    padding: 0 30px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   S12: FOOTER
   ════════════════════════════════════════════════════════════ */

.footer {
    background-color: #001B2F;
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h3, .footer-info h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.office-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.office-icon {
    color: var(--primary-gold);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.office-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-contact-link {
    color: rgba(255,255,255,0.7);
}

.footer-contact-link:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    background-color: #001220;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFF;
    border-radius: 14px;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Inner Pages General (Services, Terms) */
.inner-page .header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.nav a.active {
    color: var(--teal);
    font-weight: 700;
}

.page-header {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, rgba(244,247,246,1) 0%, rgba(228,235,241,1) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.page-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-category {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.service-category.full-width {
    grid-column: 1 / -1;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-category h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.styled-list {
    list-style: none;
}

.styled-list li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.styled-list li:last-child {
    border-bottom: none;
}

.styled-list li::before {
    content: '→';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    top: 10px;
    font-weight: bold;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.terms-list {
    padding-left: 20px;
    list-style: none;
}

.terms-list li {
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.terms-list li strong {
    color: var(--primary-blue);
    display: block;
    font-size: 1.15rem;
    margin-bottom: 5px;
}

/* Hamburger Menu Toggle - hidden on desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN BREAKPOINTS
   ════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.25rem;
    }
    
    .segment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consulting-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lead-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .section-head h2 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 140px 0 70px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-body {
        font-size: 1.15rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-strip {
        flex-direction: column;
        gap: 15px;
        border-radius: 20px;
        padding: 20px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .trust-divider {
        width: 100%;
        height: 1px;
    }
    
    .gap-grid {
        grid-template-columns: 1fr;
    }
    
    .gap-card {
        padding: 30px;
    }
    
    .who-headline {
        font-size: 2.2rem;
    }
    
    .pull-quote {
        font-size: 1.3rem;
    }
    
    .segment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .consulting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .training-grid {
        grid-template-columns: 1fr;
    }
    
    .brochure-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-card {
        padding: 30px 20px;
    }
    
    .faq-q {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-a p {
        padding: 0 20px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Navigation Hamburger */
    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px 30px 30px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-color);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        font-size: 1rem;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .nav a.btn {
        margin-top: 10px;
        text-align: center;
        border-bottom: none;
    }
    
    /* Services Inner Page */
    .page-header {
        padding: 120px 20px 40px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .content-section {
        padding: 50px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .service-category {
        padding: 28px 20px;
    }
    .category-icon {
        font-size: 2.2rem;
    }
    .service-category h2 {
        font-size: 1.25rem;
    }
    
    /* Terms Inner Page */
    .terms-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        height: 80px;
    }
    
    .nav-logo {
        height: 55px;
    }
    
    .hero h1 {
        font-size: 2.1rem;
    }
    
    .segment-grid {
        grid-template-columns: 1fr;
    }
    
    .consulting-grid {
        grid-template-columns: 1fr;
    }
    
    .matrix-table th, .matrix-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
    
    .footer {
        padding: 50px 0 0;
    }
}
