/* ============================================================
   B2B AMBASSADORS - Global Styles
   Brand: Ambassador Teal #1A7A7A | Insight Navy #1C2541
          Signal Red #CD1719 | Lumina Gold #F0B323
          Warm White #FAFAF7 | Slate Grey #5A6275
   ============================================================ */

/* ============ RESET & CUSTOM PROPERTIES ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --teal: #1A7A7A;
    --teal-light: #23918f;
    --teal-wash: #e8f4f4;
    --navy: #1C2541;
    --navy-light: #2a3560;
    --red: #CD1719;
    --red-dark: #a81315;
    --gold: #F0B323;
    --gold-light: #f5c84d;
    --warm-white: #FAFAF7;
    --slate: #5A6275;
    --white: #ffffff;
    --section-alt: #f4f5f3;
    --border: #e2e4e0;
    --shadow-sm: 0 2px 8px rgba(28, 37, 65, 0.06);
    --shadow-md: 0 4px 20px rgba(28, 37, 65, 0.1);
    --shadow-lg: 0 8px 40px rgba(28, 37, 65, 0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--slate);
    background: var(--warm-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--navy);
    line-height: 1.2;
}

h1 { font-size: 2.8rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; max-width: 75ch; }

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-light); }

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

ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: 0.5rem; }

/* ============ READING PROGRESS BAR ============ */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    z-index: 10000;
    transition: width 0.1s linear;
}

.progress-track {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(28, 37, 65, 0.08);
    z-index: 9999;
}

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 4px;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(28, 37, 65, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition);
}

.nav__logo {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.nav__logo span { color: var(--teal-light); }

.nav__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav__links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--white);
    background: rgba(26, 122, 122, 0.2);
}

.nav__cta {
    background: var(--teal) !important;
    color: var(--white) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-family: 'Montserrat', sans-serif !important;
    text-transform: uppercase;
    font-size: 0.75rem !important;
    letter-spacing: 0.05em;
}

.nav__cta:hover {
    background: var(--teal-light) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    background: none;
    border: none;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 2px;
}

.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ HERO SECTIONS ============ */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 40%, var(--teal) 100%);
    overflow: hidden;
    text-align: center;
}

.hero--short {
    min-height: 360px;
    padding: 100px 2rem 60px;
}

.hero__blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: blobFloat 20s ease-in-out infinite;
}

.hero__blob--1 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero__blob--2 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    bottom: -80px;
    left: -80px;
    animation-delay: -7s;
}

.hero__blob--3 {
    width: 250px;
    height: 250px;
    background: var(--red);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.12;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(10px, 10px) scale(1.02); }
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(240, 179, 35, 0.3);
    border-radius: 50px;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 2rem;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
}

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

.btn--primary:hover {
    background: var(--teal-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 122, 122, 0.3);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn--secondary:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn--outline:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--red {
    background: var(--red);
    color: var(--white);
}

.btn--red:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(205, 23, 25, 0.3);
}

.btn--dark {
    background: var(--navy);
    color: var(--white);
}

.btn--dark:hover {
    background: var(--navy-light);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.8rem;
}

/* ============ SECTIONS ============ */
.section {
    padding: 5rem 2rem;
}

.section--white { background: var(--white); }
.section--warm { background: var(--warm-white); }
.section--alt { background: var(--section-alt); }
.section--teal-wash { background: var(--teal-wash); }
.section--navy { background: var(--navy); color: rgba(255,255,255,0.85); }
.section--navy h2,
.section--navy h3 { color: var(--white); }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section__label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.section__title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.text-center { text-align: center; }
.text-center .section__title,
.text-center .section__subtitle,
.text-center p { margin-left: auto; margin-right: auto; }

/* ============ STATS BAR ============ */
.stats-bar {
    background: var(--navy);
    padding: 3.5rem 2rem;
}

.stats-bar__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-item__number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item__label {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    line-height: 1.4;
}

.stats-bar__source {
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    margin-top: 1.5rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}

/* ============ CARDS ============ */
.card-grid {
    display: grid;
    gap: 2rem;
}

.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

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

.card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.card__icon--teal { background: var(--teal-wash); color: var(--teal); }
.card__icon--navy { background: rgba(28, 37, 65, 0.08); color: var(--navy); }
.card__icon--gold { background: rgba(240, 179, 35, 0.12); color: var(--gold); }
.card__icon--red { background: rgba(205, 23, 25, 0.08); color: var(--red); }

.card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card__text {
    font-size: 0.925rem;
    color: var(--slate);
    margin-bottom: 1rem;
}

.card__link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.card__link:hover { color: var(--red); }

/* Pillar Cards (large) */
.pillar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.pillar-card--know::before { background: var(--navy); }
.pillar-card--show::before { background: var(--teal); }

.pillar-card:hover { border-color: var(--teal); transform: translateY(-4px); }

.pillar-card__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--slate);
    margin-bottom: 0.5rem;
}

.pillar-card__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.pillar-card__subtitle {
    font-size: 0.875rem;
    color: var(--teal);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1.25rem;
}

/* ============ TWO-COLUMN LAYOUTS ============ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

/* ============ JOURNEY / STEPS ============ */
.journey {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.journey::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--teal), var(--gold));
    z-index: 0;
}

.journey__step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.journey__number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1rem;
}

.journey__step:nth-child(1) .journey__number { background: var(--navy); }
.journey__step:nth-child(2) .journey__number { background: var(--navy-light); }
.journey__step:nth-child(3) .journey__number { background: var(--teal); }
.journey__step:nth-child(4) .journey__number { background: var(--gold); color: var(--navy); }

