﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 700;
}

body {
    font-family: 'Heebo', Arial, sans-serif;
    background: linear-gradient(135deg, #1A0010 0%, #4A0020 50%, #8B0038 100%);
    min-height: 100vh;
    color: #ffffff;
    direction: rtl;
    padding-top: 70px;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

nav {
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-logo {
    font-size: 22px;
    font-weight: 900;
    color: #FF6B8A;
    text-shadow: 0 0 18px rgba(255,107,138,0.7), 0 0 40px rgba(255,107,138,0.3);
    text-decoration: none;
    position: absolute;
    left: 40px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: #F0D7DC;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #FF6B8A;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-hamburger {
    display: none;
}

.btn-primary {
    background-color: #FF6B8A;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255,107,138,0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255,107,138,0.7);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 40px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - 70px);
}

.hero-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-left {
    display: none;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 8px 18px;
    font-size: 14px;
    color: #F0D7DC;
    margin-bottom: 30px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
}

.hero h1 {
    font-size: 96px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    will-change: transform;
    animation: fadeOnly 1s ease forwards, float 4s ease-in-out 1s infinite;
}

.hero h1 .accent {
    color: #FF6B8A;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255,107,138,0.8), 0 0 60px rgba(255,107,138,0.4), 0 0 100px rgba(255,107,138,0.2);
    position: relative;
    display: inline-block;
}

.hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF6B8A 20%, #FF6B8A 80%, transparent);
    box-shadow: 0 0 10px rgba(255,107,138,0.9), 0 0 24px rgba(255,107,138,0.5);
    border-radius: 2px;
}

.hero p {
    font-size: 22px;
    color: #F0D7DC;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 600px;
}

.hero .btn-primary {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 38px;
    font-size: 20px;
    border-radius: 50px;
}

section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}

section h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 40px;
    color: #ffffff;
}

.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 1100px) {
    .cards {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
    }
}

@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
    }
}

.card {
    background: linear-gradient(160deg, #0e0008 0%, #080006 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 48px 36px 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 0 80px rgba(255,107,138,0.02);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,107,138,0.35), transparent);
}

.card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,107,138,0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.45s ease;
}

.card-canvas-wrap {
    width: 120px;
    height: 120px;
    margin-bottom: 28px;
    flex-shrink: 0;
}

.card-canvas-wrap canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.card p {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.62);
    line-height: 1.85;
}

.card:hover {
    transform: translateY(-12px);
    border-color: rgba(255,107,138,0.3);
    box-shadow:
        0 32px 64px rgba(0,0,0,0.55),
        0 0 60px rgba(255,107,138,0.08),
        inset 0 0 80px rgba(255,107,138,0.04);
}

.card:hover::after {
    bottom: -30px;
    background: radial-gradient(circle, rgba(255,107,138,0.18) 0%, transparent 70%);
}

.card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.card.card-visible {
    opacity: 1;
    transform: translateY(0);
}

.float-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #FF6B8A;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 38px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Heebo', Arial, sans-serif;
    box-shadow: 0 4px 24px rgba(255, 107, 138, 0.55);
    z-index: 500;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.float-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.float-cta:hover {
    box-shadow: 0 6px 32px rgba(255, 107, 138, 0.75);
    transform: translateY(-3px);
}

/* ── Contact Form (inside #final-cta) ───────────────────────────── */
.cf-wrap {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    text-align: right;
    transition: opacity 0.4s ease;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cf-field {
    display: flex;
    flex-direction: column;
}

.cf-field input,
.cf-field textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,107,138,0.18);
    border-radius: 12px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Heebo', Arial, sans-serif;
    direction: rtl;
    text-align: right;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    resize: none;
    width: 100%;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: rgba(255,255,255,0.28);
    font-family: 'Heebo', Arial, sans-serif;
}

.cf-field input:focus,
.cf-field textarea:focus {
    border-color: rgba(255,107,138,0.5);
    background: rgba(255,107,138,0.045);
    box-shadow: 0 0 0 3px rgba(255,107,138,0.09);
}

.cf-field input.cf-error {
    border-color: rgba(255,75,95,0.65);
    box-shadow: 0 0 0 3px rgba(255,75,95,0.09);
}

.cf-intro {
    font-size: 19px;
    font-weight: 400;
    color: rgba(255,255,255,0.62);
    font-family: 'Heebo', Arial, sans-serif;
    line-height: 1.85;
    margin-bottom: 6px;
}

.cf-submit {
    background: linear-gradient(135deg, #FF6B8A 0%, #D94E6A 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 52px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Heebo', Arial, sans-serif;
    cursor: pointer;
    align-self: center;
    margin-top: 8px;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
    box-shadow: 0 8px 28px rgba(255,107,138,0.38);
}

.cf-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(255,107,138,0.58);
}

.cf-submit:active {
    transform: translateY(0);
}

/* ── WhatsApp Button ─────────────────────────────────────────────── */
.wa-or {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 14px;
    color: rgba(255,255,255,0.22);
    font-size: 15px;
    font-weight: 500;
}
.wa-or::before,
.wa-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,107,138,0.14);
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #25D366 0%, #1aad52 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-family: 'Heebo', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(37,211,102,0.45), 0 6px 20px rgba(0,0,0,0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-btn svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
    flex-shrink: 0;
}
.wa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 34px rgba(37,211,102,0.7), 0 10px 28px rgba(0,0,0,0.3);
}
.wa-btn:active {
    transform: translateY(0);
}
.wa-btn:focus-visible {
    outline: 2px solid rgba(37,211,102,0.8);
    outline-offset: 3px;
}

