:root {
    --primary-color: #44CE4B;
    --primary-hover: #3BB541;
    --primary-gradient: linear-gradient(135deg, #44CE4B 0%, #20A68A 100%);
    --bg-white: #ffffff;
    --bg-ivory: #FDFDFB;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --border-color: #EAEAEA;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 15px 30px rgba(68, 206, 75, 0.2);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    word-break: keep-all;
}

body {
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.3;
}

.highlight {
    color: var(--primary-color);
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
}

.text-primary {
    color: var(--primary-color);
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.text-left {
    text-align: left;
}

/*-----------------------------------------
   Reveal & Micro Animations 
-----------------------------------------*/
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Hover Animations */
.hover-lift {
    transition: var(--transition);
}

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

.hover-lift-slight {
    transition: var(--transition);
}

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

.hover-glow {
    transition: var(--transition);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(68, 206, 75, 0.3);
    border-color: var(--primary-color);
}

.hover-float {
    animation: floatElement 6s ease-in-out infinite;
}

/* Pulse Animations */
.hover-pulse:hover {
    animation: pulseButton 1s infinite alternate;
}

.pulse-soft {
    animation: pulseSoft 3s infinite alternate;
}

.pulse-text {
    animation: pulseTextOpacity 2s infinite alternate;
}

/* Auto-Genogram GIF Section */
.auto-genogram-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.badge-purple {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid #8B5CF6;
    color: #8B5CF6;
}

.gif-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 10px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.feature-gif {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulseButton {
    0% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }

    100% {
        transform: scale(1.05);
        box-shadow: var(--shadow-hover);
    }
}

@keyframes pulseSoft {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(68, 206, 75, 0.5);
    }
}

@keyframes pulseTextOpacity {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(68, 206, 75, 0.3);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    font-size: 1.2rem;
    padding: 20px 48px;
}

.btn-full {
    width: 100%;
    font-size: 1.2rem;
    padding: 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

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

.logo-img {
    height: 32px;
    width: auto;
}

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

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--text-main);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--primary-color);
}

/*-----------------------------------------
   Genogram UI Elements (Vector)
-----------------------------------------*/
.geno-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.8;
    pointer-events: none;
    overflow: hidden;
}

