:root {
    --color-navy: #000000;
    --color-navy-light: #1a1a1a;
    --color-navy-lighter: #333333;
    --color-gold: #2630AC;
    --color-gold-light: #2630AC;
    --color-cream: #f8f6f1;
    --color-cream-dark: #E0E1EB;
    --color-text: #2a2a2a;
    --color-text-muted: #6b7280;
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --ease-smooth: cubic-bezier(0.2, 1, 0.3, 1);
    --shadow-soft: 0 20px 50px -10px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 48px;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    font-weight: 700;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--color-gold);
    color: white;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 1.2s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s var(--ease-smooth);
}

.btn-primary:hover {
    background: #3a47cc;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-microcopy {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: #374151;
}

.hero-microcopy {
    display: flex;
    margin-top: 12px;
    font-size: 14px;
    color: #374151;
    text-align: center;
    max-width: 389px;
    padding-left: 30px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(248, 246, 241, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 27px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo:hover .logo-img {
    opacity: 0.8;
}

.header-cta {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(38, 48, 172, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

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

.hero-image-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    width: 100%;
    max-height: 480px;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    /* -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 5%, black 93%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 5%, black 93%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent 0%, black 4%, black 93%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 4%, black 93%, transparent 100%);
    mask-composite: intersect;
    filter: saturate(0.9) contrast(1.05); */
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse at center, rgba(38, 48, 172, 0.15) 0%, transparent 70%);
    z-index: -1;
    border-radius: 30px;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 246, 241, 0.1) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gold);
    font-size: 10px; /* era 13px */
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-gold);
}

.hero h1 {
    font-size: clamp(26px, 3.0vw, 35px); /* era clamp(36px, 4.5vw, 52px) */
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 32px;
    max-width: 900px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero h1 em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-description {
    font-size: 16px; /* era 18px */
    font-weight: 400;
    line-height: 1.7;
    color: #374151;
    max-width: 700px;
    margin-bottom: 48px;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: -1px;
}

.hero-description strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Problem Section */
.problem {
    padding: 6rem 0;
    background: var(--color-navy);
    color: white;
    position: relative;
    z-index: 10;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.problem-block {
    position: relative;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-gold);
    border-radius: 24px;
    padding: 1.2rem;
    overflow: hidden;
}

/* Flashlight Effect */
.problem-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
    pointer-events: none;
    z-index: 2;
}

.problem-block:hover::before {
    opacity: 1;
}

/* Border Flashlight */
.problem-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.3), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
    pointer-events: none;
    border-radius: inherit;
    padding: 1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}

.problem-block:hover::after {
    opacity: 1;
}

.problem-block-content {
    position: relative;
    z-index: 10;
}

.problem-block-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.problem-block-text {
    position: relative;
    z-index: 10;
    padding-left: 55px;
}

.problem-block-image {
    position: relative;
    z-index: 10;
}