.wa-footer-alt {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}
.wa-footer-link {
    color: rgba(255,107,138,0.75);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.wa-footer-link:hover {
    color: #FF6B8A;
}

.cf-success {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 16px 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.cf-success.cf-show {
    opacity: 1;
    pointer-events: auto;
}

.cf-success-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,107,138,0.1);
    border: 1px solid rgba(255,107,138,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FF6B8A;
    text-shadow: 0 0 14px rgba(255,107,138,0.65);
    box-shadow: 0 0 28px rgba(255,107,138,0.12);
    margin: 0 auto;
}

.cf-success p {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    font-family: 'Heebo', Arial, sans-serif;
    line-height: 1.75;
}

/* ── Consent notice ─────────────────────────────────────────────── */
.cf-consent {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.32);
    font-family: 'Heebo', Arial, sans-serif;
    line-height: 1.75;
    text-align: center;
    margin-top: 4px;
    margin-bottom: 12px;
    padding: 0 4px;
    opacity: 1;
}

/* ── Site footer ─────────────────────────────────────────────────── */
.site-footer {
    text-align: center;
    padding: 24px 40px;
    position: relative;
    z-index: 2;
    background: #000000;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.site-footer p {
    font-size: 13px;
    color: rgba(255,255,255,0.2);
    font-family: 'Heebo', Arial, sans-serif;
}

.footer-legal-links {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-legal-sep {
    color: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    line-height: 1;
}

.privacy-link {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Heebo', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.22);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.12);
    text-underline-offset: 3px;
    padding: 8px 4px;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.privacy-link:hover {
    color: rgba(255, 107, 138, 0.7);
    text-decoration-color: rgba(255, 107, 138, 0.3);
}

/* ── Privacy Modal ───────────────────────────────────────────────── */
.privacy-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.privacy-modal.pm-open {
    display: flex;
}

.privacy-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.privacy-box {
    position: relative;
    z-index: 1;
    background: linear-gradient(160deg, #0e0008 0%, #080006 100%);
    border: 1px solid rgba(255, 107, 138, 0.14);
    border-radius: 24px;
    padding: 48px 44px 44px;
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    direction: rtl;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255, 107, 138, 0.06);
    animation: pm-in 0.3s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes pm-in {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.privacy-box--wide {
    max-width: 680px;
}

.privacy-close {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-family: 'Heebo', Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease;
}

.privacy-close:hover {
    background: rgba(255, 107, 138, 0.1);
    color: #FF6B8A;
}

.privacy-title {
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Heebo', Arial, sans-serif;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 107, 138, 0.1);
}

.privacy-body p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Heebo', Arial, sans-serif;
    line-height: 2;
    margin-bottom: 16px;
}

.privacy-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .privacy-box {
        padding: 36px 24px 32px;
        border-radius: 18px;
    }

    .privacy-title { font-size: 22px; }
    .privacy-body p { font-size: 14px; }
    .cf-consent { font-size: 11px; }

    .privacy-link {
        font-size: 13px;
        padding: 10px 6px;
    }

    .privacy-close {
        width: 44px;
        height: 44px;
        top: 12px;
        left: 12px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .cf-row { grid-template-columns: 1fr; }

    .cf-submit {
        align-self: stretch;
        text-align: center;
    }

    .wa-btn {
        font-size: 15px;
        padding: 15px 20px;
        min-height: 54px;
    }

    .wa-or {
        font-size: 14px;
        margin: 16px 0 12px;
    }
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.hero, section, footer {
    position: relative;
    z-index: 2;
}

.section-visible {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-visible.visible {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    pointer-events: none;
}

.scroll-text {
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    font-family: 'Heebo', Arial, sans-serif;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 14px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.95));
    box-shadow: 0 0 8px rgba(255,107,138,0.7), 0 0 3px rgba(255,255,255,0.9);
    animation: scrollDot 2.2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%   { top: -14px; opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { top: 60px;  opacity: 0; }
}

@keyframes fadeOnly {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

#about {
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0)    0px,
            rgba(0, 0, 0, 0.6)  100px,
            #000000             280px
        ),
        radial-gradient(ellipse 46% 65% at 0% 55%, rgba(170, 18, 60, 0.09) 0%, transparent 68%);
    max-width: 100%;
    padding: 120px 80px 140px;
}


#services {
    background:
        radial-gradient(ellipse 72% 52% at 50% 58%, rgba(52, 0, 21, 0.26) 0%, transparent 68%),
        #000000;
    max-width: 100%;
    padding: 100px 80px 140px;
}

#services h2 {
    text-align: center;
    display: inline-block;
    position: relative;
    right: 50%;
    transform: translateX(50%);
    padding-bottom: 16px;
}

#services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 85%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF6B8A, transparent);
    box-shadow: 0 0 12px rgba(255,107,138,0.8), 0 0 25px rgba(255,107,138,0.4);
    border-radius: 2px;
}

