/* ============================================================
   Kit Independência Digital — Design System & Styles
   Aesthetic: Warm Digital Confidence (Organic + Refined)
   ============================================================ */

/* --- Design Tokens --- */
:root {
    /* Colors */
    --orange: #E8732A;
    --orange-hover: #D4621E;
    --orange-light: #FFF0E6;
    --navy: #1B2A4A;
    --navy-light: #2C3E6B;
    --green: #34A853;
    --green-light: #E8F5E9;
    --warm-white: #FFF8F2;
    --blue-tint: #F0F4FF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --white: #FFFFFF;
    --red-light: #FEE2E2;
    --red: #DC2626;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --fs-hero: clamp(2rem, 5vw, 3.5rem);
    --fs-h2: clamp(1.5rem, 3.5vw, 2.5rem);
    --fs-h3: clamp(1.2rem, 2.5vw, 1.5rem);
    --fs-h4: clamp(1rem, 2vw, 1.25rem);
    --fs-body: clamp(1rem, 1.5vw, 1.125rem);
    --fs-small: 0.875rem;
    --fs-xs: 0.75rem;

    /* Spacing (8pt grid) */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Borders & Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(27, 42, 74, 0.06);
    --shadow-md: 0 4px 16px rgba(27, 42, 74, 0.08);
    --shadow-lg: 0 8px 32px rgba(27, 42, 74, 0.12);
    --shadow-xl: 0 16px 48px rgba(27, 42, 74, 0.16);
    --shadow-glow: 0 0 40px rgba(232, 115, 42, 0.2);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;

    /* Z-index scale */
    --z-base: 1;
    --z-dropdown: 10;
    --z-sticky: 20;
    --z-overlay: 30;
    --z-modal: 50;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--space-20) 0;
}

.section--alt {
    background-color: var(--warm-white);
}

.section--blue {
    background-color: var(--blue-tint);
}

.section--navy {
    background-color: var(--navy);
    color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section-header h2 {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-4);
}

.section-header p {
    color: var(--gray-600);
    font-size: var(--fs-body);
}

.section--navy .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.text-orange {
    color: var(--orange);
}

.text-green {
    color: var(--green);
}

.text-navy {
    color: var(--navy);
}

.highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(232, 115, 42, 0.15) 60%);
    padding: 0 var(--space-1);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: var(--space-4) 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow var(--transition-base), padding var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: var(--space-3) 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.navbar__logo svg {
    width: 32px;
    height: 32px;
    color: var(--orange);
}

.navbar__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    white-space: nowrap;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--fs-small);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    transition: background var(--transition-base), transform var(--transition-fast);
}

.navbar__cta:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
}

.navbar__cta:active {
    transform: translateY(0);
}

/* --- Hero Section --- */
.hero {
    padding-top: calc(80px + var(--space-16));
    padding-bottom: var(--space-20);
    background: linear-gradient(165deg, var(--warm-white) 0%, var(--white) 40%, var(--blue-tint) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 115, 42, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.hero__content {
    max-width: 560px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--orange-light);
    color: var(--orange);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--fs-small);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.hero__badge svg {
    width: 18px;
    height: 18px;
}

.hero__title {
    font-size: var(--fs-hero);
    color: var(--navy);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--gray-600);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--blue-tint) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.hero__floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    font-size: var(--fs-small);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.hero__floating-card--top {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.hero__floating-card--bottom {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

.hero__floating-card svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    white-space: nowrap;
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
}

.btn--primary {
    background: var(--orange);
    color: var(--white);
    padding: var(--space-4) var(--space-8);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    box-shadow: 0 4px 20px rgba(232, 115, 42, 0.3);
}

.btn--primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232, 115, 42, 0.4);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--large {
    padding: var(--space-5) var(--space-10);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    padding: var(--space-4) var(--space-8);
    font-size: var(--fs-body);
    border: 2px solid var(--gray-200);
}

.btn--outline:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn--white {
    background: var(--white);
    color: var(--orange);
    padding: var(--space-4) var(--space-8);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn svg {
    width: 20px;
    height: 20px;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(232, 115, 42, 0.3);
    }

    50% {
        box-shadow: 0 4px 30px rgba(232, 115, 42, 0.5);
    }
}

.btn--pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* --- Pain Points Section --- */
.pain-points__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.pain-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid var(--gray-200);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    cursor: default;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pain-card__icon {
    width: 56px;
    height: 56px;
    background: var(--red-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.pain-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--red);
}

.pain-card__title {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-3);
}

.pain-card__text {
    color: var(--gray-600);
    font-size: var(--fs-small);
    line-height: 1.7;
}

