:root {
    --primary: #CDB4DB;
    --accent: #C2DBB4;
    --heading: #B692CA;
    --bg: #EDE3F2;
    --text: #0B070E;
    --white: #ffffff;
    --primary-dark: #b89ec8;
    --accent-dark: #a8c89a;
    --soft: rgba(205, 180, 219, 0.18);
    --softer: rgba(205, 180, 219, 0.10);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
    overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 48px;
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(237, 227, 242, 0.90);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(182, 146, 202, 0.15);
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    nav {
        padding: 12px 24px;
        min-height: 70px;
    }
}

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

.site-logo {
    width: 200px;
    height: auto;
    display: block;
}

.nav-logo a {
    display: flex;
    align-items: center;
    transition: opacity 0.2s ease;
}

@media (max-width: 900px) {
    .site-logo {
        width: 160px;
    }
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
    opacity: 0.75;
}

.nav-links a:hover {
    color: var(--heading);
    opacity: 1;
}

.nav-cta {
    background: var(--heading);
    color: var(--white) !important;
    padding: 10px 26px !important;
    border-radius: 50px;
    opacity: 1 !important;
    font-size: 13px !important;
    transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 48px 100px; /* ugyanaz mint más section */
    overflow: hidden;
}

@media (max-width: 900px) {
    .hero {
        padding: 120px 24px 72px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 65% at 75% 45%, rgba(194, 219, 180, 0.32) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 15% 70%, rgba(205, 180, 219, 0.35) 0%, transparent 60%),
    var(--bg);
}

.hero-decor {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.hero-decor-1 {
    width: 480px;
    height: 480px;
    background: var(--primary);
    top: -100px;
    right: -80px;
    animation: float1 8s ease-in-out infinite;
}

.hero-decor-2 {
    width: 260px;
    height: 260px;
    background: var(--accent);
    bottom: 60px;
    right: 120px;
    animation: float2 10s ease-in-out infinite;
}

.hero-decor-3 {
    width: 160px;
    height: 160px;
    background: var(--heading);
    top: 180px;
    right: 38%;
    animation: float1 12s ease-in-out infinite reverse;
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-22px) scale(1.03);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(18px) scale(0.97);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 0.9s ease both;
}

/* Hero visual side */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeUp 0.9s 0.25s ease both;
}

.hero-stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 26px 30px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 4px 24px rgba(182, 146, 202, 0.14);
    transition: transform 0.25s, box-shadow 0.25s;
}

.hero-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(182, 146, 202, 0.22);
}

.hero-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.icon-purple {
    background: rgba(182, 146, 202, 0.18);
}

.icon-green {
    background: rgba(194, 219, 180, 0.28);
}

.icon-soft {
    background: rgba(205, 180, 219, 0.20);
}

.hero-stat-text strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
    line-height: 1.25;
}

.hero-stat-text span {
    font-size: 13.5px;
    opacity: 0.68;
    line-height: 1.5;
}

.hero-quote-card {
    background: linear-gradient(135deg, var(--heading), var(--primary-dark));
    border-radius: 20px;
    padding: 28px 30px;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(182, 146, 202, 0.36);
}

.hero-quote-card p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: var(--white);
}

.hero-quote-card span {
    font-size: 12.5px;
    opacity: 0.80;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

.hero-tag {
    display: inline-block;
    background: rgba(182, 146, 202, 0.18);
    border: 1px solid rgba(182, 146, 202, 0.35);
    color: var(--heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    animation: fadeUp 0.9s 0.1s ease both;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 500;
    line-height: 1.18;
    color: var(--text);
    margin-bottom: 28px;
    animation: fadeUp 0.9s 0.2s ease both;
}

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

.hero-lead {
    font-size: 17px;
    line-height: 1.80;
    opacity: 0.82;
    margin-bottom: 18px;
    animation: fadeUp 0.9s 0.3s ease both;
}

.hero-sub {
    font-size: 16px;
    line-height: 1.78;
    opacity: 0.72;
    margin-bottom: 44px;
    animation: fadeUp 0.9s 0.4s ease both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.5s ease both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--heading), var(--primary-dark));
    color: var(--white);
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 28px rgba(182, 146, 202, 0.38);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(182, 146, 202, 0.50);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    display: inline-block;
    border: 1.5px solid rgba(11, 7, 14, 0.20);
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
    border-color: var(--heading);
    color: var(--heading);
}