.about-content {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-right {
    flex: 1.5;
}


.about-right h2 {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.glow-accent {
    color: #FF6B8A;
    text-shadow: 0 0 18px rgba(255,107,138,0.8), 0 0 40px rgba(255,107,138,0.4);
}

.about-glow {
    color: #FF6B8A;
    text-shadow:
        0 0 16px rgba(255,107,138,0.9),
        0 0 40px rgba(255,107,138,0.55),
        0 0 80px rgba(255,107,138,0.25);
}

.about-right p {
    font-size: 20px;
    font-weight: 700;
    color: #F0D7DC;
    line-height: 1.9;
    margin-bottom: 15px;
}

.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    border-right: 3px solid #FF6B8A;
    padding-right: 25px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: #FF6B8A;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #F0D7DC;
    margin-top: 5px;
}

.about-right h2, .about-right p, .stat {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-tagline {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 107, 138, 0.14);
}

.about-tagline p {
    margin-bottom: 2px;
    font-size: 22px !important;
    font-weight: 900 !important;
    line-height: 1.65;
}

p.about-tagline-1 {
    color: rgba(255, 255, 255, 0.85) !important;
}

p.about-tagline-2 {
    color: #FF6B8A !important;
    text-shadow: 0 0 18px rgba(255, 107, 138, 0.5), 0 0 44px rgba(255, 107, 138, 0.2);
}

.about-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ── PROBLEM SECTION ─────────────────────────────────────────────── */
#problem {
    background:
        radial-gradient(ellipse 54% 100% at 0% 50%, rgba(108, 5, 44, 0.32) 0%, transparent 64%),
        radial-gradient(ellipse 54% 100% at 100% 50%, rgba(88, 0, 36, 0.24) 0%, transparent 64%),
        radial-gradient(ellipse 46% 62% at 50% 50%, rgba(0, 0, 0, 0.55) 0%, transparent 80%),
        #000000;
    max-width: 100%;
    padding: 140px 80px;
    position: relative;
    z-index: 2;
}

#problem::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 107, 138, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 138, 0.022) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: -1;
}

.problem-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ps-grid {
    display: flex;
    align-items: flex-start;
}

.ps-col {
    flex: 1;
    min-width: 0;
}

.ps-divider {
    flex-shrink: 0;
    width: 1px;
    margin: 0 52px;
    align-self: stretch;
}

.ps-line {
    width: 1px;
    height: 100%;
    min-height: 380px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(255, 107, 138, 0.28) 20%,
        rgba(255, 107, 138, 0.28) 80%,
        transparent 100%);
    margin: 0 auto;
}

.ps-col-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ps-col-title.ps-visible {
    opacity: 1;
    transform: translateY(0);
}

.ps-accent-bad {
    color: #ff4d6a;
    text-shadow: 0 0 18px rgba(255, 77, 106, 0.55);
}

.ps-accent-good {
    color: #FF6B8A;
    text-shadow: 0 0 18px rgba(255, 107, 138, 0.55);
}

.ps-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.issue-card,
.solution-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, opacity 0.6s ease, transform 0.6s ease;
}

.issue-card {
    background: rgba(255, 60, 80, 0.06);
    border: 1px solid rgba(255, 60, 80, 0.18);
    border-left: 3px solid rgba(255, 77, 106, 0.65);
    opacity: 0;
    transform: translateX(24px);
}

.solution-card {
    background: rgba(0, 200, 120, 0.05);
    border: 1px solid rgba(0, 200, 120, 0.18);
    border-right: 3px solid rgba(0, 201, 125, 0.65);
    opacity: 0;
    transform: translateX(-24px);
}

.issue-card.ps-card-visible,
.solution-card.ps-card-visible {
    opacity: 1;
    transform: translateX(0);
}

.issue-card:hover {
    background: rgba(255, 60, 80, 0.11);
    border-left-color: rgba(255, 77, 106, 1);
    box-shadow: 0 8px 28px rgba(255, 60, 80, 0.12);
}

.solution-card:hover {
    background: rgba(0, 200, 120, 0.1);
    border-right-color: rgba(0, 201, 125, 1);
    box-shadow: 0 8px 28px rgba(0, 200, 120, 0.12);
}

.issue-x {
    font-size: 17px;
    font-weight: 900;
    color: #ff4d6a;
    flex-shrink: 0;
    line-height: 1;
}

.solution-check {
    font-size: 17px;
    font-weight: 900;
    color: #00c97d;
    flex-shrink: 0;
    line-height: 1;
}

.ps-takeaway {
    margin-top: 72px;
    text-align: center;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ps-takeaway.ps-visible {
    opacity: 1;
    transform: translateY(0);
}

.ps-glow-word {
    color: #FF6B8A;
    text-shadow:
        0 0 14px rgba(255, 107, 138, 0.8),
        0 0 36px rgba(255, 107, 138, 0.4),
        0 0 70px rgba(255, 107, 138, 0.18);
}

.ps-takeaway p {
    display: inline-block;
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    padding: 22px 48px;
    background: rgba(255, 107, 138, 0.07);
    border: 1px solid rgba(255, 107, 138, 0.22);
    border-radius: 50px;
    text-shadow: 0 0 28px rgba(255, 107, 138, 0.35);
    box-shadow: 0 0 40px rgba(255, 107, 138, 0.08), inset 0 0 40px rgba(255, 107, 138, 0.03);
}


.section-sep {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 138, 0.07) 30%, rgba(255, 107, 138, 0.07) 70%, transparent 100%);
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ── Journey Path Section ────────────────────────────────────────── */
#journey {
    background: #000000;
    max-width: 100%;
    padding: 140px 40px 160px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

#journey::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 38% at 50% 18%, rgba(88,0,36,0.16) 0%, transparent 70%),
        radial-gradient(ellipse 55% 45% at 28% 65%, rgba(88,0,36,0.09) 0%, transparent 62%),
        radial-gradient(ellipse 55% 45% at 72% 55%, rgba(88,0,36,0.07) 0%, transparent 62%);
    pointer-events: none;
    z-index: 0;
}

#journey::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,107,138,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,138,0.022) 1px, transparent 1px);
    background-size: 46px 46px;
    pointer-events: none;
    z-index: 0;
}