.journey__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.journey__text {
    font-size: 0.85rem;
    color: var(--slate);
    max-width: 240px;
    margin: 0 auto;
}

/* ============ TABLE ============ */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.925rem;
}

.data-table th {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: left;
    padding: 1rem;
    background: var(--navy);
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.data-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.data-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.data-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.data-table tr:hover td { background: var(--teal-wash); }

.data-table strong { color: var(--navy); font-weight: 600; }

/* ============ FAQ ACCORDION ============ */
.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color var(--transition);
}

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

.faq-item__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--teal-wash);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all var(--transition);
}

.faq-item.open .faq-item__icon {
    background: var(--teal);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
    padding: 0 0 0 0;
}

.faq-item.open .faq-item__answer {
    max-height: 500px;
    padding: 0 0 1.25rem 0;
}

.faq-item__answer p { color: var(--slate); font-size: 0.95rem; }

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 179, 35, 0.15), transparent 60%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.cta-section h2 { color: var(--white); max-width: 600px; margin: 0 auto 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 550px; margin: 0 auto 2rem; }

.cta-section .btn--primary { background: var(--gold); color: var(--navy); }
.cta-section .btn--primary:hover { background: var(--gold-light); color: var(--navy); }

/* ============ CONNECTING STATEMENT ============ */
.connecting-statement {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    color: var(--teal);
    padding: 2rem 0;
    max-width: 600px;
    margin: 0 auto;
}

/* ============ TESTIMONIAL ============ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card__text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.testimonial-card__author {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--teal);
}

/* ============ BIO CARDS ============ */
.bio-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    align-items: start;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    margin-bottom: 2.5rem;
}

.bio-card__photo {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--teal-wash), rgba(28, 37, 65, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal);
}

.bio-card__name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.bio-card__role {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--teal);
    margin-bottom: 1rem;
}

.bio-card__contact {
    font-size: 0.875rem;
    color: var(--slate);
    margin-top: 1rem;
}

.bio-card__contact a { font-weight: 600; }

/* ============ BLOG CARDS ============ */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

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

.blog-card__image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--teal-wash), rgba(240, 179, 35, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    font-weight: 700;
}

.blog-card__body { padding: 1.5rem; }

.blog-card__category {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.blog-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.blog-card__excerpt {
    font-size: 0.875rem;
    color: var(--slate);
    margin-bottom: 1rem;
}

.blog-card__meta {
    font-size: 0.75rem;
    color: var(--slate);
    opacity: 0.7;
}

/* ============ CONTACT FORM ============ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26, 122, 122, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ============ PRICING CARDS ============ */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}

.pricing-card:hover { border-color: var(--teal); transform: translateY(-4px); }

.pricing-card--featured {
    border-color: var(--teal);
    box-shadow: var(--shadow-md);
    position: relative;
}

.pricing-card--featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
}

.pricing-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.pricing-card__price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal);
    margin: 1rem 0;
}

.pricing-card__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--slate);
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 1.5rem 0;
}

.pricing-card__features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--slate);
    border-bottom: 1px solid var(--section-alt);
}

.pricing-card__features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--navy);
    padding: 4rem 2rem 1.5rem;
    color: rgba(255,255,255,0.7);
}

.footer__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.footer__brand p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    max-width: unset;
}

.footer__links h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer__links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.footer__links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    transition: color var(--transition);
    display: block;
    padding: 0.2rem 0;
}

.footer__links a:hover { color: var(--gold); }

.footer__partners h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer__partner-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer__partner-logo {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

.footer__bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
}

.footer__bottom a {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
}

.footer__bottom a:hover { color: var(--gold); }

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

/* ============ SCROLL REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============ PLACEHOLDER / COMING SOON ============ */
.placeholder-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: rgba(240, 179, 35, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(240, 179, 35, 0.25);
}

/* ============ MISC UTILITIES ============ */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .nav__links { display: none; }
    .nav__hamburger { display: flex; }

    .nav__links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 1rem 2rem 2rem;
        gap: 0;
        z-index: 9997;
    }

    .nav__links.open a {
        padding: 0.75rem 1rem;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid--3 { grid-template-columns: 1fr; }
    .card-grid--2 { grid-template-columns: 1fr; }
    .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 2rem; }
    .split--reverse { direction: ltr; }
    .journey { grid-template-columns: repeat(2, 1fr); }
    .journey::before { display: none; }

    .footer__grid { grid-template-columns: 1fr; }
    .bio-card { grid-template-columns: 1fr; text-align: center; }
    .bio-card__photo { margin: 0 auto; }

    h1 { font-size: 2.25rem; }
    .hero h1 { font-size: 2.5rem; }
    .section__title { font-size: 1.75rem; }
}

@media (max-width: 768px) {
    .hero { min-height: 420px; padding: 100px 1.5rem 60px; }
    .hero--short { min-height: 300px; }
    .section { padding: 3.5rem 1.5rem; }
    .stats-bar { padding: 2.5rem 1.5rem; }
    .stats-bar__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .stat-item__number { font-size: 2.25rem; }
    .card-grid--4 { grid-template-columns: 1fr; }
    .journey { grid-template-columns: 1fr; }
    .data-table { font-size: 0.825rem; }
    .data-table th, .data-table td { padding: 0.625rem; }
    h1 { font-size: 1.875rem; }
    .hero h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .section__title { font-size: 1.5rem; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .footer__legal { justify-content: center; }
}

@media (max-width: 480px) {
    .hero { padding: 90px 1rem 50px; }
    .section { padding: 2.5rem 1rem; }
    .hero__buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .nav { padding: 0 1rem; }
    .stats-bar__grid { grid-template-columns: 1fr; }
}