.vector-genogram {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

/* Lines */
.vg-line {
    fill: none;
    stroke: url(#lineGrad);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawVectorLine 3s ease-in-out forwards;
}

.vg-line.solid {
    stroke-width: 4;
    stroke: rgba(68, 206, 75, 0.4);
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

.vg-line.dashed {
    stroke-dasharray: 15, 10;
    animation: drawVectorDashed 4s ease-in-out forwards;
}

.vg-line.zigzag {
    stroke-width: 3;
    stroke: rgba(68, 206, 75, 0.6);
}

.vg-line.double-left {
    transform: translateX(-4px);
    stroke-width: 2;
    stroke: rgba(68, 206, 75, 0.5);
}

.vg-line.double-right {
    transform: translateX(4px);
    stroke-width: 2;
    stroke: rgba(68, 206, 75, 0.5);
}

.delay-1 {
    animation-delay: 0s;
}

.delay-2 {
    animation-delay: 0.5s;
}

.delay-3 {
    animation-delay: 1s;
}

.delay-4 {
    animation-delay: 1.5s;
}

.delay-5 {
    animation-delay: 2s;
}

.delay-6 {
    animation-delay: 2.5s;
}

@keyframes drawVectorLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawVectorDashed {
    to {
        stroke-dashoffset: 0;
    }
}

/* Nodes */
.vg-node {
    fill: rgba(13, 14, 21, 0.8);
    stroke: var(--primary-color);
    stroke-width: 3;
    transition: var(--transition);
}

.vg-node.square {
    rx: 6;
    ry: 6;
}

.vg-node.target {
    stroke-width: 4;
    fill: rgba(68, 206, 75, 0.1);
    filter: drop-shadow(0 0 10px rgba(68, 206, 75, 0.3));
}

.vg-node.core {
    stroke-width: 5;
    fill: rgba(68, 206, 75, 0.2);
    filter: drop-shadow(0 0 20px rgba(68, 206, 75, 0.6));
}

.svg-pulse {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
    animation: svgPulseRing 3s infinite;
}

@keyframes svgPulseRing {
    0% {
        transform: scale(1);
        stroke-width: 4;
        stroke-opacity: 0.8;
    }

    100% {
        transform: scale(3.5);
        stroke-width: 0;
        stroke-opacity: 0;
    }
}

.float-1 {
    animation: svgFloat 6s ease-in-out infinite alternate;
}

.float-2 {
    animation: svgFloat 5s ease-in-out infinite alternate-reverse;
}

.float-3 {
    animation: svgFloat 7s ease-in-out infinite alternate;
}

.float-4 {
    animation: svgFloat 8s ease-in-out infinite alternate-reverse;
}

@keyframes svgFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

/*-----------------------------------------
   Hero Section 
-----------------------------------------*/
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    background: #0D0E15;
    color: white;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.4) 0%, rgba(68, 206, 75, 0.2) 50%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
    animation: heroPulse 8s infinite alternate;
}

@keyframes heroPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section .badge {
    display: inline-block;
    background: rgba(68, 206, 75, 0.15);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
}

.hero-section .sub-copy {
    font-size: 1.25rem;
    font-weight: 500;
    color: #A0A5B5;
    margin-bottom: 24px;
}

.display-mobile {
    display: none;
}

.hero-section .main-title {
    font-size: 3.5rem;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
}

/*-----------------------------------------
   Problem Section 
-----------------------------------------*/
.problem-section {
    padding: 100px 0;
    background: var(--bg-white);
}

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

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

.problem-card {
    text-align: center;
}

.icon-large {
    font-size: 3rem;
    margin-bottom: 24px;
}

.problem-card p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.problem-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.problem-sub {
    font-size: 0.95rem !important;
    color: var(--text-muted);
    font-weight: 400 !important;
    line-height: 1.6;
    margin-bottom: 0 !important;
}

.problem-conclusion {
    font-size: 1.2rem;
    color: var(--text-muted);
    background: var(--bg-ivory);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.problem-conclusion strong {
    color: var(--text-main);
    display: block;
    margin-top: 10px;
    font-size: 1.4rem;
}

/*-----------------------------------------
   AI Transition SVG Section 
-----------------------------------------*/
.ai-transition-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, rgba(78, 101, 252, 0.03) 50%, var(--bg-white) 100%);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.ai-transition-section .section-title {
    margin-bottom: 60px;
}

.ai-svg-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.ai-genogram-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.chaos-line {
    fill: none;
    stroke: #CBD5E1;
    stroke-width: 2;
    transition: all 0.3s;
}

.chaos-dot {
    fill: #9CA3AF;
}

.chaos-text {
    animation: driftChaosText 8s ease-in-out infinite alternate;
}

.chaos-text.text-delay-1 {
    animation-delay: 2s;
    animation-duration: 9s;
}

.chaos-text.text-delay-2 {
    animation-delay: 4s;
    animation-duration: 7s;
}

.chaos-text.text-delay-3 {
    animation-delay: 6s;
    animation-duration: 10s;
}

@keyframes driftChaosText {
    0% {
        transform: translate(0, 0) rotate(-2deg);
        opacity: 0.4;
    }

    50% {
        transform: translate(15px, -15px) rotate(2deg);
        opacity: 0.8;
    }

    100% {
        transform: translate(-10px, 10px) rotate(-1deg);
        opacity: 0.3;
    }
}

.ai-chip-group {
    transform-origin: 70px 70px;
    animation: floatChip 6s ease-in-out infinite;
}

@keyframes floatChip {

    0%,
    100% {
        transform: translate(520px, 150px) translateY(0);
    }

    50% {
        transform: translate(520px, 150px) translateY(-10px);
    }
}

.chip-glow-pulse {
    animation: chipGlowAnim 3s ease-in-out infinite alternate;
}

@keyframes chipGlowAnim {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.spin-slow {
    transform-origin: 70px 70px;
    animation: spin 10s linear infinite;
}

.spin-slow-reverse {
    transform-origin: 70px 70px;
    animation: spin 8s linear infinite reverse;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.struct-line {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawStructLine 4s ease-out forwards;
}

.struct-line.conflict {
    stroke: #EF4444;
    /* Red for conflict */
    stroke-width: 4;
    filter: drop-shadow(0 0 5px rgba(239, 68, 68, 0.4));
}

@keyframes drawStructLine {
    to {
        stroke-dashoffset: 0;
    }
}

.struct-line.line-1 {
    animation-delay: 0.5s;
}

.struct-line.line-2 {
    animation-delay: 1s;
}

.struct-line.line-3 {
    animation-delay: 1.5s;
}

.struct-line.line-4 {
    animation-delay: 2s;
}

.struct-line.line-5 {
    animation-delay: 2.5s;
}

.struct-line.line-6 {
    animation-delay: 3s;
}

.struct-line.line-7 {
    animation-delay: 3.5s;
}

.struct-node {
    fill: white;
    stroke: var(--primary-color);
    stroke-width: 3;
    opacity: 0;
    transform: scale(0.5);
    animation: popStructNode 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.struct-node.target {
    fill: rgba(68, 206, 75, 0.1);
    stroke-width: 4;
}

@keyframes popStructNode {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.struct-node.n-1 {
    animation-delay: 1s;
    transform-origin: 250px 100px;
}

.struct-node.n-2 {
    animation-delay: 2.5s;
    transform-origin: 400px 50px;
}

.struct-node.n-3 {
    animation-delay: 1.5s;
    transform-origin: 100px 200px;
}

.struct-node.n-4 {
    animation-delay: 2s;
    transform-origin: 250px 200px;
}

.struct-node.n-5 {
    animation-delay: 2.5s;
    transform-origin: 420px 250px;
}

.struct-node.n-6 {
    animation-delay: 1.5s;
    transform-origin: 200px 300px;
}

.struct-node.n-7 {
    animation-delay: 3s;
    transform-origin: 350px 350px;
}

.struct-node.n-8 {
    animation-delay: 3.5s;
    transform-origin: 480px 250px;
}

.struct-node.n-9 {
    animation-delay: 4s;
    transform-origin: 520px 50px;
}

/*-----------------------------------------
   Why Genogram Section (Fancy SVG)
-----------------------------------------*/
.why-genogram-section {
    padding: 100px 0;
    background: var(--bg-ivory);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.image-wrapper,
.text-content {
    flex: 1;
}

.fancy-wrapper {
    width: 100%;
    aspect-ratio: 1;
    background: white;
    border-radius: 30px;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.fancy-genogram {
    width: 100%;
    height: 100%;
}

.fancy-node {
    transition: var(--transition);
}

.fancy-node:hover {
    transform: translateY(-5px);
    stroke: var(--primary-color);
}

.ip-node {
    animation: ipFloat 4s ease-in-out infinite alternate;
}

.fancy-pulse {
    animation: fancyPulseRing 3s infinite;
    transform-origin: 300px 200px;
}

.conflict-pulse {
    animation: conflictGlow 2s infinite alternate;
}

@keyframes ipFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-5px);
    }
}

@keyframes fancyPulseRing {
    0% {
        transform: scale(1);
        stroke-width: 3;
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        stroke-width: 0;
        opacity: 0;
    }
}

@keyframes conflictGlow {
    0% {
        filter: drop-shadow(0 0 2px rgba(239, 68, 68, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.8));
    }
}

@keyframes fadeConflict {
    0% {
        opacity: 0.1;
        box-shadow: 0 0 0 rgba(239, 68, 68, 0);
    }

    100% {
        opacity: 0.8;
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    }
}

.quote-box {
    margin-top: 30px;
    padding: 24px;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 12px 12px 0;
    box-shadow: var(--shadow-sm);
}

.highlight-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/*-----------------------------------------
   Gallery Sections (Visual Proof)
-----------------------------------------*/
.gallery-section,
.space-section {
    padding: 100px 0;
}

.gallery-container {
    padding: 20px 0;
    mask-image: none;
    -webkit-mask-image: none;
}

.gallery-track {
    align-items: stretch;
    gap: 20px;
}

/* Fixed-width wrapper prevents flex from stretching the image */
.gallery-slide {
    width: 420px;
    flex-shrink: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.gallery-slide:hover {
    transform: scale(1.02);
}

/* Image fills 100% of the wrapper, height is auto = natural aspect ratio */
.gallery-slide img {
    display: block;
    width: 100%;
    height: auto;
}

/*-----------------------------------------
   Carousel Shared Refinements
-----------------------------------------*/
.carousel-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    /* Clip the track but let buttons overlay */
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -20px;
}

.carousel-nav.next {
    right: -20px;
}

@media (max-width: 768px) {
    .carousel-nav {
        display: none;
        /* Hide on small screens where swipe is better */
    }
}

/*-----------------------------------------
   Social Proof Section Refinements
-----------------------------------------*/
.social-proof-section {
    padding: 100px 0;
    /* Soft pastel background to make cards pop */
    background: linear-gradient(135deg, #F8FAFC 0%, rgba(139, 92, 246, 0.03) 100%);
}

.social-proof-section .section-title {
    margin-bottom: 3rem;
    line-height: 1.4;
}

.highlight-text-purple {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-top: 10px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

.review-card {
    width: 380px;
    /* Slightly wider to accommodate avatars nicely */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    opacity: 0.9;
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    /* For watermark */
}

/* Watermark */
.watermark-quote {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(139, 92, 246, 0.05);
    z-index: 0;
    transform: rotate(10deg);
}

.review-card>* {
    position: relative;
    z-index: 1;
}

.review-card.active {
    opacity: 1;
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.stars {
    color: #FFD700;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.7;
}

/* Keyword Highlighting */
.review-highlight {
    background: linear-gradient(120deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
    font-weight: 700;
    color: #4C1D95;
    /* Deep purple */
    padding: 0 4px;
}

/* Author Avatar Block */
.review-author-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    /* Push to bottom */
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #F3E8FF 0%, #E0E7FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #8B5CF6;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.review-author {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
}

/*-----------------------------------------
   Curriculum Section 
-----------------------------------------*/
.curriculum-section {
    padding: 100px 0;
    background: var(--bg-ivory);
}

.curriculum-header {
    text-align: center;
    margin-bottom: 60px;
}

.curriculum-header .sub-title {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 100px;
}

.timeline-marker {
    position: absolute;
    left: 41px;
    transform: translateX(-50%);
    top: 5px;
    min-width: 60px;
    height: 40px;
    padding: 0 12px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 0 0 5px var(--bg-ivory);
    z-index: 2;
    white-space: nowrap;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.lecturer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 16px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.step-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.step-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.badge-small {
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.step-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.highlight-step {
    grid-column: 1 / -1;
    border: 2px solid var(--primary-color);
    background: rgba(68, 206, 75, 0.02);
}

/* YouTube Embed Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*-----------------------------------------
   Instructor Section (Section 5.5)
-----------------------------------------*/
/*-----------------------------------------
   Instructor Section (Section 5.5)
-----------------------------------------*/
.instructors-grid {
    display: block;
    /* Single card layout */
    max-width: 900px;
    margin: 40px auto 0;
}

.instructor-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.instructor-photo-container {
    flex-shrink: 0;
}

.instructor-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-ivory);
    box-shadow: var(--shadow-sm);
}

.instructor-info-content {
    flex-grow: 1;
}

.instructor-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.instructor-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.instructor-role {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.4;
}

.instructor-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.instructor-history {
    background: var(--bg-ivory);
    padding: 24px;
    border-radius: 8px;
}

.instructor-history h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.instructor-history h4::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 3px;
}

.instructor-history ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.instructor-history li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    position: relative;
    padding-left: 14px;
    line-height: 1.5;
}

.instructor-history li::before {
    content: "·";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.4;
}

.instructor-history li:last-child {
    margin-bottom: 0;
}

/*-----------------------------------------
   Premium Report Section (Section 6.5.b)
-----------------------------------------*/
.premium-report-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.report-mockup-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 1 / 1.414;
    /* A4 Ratio roughly */
}

.report-mockup-img {
    position: absolute;
    width: 75%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    transform-origin: bottom center;
}

.report-mockup-img:nth-child(1) {
    top: 5%;
    left: 12.5%;
    z-index: 5;
    transform: rotate(0deg);
}

.report-mockup-img:nth-child(2) {
    top: 0%;
    left: 20%;
    z-index: 4;
    transform: rotate(6deg) translateY(10px);
    opacity: 0.95;
}

.report-mockup-img:nth-child(3) {
    top: 10%;
    left: 0%;
    z-index: 3;
    transform: rotate(-5deg) translateY(20px);
    opacity: 0.9;
}

.report-mockup-img:nth-child(4) {
    top: -5%;
    left: 28%;
    z-index: 2;
    transform: rotate(12deg) translateY(25px);
    opacity: 0.8;
}

.report-mockup-img:nth-child(5) {
    top: 18%;
    left: -8%;
    z-index: 1;
    transform: rotate(-10deg) translateY(35px);
    opacity: 0.7;
}

.report-mockup-stack:hover .report-mockup-img:nth-child(1) {
    transform: rotate(0deg) translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.report-mockup-stack:hover .report-mockup-img:nth-child(2) {
    transform: rotate(8deg) translateY(-5px) scale(1.02);
}

.report-mockup-stack:hover .report-mockup-img:nth-child(3) {
    transform: rotate(-8deg) translateY(5px) scale(1.02);
}

.report-mockup-stack:hover .report-mockup-img:nth-child(4) {
    transform: rotate(16deg) translateY(10px) scale(1.02);
}

.report-mockup-stack:hover .report-mockup-img:nth-child(5) {
    transform: rotate(-14deg) translateY(20px) scale(1.02);
}

.report-content .badge-small {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.report-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.3;
}

.report-content .lead-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.report-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.report-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.report-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(162, 89, 255, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.report-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
}

.report-feature-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.exclusive-warning-box {
    background: rgba(68, 206, 75, 0.05);
    /* Very light green */
    border-left: 4px solid var(--secondary-color);
    /* Dark green left border */
    border-radius: 0 8px 8px 0;
    padding: 24px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.warning-icon {
    flex-shrink: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 2px;
}

.warning-content h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.warning-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .report-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .report-mockup-stack {
        max-width: 400px;
        order: -1;
        /* Move image to top on mobile */
    }
}

@media (max-width: 991px) {
    .instructor-card {
        padding: 40px;
    }

    .instructor-photo {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .instructor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 24px;
    }

    .instructor-name {
        font-size: 1.8rem;
    }

    .instructor-history {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .instructors-grid {
        grid-template-columns: 1fr;
    }

    .instructor-card {
        padding: 30px 20px;
    }
}

/*-----------------------------------------
   Target Section 
-----------------------------------------*/
.target-section {
    padding: 100px 0;
    background: #0D0E15;
    color: white;
}

.target-section .section-title {
    color: white;
}

.target-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.target-list li {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-check {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

/*-----------------------------------------
   Apply Section 
-----------------------------------------*/
.apply-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.info-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 40px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
}

.info-table th {
    width: 120px;
    color: var(--text-muted);
    font-weight: 600;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
    border-bottom: none;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-ivory);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.form-container h3 {
    margin-bottom: 24px;
    text-align: center;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    outline: none;
    transition: border-color 0.3s;
}

.form-group select:focus {
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: #0D0E15;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*-----------------------------------------
   Comparison Section 
-----------------------------------------*/
.comparison-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.comparison-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    position: relative;
    flex-wrap: wrap;
}

.compare-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.compare-card.old-way {
    background: #FAFAFA;
    border-color: #E2E8F0;
}

.compare-card.new-way {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(68, 206, 75, 0.15);
}

.compare-header {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.old-way .compare-header {
    color: var(--text-muted);
}

.new-way .compare-header {
    color: var(--primary-color);
}

.compare-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.compare-list li {
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    font-size: 1.05rem;
}

.old-way .compare-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: bold;
}

.new-way .compare-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #1A1A1A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    z-index: 10;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--bg-white);
}

/*-----------------------------------------
   Gallery Sections (Visual Proof)
-----------------------------------------*/
.gallery-section,
.space-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

/*-----------------------------------------
   Benefits Section 
-----------------------------------------*/
.benefits-section {
    padding: 100px 0;
    background: var(--bg-ivory);
}

.benefits-section .sub-title {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 50px;
}

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

.benefit-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.benefit-card p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.benefit-desc {
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0 !important;
    flex-grow: 1;
}

.highlight-benefit {
    border: 2px solid #8B5CF6;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, white 100%);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.highlight-benefit .benefit-icon {
    color: #8B5CF6;
}

.highlight-text-gold {
    background: linear-gradient(135deg, #8B5CF6 0%, #D946EF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900 !important;
    font-size: 1.5rem !important;
}

/*-----------------------------------------
   Responsive Tweaks for New Sections
-----------------------------------------*/
@media (max-width: 992px) {
    .vs-badge {
        display: none;
    }

    .comparison-wrapper {
        flex-direction: column;
        gap: 30px;
    }

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

/*-----------------------------------------
   Responsive (Mobile View Readability)
-----------------------------------------*/
@media (max-width: 992px) {
    .hero-section .main-title {
        font-size: 2.8rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .g-node.square {
        left: 20%;
    }

    .g-node.circle {
        left: 80%;
    }

    .g-link {
        left: 20%;
        width: 60%;
    }
}

/*-----------------------------------------
   CTA Section Enhancements
-----------------------------------------*/
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.benefit-list li i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.apply-flow-note {
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1.6;
}

/*-----------------------------------------
   Clinical Insights Section (3.1)
-----------------------------------------*/
.clinical-section {
    padding: 100px 0;
    /* Clean subtle green/gray bg */
    background: linear-gradient(180deg, #FAFBFF 0%, #F0FDF4 100%);
}

.clinical-header {
    margin-bottom: 60px;
}

/* Before & After Comparison */
.ba-comparison {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 60px;
    justify-content: center;
}

.ba-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    flex: 1;
    max-width: 480px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.ba-card:hover {
    box-shadow: var(--shadow-md);
}

.ba-before {
    border: 2px solid #E5E7EB;
}

.ba-after {
    border: 2px solid rgba(16, 185, 129, 0.3);
    /* Emerald border */
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%);
}

.ba-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9CA3AF;
    margin-bottom: 8px;
    padding: 4px 12px;
    background: #F3F4F6;
    border-radius: 20px;
}

.ba-label-after {
    color: #059669;
    /* Emerald text */
    background: rgba(16, 185, 129, 0.1);
}

.ba-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
}

.ba-svg {
    width: 100%;
    height: auto;
}

.ba-arrow-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

/* Clinical Point Cards */
.clinical-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.clinical-point-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

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

.point-number {
    font-size: 2.5rem;
    font-weight: 900;
    /* Soft green gradient */
    background: linear-gradient(135deg, rgba(68, 206, 75, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 20px;
}

.clinical-point-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.5;
}

.clinical-point-card p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .display-mobile {
        display: block !important;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-section .main-title {
        font-size: 2rem;
        margin-bottom: 30px;
        letter-spacing: -0.05em;
    }

    .hero-section .badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .problem-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        padding: 30px 20px;
    }

    .problem-card p {
        font-size: 1rem;
    }

    .genogram-illustration {
        max-width: 400px;
        margin: 0 auto;
        aspect-ratio: auto;
        height: 300px;
    }

    .g-node {
        width: 50px;
        height: 50px;
    }

    .pulse-ring {
        width: 50px;
        height: 50px;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        padding-left: 70px;
        margin-bottom: 40px;
    }

    .timeline-marker {
        left: 0;
        width: 40px;
        height: 40px;
    }

    .carousel-track {
        gap: 15px;
    }

    .review-card {
        width: 280px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step-card {
        padding: 20px;
    }

    .target-list li {
        font-size: 1rem;
        padding: 16px;
    }

    .icon-check {
        font-size: 1.5rem;
        margin-right: 15px;
    }

    .info-card {
        padding: 20px;
    }

    .info-table th {
        display: block;
        padding-bottom: 4px;
        border-bottom: none;
    }

    .info-table td {
        display: block;
        padding-top: 0;
        padding-bottom: 16px;
        font-size: 0.95rem;
    }

    .form-container {
        padding: 20px;
    }

    /* Clinical Insights responsive */
    .ba-comparison {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .ba-card {
        max-width: 100%;
    }

    .ba-arrow-divider {
        transform: rotate(90deg);
        padding: 10px 0;
    }

    .clinical-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-slide {
        width: 300px;
    }
}