.journey-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.journey-header {
    text-align: center;
    margin-bottom: 80px;
}

.journey-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.3;
}

.journey-accent {
    color: #FF6B8A;
    text-shadow: 0 0 18px rgba(255,107,138,0.65), 0 0 40px rgba(255,107,138,0.3);
    text-decoration: underline;
    text-decoration-color: #FF6B8A;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.journey-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.9;
    font-weight: 400;
}

/* ── S-path container ────────────────────────────────────────────── */
.journey-path-wrap {
    position: relative;
    width: min(900px, 100%);
    aspect-ratio: 3/4;
    min-height: 800px;
    margin: 0 auto;
}

#journey-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: visible;
    z-index: 1;
}

/* ── Steps ───────────────────────────────────────────────────────── */
.jm-step {
    position: absolute;
    left: 0; right: 0;
    top: var(--ty);
    height: 0;
    z-index: 4;
}

/* ── Node circles ────────────────────────────────────────────────── */
.jm-node {
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 5;
}

.js-ln .jm-node { left: 33.33%; }
.js-rn .jm-node { left: 66.67%; }
.js-cn .jm-node { left: 50%; }

.jm-node-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 38% 35%, rgba(255,107,138,0.04) 0%, #080102 65%);
    border: 1.5px solid rgba(255,107,138,0.15);
    box-shadow: 0 0 5px rgba(255,107,138,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background 0.65s ease, border-color 0.65s ease, box-shadow 0.65s ease;
}