.pain-points__footer {
    text-align: center;
    margin-top: var(--space-12);
    font-size: var(--fs-h3);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
}

.pain-points__footer span {
    color: var(--orange);
}

/* --- Solution Section --- */
.solution__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.solution__text h2 {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-6);
}

.solution__text>p {
    color: var(--gray-600);
    margin-bottom: var(--space-8);
}

.solution__checklist {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.solution__check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--fs-body);
}

.solution__check-item svg {
    width: 24px;
    height: 24px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.solution__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution__image-card {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(145deg, var(--blue-tint) 0%, var(--warm-white) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    box-shadow: var(--shadow-lg);
}

.solution__image-card img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.solution__image-card p {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-h3);
    color: var(--navy);
    text-align: center;
}

/* --- Modules Section --- */
.modules__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-6);
}

.module-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.module-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.module-card:nth-child(1)::before {
    background: var(--orange);
}

.module-card:nth-child(2)::before {
    background: var(--navy);
}

.module-card:nth-child(3)::before {
    background: var(--green);
}

.module-card:nth-child(4)::before {
    background: #8B5CF6;
}

.module-card__number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1;
    opacity: 0.08;
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
}

.module-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
}

.module-card:nth-child(1) .module-card__icon {
    background: var(--orange-light);
    color: var(--orange);
}

.module-card:nth-child(2) .module-card__icon {
    background: var(--blue-tint);
    color: var(--navy);
}

.module-card:nth-child(3) .module-card__icon {
    background: var(--green-light);
    color: var(--green);
}

.module-card:nth-child(4) .module-card__icon {
    background: #EDE9FE;
    color: #8B5CF6;
}

.module-card__icon svg {
    width: 28px;
    height: 28px;
}

.module-card__title {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-2);
}

.module-card__subtitle {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--fs-small);
    color: var(--gray-500);
    margin-bottom: var(--space-3);
}

.module-card__text {
    color: var(--gray-600);
    font-size: var(--fs-small);
    line-height: 1.7;
}

/* --- Bonus Section --- */
.bonus__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
}

.bonus-card {
    background: linear-gradient(145deg, var(--warm-white) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 2px dashed var(--orange);
    text-align: center;
    position: relative;
    transition: transform var(--transition-base);
}

.bonus-card:hover {
    transform: translateY(-4px);
}

.bonus-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-xs);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-card__icon {
    width: 64px;
    height: 64px;
    margin: var(--space-4) auto var(--space-5);
    background: var(--orange-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--orange);
}

.bonus-card__title {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-2);
}

.bonus-card__text {
    color: var(--gray-600);
    font-size: var(--fs-small);
}

/* --- Benefits Section --- */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.benefit-item__icon {
    width: 48px;
    height: 48px;
    background: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item__icon svg {
    width: 24px;
    height: 24px;
    color: var(--green);
}

.benefit-item__title {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-1);
}

.benefit-item__text {
    color: var(--gray-600);
    font-size: var(--fs-small);
}

/* --- Differentials Section --- */
.differentials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.differential-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-6);
}

.differential-item__icon {
    width: 48px;
    height: 48px;
    background: var(--orange-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.differential-item__icon svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
}

.differential-item__title {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-1);
}

.differential-item__text {
    color: var(--gray-600);
    font-size: var(--fs-small);
}

/* --- CTA Section --- */
.cta-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 115, 42, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 168, 83, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    font-size: var(--fs-h2);
    margin-bottom: var(--space-4);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-body);
    max-width: 600px;
    margin: 0 auto var(--space-4);
}

.cta-section__price {
    font-family: var(--font-display);
    margin-bottom: var(--space-8);
}

.cta-section__price .price-label {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: var(--space-2);
}

.cta-section__price .price-from {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    display: block;
    margin-bottom: var(--space-2);
}

.cta-section__price .price-from s {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    text-decoration-color: #DC2626;
    text-decoration-thickness: 2px;
}

.cta-section__price .price-installments {
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin-bottom: var(--space-1);
}

.cta-section__price .price-cash {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    display: block;
    margin-top: var(--space-2);
}

.cta-section__price .price-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
}

.cta-section__price .price-value span {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    vertical-align: super;
}

.cta-section__price .price-cents {
    font-size: clamp(1.5rem, 3vw, 2rem);
    vertical-align: baseline;
}

.cta-section__payment-info {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.55);
    margin-top: var(--space-4);
    letter-spacing: 0.02em;
}

/* --- Testimonials --- */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__quote {
    font-size: var(--fs-body);
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: var(--space-6);
    line-height: 1.8;
    position: relative;
    padding-left: var(--space-6);
}

