/* ===================================
   CONNIE KADANSKY - EXCEPTIONAL SALES
   Style inspired by colinscotland.com
   =================================== */

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

:root {
    --color-bg: #ffffff;
    --color-bg-dark: #714C9A;
    --color-text: #1a1a1a;
    --color-text-light: #f5f5f5;
    --color-text-muted: #6b6b6b;
    --color-text-muted-light: #e0d4ec;
    --color-accent: #714C9A;
    --color-border: #e5e5e5;
    --color-border-dark: #8a6aad;
    --color-card-bg: #5e3d85;
    --color-cta-bg: #5e3d85;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --container-max: 1200px;
    --container-padding: 2rem;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    opacity: 0.7;
}

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

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }

em {
    font-family: var(--font-serif);
    font-style: italic;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.btn--primary {
    background-color: var(--color-accent);
    color: var(--color-text-light);
}

.btn--primary:hover {
    background-color: #5e3d85;
}

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

.btn--outline:hover {
    background-color: var(--color-accent);
    color: var(--color-text-light);
}

.btn--white {
    background-color: #ffffff;
    color: var(--color-text);
}

.btn--white:hover {
    background-color: #f0f0f0;
}

.btn--outline-white {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
}

.btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition);
}

.header--scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--color-text);
    opacity: 1;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-sans);
}

.nav-dropdown__trigger svg {
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown__trigger svg,
.nav-dropdown.active .nav-dropdown__trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.5rem;
    min-width: 200px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.active .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown__link {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-dropdown__link:hover {
    background: #f8f5fb;
    color: var(--color-text);
    opacity: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition);
}

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

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

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

/* ===================================
   HERO
   =================================== */
.hero {
    padding: 10rem 0 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.hero__title {
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hero__subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    font-style: italic;
    line-height: 1.6;
}

.hero__description {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero__ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__stat-badge {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.hero__stat-number {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-text);
    letter-spacing: -0.04em;
}

.hero__stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.hero__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===================================
   FEATURED
   =================================== */
.featured {
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.featured__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.featured__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.featured__logo-item {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-muted);
    opacity: 0.4;
    letter-spacing: 0.02em;
}

/* ===================================
   SECTIONS
   =================================== */
.section {
    padding: 7rem 0;
}

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

.section--dark p {
    color: var(--color-text-muted-light);
}

.section--dark .section__eyebrow {
    color: var(--color-text-muted-light);
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.section__eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.section__title {
    margin-bottom: 1rem;
}

.section--dark .section__title {
    color: var(--color-text-light);
}

.section__subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ===================================
   CONTENT GRID (What is section)
   =================================== */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-grid__heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.quote {
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid rgba(255,255,255,0.2);
}

.quote p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* Concept List (numbered items) */
.concept-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.concept-list__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.concept-list__number {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted-light);
    min-width: 2rem;
    padding-top: 0.15rem;
}

.concept-list__item h4 {
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.concept-list__item p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===================================
   STATS
   =================================== */
.stats {
    padding: 5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats__number {
    display: block;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 0.75rem;
}

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

/* ===================================
   ABOUT
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-grid__placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    font-weight: 700;
    color: #c0c0c0;
}

.about-grid__content .section__eyebrow {
    color: var(--color-text-muted);
}

.about-grid__content .section__title {
    margin-bottom: 1.5rem;
}

.about-grid__content p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about-grid__ctas {
    margin-top: 2rem;
}

/* ===================================
   CARDS (Services)
   =================================== */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border-dark);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all var(--transition);
}

.card:hover {
    border-color: #a07cc5;
    transform: translateY(-4px);
}

.card__number {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted-light);
    display: block;
    margin-bottom: 1.5rem;
}

.card__title {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.card__description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: all var(--transition);
}

.card__link:hover {
    opacity: 1;
    letter-spacing: 0.02em;
}

/* ===================================
   TIMELINE
   =================================== */
.timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline__item {
    display: flex;
    gap: 2.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: flex-start;
}

.timeline__item:last-child {
    border-bottom: none;
}

.timeline__year {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    min-width: 80px;
    padding-top: 0.15rem;
}

.timeline__content h4 {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.timeline__content p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===================================
   FAQ
   =================================== */
.faq {
    max-width: 760px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--color-border);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    transition: color var(--transition);
    gap: 1rem;
}

.faq__question:hover {
    color: var(--color-accent);
}

.faq__icon {
    color: var(--color-text-muted);
}

/* Dark variant for FAQ on dark backgrounds */
.section--dark .faq__item {
    border-bottom-color: var(--color-border-dark);
}

.section--dark .faq__question {
    color: var(--color-text-light);
}

.section--dark .faq__question:hover {
    color: #e0d4ec;
}

.section--dark .faq__icon {
    color: var(--color-text-muted-light);
}

.faq__icon {
    font-size: 1.25rem;
    font-weight: 300;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq__item.active .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq__answer p {
    font-size: 0.9375rem;
    line-height: 1.8;
}

.faq__support {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9375rem;
    color: var(--color-text-muted-light);
}

.faq__support a {
    color: var(--color-text-light);
    font-weight: 500;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: 8rem 0;
    background: var(--color-bg-dark);
    text-align: center;
}

.cta-section__inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.cta-section__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted-light);
    margin-bottom: 2.5rem;
}

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

/* ===================================
   NEWSLETTER
   =================================== */
.newsletter {
    padding: 4rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.newsletter__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter__subtitle {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.newsletter__form {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.newsletter__input {
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    width: 280px;
    outline: none;
    transition: border-color var(--transition);
}

.newsletter__input:focus {
    border-color: var(--color-text);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 5rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer__brand .logo-text {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer__description {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--color-text-muted-light);
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    color: var(--color-text-muted-light);
    transition: color var(--transition);
}

.footer__social a:hover {
    color: var(--color-text-light);
    opacity: 1;
}

.footer__links h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    color: var(--color-text-light);
}

.footer__links a,
.footer__links p {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted-light);
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--color-text-light);
    opacity: 1;
}

.footer__address {
    line-height: 1.6;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-dark);
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--color-text-muted-light);
    margin-bottom: 0;
}

.footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer__bottom-links a {
    font-size: 0.8125rem;
    color: var(--color-text-muted-light);
}

/* ===================================
   PAGE HERO (inner pages)
   =================================== */
.page-hero {
    padding: 10rem 0 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .container {
    max-width: 800px;
}

.page-hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.page-hero__title {
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.page-hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 640px;
}

.page-hero__ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ===================================
   CONTENT SPLIT (two column)
   =================================== */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-split__left h2,
.content-split__right h2,
.content-split__right h3 {
    margin-bottom: 1rem;
}

.content-split__left p,
.content-split__right p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* ===================================
   VIDEO PLACEHOLDER
   =================================== */
.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-placeholder__inner {
    text-align: center;
}

.video-placeholder__icon {
    font-size: 3rem;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.5rem;
}

.video-placeholder__inner p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ===================================
   TYPES GRID (16 types)
   =================================== */
.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.type-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border-dark);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all var(--transition);
}

.type-card:hover {
    border-color: #a07cc5;
    transform: translateY(-2px);
}

.type-card__number {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted-light);
    display: block;
    margin-bottom: 0.75rem;
}

.type-card__title {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.type-card__desc {
    font-size: 0.8125rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===================================
   BIG QUOTE
   =================================== */
.big-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.big-quote blockquote p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.big-quote--light blockquote p {
    color: var(--color-text-light);
}

.big-quote__author {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    display: block;
}

.big-quote--light .big-quote__author {
    color: var(--color-text-muted-light);
    font-family: var(--font-sans);
    font-style: normal;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   SERVICE LIST (numbered services)
   =================================== */
.service-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: flex-start;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item__number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    min-width: 2rem;
    padding-top: 0.3rem;
}

.service-item__content h3 {
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.service-item__content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* ===================================
   CHECK LIST
   =================================== */
.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.check-list--light li {
    color: var(--color-text-muted-light);
}

.check-list--light li::before {
    color: var(--color-text-light);
}

/* ===================================
   HIGHLIGHT BOX
   =================================== */
.highlight-box {
    background: #f8f5fb;
    border: 1px solid #e8ddf2;
    border-radius: 12px;
    padding: 2rem;
}

.highlight-box h3 {
    margin-bottom: 0.5rem;
}

/* ===================================
   CARDS VARIANTS
   =================================== */
.cards--4 {
    grid-template-columns: repeat(2, 1fr);
}

.card--light {
    background: #f8f5fb;
    border: 1px solid #e8ddf2;
}

.card--light:hover {
    border-color: var(--color-accent);
}

.card__number--dark {
    color: var(--color-accent);
}

.card__title--dark {
    color: var(--color-text);
}

.card__description--dark {
    color: var(--color-text-muted);
}

/* ===================================
   SECTION NOTE
   =================================== */
.section-note {
    max-width: 760px;
    margin: 3rem auto 0;
    text-align: center;
}

.section-note p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* ===================================
   NOT LIST (misconceptions)
   =================================== */
.not-list p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.not-list__x {
    color: #e74c3c;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ===================================
   CONCEPT LIST DARK VARIANT
   =================================== */
.concept-list--dark .concept-list__item h4 {
    color: var(--color-text);
}

.concept-list__number--dark {
    color: var(--color-accent);
}

/* ===================================
   QUOTE DARK VARIANT
   =================================== */
.quote--dark {
    border-left-color: var(--color-accent);
    margin: 1.5rem 0;
}

.quote--dark p {
    color: var(--color-text) !important;
    font-size: 1.125rem;
}

/* ===================================
   CLIENT LOGOS
   =================================== */
.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-muted);
    opacity: 0.5;
}

/* ===================================
   CERTIFICATION GRID
   =================================== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.cert-item {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border-dark);
    border-radius: 12px;
    padding: 2rem 1rem;
}

.cert-item h4 {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.cert-item p {
    font-size: 0.8125rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ===================================
   PODCAST LIST
   =================================== */
.podcast-list {
    max-width: 800px;
    margin: 0 auto;
}

.podcast-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition);
}