.jm-node-inner.jm-lit {
    background: radial-gradient(circle at 38% 35%, rgba(255,107,138,0.18) 0%, #0a0203 65%);
    border-color: rgba(255,107,138,0.55);
    box-shadow:
        0 0 24px rgba(255,107,138,0.45),
        0 0 50px rgba(255,107,138,0.18),
        inset 0 0 16px rgba(255,107,138,0.08);
}

.jm-step:hover .jm-node-inner.jm-lit {
    border-color: rgba(255,107,138,0.78);
    box-shadow:
        0 0 34px rgba(255,107,138,0.65),
        0 0 68px rgba(255,107,138,0.26),
        inset 0 0 20px rgba(255,107,138,0.12);
}

.jm-n {
    font-size: 22px;
    font-weight: 900;
    color: rgba(255,255,255,0.18);
    font-family: 'Heebo', Arial, sans-serif;
    letter-spacing: 0.03em;
    transition: color 0.65s ease;
}

.jm-node-inner.jm-lit .jm-n { color: #FF6B8A; }

.jm-final .jm-node { width: 100px; height: 100px; }

.jm-final .jm-node-inner.jm-lit {
    border-color: rgba(255,107,138,0.68);
    box-shadow:
        0 0 35px rgba(255,107,138,0.5),
        0 0 75px rgba(255,107,138,0.22),
        0 0 120px rgba(255,107,138,0.09),
        inset 0 0 28px rgba(255,107,138,0.1);
    animation: final-node-pulse 3s ease-in-out infinite;
}

@keyframes final-node-pulse {
    0%, 100% { box-shadow: 0 0 35px rgba(255,107,138,0.5), 0 0 75px rgba(255,107,138,0.22), inset 0 0 28px rgba(255,107,138,0.1); }
    50%       { box-shadow: 0 0 55px rgba(255,107,138,0.78), 0 0 100px rgba(255,107,138,0.35), inset 0 0 36px rgba(255,107,138,0.18); }
}

.jm-final .jm-n { font-size: 26px; }

/* ── Content blocks ──────────────────────────────────────────────── */
.jm-block {
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    text-align: right;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1);
}

.jm-block.jm-content-in { opacity: 1; }

.jm-block-r {
    left: calc(33.33% + 52px);
    width: min(260px, calc(58% - 60px));
}

.jm-block-l {
    right: calc(33.33% + 52px);
    width: min(260px, calc(58% - 60px));
}

.jm-block-c {
    left: 50%;
    top: 58px;
    transform: translateX(-50%);
    width: min(320px, 80%);
    text-align: center;
}

.jm-block h3 {
    font-size: 19px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 9px;
    line-height: 1.45;
    font-family: 'Heebo', Arial, sans-serif;
    transition: transform 0.35s ease;
}

.jm-step:hover .jm-block h3 { transform: translateY(-3px); }

.jm-block p {
    font-size: 14px;
    color: rgba(255,255,255,0.48);
    line-height: 1.85;
    margin: 0;
    font-weight: 400;
}

.jm-final .jm-block h3 { font-size: 22px; color: #FF6B8A; }

/* ── Mobile S-curve timeline ─────────────────────────────────────── */
/*
 * MOBILE JOURNEY — safe-zone layout
 *
 * The S-curve always passes through x=170 (centre of the 340px container)
 * between every pair of nodes. Two outer columns are always safe:
 *   LEFT  column  x = 0 – 140   (used by right-side steps)
 *   RIGHT column  x = 200 – 340 (used by left-side steps)
 * The centre corridor x = 140 – 200 is reserved for the curve.
 */

.journey-mobile {
    display: none;
    position: relative;
    max-width: 340px;
    margin: 0 auto;
    height: 720px;
    direction: ltr;
}

/* SVG decorative layer — behind everything */
.jm-mob-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.jm-mob-path {
    fill: none;
    stroke: rgba(255,107,138,0.35);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Steps — full container width so we can independently position
   the node (on the curve) and the text (in the safe outer column) */
.jm-mob-step {
    position: absolute;
    left: 0;
    width: 340px;
    min-height: 48px;
}

.jm-step-1 { top: 20px; }
.jm-step-2 { top: 150px; }
.jm-step-3 { top: 280px; }
.jm-step-4 { top: 410px; }
.jm-step-5 { top: 520px; }

/* ── Nodes ─────────────────────────────────────────────────── */
.jm-mob-node {
    position: absolute;
    top: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle, #0d0005 0%, #050001 100%);
    border: 1.5px solid rgba(255,107,138,0.2);
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    color: rgba(255,107,138,0.3);
    font-family: 'Heebo', Arial, sans-serif;
    z-index: 2;
    /* dim/small state */
    transform: scale(0.75);
    opacity: 0.4;
    transition:
        transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
        opacity   0.4s ease,
        border-color 0.4s ease,
        box-shadow   0.4s ease,
        color        0.4s ease,
        background   0.4s ease;
}

/* Pinned to curve x-positions */
.jm-side-l .jm-mob-node { left: 10px;  }   /* centre x = 34  */
.jm-side-r .jm-mob-node { right: 10px; }   /* centre x = 306 */

/* Centre node (step 5) — larger, horizontally centred */
.jm-side-c .jm-mob-node {
    left: 50%;
    width: 60px; height: 60px;
    font-size: 15px;
    transform: translateX(-50%) scale(0.75);
}

/* Lit states */
.jm-mob-node.jm-node-lit {
    transform: scale(1);
    opacity: 1;
    color: #FF6B8A;
    background: radial-gradient(circle, #1a0508 0%, #070102 100%);
    border-color: rgba(255,107,138,0.65);
    box-shadow: 0 0 18px rgba(255,107,138,0.6), 0 0 40px rgba(255,107,138,0.2);
}

.jm-side-c .jm-mob-node.jm-node-lit {
    transform: translateX(-50%) scale(1);   /* keep centering */
    box-shadow: 0 0 28px rgba(255,107,138,0.8), 0 0 60px rgba(255,107,138,0.35);
    animation: mob-final-pulse 2.8s ease-in-out infinite;
}

@keyframes mob-final-pulse {
    0%,100% { box-shadow: 0 0 28px rgba(255,107,138,0.8), 0 0 60px rgba(255,107,138,0.3); }
    50%      { box-shadow: 0 0 44px rgba(255,107,138,1),   0 0 80px rgba(255,107,138,0.5); }
}

/* ── Text blocks ─────────────────────────────────────────────
   Outer safe columns, never in the centre corridor.           */
.jm-mob-text {
    position: absolute;
    top: 0;
    width: 136px;
    direction: rtl;
    text-align: right;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1),
                transform 0.55s cubic-bezier(0.4,0,0.2,1);
}

/* Left-side steps → text in RIGHT safe column (x = 204–340) */
.jm-side-l .jm-mob-text {
    right: 0;
    transform: translateX(14px);
}

/* Right-side steps → text in LEFT safe column (x = 0–136) */
.jm-side-r .jm-mob-text {
    left: 0;
    transform: translateX(-14px);
}

/* Centre step → text centred below node */
.jm-side-c .jm-mob-text {
    top: 72px;
    width: 210px;
    left: calc(50% - 105px);
    text-align: center;
    transform: translateY(12px);
}

/* Reveal animations */
.jm-mob-text.jm-text-in               { opacity: 1; transform: translateX(0); }
.jm-side-c .jm-mob-text.jm-text-in    { transform: translateY(0); }

/* ── Typography ──────────────────────────────────────────── */
.jm-mob-text h3 {
    font-size: 15px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 5px;
    font-family: 'Heebo', Arial, sans-serif;
    line-height: 1.35;
}

.jm-side-c .jm-mob-text h3 {
    color: #FF6B8A;
    font-size: 17px;
}

.jm-mob-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.62);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    #journey { padding: 80px 24px 100px; }
    .journey-header h2 { font-size: 30px; }
    .journey-subtitle { font-size: 15px; }
    .journey-path-wrap { display: none; }
    .journey-mobile { display: block; }
}

@media (max-width: 800px) {
    #problem {
        padding: 80px 28px;
    }

    .ps-grid {
        flex-direction: column;
        gap: 56px;
    }

    .ps-divider {
        display: none;
    }

    .ps-col-title {
        font-size: 26px;
    }

    .ps-takeaway p {
        font-size: 19px;
        padding: 18px 28px;
    }
}

/* ── About Me — Clean Premium Layout ─────────────────────────────── */
#about-me {
    background: #000000;
    max-width: 100%;
    padding: 160px 80px 180px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

@keyframes am-aurora-drift {
    0%   { transform: translate(0px, 0px) scale(1); }
    100% { transform: translate(-22px, 14px) scale(1.04); }
}

#about-me::before {
    content: '';
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(ellipse 65% 75% at 28% 50%, rgba(140,0,48,0.14) 0%, transparent 58%),
        radial-gradient(ellipse 42% 55% at 26% 52%, rgba(214,75,121,0.07) 0%, transparent 52%),
        radial-gradient(ellipse 50% 45% at 68% 42%, rgba(88,0,30,0.06) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: am-aurora-drift 32s ease-in-out infinite alternate;
    will-change: transform;
}

#about-me::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,  transparent, transparent 45px, rgba(255,255,255,0.009) 45px, rgba(255,255,255,0.009) 46px),
        repeating-linear-gradient(90deg, transparent, transparent 45px, rgba(255,255,255,0.009) 45px, rgba(255,255,255,0.009) 46px);
    pointer-events: none;
    z-index: 0;
}