.problem-block-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Metrics Image */
.metrics-image {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metrics-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Metrics Cards */
.metrics-cards {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.metric-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.metric-card.danger {
    border-color: rgba(248, 113, 113, 0.3);
    background: rgba(248, 113, 113, 0.08);
}

.metric-arrow {
    font-size: 20px;
    margin-bottom: 4px;
}

.metric-arrow.up {
    color: var(--color-gold);
}

.metric-arrow.down {
    color: #f87171;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.problem-block-list {
    position: relative;
    z-index: 10;
}

.problem-block-list .problems-list {
    margin-top: 0;
}

.problem-eyebrow {
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.problem h2 {
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.problem-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(161, 161, 170, 1);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Cycle Visual */
.cycle-visual {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.cycle-item {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 500;
    color: rgba(212, 212, 216, 1);
    border-radius: 8px;
}

.cycle-item.danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: rgba(254, 202, 202, 1);
}

.cycle-arrow {
    color: rgba(82, 82, 91, 1);
    font-size: 20px;
}

.cycle-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

/* Problems List */
.problems-list {
    list-style: none;
    margin-top: auto;
    padding-top: 32px;
}

.problems-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    color: rgba(161, 161, 170, 1);
    transition: background 0.3s var(--ease-smooth);
    margin-bottom: 8px;
}

.problems-list li:hover {
    background: rgba(255, 255, 255, 0.05);
}

.x-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: rgba(248, 113, 113, 1);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.problem-block-full-height {
    display: flex;
    flex-direction: column;
}

/* Solution Section */
.solution {
    padding: 6rem 0;
    background: var(--color-cream);
}

.solution-header {
    text-align: center;
    margin-bottom: 48px;
}

.solution h2 {
    font-size: clamp(22px, 2.5vw, 29px);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.solution-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-navy);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.solution .eyebrow {
    color: var(--color-gold);
    font-size: 11px;
}

.solution-intro {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #374151;
    max-width: 900px;
    margin: 0 auto 32px;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: -1px;
}

.solution-highlight {
    background: #0a0a0a;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
    border-left: 4px solid var(--color-gold);
}

.solution-highlight::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 60px;
    color: var(--color-gold);
    font-family: Georgia, serif;
    line-height: 1;
}

.solution-highlight::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 24px;
    font-size: 60px;
    color: var(--color-gold);
    font-family: Georgia, serif;
    line-height: 1;
}

.solution-highlight p {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: white;
    margin: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Solution Cards - Two columns layout */
.solution-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.solution-card-text {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.solution-card-text:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.solution-card-text p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: -1px;
}

.solution-card-quote {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.solution-card-quote:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.solution-quote-content {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: white;
    text-align: center;
    position: relative;
    padding: 0 20px;
    z-index: 3;
}

.solution-card-quote::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 60px;
    color: var(--color-gold);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 2;
}

.solution-card-quote::after {
    content: '"';
    position: absolute;
    bottom: 10px;
    right: 24px;
    font-size: 60px;
    color: var(--color-gold);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 2;
}

.solution-impact {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #374151;
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: -1px;
}

.solution-impact strong {
    color: var(--color-navy);
    font-weight: 600;
}

.solution-cta {
    text-align: center;
    margin-top: 40px;
}

.solution-cta .btn-primary {
    padding: 0.9rem 1.8rem;
    font-size: 15px;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    padding: 32px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: all 0.3s var(--ease-smooth);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(38, 48, 172, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-gold);
    font-size: 24px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-item p {
    font-size: 15px;
    font-weight: 400;
    color: #374151;
    line-height: 1.6;
    font-style: normal;
}

/* Process Section */
.process {
    padding: 8rem 0;
    background: var(--color-cream-dark);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-eyebrow {
    color: var(--color-gold);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.process h2 {
    font-size: clamp(32px, 4vw, 36px);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.process-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #374151;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 64px;
    position: relative;
}

/* Connecting Line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 16.666%;
    width: 66.666%;
    height: 1px;
    background: linear-gradient(to right, rgba(38, 48, 172, 0.3), rgba(38, 48, 172, 0.5), rgba(38, 48, 172, 0.3));
    z-index: 0;
}

.step {
    text-align: center;
    padding: 16px;
    position: relative;
}

.step-number {
    width: 96px;
    height: 96px;
    margin: 0 auto 32px;
    background: var(--color-cream-dark);
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(82, 82, 91, 0.3);
    transition: all 0.3s var(--ease-smooth);
}

.step:hover .step-number {
    border-color: var(--color-gold);
}

.step-number svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-gold);
    transition: stroke 0.3s var(--ease-smooth);
}

.step:hover .step-number svg {
    stroke: #3a47cc;
}

.step h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.step p {
    font-size: 14px;
    font-weight: 400;
    color: #374151;
    line-height: 1.6;
}

.process-footer {
    text-align: center;
    padding: 32px;
    background: rgba(38, 48, 172, 0.1);
    border: 1px solid rgba(38, 48, 172, 0.2);
    color: var(--color-text);
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.process-footer p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    margin: 0 auto;
    line-height: 1.6;
    color: var(--color-text);
}

/* Credibility Section */
.credibility {
    padding: 6rem 0;
    background: var(--color-cream);
}

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

.credibility h2 {
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.founder-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    background: #FFFFFF;
    padding: 60px;
    border: 1px solid var(--color-cream-dark);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: all 1.2s var(--ease-smooth);
}

.founder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
}

.founder-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-lighter) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.founder-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(38, 48, 172, 0.05) 10px,
        rgba(38, 48, 172, 0.05) 20px
    );
}

.founder-initials {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 600;
    color: var(--color-gold);
    position: relative;
    z-index: 1;
}

.founder-info h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.founder-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 32px;
}

.founder-bio {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
        color: #374151;
}

.founder-bio p {
    margin-bottom: 20px;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-cream-dark);
}

.stat {
    text-align: center;
    padding: 20px 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out;
}

.stat.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat:nth-child(1) { transition-delay: 0s; }
.stat:nth-child(2) { transition-delay: 0.3s; }
.stat:nth-child(3) { transition-delay: 0.6s; }

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat.animated .stat-label {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--color-navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(38, 48, 172, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

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

.cta-section h2 {
    font-size: clamp(36px, 4.5vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.cta-section .cta-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-section .btn-primary {
    background: var(--color-gold);
    color: #FFFFFF;
    font-weight: 600;
}

.cta-section .btn-primary:hover {
    background: #3a47cc;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 20px 50px -10px rgba(38, 48, 172, 0.5);
}

.cta-section .btn-microcopy {
    color: rgba(255,255,255,0.5);
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--color-navy);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-logo-img {
    height: 20px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-tagline {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    font-style: italic;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-container {
        order: -1;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .hero-eyebrow {
        justify-content: center;
    }

    .hero h1,
    .hero-description {
        max-width: 100%;
    }

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

    .problem-block-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-block-image {
        order: -1;
    }

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

    .founder-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .founder-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .founder-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .solution-card-text,
    .solution-card-quote {
        padding: 32px;
    }
}

@media (max-width: 640px) {
    .solution-features {
        grid-template-columns: 1fr;
    }

    .solution-impact {
        font-size: 16px;
    }

    .metrics-cards {
        flex-wrap: wrap;
    }

    .metric-card {
        flex: 1 1 45%;
    }
    .header-cta {
        display: none;
    }

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

    /* Mobile: esconde eyebrow e imagem, mostra botão no topo */
    .hero-eyebrow {
        display: none;
    }

    .hero-image-container {
        display: none;
    }

    .hero-cta-mobile {
        display: inline-flex;
        margin-bottom: 24px;
    }

    .problem-block {
        padding: 32px 24px;
    }

    .cycle-visual {
        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* Botão mobile - escondido por padrão */
.hero-cta-mobile {
    display: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealIn {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: revealIn 1.2s var(--ease-smooth) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