.podcast-item:first-child {
    border-top: 1px solid var(--color-border);
}

.podcast-item:hover {
    opacity: 1;
    padding-left: 0.5rem;
}

.podcast-item__date {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
    min-width: 80px;
    flex-shrink: 0;
}

.podcast-item__content {
    flex: 1;
}

.podcast-item__content h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.podcast-item__content p {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--color-text-muted);
}

.podcast-item__arrow {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.podcast-item:hover .podcast-item__arrow {
    transform: translateX(4px);
}

/* ===================================
   CONTACT
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.contact-grid__form h2 {
    margin-bottom: 0.5rem;
}

.contact-grid__form > p {
    margin-bottom: 2rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form__field {
    margin-bottom: 1rem;
}

.contact-form__field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color var(--transition);
    background: #fff;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-color: var(--color-accent);
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-card {
    background: #f8f5fb;
    border: 1px solid #e8ddf2;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-info-card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.contact-info-item {
    margin-bottom: 1.25rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item h4 {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.contact-info-item a,
.contact-info-item p {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
}

/* ===================================
   STEPS (SPQ Gold)
   =================================== */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
    padding: 0 1.5rem;
}

.step__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0 auto 1.25rem;
}

.step__title {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.step__description {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.step__divider {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin-top: 28px;
    flex-shrink: 0;
}

/* ===================================
   STAT CAPTION
   =================================== */
.stat-caption {
    text-align: center;
    font-size: 0.9375rem;
    margin-top: 1.5rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.hero__stat-badge--large {
    width: 220px;
    height: 220px;
    margin: 0 auto;
}

/* ===================================
   HEADER PHONE
   =================================== */
.header__phone {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.header__phone:hover {
    color: var(--color-text);
    opacity: 1;
}

/* ===================================
   NAV ACTIVE STATE
   =================================== */
.nav-link--active {
    color: var(--color-text);
    font-weight: 500;
}

/* ===================================
   FAQ SUPPORT LIGHT (for light bg)
   =================================== */
.faq__support-light {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

.faq__support-light a {
    color: var(--color-accent);
    font-weight: 500;
}

/* ===================================
   ANIMATIONS (scroll reveal)
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__visual {
        order: -1;
    }

    .hero__stat-badge {
        width: 200px;
        height: 200px;
    }

    .hero__stat-number {
        font-size: 3.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-grid__placeholder {
        max-width: 400px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .cards--4 {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .step__divider {
        width: 1px;
        height: 40px;
        margin: 0;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
    }

    .header__nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1.5rem;
    }

    .header__nav.active {
        display: flex;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    .hamburger {
        display: flex;
    }

    .header__actions .btn,
    .header__phone {
        display: none;
    }

    .nav-dropdown__menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        padding: 0 0 0 1rem;
        min-width: auto;
        display: none;
    }

    .nav-dropdown.active .nav-dropdown__menu {
        display: block;
    }

    .nav-dropdown__trigger {
        font-size: 1.25rem;
    }

    .nav-dropdown__link {
        font-size: 1.0625rem;
        padding: 0.5rem 0;
    }

    .nav-dropdown__link:hover {
        background: transparent;
    }

    .hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }

    .hero__ctas {
        flex-direction: column;
    }

    .hero__ctas .btn {
        text-align: center;
        justify-content: center;
    }

    .page-hero {
        padding: 8rem 0 3rem;
    }

    .page-hero__ctas {
        flex-direction: column;
    }

    .section {
        padding: 4rem 0;
    }

    .section__header {
        margin-bottom: 3rem;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .cards--4 {
        grid-template-columns: 1fr;
    }

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

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .podcast-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .podcast-item__arrow {
        display: none;
    }

    .service-item {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter__inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter__form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter__input {
        width: 100%;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cta-section {
        padding: 5rem 0;
    }

    .cta-section__buttons {
        flex-direction: column;
        align-items: center;
    }

    .featured__logos {
        gap: 1.5rem;
    }

    .client-logos {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero__stat-badge {
        width: 160px;
        height: 160px;
    }

    .hero__stat-number {
        font-size: 2.5rem;
    }
}