/* ── Layout wrapper — LTR so left/right are physical ── */
.am3-wrap {
    direction: ltr;
    display: flex;
    align-items: center;
    gap: 96px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Image column — LEFT ── */
.am3-img-col {
    flex: 0 0 380px;
    position: relative;
}

.am3-img-glow {
    position: absolute;
    inset: -18%;
    background: radial-gradient(ellipse 75% 82% at 50% 50%, rgba(255,107,138,0.12) 0%, transparent 62%);
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
}

.am3-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255,107,138,0.16);
    box-shadow:
        0 40px 100px rgba(0,0,0,0.72),
        0 0 0 1px rgba(255,107,138,0.04),
        0 0 55px rgba(255,107,138,0.08);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.6s ease;
}

.am3-img:hover {
    transform: translateY(-8px);
    box-shadow:
        0 56px 120px rgba(0,0,0,0.78),
        0 0 72px rgba(255,107,138,0.14);
}

/* ── Text column — RIGHT (RTL restored) ── */
.am3-text-col {
    direction: rtl;
    flex: 1;
    min-width: 0;
}

.am3-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,107,138,0.82);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-family: 'Heebo', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 28px;
}

.am3-label::before,
.am3-label::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: rgba(255,107,138,0.32);
}

.am3-headline {
    font-size: 60px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.22;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
    font-family: 'Heebo', Arial, sans-serif;
}

.am3-accent {
    color: #FF6B8A;
    text-shadow: 0 0 24px rgba(255,107,138,0.5), 0 0 60px rgba(255,107,138,0.18);
}

.name-glow {
    color: #FF6B8A;
    text-shadow: 0 0 12px rgba(255,107,138,0.7), 0 0 28px rgba(255,107,138,0.35);
    font-weight: 900;
}

.am3-intro {
    font-size: 19px;
    font-weight: 700;
    color: rgba(255,255,255,0.82);
    font-family: 'Heebo', Arial, sans-serif;
    margin-bottom: 28px;
}

.am3-body {
    margin-bottom: 40px;
}

.am3-body p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    line-height: 2;
    font-family: 'Heebo', Arial, sans-serif;
    margin-bottom: 16px;
}

.am3-body p:last-child {
    margin-bottom: 0;
}

/* Trust badges */
.am3-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}

.am3-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid rgba(255,107,138,0.18);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.68);
    font-family: 'Heebo', Arial, sans-serif;
    background: rgba(255,107,138,0.04);
    transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.am3-badge::before {
    content: '✓';
    color: #FF6B8A;
    font-weight: 900;
    font-size: 12px;
    text-shadow: 0 0 8px rgba(255,107,138,0.5);
}

.am3-badge:hover {
    border-color: rgba(255,107,138,0.4);
    background: rgba(255,107,138,0.09);
    color: rgba(255,255,255,0.88);
}

/* Closing statement */
.am3-closing {
    padding-top: 36px;
    border-top: 1px solid rgba(255,107,138,0.1);
}

.am3-closing-1 {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255,255,255,0.72);
    font-family: 'Heebo', Arial, sans-serif;
    line-height: 1.6;
    margin-bottom: 4px;
}

.am3-closing-2 {
    font-size: 20px;
    font-weight: 900;
    color: #FF6B8A;
    font-family: 'Heebo', Arial, sans-serif;
    line-height: 1.6;
    text-shadow: 0 0 22px rgba(255,107,138,0.45);
}

/* ── Reveal animations ── */
.am3-reveal {
    opacity: 0;
    transform: scale(0.97) translateY(16px);
    transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

.am3-reveal.am3-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.am3-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.am3-fade.am3-in {
    opacity: 1;
    transform: translateY(0);
}

/* ── Mobile ── */
@media (max-width: 900px) {
    #about-me { padding: 80px 24px 100px; }

    .am3-wrap {
        flex-direction: column;
        gap: 52px;
    }

    .am3-img-col {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .am3-text-col { direction: rtl; }
    .am3-headline { font-size: 38px; }
    .am3-intro { font-size: 17px; }
}

/* ── FAQ Section ──────────────────────────────────────────────────── */
#faq {
    background: #000000;
    max-width: 100%;
    padding: 160px 80px 160px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

#faq::before {
    content: '';
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(ellipse 65% 50% at 50% 35%, rgba(120,0,45,0.13) 0%, transparent 58%),
        radial-gradient(ellipse 45% 40% at 30% 65%, rgba(100,0,38,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 70% 55%, rgba(180,20,70,0.07) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

#faq::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,107,138,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,138,0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.faq-inner {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-title {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Heebo', Arial, sans-serif;
    margin-bottom: 18px;
    line-height: 1.3;
}

.faq-accent {
    color: #FF6B8A;
    text-shadow: 0 0 20px rgba(255,107,138,0.55), 0 0 50px rgba(255,107,138,0.2);
}

.faq-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.48);
    line-height: 1.9;
    font-family: 'Heebo', Arial, sans-serif;
    max-width: 520px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255,107,138,0.1);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255,107,138,0.1);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Heebo', Arial, sans-serif;
    color: rgba(255,255,255,0.88);
    transition: color 0.3s ease;
}

.faq-q:hover {
    color: #ffffff;
}

.faq-item.open .faq-q {
    color: #FF6B8A;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,107,138,0.28);
    position: relative;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: rgba(255,107,138,0.75);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease;
}

