/* ===============================================
   We Today - Enhanced Design
   Waves, gradients, smooth animations
   =============================================== */

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

:root {
    --dark-turquoise: #0C475A;
    --turquoise: #1C8596;
    --teal: #20847D;
    --light-blue: #8FC0D5;
    --light-bg: #F7FAFB;
    --orange: #FF8B3D;
    --white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-muted: #5a6a72;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cabin', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--turquoise);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--teal);
}

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

/* ===============================================
   GRADIENT TEXT
   =============================================== */

.gradient-text {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--teal) 50%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===============================================
   ANIMATIONS
   =============================================== */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes floatWaveLeft {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(12px) translateY(-6px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================================
   NAVIGATION
   =============================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(12, 71, 90, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    background: var(--white);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-logo img {
    height: 30px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-cta {
    background: var(--orange);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 139, 61, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 139, 61, 0.5);
    color: var(--white);
}

/* ===============================================
   HERO
   =============================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.png') center center no-repeat;
    background-size: cover;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(12, 71, 90, 0.85) 0%, rgba(12, 71, 90, 0.6) 50%, rgba(12, 71, 90, 0.3) 100%);
}

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

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--light-blue) 0%, #fff 50%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--light-blue);
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 139, 61, 0.4);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 139, 61, 0.6);
    color: var(--white);
}

/* ===============================================
   SECTION WAVE DECORATIONS
   =============================================== */

.section-wave {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.section-wave-right {
    top: 10%;
    right: -8%;
    width: 550px;
    animation: floatWave 12s ease-in-out infinite;
}

.section-wave-left {
    top: 5%;
    left: -10%;
    width: 600px;
    animation: floatWaveLeft 14s ease-in-out infinite;
}

.section-wave-bottom-right {
    bottom: 5%;
    right: -8%;
    width: 450px;
    animation: floatWave 10s ease-in-out infinite reverse;
}

.section-wave-left-bottom {
    bottom: 10%;
    left: -5%;
    width: 450px;
    animation: floatWaveLeft 16s ease-in-out infinite;
}

/* ===============================================
   PROBLEM SECTION
   =============================================== */

.problem-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.problem-headline {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--dark-turquoise);
    margin-bottom: 24px;
}

.problem-highlight {
    font-size: 20px;
    font-weight: 700;
    color: var(--teal);
    margin-top: 24px;
}

.problem-callout {
    background: linear-gradient(135deg, rgba(28, 133, 150, 0.1) 0%, rgba(32, 132, 125, 0.05) 100%);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--orange);
    margin: 32px 0;
}

.callout-number {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-turquoise);
    margin-bottom: 8px;
}

.callout-context {
    font-size: 16px;
    color: var(--text-muted);
}

.problem-punchline {
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 24px;
}

.problem-punchline strong {
    color: var(--orange);
    font-weight: 700;
}

.calculator-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    font-weight: 600;
    color: var(--turquoise);
    position: relative;
}

.calculator-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--turquoise), var(--teal));
    transition: width 0.3s ease;
}

.calculator-link:hover::after {
    width: 100%;
}

/* ===============================================
   KILLERS SECTION
   =============================================== */

.killers-section {
    padding: 100px 0;
    background: var(--dark-turquoise);
    position: relative;
    overflow: hidden;
}

.killers-section .section-title {
    color: var(--white);
    margin-bottom: 60px;
}

.killers-section .section-title::after {
    background: linear-gradient(90deg, var(--orange) 0%, var(--light-blue) 100%);
}

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

.killer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.killer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.killer-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 139, 61, 0.3);
    transform: translateY(-5px);
}

.killer-card:hover::before {
    opacity: 1;
}

.killer-icon {
    width: 48px;
    height: 48px;
    color: var(--orange);
    margin-bottom: 20px;
}

.killer-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.4;
}

.killer-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.killers-cta {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.killers-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    font-size: 15px;
}

.killers-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.killers-cta-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.killers-cta-link:hover {
    color: var(--light-blue);
}

.killers-cta-link:hover svg {
    transform: translateX(4px);
}

/* ===============================================
   LEVERS SECTION
   =============================================== */

.levers-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

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

.levers-punchline {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--turquoise);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.levers-intro {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.levers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.lever-item {
    padding: 32px;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--turquoise);
    transition: all 0.3s ease;
}

.lever-item:hover {
    transform: translateX(8px);
    border-left-color: var(--orange);
    box-shadow: 0 10px 30px rgba(12, 71, 90, 0.1);
}

.lever-item h3 {
    font-size: 18px;
    color: var(--dark-turquoise);
    margin-bottom: 8px;
}

.lever-item p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

