/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --cream: #FAF6F1;
    --cream-dark: #F0E8DE;
    --warm-beige: #E8D5C4;
    --blush: #D4A99A;
    --rose: #C4908A;
    --brown: #8B6F5E;
    --dark: #373737;
    --dark-soft: #5A5A5A;
    --white: #FFFFFF;
    --gold: #B8956A;
    --gold-light: #D4B896;
    --shadow-soft: 0 4px 30px rgba(139, 111, 94, 0.08);
    --shadow-med: 0 8px 40px rgba(139, 111, 94, 0.12);
    --shadow-lg: 0 20px 60px rgba(139, 111, 94, 0.15);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(250, 246, 241, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    padding: 10px 24px;
}
.navbar-logo {
    height: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.navbar.scrolled .navbar-logo { opacity: 1; }
.navbar-cta {
    padding: 10px 24px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.navbar-cta:hover {
    background: var(--brown);
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, var(--cream) 0%, var(--cream-dark) 50%, var(--warm-beige) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,169,154,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,149,106,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-logo {
    width: 200px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease forwards;
}

.hero-flower {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    opacity: 0.6;
    animation: fadeIn 1.2s ease forwards;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: 16px;
    animation: fadeUp 1s ease 0.2s both;
}

.hero-title {
    font-size: clamp(2.4rem, 8vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
    animation: fadeUp 1s ease 0.4s both;
}
.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--blush);
}

.hero-desc {
    max-width: 500px;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--dark-soft);
    margin-bottom: 36px;
    animation: fadeUp 1s ease 0.6s both;
}

/* ===== DISCOUNT BADGE ===== */
.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--warm-beige);
    border-radius: 60px;
    padding: 12px 28px;
    margin-bottom: 36px;
    animation: fadeUp 1s ease 0.7s both;
    box-shadow: var(--shadow-soft);
}
.discount-badge .percentage {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--blush);
    line-height: 1;
}
.discount-badge .label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-soft);
    line-height: 1.4;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(55,55,55,0.2);
    animation: fadeUp 1s ease 0.8s both;
}
.btn-primary:hover {
    background: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(55,55,55,0.25);
}
.btn-primary svg { width: 18px; height: 18px; fill: currentColor; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}
.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: #20BD5C;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

/* ===== HERO LAYOUT WRAPPERS ===== */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-right {
    display: none;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s ease 1.5s both;
}
.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brown);
    opacity: 0.6;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--brown);
    opacity: 0.3;
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--brown);
    animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 150%; }
}

/* ===== SECTION SPACING ===== */
section { padding: 80px 24px; }
.section-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 12px;
    color: var(--dark);
}
.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--blush);
}
.section-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    color: var(--brown);
    margin-bottom: 8px;
    display: block;
}
.section-desc {
    max-width: 560px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--dark-soft);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
    position: relative;
}
.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.about-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 32px;
    overflow: hidden;
    border: 3px solid var(--warm-beige);
    box-shadow: var(--shadow-med);
    background: linear-gradient(135deg, var(--cream-dark), var(--warm-beige));
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-text {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--dark-soft);
    margin-bottom: 24px;
}
.about-credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.credential {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--cream);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--dark-soft);
}
.credential svg { width: 16px; height: 16px; stroke: var(--blush); fill: none; stroke-width: 1.5; }

/* ===== SERVICES ===== */
.services {
    background: var(--cream);
    position: relative;
}
.services-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--blush), var(--gold-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--blush);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}
.service-desc {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--dark-soft);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}
.service-desc.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
.service-read-more {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--blush);
    cursor: pointer;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}
.service-read-more:hover {
    color: var(--brown);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blush);
    transition: all 0.3s ease;
}
.service-cta:hover { color: var(--brown); gap: 10px; }
.service-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ===== RESULTS GALLERY ===== */
.results {
    background: var(--white);
    text-align: center;
    padding: 72px 24px;
}
.results-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 20px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: none;
}
.results-scroll::-webkit-scrollbar { display: none; }
.result-card {
    flex: 0 0 85%;
    max-width: 420px;
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--cream);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-med);
}
.result-card img {
    width: 100%;
    height: auto;
    display: block;
}
.result-card-label {
    padding: 14px 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    text-align: center;
}
.results-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.results-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--warm-beige);
    transition: all 0.3s ease;
}
.results-dot.active {
    background: var(--blush);
    width: 20px;
    border-radius: 3px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #4A3F3A 100%);
    text-align: center;
    padding: 64px 24px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.cta-banner * { position: relative; z-index: 1; }
.cta-banner .section-label { color: var(--gold-light); }
.cta-banner .section-title { color: var(--white); }
.cta-banner .section-title em { color: var(--gold-light); }
.cta-banner .section-desc { color: rgba(255,255,255,0.7); }

.cta-discount {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 8px;
    line-height: 1;
}
.cta-code {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px dashed rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 10px 24px;
    margin: 16px 0 32px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* ===== REVIEWS ===== */
.reviews {
    background: var(--white);
}
.reviews-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.review-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 28px;
    position: relative;
}
.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}
.review-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}
.review-text {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--dark-soft);
    margin-bottom: 16px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-beige), var(--blush));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}