.faq-icon::before {
    width: 11px; height: 1.5px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.5px; height: 11px;
    transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon {
    background: rgba(255,107,138,0.1);
    border-color: rgba(255,107,138,0.55);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease,
                padding 0.35s ease;
    padding-bottom: 0;
}

.faq-item.open .faq-a {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 28px;
}

.faq-a p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    line-height: 1.95;
    font-family: 'Heebo', Arial, sans-serif;
}

.faq-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-fade.faq-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    #faq {
        padding: 80px 24px 90px;
    }

    .faq-title { font-size: 30px; }
    .faq-subtitle { font-size: 15px; }
    .faq-q { font-size: 16px; padding: 22px 0; }
    .faq-a p { font-size: 15px; }
}

/* ── Before / After Section ───────────────────────────────────────── */
#before-after {
    background: #000000;
    max-width: 100%;
    padding: 130px 80px 140px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

#before-after::before {
    content: '';
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(ellipse 70% 55% at 28% 48%, rgba(130,0,50,0.14) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 72% 52%, rgba(255,107,138,0.08) 0%, transparent 58%),
        radial-gradient(ellipse 50% 40% at 50% 20%, rgba(100,0,38,0.10) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

#before-after::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,107,138,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,138,0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

.ba-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ba-header {
    text-align: center;
    margin-bottom: 70px;
}

.ba-title {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Heebo', Arial, sans-serif;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ba-accent {
    color: #FF6B8A;
    text-shadow: 0 0 20px rgba(255,107,138,0.55), 0 0 50px rgba(255,107,138,0.2);
}

.ba-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.9;
    font-family: 'Heebo', Arial, sans-serif;
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 72px;
}

.ba-panel {
    border-radius: 24px;
    padding: 44px 40px 48px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.ba-panel:hover {
    transform: translateY(-6px);
}

.ba-before {
    background: rgba(255, 45, 70, 0.05);
    border: 1px solid rgba(255, 60, 80, 0.18);
    box-shadow: 0 8px 48px rgba(0,0,0,0.45), inset 0 0 60px rgba(255,45,70,0.03);
}

.ba-before::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,60,80,0.6), transparent);
}

.ba-after {
    background: rgba(255, 107, 138, 0.05);
    border: 1px solid rgba(255, 107, 138, 0.2);
    box-shadow: 0 8px 48px rgba(0,0,0,0.45), inset 0 0 60px rgba(255,107,138,0.03);
}

.ba-after::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,107,138,0.7), transparent);
}

.ba-panel-label {
    font-size: 12px;
    font-weight: 700;
    font-family: 'Heebo', Arial, sans-serif;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ba-label-before {
    color: rgba(255, 80, 100, 0.85);
}

.ba-label-before::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255, 80, 100, 0.85);
    box-shadow: 0 0 8px rgba(255,80,100,0.6);
}

.ba-label-after {
    color: rgba(255, 107, 138, 0.9);
}

.ba-label-after::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #FF6B8A;
    box-shadow: 0 0 8px rgba(255,107,138,0.7);
}

.ba-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ba-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Heebo', Arial, sans-serif;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
}

.ba-x {
    font-size: 15px;
    flex-shrink: 0;
    line-height: 1;
}

.ba-check {
    font-size: 16px;
    font-weight: 900;
    color: #00c97d;
    text-shadow: 0 0 10px rgba(0,201,125,0.55);
    flex-shrink: 0;
    line-height: 1;
}

.ba-takeaway {
    text-align: center;
    padding: 30px 48px;
    background: rgba(255,107,138,0.06);
    border: 1px solid rgba(255,107,138,0.18);
    border-radius: 50px;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(255,107,138,0.06), inset 0 0 40px rgba(255,107,138,0.02);
}

.ba-takeaway-1 {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    font-family: 'Heebo', Arial, sans-serif;
    margin-bottom: 4px;
}

.ba-takeaway-2 {
    font-size: 20px;
    font-weight: 900;
    color: #FF6B8A;
    font-family: 'Heebo', Arial, sans-serif;
    text-shadow: 0 0 20px rgba(255,107,138,0.4);
}

.ba-fade {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ba-fade.ba-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    #before-after {
        padding: 80px 24px 90px;
    }

    .ba-title { font-size: 28px; }

    .ba-subtitle { font-size: 15px; }

    .ba-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 48px;
    }

    .ba-panel { padding: 32px 28px 36px; }

    .ba-takeaway {
        padding: 22px 28px;
        border-radius: 20px;
    }

    .ba-takeaway-1,
    .ba-takeaway-2 { font-size: 17px; }
}

/* ── Final CTA Section ─────────────────────────────────────────────── */
#final-cta {
    background: #000000;
    max-width: 100%;
    padding: 160px 40px 185px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    text-align: center;
}

#final-cta::before {
    content: '';
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(ellipse 85% 65% at 50% 42%, rgba(163,0,51,0.23) 0%, transparent 56%),
        radial-gradient(ellipse 60% 50% at 50% 32%, rgba(214,75,121,0.13) 0%, transparent 52%),
        radial-gradient(ellipse 50% 42% at 50% 60%, rgba(100,0,38,0.12) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
    animation: fcta-aurora 24s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes fcta-aurora {
    0%   { transform: scale(1) translateY(0px); }
    100% { transform: scale(1.07) translateY(-18px); }
}

#final-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,107,138,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,138,0.022) 1px, transparent 1px);
    background-size: 46px 46px;
    pointer-events: none;
    z-index: 0;
}

.fcta-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fcta-headline {
    font-size: 60px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.28;
    margin-bottom: 40px;
    font-family: 'Heebo', Arial, sans-serif;
    letter-spacing: -0.02em;
}