.levers-conclusion {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(28, 133, 150, 0.08) 0%, rgba(32, 132, 125, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(28, 133, 150, 0.15);
}

.levers-conclusion p {
    font-size: 18px;
    color: var(--text-dark);
    margin: 8px 0;
}

.levers-conclusion strong {
    color: var(--dark-turquoise);
}

/* ===============================================
   APPROACH SECTION
   =============================================== */

.approach-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: clamp(24px, 4vw, 32px);
    color: var(--dark-turquoise);
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--turquoise) 0%, var(--teal) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--orange);
    font-weight: 600;
    margin-top: -48px;
    margin-bottom: 48px;
    letter-spacing: 1px;
}

.section-title.mirror-title {
    font-size: clamp(32px, 5vw, 48px);
}

.section-title.mirror-title::after {
    display: none;
}

.mirror-text {
    background: linear-gradient(135deg, var(--dark-turquoise) 0%, var(--light-blue) 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.method-text {
    font-style: italic;
    font-size: clamp(24px, 4vw, 44px);
    color: var(--dark-turquoise);
    margin-left: 8px;
}

.phases-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.phase-item {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(12, 71, 90, 0.08);
    transition: all 0.3s ease;
}

.phase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(12, 71, 90, 0.15);
}

.phase-icon {
    width: 64px;
    height: 64px;
    color: var(--turquoise);
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.phase-item:hover .phase-icon {
    color: var(--orange);
}

.phase-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.phase-item h3 {
    font-size: 20px;
    color: var(--dark-turquoise);
    margin-bottom: 12px;
}

.phase-item p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.phase-arrow {
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.phase-arrow svg {
    width: 32px;
    height: 32px;
    color: var(--turquoise);
}
.method-text {
    font-style: italic;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--dark-turquoise);
    background-clip: unset;
    margin-left: 8px;
}

.mirror-title::after {
    display: none;
}

/* ===============================================
   ABOUT SECTION
   =============================================== */

.about-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.about-statement {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-turquoise);
    margin-bottom: 12px;
}

.about-proof-conclusion {
    font-weight: 600;
    color: var(--teal);
    margin-top: 12px;
}

.about-photo-wrapper {
    position: relative;
    flex-shrink: 0;
}

.about-photo {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
    box-shadow: 0 10px 40px rgba(12, 71, 90, 0.15);
    transition: transform 0.3s ease;
}

.about-photo-wrapper:hover .about-photo {
    transform: scale(1.05);
}

.about-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--teal) 100%);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.about-photo-wrapper:hover::before {
    opacity: 0.4;
}

.about-text-content {
    flex: 1;
}

.about-name {
    font-size: 28px;
    color: var(--dark-turquoise);
    margin-bottom: 4px;
}

.about-role {
    font-size: 16px;
    color: var(--turquoise);
    font-weight: 600;
    margin-bottom: 24px;
}

.about-text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-proof {
    font-size: 16px;
    color: var(--text-muted);
    padding-top: 20px;
    border-top: 1px solid rgba(12, 71, 90, 0.1);
    line-height: 1.7;
}

/* ===============================================
   CTA SECTION
   =============================================== */

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-turquoise) 0%, #0a3d4d 50%, var(--turquoise) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(32, 132, 125, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(143, 192, 213, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: clamp(26px, 4vw, 36px);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.cta-subtext {
    font-size: 16px;
    opacity: 0.7;
    margin-bottom: 40px;
}

.btn-cta-primary {
    background: var(--orange);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 139, 61, 0.5);
    color: var(--white);
}

.cta-alternative {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-alternative p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-whitepaper-hook {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-blue);
}

.btn-secondary {
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-turquoise);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ===============================================
   FOOTER
   =============================================== */

.footer {
    padding: 32px 0;
    background: var(--dark-turquoise);
    text-align: center;
}

.footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