.testimonial-card__quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 3rem;
    font-family: var(--font-display);
    color: var(--orange);
    line-height: 1;
    opacity: 0.5;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-small);
    color: var(--navy);
}

.testimonial-card__age {
    font-size: var(--fs-xs);
    color: var(--gray-500);
}

/* Stars */
.testimonial-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-4);
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
    color: #FBBF24;
    fill: #FBBF24;
}

/* --- Authority Section --- */
.authority__content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-10);
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.authority__photo {
    flex-shrink: 0;
}

.authority__photo img {
    width: 280px;
    height: auto;
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--orange-light);
}

/* Keep old icon-wrapper for backwards compat */
.authority__icon-wrapper {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--orange-light), var(--blue-tint));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.authority__icon-wrapper svg {
    width: 120px;
    height: 120px;
}

.authority__text h3 {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-4);
}

.authority__text p {
    color: var(--gray-600);
    line-height: 1.8;
    text-align: justify;
}

/* --- FAQ Section --- */
.faq__list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    width: 100%;
    padding: var(--space-5) var(--space-6);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--fs-body);
    color: var(--navy);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-item__question:hover {
    color: var(--orange);
}

.faq-item__question:focus {
    outline: 2px solid var(--orange);
    outline-offset: -2px;
    border-radius: var(--radius-md);
}

.faq-item__chevron {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--gray-500);
}

.faq-item.open .faq-item__chevron {
    transform: rotate(180deg);
    color: var(--orange);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item__answer-inner {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--gray-600);
    line-height: 1.8;
}

/* --- Guarantee Section --- */
.guarantee {
    text-align: center;
}

.guarantee__card {
    max-width: 640px;
    margin: 0 auto;
    padding: var(--space-10);
    background: linear-gradient(145deg, var(--green-light) 0%, var(--white) 100%);
    border-radius: var(--radius-xl);
    border: 2px solid var(--green);
}

.guarantee__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee__icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.guarantee__card h2 {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-4);
}

.guarantee__card p {
    color: var(--gray-600);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Urgency Section --- */
.urgency {
    text-align: center;
    background: linear-gradient(to right, var(--orange-light), var(--warm-white));
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    max-width: 800px;
    margin: 0 auto;
    border: 2px solid rgba(232, 115, 42, 0.2);
}

.urgency__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.urgency__icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.urgency h3 {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-3);
}

.urgency p {
    color: var(--gray-600);
    margin-bottom: var(--space-6);
}

.urgency__counter {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: var(--fs-h2);
    color: var(--orange);
    margin-bottom: var(--space-6);
}

.urgency__counter-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--gray-500);
    margin-top: var(--space-1);
}

/* --- Compatibility Section --- */
.compat__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
}

.compat-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.compat-item__icon {
    width: 48px;
    height: 48px;
    background: var(--blue-tint);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compat-item__icon svg {
    width: 24px;
    height: 24px;
    color: var(--navy);
}

.compat-item__text {
    font-size: var(--fs-small);
    color: var(--gray-700);
    line-height: 1.5;
}

/* --- Footer --- */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-10) 0;
    text-align: center;
}

.footer p {
    font-size: var(--fs-small);
    margin-bottom: var(--space-2);
}

.footer a {
    color: var(--orange);
    transition: color var(--transition-fast);
}

.footer a:hover {
    color: var(--white);
}

/* ============================================================
   Responsive Design
   ============================================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__cta-group {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__image-wrapper {
        max-width: 360px;
        margin: 0 auto;
    }

    .hero__floating-card--top {
        right: 5%;
    }

    .hero__floating-card--bottom {
        left: 5%;
    }

    .solution__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .solution__checklist {
        align-items: center;
    }

    .solution__image-card {
        margin: 0 auto;
    }

    .authority__content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .authority__text p {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-16) 0;
    }

    .container {
        padding: 0 var(--space-4);
    }

    .hero {
        padding-top: calc(70px + var(--space-10));
        padding-bottom: var(--space-12);
    }

    .hero__floating-card {
        display: none;
    }

    .hero__image-wrapper {
        max-width: 280px;
        aspect-ratio: 1/1;
    }

    .pain-points__grid,
    .modules__grid,
    .bonus__grid,
    .benefits__grid,
    .differentials__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: var(--space-16) 0;
    }

    .btn--large {
        width: 100%;
        max-width: 340px;
        white-space: normal;
    }

    .urgency {
        padding: var(--space-8);
    }

    .compat__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 375px) {
    .navbar__logo {
        font-size: 1.1rem;
    }

    .navbar__cta {
        font-size: var(--fs-xs);
        padding: var(--space-2) var(--space-4);
    }
}