.review-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}
.review-date {
    font-size: 0.7rem;
    color: var(--brown);
    margin-top: 2px;
}
.review-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--warm-beige);
    line-height: 1;
    opacity: 0.5;
}

/* ===== PROCESS SECTION ===== */
.process {
    background: var(--cream);
}
.process-steps {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.process-step {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 40px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--warm-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--blush);
    flex-shrink: 0;
}
.step-line {
    width: 1px;
    flex: 1;
    background: var(--warm-beige);
    margin-top: 8px;
}
.step-content { padding-top: 8px; }
.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--dark);
}
.step-desc {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--dark-soft);
}

/* ===== INSTAGRAM SECTION ===== */
.instagram {
    background: var(--white);
    text-align: center;
}
.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
}
.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.4);
}
.instagram-link svg { width: 20px; height: 20px; fill: white; }

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(170deg, var(--cream) 0%, var(--cream-dark) 50%, var(--warm-beige) 100%);
    text-align: center;
    padding: 80px 24px;
}
.final-cta .hero-flower {
    margin: 0 auto 24px;
}
.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 40px 24px;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.8;
}
.footer-logo {
    width: 140px;
    margin: 0 auto 16px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
}
.footer a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer a:hover { color: var(--gold-light); }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    section { padding: 100px 40px; }
    .hero { padding: 120px 40px 80px; }
    .results-scroll {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        overflow: visible;
        margin: 0 auto;
        max-width: 900px;
        padding: 8px 0 0;
    }
    .result-card {
        flex: none;
        max-width: none;
    }
    .results-dots { display: none; }
    .hero-logo { width: 300px; }
    .service-card { padding: 36px 32px; }
    .cta-banner { padding: 80px 40px; }
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
    .about-image-wrapper { width: 240px; height: 240px; }
}

/* ===== DESKTOP WIDE ===== */
@media (min-width: 1100px) {
    section { padding: 120px 60px; }

    /* Hero: side-by-side layout */
    .hero {
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: center;
        gap: 80px;
        padding: 120px 80px 100px;
    }
    .hero-left {
        flex: 1;
        max-width: 560px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-right {
        flex: 0 0 auto;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .hero-right .hero-visual {
        width: 360px;
        height: 440px;
        border-radius: 200px 200px 24px 24px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 3px solid var(--warm-beige);
    }
    .hero-right .hero-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .scroll-indicator { display: none; }

    /* About: horizontal layout */
    .about-content {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 60px;
        text-align: left;
        align-items: start;
        max-width: 1000px;
    }
    .about-content .section-label,
    .about-content .section-title,
    .about-content .divider {
        grid-column: 1 / -1;
        text-align: center;
    }
    .about-image-wrapper {
        width: 280px;
        height: 280px;
        grid-row: 4 / 7;
    }
    .about-credentials { justify-content: flex-start; }

    /* Services: wider grid */
    .services-grid {
        max-width: 1100px;
        grid-template-columns: repeat(3, 1fr);
    }
    .service-card[style*="grid-column"] {
        grid-column: auto !important;
    }

    /* Process: horizontal */
    .process-steps {
        max-width: 1000px;
        flex-direction: row;
        gap: 40px;
    }
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 0;
        flex: 1;
    }
    .process-step-line {
        flex-direction: row;
    }
    .step-line {
        width: 100%;
        height: 1px;
        margin-top: 0;
        margin-left: 8px;
    }
    .step-content { padding-top: 16px; }

    /* Reviews */
    .reviews-grid { max-width: 1100px; }

    /* Results */
    .results-scroll { max-width: 1100px; }

    /* CTA banner */
    .cta-banner { padding: 100px 80px; }

    /* Navbar */
    .navbar { padding: 20px 60px; }
    .navbar.scrolled { padding: 14px 60px; }
}

@media (min-width: 1400px) {
    .hero { gap: 120px; padding: 140px 120px 120px; }
    .hero-logo { width: 360px; }
    .hero-right .hero-visual { width: 420px; height: 500px; }
    .services-grid { max-width: 1200px; }
    .reviews-grid { max-width: 1200px; }
    section { padding: 140px 80px; }
}

/* ===== COOKIE/SMOOTH EXTRAS ===== */
::selection {
    background: var(--warm-beige);
    color: var(--dark);
}

/* ===== DECORATIVE DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 0;
}
.divider-line {
    width: 60px;
    height: 1px;
    background: var(--warm-beige);
}
.divider svg {
    width: 20px;
    height: 20px;
    stroke: var(--blush);
    fill: none;
    stroke-width: 1.2;
    opacity: 0.6;
}