/* ===============================================
   MODAL
   =============================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 71, 90, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background-color: var(--white);
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    padding: 40px;
    animation: fadeInUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--light-bg);
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--dark-turquoise);
    color: var(--white);
}

.modal h2 {
    font-size: 24px;
    color: var(--dark-turquoise);
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 15px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-bg);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 4px rgba(28, 133, 150, 0.1);
}

.form-submit {
    width: 100%;
    background: var(--orange);
    color: var(--white);
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 139, 61, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 139, 61, 0.4);
}


/* ===============================================
           CALCULATOR MODAL STYLES
           =============================================== */
        
           .calc-step {
            display: none;
        }
        
        .calc-step.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }
        
        .calc-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        
        @media (max-width: 500px) {
            .calc-row {
                grid-template-columns: 1fr;
            }
        }
        
        .calc-toggle-group {
            display: flex;
            background: var(--light-bg);
            border-radius: 10px;
            padding: 4px;
        }
        
        .calc-toggle-group.standalone {
            margin-top: 8px;
        }
        
        .calc-toggle-group.inline {
            margin-bottom: 8px;
        }
        
        .calc-toggle {
            flex: 1;
            padding: 10px 12px;
            border: none;
            background: transparent;
            font-family: inherit;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .calc-toggle.active {
            background: var(--white);
            color: var(--dark-turquoise);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .calc-toggle:hover:not(.active) {
            color: var(--turquoise);
        }
        
        .calc-radio-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 8px;
        }
        
        .calc-radio {
            display: flex;
            align-items: flex-start;
            padding: 14px 16px;
            background: var(--light-bg);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .calc-radio:hover {
            border-color: var(--turquoise);
        }
        
        .calc-radio.selected {
            background: rgba(28, 133, 150, 0.1);
            border-color: var(--turquoise);
        }
        
        .calc-radio input {
            display: none;
        }
        
        .calc-radio-dot {
            width: 20px;
            height: 20px;
            border: 2px solid var(--text-muted);
            border-radius: 50%;
            margin-right: 12px;
            margin-top: 2px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .calc-radio.selected .calc-radio-dot {
            border-color: var(--turquoise);
        }
        
        .calc-radio.selected .calc-radio-dot::after {
            content: '';
            width: 10px;
            height: 10px;
            background: var(--turquoise);
            border-radius: 50%;
        }
        
        .calc-radio-text {
            font-size: 15px;
            color: var(--text-dark);
        }
        
        .calc-section-label {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-dark);
            margin-bottom: 4px;
            display: block;
        }
        
        .calc-section-hint {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        
        .calc-divider {
            height: 1px;
            background: var(--light-bg);
            margin: 24px 0;
        }
        
        /* Result screen */
        .calc-result {
            text-align: center;
        }
        
        .calc-result-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .calc-result-badge.green {
            background: rgba(34, 197, 94, 0.15);
            color: #16a34a;
        }
        
        .calc-result-badge.yellow {
            background: rgba(234, 179, 8, 0.15);
            color: #ca8a04;
        }
        
        .calc-result-badge.orange {
            background: rgba(249, 115, 22, 0.15);
            color: #ea580c;
        }
        
        .calc-result-badge.red {
            background: rgba(239, 68, 68, 0.15);
            color: #dc2626;
        }
        
        .calc-result-amount {
            font-family: 'Unbounded', sans-serif;
            font-size: clamp(36px, 8vw, 48px);
            font-weight: 800;
            color: var(--dark-turquoise);
            margin-bottom: 8px;
            line-height: 1.2;
        }
        
        .calc-result-label {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }
        
        .calc-result-comparison {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 24px;
            padding: 16px 0;
            border-top: 1px solid var(--light-bg);
            border-bottom: 1px solid var(--light-bg);
        }
        
        .calc-comparison-item {
            text-align: center;
        }
        
        .calc-comparison-label {
            display: block;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .calc-comparison-value {
            font-family: 'Unbounded', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--dark-turquoise);
        }
        
        .calc-result-highlight {
            background: linear-gradient(135deg, rgba(255, 139, 61, 0.1) 0%, rgba(255, 139, 61, 0.05) 100%);
            padding: 20px 24px;
            border-radius: 12px;
            border-left: 4px solid var(--orange);
            margin-bottom: 24px;
        }
        
        .calc-result-highlight-amount {
            font-family: 'Unbounded', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 4px;
        }
        
        .calc-result-highlight-text {
            font-size: 15px;
            color: var(--text-dark);
        }
        
        .calc-result-punchline {
            font-size: 17px;
            font-weight: 600;
            color: var(--teal);
            margin-bottom: 20px;
        }
        
        .calc-result-disclaimer {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 20px;
            opacity: 0.7;
        }
        
        .calc-result-cta {
            width: 100%;
            background: var(--orange);
            color: var(--white);
            padding: 18px 24px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 139, 61, 0.3);
        }
        
        .calc-result-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 139, 61, 0.4);
        }
        
        .calc-back {
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 14px;
            cursor: pointer;
            margin-top: 16px;
            transition: color 0.3s ease;
        }
        
        .calc-back:hover {
            color: var(--turquoise);
        }
        
        /* Input with suffix */
        .input-with-suffix {
            position: relative;
        }
        
        .input-with-suffix input {
            padding-right: 50px;
        }
        
        .input-suffix {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-size: 14px;
            pointer-events: none;
        }
        
        @media (max-width: 500px) {
            .calc-result-comparison {
                gap: 20px;
            }
            
            .calc-comparison-value {
                font-size: 16px;
            }
        }