.fcta-accent {
    background: linear-gradient(135deg, #FFB3C8 0%, #FF6B8A 48%, #E05070 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter:
        drop-shadow(0 0 16px rgba(255,107,138,0.55))
        drop-shadow(0 0 44px rgba(255,107,138,0.22));
}

.fcta-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    line-height: 1.95;
    max-width: 560px;
    margin: 0 auto 70px;
    font-family: 'Heebo', Arial, sans-serif;
}

.fcta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 22px;
    gap: 0;
    margin-bottom: 52px;
}

.fcta-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    font-family: 'Heebo', Arial, sans-serif;
    padding: 0 36px;
}

.fcta-trust-item:not(:last-child) {
    border-left: 1px solid rgba(255,107,138,0.22);
}

.fcta-check {
    color: #FF6B8A;
    font-weight: 900;
    font-size: 17px;
    text-shadow: 0 0 10px rgba(255,107,138,0.6);
    flex-shrink: 0;
    line-height: 1;
}

.fcta-microcopy {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.34);
    font-family: 'Heebo', Arial, sans-serif;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0.015em;
}

.fcta-tagline {
    font-size: 22px;
    font-weight: 900;
    font-family: 'Heebo', Arial, sans-serif;
    color: #FF6B8A;
    text-shadow:
        0 0 18px rgba(255,107,138,0.75),
        0 0 45px rgba(255,107,138,0.35),
        0 0 90px rgba(255,107,138,0.15);
    margin-bottom: 28px;
    letter-spacing: 0.01em;
}

.fcta-btn {
    padding: 20px 64px;
    font-size: 21px;
    border-radius: 50px;
    box-shadow: 0 8px 34px rgba(0,0,0,0.42);
    animation: fcta-btn-pulse 3.2s ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, animation 0s;
}

@keyframes fcta-btn-pulse {
    0%   { box-shadow: 0 0 8px  rgba(255,107,138,0.15), 0 8px 34px rgba(0,0,0,0.42); }
    50%  { box-shadow: 0 0 38px rgba(255,107,138,0.65), 0 8px 34px rgba(0,0,0,0.42); }
    100% { box-shadow: 0 0 8px  rgba(255,107,138,0.15), 0 8px 34px rgba(0,0,0,0.42); }
}

.fcta-btn:hover {
    animation: none;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 54px rgba(255,107,138,0.78), 0 18px 54px rgba(0,0,0,0.52);
}

.fcta-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.fcta-fade.fcta-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    #final-cta {
        padding: 90px 28px 110px;
    }

    .fcta-headline {
        font-size: 34px;
        line-height: 1.35;
        margin-bottom: 28px;
    }

    .fcta-subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }

    .fcta-trust {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 40px;
    }

    .fcta-trust-item {
        padding: 0;
        border-left: none !important;
        font-size: 16px;
    }

    .fcta-microcopy {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .fcta-btn {
        padding: 17px 48px;
        font-size: 18px;
    }
}

/* ══════════════════════════════════════════════════
   MOBILE (עד 768px)
══════════════════════════════════════════════════ */
@media (max-width: 768px) {

    body { padding-top: 60px; }

    /* ── Nav ── */
    nav {
        height: 60px;
        padding: 0 20px;
        justify-content: space-between;
    }

    .nav-logo {
        position: static;
        font-size: 18px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0; right: 0;
        background: rgba(5,0,10,0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 8px 0 20px;
        z-index: 999;
        border-bottom: 1px solid rgba(255,107,138,0.12);
    }

    .nav-menu.open { display: flex; }

    .nav-menu li { width: 100%; text-align: center; }

    .nav-menu a {
        display: block;
        font-size: 17px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        color: rgba(255,255,255,0.85);
    }

    .nav-menu li:last-child a { border-bottom: none; }

    .nav-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

    .nav-hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #ffffff;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Grid — ultra-subtle on mobile ── */
    body::before {
        background-image:
            linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
    }

    /* ── Particles — very faint on mobile (density is also cut in JS) ── */
    #particles { opacity: 0.13; }

    /* ── Hero — dark radial overlay improves text readability ── */
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 100% 60% at 50% 42%,
                rgba(4,0,2,0.62) 0%,
                rgba(12,0,6,0.44) 50%,
                transparent 100%);
        pointer-events: none;
        z-index: -1;
    }

    /* ── Hero ── */
    .hero {
        padding: 50px 24px 90px;
        min-height: calc(100vh - 60px);
    }

    .hero h1 {
        font-size: 46px;
        line-height: 1.18;
        margin-bottom: 18px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 36px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 28px;
        font-size: 15px;
    }

    /* ── About ── */
    #about { padding: 70px 24px 80px; }

    .about-content {
        flex-direction: column;
        gap: 36px;
    }

    .about-right h2 { font-size: 28px; }

    /* ── Services ── */
    #services { padding: 70px 24px 80px; }

    .cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* ── Journey timeline mobile ── */
    .journey-mobile {
        max-width: 100%;
    }

    /* ── About Me mobile centering ── */
    .am3-label {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .am3-headline {
        text-align: center;
    }

    .am3-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .am3-closing {
        text-align: center;
    }

    /* ── Float CTA ── */
    .float-cta {
        bottom: 20px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        font-size: 15px;
        padding: 13px 28px;
        white-space: nowrap;
    }

    .float-cta.visible { transform: translateX(-50%) translateY(0); }

    /* ── Contact form ── */
    .cf-intro { font-size: 16px; }

    .cf-wrap { max-width: 100%; }
}