/* ===== SECTION BASE ===== */
section {
    padding: 100px 48px;
}

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

.container-narrow {
    max-width: 740px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--heading);
    margin-bottom: 18px;
    opacity: 0.9;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 500;
    line-height: 1.22;
    color: var(--text);
    margin-bottom: 24px;
}

h2 em {
    font-style: italic;
    color: var(--heading);
}

p {
    margin-bottom: 18px;
}

p:last-child {
    margin-bottom: 0;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    background: var(--white);
}

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

.problem-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.thought-bubble {
    background: var(--bg);
    border-left: 3px solid var(--primary);
    border-radius: 0 14px 14px 0;
    padding: 18px 24px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 19px;
    color: var(--text);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
    position: relative;
}

.thought-bubble.visible {
    opacity: 1;
    transform: translateX(0);
}

.thought-bubble:nth-child(1) {
    transition-delay: 0s;
}

.thought-bubble:nth-child(2) {
    transition-delay: 0.15s;
    border-left-color: var(--accent-dark);
}

.thought-bubble:nth-child(3) {
    transition-delay: 0.30s;
    border-left-color: var(--heading);
}

.problem-bold {
    margin-top: 32px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    color: var(--heading);
    line-height: 1.40;
    padding: 20px 26px;
    background: rgba(182, 146, 202, 0.10);
    border-radius: 12px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--bg);
}

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

.process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    opacity: 0;
    transform: translateY(24px);
}

.process-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-card:nth-child(1) {
    transition-delay: 0s;
}

.process-card:nth-child(2) {
    transition-delay: 0.10s;
}

.process-card:nth-child(3) {
    transition-delay: 0.20s;
}

.process-card:nth-child(4) {
    transition-delay: 0.30s;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(182, 146, 202, 0.22);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.process-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 14px;
    opacity: 0.55;
}

.process-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 10px;
    line-height: 1.3;
}

.process-card p {
    font-size: 14.5px;
    opacity: 0.78;
    line-height: 1.65;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-portrait {
    position: relative;
}

.about-portrait-frame {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 28px 28px 80px 28px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.portrait-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    line-height: 1;
}

.about-portrait-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--heading);
    color: var(--white);
    border-radius: 18px;
    padding: 16px 22px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 8px 28px rgba(182, 146, 202, 0.40);
    max-width: 180px;
    text-align: center;
}

.about-portrait-decor {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 140px;
    height: 140px;
    border: 2px solid rgba(205, 180, 219, 0.40);
    border-radius: 50%;
    pointer-events: none;
}

.about-portrait-decor2 {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(182, 146, 202, 0.25);
    border-radius: 50%;
    pointer-events: none;
}

.about-content .section-tag {
    display: block;
}

.about-list {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15.5px;
    line-height: 1.65;
    opacity: 0.85;
}

.about-list li::before {
    content: '♡';
    color: var(--heading);
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(145deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 20% 50%, rgba(255, 255, 255, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(34px, 4.5vw, 54px);
    color: var(--white);
    margin-bottom: 22px;
    position: relative;
}

.cta-section h2 em {
    color: rgba(255, 255, 255, 0.82);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    max-width: 540px;
    margin: 0 auto 44px;
    line-height: 1.75;
    position: relative;
}

.btn-white {
    background: var(--white);
    color: var(--heading);
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
}

/* ===== FOOTER ===== */
footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    padding: 40px 48px;
    font-size: 13.5px;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

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

/* ===== DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 40px 0;
    opacity: 0.35;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--heading);
}

.divider-icon {
    font-size: 18px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== HAMBURGER MENU ===== */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 200;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 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);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(237, 227, 242, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 12px 0;
    transition: color 0.2s;
    text-align: center;
}

.mobile-menu a:hover {
    color: var(--heading);
}

.mobile-menu a.mobile-cta {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    background: var(--heading);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 50px;
    margin-top: 18px;
}

.mobile-menu a.mobile-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    section {
        padding: 72px 24px;
    }

    .hero {
        padding: 110px 24px 72px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        display: none;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .about-portrait {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .process-cards {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        text-align: center;
    }
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
}

.about-portrait-frame {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 28px 28px 80px 28px;
    overflow: hidden;
    position: relative;
}

.about-portrait-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(182,146,202,0.15),
            transparent 60%
    );
}