/* ===============================================
   CHAT MODAL (SMS Style)
   =============================================== */

   .modal-chat {
    max-width: 500px;
    height: 70vh;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.modal-chat .modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.modal-chat .modal-header h2 {
    margin: 0;
    padding-right: 40px;
}

.modal-chat .modal-body {
    flex: 1;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.chat-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    max-width: 80%;
    padding: 14px 18px;
    border-radius: 20px;
    word-wrap: break-word;
    animation: bubbleIn 0.3s ease;
    font-size: 15px;
    line-height: 1.5;
}

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

.chat-bubble-left {
    align-self: flex-start;
    background-color: var(--light-bg);
    color: var(--text-dark);
    border-bottom-left-radius: 6px;
}

.chat-bubble-right {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--teal) 100%);
    color: var(--white);
    border-bottom-right-radius: 6px;
}

.chat-input-area {
    display: flex;
    gap: 12px;
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
    background-color: var(--white);
    flex-shrink: 0;
}

.chat-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--light-blue);
    border-radius: 28px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input:focus {
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(28, 133, 150, 0.1);
}

.chat-send-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--teal) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.chat-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(28, 133, 150, 0.4);
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chat-typing {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
    align-self: flex-start;
    background-color: var(--light-bg);
    border-radius: 20px;
    border-bottom-left-radius: 6px;
}

.chat-typing span {
    width: 8px;
    height: 8px;
    background-color: var(--text-muted);
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.chat-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-4px);
        opacity: 1;
    }
}

.contact-success {
    text-align: center;
    padding: 40px 24px;
    animation: fadeInUp 0.4s ease;
}

.contact-success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-success h3 {
    color: var(--teal);
    margin-bottom: 8px;
    font-size: 20px;
}

.contact-success p {
    color: var(--text-muted);
    font-size: 15px;
}

@media (max-width: 768px) {
    .modal-chat {
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    
    .chat-bubble {
        max-width: 85%;
    }
    
    .chat-messages {
        padding: 16px;
    }
    
    .chat-input-area {
        padding: 12px 16px 20px;
    }
}
/* ===============================================
   RESPONSIVE
   =============================================== */

@media (max-width: 900px) {
    .killers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .levers-grid {
        grid-template-columns: 1fr;
    }
    
    .phases-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .phase-arrow {
        padding: 0;
    }
    
    .phase-arrow svg {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero-bg::after {
        background: linear-gradient(180deg, rgba(12, 71, 90, 0.9) 0%, rgba(12, 71, 90, 0.7) 100%);
    }

    .about-content {
        flex-direction: column;
        gap: 32px;
    }

    .about-photo {
        width: 120px;
        height: 120px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .modal-content {
        padding: 28px;
        margin: 16px;
        border-radius: 12px;
    }
    
    .killer-card {
        padding: 24px;
    }
    
    .lever-item {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .nav-cta {
        padding: 8px 16px;
        font-size: 13px;
    }

    .nav-logo img {
        height: 36px;
    }

    .btn-primary,
    .btn-cta-primary {
        padding: 16px 32px;
        font-size: 15px;
    }
}
/* ===============================================
   CALENDAR MODAL - PRIMING + LIEN DIRECT
   À ajouter dans style.css
   =============================================== */

/* Modal Priming - compact et élégant */
.modal-priming {
    max-width: 420px;
    width: 90%;
    border-radius: 16px;
    overflow: hidden;
}

.priming-content {
    padding: 40px 32px;
    text-align: center;
    background: var(--white);
}

/* Photo */
.priming-photo {
    margin-bottom: 24px;
}

.priming-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--light-blue);
    box-shadow: 0 4px 20px rgba(28, 133, 150, 0.15);
}

/* Titre */
.priming-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-turquoise);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

/* Texte d'accroche */
.priming-text {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0 0 28px 0;
    line-height: 1.5;
    opacity: 0.85;
}

/* CTA principal */
.priming-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 139, 61, 0.3);
}

.priming-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 139, 61, 0.4);
    background: #ff9d5c;
}

.priming-cta svg {
    transition: transform 0.2s ease;
}

.priming-cta:hover svg {
    transform: translate(3px, -3px);
}

/* Note sous le CTA */
.priming-note {
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.5;
    margin: 16px 0 0 0;
}

/* Close button */
.modal-priming .modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    color: var(--text-dark);
    opacity: 0.4;
    z-index: 10;
    background: transparent;
    border: none;
    font-size: 28px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-priming .modal-close:hover {
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.05);
}

/* ===============================================
   RESPONSIVE
   =============================================== */

@media (max-width: 480px) {
    .modal-priming {
        width: 95%;
        margin: 20px;
    }
    
    .priming-content {
        padding: 32px 24px;
    }
    
    .priming-photo img {
        width: 80px;
        height: 80px;
    }
    
    .priming-title {
        font-size: 20px;
    }
    
    .priming-text {
        font-size: 15px;
    }
    
    .priming-cta {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
}
