:root {
    --bg-primary: #FBFAF8;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --pink-primary: #E9C1C1;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Cormorant Garamond', serif;
    /* Inter has been replaced globably */
    --font-handwritten: 'Kalissa', 'Marck Script', cursive;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-dissolve: all 3s cubic-bezier(.4, 0, .2, 1);
}

/* ── 1. Luxury Preloader ── */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FBFAF8;
    /* Milky White */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 1;
    transition: var(--transition-dissolve);
}

.preloader-content {
    max-width: 800px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.5s ease-out 0.5s;
}

.preloader.ready .preloader-content {
    opacity: 1;
    transform: translateY(0);
}

.preloader-title {
    font-family: var(--font-handwritten) !important;
    font-size: 42px;
    /* Standardized heading size */
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 300 !important;
    /* Non-bold calligraphy as requested */
}

.preloader-subtitle {
    font-family: var(--font-serif);
    font-size: 15px;
    /* Standardized body size */
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    font-weight: 300;
    line-height: 1.8;
}

/* ── 2. Transition Mechanism ── */
.is-preloading .header,
.is-preloading .hero-content-left,
.is-preloading .hero-content-right,
.is-preloading .benefits-section,
.is-preloading .pricing-section,
.is-preloading .footer {
    display: none;
}

.is-transitioning .preloader {
    opacity: 0;
    pointer-events: none;
}

.is-showing-main .header,
.is-showing-main .hero-content-left,
.is-showing-main .hero-content-right,
.is-showing-main .benefits-section,
.is-showing-main .pricing-section,
.is-showing-main .footer {
    opacity: 1;
    pointer-events: auto;
    transition: var(--transition-dissolve);
}

/* Mockup Centering Logic */
.hero-container {
    transition: var(--transition-dissolve);
}

.is-preloading .hero-container {
    grid-template-columns: 1fr;
}

.is-preloading .hero-center {
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition-dissolve);
}

.is-showing-main .hero-center {
    opacity: 1;
    transform: scale(1);
}

/* ── New CSS Phone Frame System ── */
.phone-frame {
    position: relative;
    width: 340px; /* Scaled to fit entirely on desktop screen */
    height: 720px; 
    border: 6px solid #FF7A00; 
    border-radius: 55px; /* Softer radius for scaled size */
    background: #000;
    box-shadow:
        0 100px 150px -50px rgba(0, 0, 0, 0.4),
        0 50px 100px -20px rgba(0, 0, 0, 0.3),
        inset 0 0 5px 1px rgba(255, 255, 255, 0.1);
    padding: 12px; /* Slightly thicker bezel to match size */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s ease;
    will-change: transform;
}

.dynamic-island {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px; 
    height: 25px;
    background: #000;
    border-radius: 18px;
    z-index: 10;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
    position: relative;
    /* Context for overlay */
}

.mockup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    /* Slight darkening for text contrast */
    backdrop-filter: blur(14px);
    /* Premium thick blur */
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    cursor: pointer;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-overlay.hidden {
    opacity: 0;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    pointer-events: none;
}

.scroll-ind-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    pointer-events: none;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouseDot 2s ease-in-out infinite;
}

.scroll-label {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 300;
    opacity: 0.8;
}

@keyframes scrollMouseDot {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    30% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    70% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Hide scrollbar for the iframe display area for realism */
.mockup-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.mockup-screen iframe::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

@font-face {
    font-family: 'Kalissa';
    src: url('assets/KalissaRegular_0.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

html, body {
    overflow-x: clip;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.6;
    overflow-y: auto !important;
    position: relative;
    /* Hide scrollbar */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 5rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(251, 250, 248, 0.85);
    backdrop-filter: blur(15px);
}

.brand-logo-img {
    height: 60px;
    width: auto;
    margin-left: -10px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0.7;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 2px;
    font-family: var(--font-serif);
    letter-spacing: 0.2rem;
    background: transparent;
    color: #F5699C;
    /* Signature Pink Text */
    border: 1px solid #F5699C;
    /* Signature Pink Border */
    cursor: pointer;
    transition: all 0.5s ease;
    /* Fluid premium transition */
}

.btn:hover {
    background-color: #F5699C !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 105, 156, 0.2);
}

/* ── Language Switcher ── */
.header-cta-group {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.lang-switcher {
    display: flex;
    gap: 0.8rem;
    padding: 4px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    font-family: var(--font-serif);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    color: var(--text-secondary);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.6;
}

.lang-btn:hover {
    opacity: 1;
    color: var(--text-primary);
}

.lang-btn.active {
    background: #fff;
    color: var(--text-primary);
    opacity: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Mobile Switcher in Drawer */
.mobile-switcher {
    margin: 2rem 0;
    justify-content: center;
    background: rgba(245, 105, 156, 0.05);
    border-color: rgba(245, 105, 156, 0.1);
}

.mobile-switcher .lang-btn.active {
    background: #F5699C;
    color: #fff;
}

/* Language Switching Animation */
.lang-switching {
    opacity: 0.8;
    filter: blur(1px);
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .header-cta-group {
        display: none !important;
    }
}

.hero {
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    padding: 0 5rem;
    gap: 2rem;
}

/* Left Column: True Calligraphy Title */
.hero-content-left {
    text-align: left;
    display: none;
    /* Hidden by default for mobile */
}

@media screen and (min-width: 1025px) {
    .hero-content-left {
        display: block;
        /* Visible ONLY on desktop */
    }
}

.hero-title {
    font-family: var(--font-handwritten) !important;
    font-size: 3.2rem;
    /* Substantial elegant scale */
    line-height: 1.1;
    font-weight: normal;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    max-width: 480px;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 320px;
    line-height: 1.8;
    /* Elegant line height */
    font-weight: 300;
}

/* Center Column: Mockup Card with Deep 3D Shadow */
.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-card {
    background: transparent !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    /* Space for arrows if needed */
}

.mockup-nav-label {
    position: absolute;
    top: -135px;
    /* Moved higher to make room for hint */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.8rem 2.2rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    border-radius: 4px;
    white-space: nowrap;
    z-index: 20;
    font-weight: 300;
    text-align: center;
}

.mockup-nav-hint {
    position: absolute;
    top: -85px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--text-primary);
    opacity: 0.4;
    text-transform: uppercase;
    z-index: 20;
    white-space: nowrap;
}

.mockup-nav-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 20;
    color: var(--text-primary);
}

.mockup-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mockup-nav-arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

@media screen and (max-width: 1200px) {
    .mockup-nav-arrow {
        position: absolute;
        width: 50px;
        height: 50px;
    }

    .mockup-nav-arrow.prev {
        left: -20px;
    }

    .mockup-nav-arrow.next {
        right: -20px;
    }
}

@media screen and (max-width: 768px) {
    .mockup-nav-label {
        font-size: 0.65rem;
        top: -105px;
        width: 85vw;
        white-space: normal;
        line-height: 1.4;
        padding: 0.8rem 1.2rem;
    }

    .mockup-nav-hint {
        top: -40px;
        font-size: 0.55rem;
    }

    .mockup-nav-arrow {
        width: 45px;
        height: 45px;
    }

    .mockup-nav-arrow.prev {
        left: -10px;
    }

    .mockup-nav-arrow.next {
        right: -10px;
    }
}

.shadow-glow {
    width: 220px;
    /* Scaled for 750px height */
    height: 20px;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15), transparent 75%);
    filter: blur(15px);
    z-index: 1;
}

@keyframes levitate {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes shadowPulse {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Right Column: Context & Styles */
.hero-content-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-context {
    font-size: 15px;
    /* Standardized Body Size */
    color: var(--text-primary);
    opacity: 0.7;
    /* 70% opacity */
    max-width: 320px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 300;
}

.selector-message {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
    text-align: left;
    max-width: 280px;
}

.style-selector {
    width: 100%;
}

.selector-item {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0.4;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(0.5px);
    cursor: pointer;
}

.selector-item.active {
    opacity: 1;
    filter: blur(0);
    transform: translateX(10px);
}

.selector-num {
    font-size: 0.7rem;
    color: #999;
}

.selector-label {
    font-family: var(--font-handwritten);
    /* Script fonts for labels as per img 13 */
    font-size: 1.4rem;
}

.selector-link {
    margin-left: auto;
    font-size: 0.65rem;
    text-decoration: none;
    color: #000;
    letter-spacing: 0.1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.unified-content {
    background-color: #ffffff !important;
    padding: 120px 5rem 0 5rem;
    /* Removed bottom padding for seamless block connection */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-container {
    width: 100%;
    max-width: 1400px;
    margin-bottom: 60px;
    /* Reduced gap to meet texture nicely */
}

.benefits-title {
    font-family: var(--font-handwritten) !important;
    font-size: 38px;
    font-weight: normal;
    /* Lightweight pen stroke */
    color: #1A1A1A;
    text-align: center;
    margin: 0 auto 100px;
    line-height: 1.3;
    max-width: 900px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 40px 100px rgba(245, 105, 156, 0.12), 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(245, 105, 156, 0.2);
}

/* Glass Shine Effect */
.benefit-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.8s;
    pointer-events: none;
}

.benefit-item:hover::after {
    left: 150%;
}

.benefit-icon {
    margin-bottom: 2.5rem;
    color: #1A1A1A;
    position: relative;
    z-index: 2;
}

.benefit-icon-img {
    height: 210px;
    width: auto;
    object-fit: contain;
    animation: iconFluid 6s ease-in-out infinite;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
}

.benefit-item:hover .benefit-icon-img {
    transform: scale(1.15);
    /* Becomes even larger on hover as requested */
    animation: iconDance 2s ease-in-out infinite;
    /* More active dance */
}

/* Staggered animation delays for a more organic feel */
.benefit-item:nth-child(1) .benefit-icon-img {
    animation-delay: 0s;
}

.benefit-item:nth-child(2) .benefit-icon-img {
    animation-delay: 0.8s;
}

.benefit-item:nth-child(3) .benefit-icon-img {
    animation-delay: 1.6s;
}

@keyframes iconFluid {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
    }

    33% {
        transform: translateY(-12px) rotate(1deg);
        filter: drop-shadow(0 25px 45px rgba(245, 105, 156, 0.2));
    }

    66% {
        transform: translateY(-6px) rotate(-1.5deg);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    }
}

.benefit-label {
    font-family: var(--font-serif);
    font-size: 42px;
    /* Uniform heading size */
    margin-bottom: 1.5rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.benefit-text {
    font-family: var(--font-serif);
    /* Uniform serif font */
    font-size: 15px;
    /* Uniform body size */
    color: #666;
    line-height: 1.6;
    max-width: 260px;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.benefit-item:hover .benefit-label {
    color: #000;
}

.benefit-item:hover .benefit-text {
    color: #1A1A1A;
}

.manifesto-wrapper {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    /* Classic full-bleed breakout */
    margin-top: 0;
    padding: 150px 20px;
    background-color: rgba(245, 105, 156, 0.05);
    /* Pure, soft blush pink canvas */
    border-radius: 0;
    text-align: center;
}

.manifesto-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    /* Float above the texture */
    z-index: 2;
}

.manifesto-seal {
    position: absolute;
    right: 0px;
    top: -30px;
    width: 160px;
    /* Larger final size for premium impact */
    height: auto;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.18));
    opacity: 0;
    transform: scale(2) rotate(0deg);
    transition: none;
    z-index: 10;
}

.manifesto-seal.active {
    animation: sealBounce 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes sealBounce {
    0% {
        transform: scale(3) rotate(-10deg);
        opacity: 0;
        filter: blur(10px);
    }

    45% {
        transform: scale(0.9) rotate(18deg);
        opacity: 1;
        filter: blur(0);
    }

    65% {
        transform: scale(1.1) rotate(13deg);
    }

    85% {
        transform: scale(0.98) rotate(15.5deg);
    }

    100% {
        transform: scale(1) rotate(15deg);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .manifesto-seal {
        position: relative;
        right: auto;
        top: auto;
        margin: -10px auto 30px auto;
        display: block;
        width: 130px;
        /* Larger for mobile too */
    }

    .manifesto-seal.active {
        animation: sealBounceMobile 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
}

@keyframes sealBounceMobile {
    0% {
        transform: scale(2.5) translateY(-60px);
        opacity: 0;
        filter: blur(10px);
    }

    45% {
        transform: scale(0.9) translateY(10px) rotate(2deg);
        opacity: 1;
        filter: blur(0);
    }

    65% {
        transform: scale(1.05) translateY(-5px) rotate(-1deg);
    }

    100% {
        transform: scale(1) translateY(0) rotate(0deg);
        opacity: 1;
    }
}

.manifesto-title {
    font-family: var(--font-handwritten) !important;
    font-size: 42px;
    /* Smaller more elegant scale */
    font-weight: normal;
    color: #000000;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.manifesto-text {
    font-family: var(--font-sans);
    font-size: 15px;
    /* Refined text size */
    color: #1A1A1A;
    line-height: 1.8;
    margin: 0 auto;
    font-weight: 300;
    max-width: 700px;
}

.reveal {
    opacity: 0.1;
    transform: translateY(30px);
    transition: 1.2s;
}

.reveal.active {
    opacity: 1 !important;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .header {
        padding: 0.6rem 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero-content-left,
    .hero-content-right {
        align-items: center;
    }

    .hero-mockup-img {
        height: 500px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Mobile Benefits & Nav Refinements ── */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 1.2rem !important;
    }

    .hero-container,
    .unified-content,
    .process-section,
    .pricing-section,
    .faq-section,
    .footer {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .unified-content {
        padding-top: 60px !important;
    }

    .header-nav,
    .header-cta-group {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .brand-logo-img {
        max-width: 220px;
        height: 50px;
    }

    /* Even larger logo as requested */

    /* Benefits grid: 50% tighter gap between cards */

    /* Benefits grid: 50% tighter gap between cards */
    .benefits-grid {
        gap: 2rem;
    }

    /* Each card: compact padding */
    .benefit-item {
        padding: 1.5rem 1.5rem;
        align-items: center;
        text-align: center;
    }

    /* Icons: doubled from 105px to 210px */
    .benefit-icon-img {
        height: 210px;
    }

    /* Tighter spacing between icon → label */
    .benefit-icon {
        margin-bottom: 1rem;
    }

    /* Tighter spacing between label → description */
    .benefit-label {
        font-size: 32px;
        /* Reduced from 42px to prevent clipping */
        margin-bottom: 0.4rem;
    }
}

/* Process Section (How it Works) */
.process-section {
    background-color: #ffffff;
    padding: 150px 5rem;
    display: flex;
    justify-content: center;
}

.process-section .section-container {
    width: 100%;
    max-width: 1400px;
}

.process-section .section-title {
    font-family: var(--font-handwritten) !important;
    font-size: 42px;
    /* Standardized heading size */
    font-weight: normal;
    text-align: center;
    margin-bottom: 100px;
    color: #1A1A1A;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    /* Removing gap for dividers */
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.process-step {
    position: relative;
    padding: 2rem 4rem;
    /* Removed static border-right to animate it via pseudo-element instead */
}

/* Animated Vertical Divider (Slow Motion) */
.process-step::after {
    content: '';
    position: absolute;
    top: 2rem;
    right: 0;
    width: 1px;
    height: 0;
    background: #f0f0f0;
    transition: height 2s cubic-bezier(0.16, 1, 0.3, 1);
    /* Slowed to 2s */
}

.process-step.active::after {
    height: calc(100% - 4rem);
}

.process-step:last-child::after {
    display: none;
}

.step-num {
    font-family: var(--font-serif);
    font-size: 42px;
    /* Standardized scale */
    color: rgba(245, 105, 156, 0.5); /* Increased opacity to 50% for better visibility */
    position: absolute;
    top: -50px;
    left: 40px;
    z-index: 1;
    pointer-events: none;
    font-style: italic;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 2s cubic-bezier(0.16, 1, 0.3, 1), transform 2s cubic-bezier(0.16, 1, 0.3, 1);
    /* Slowed to 2s */
    transition-delay: 1s;
    /* Slower reveal */
}

.process-step.active .step-num {
    opacity: 1;
    transform: scale(1);
}

.step-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(15px);
    /* Subtiler lift: 15px as requested */
    transition: all 1.5s ease-out;
    /* Slow Motion: 1.5s */
}

.process-step.active .step-content {
    opacity: 1;
    transform: translateY(0);
}

/* Luxury Staggered Delays (0.3s, 0.8s, 1.3s) */
.process-step:nth-child(1) .step-content {
    transition-delay: 0.3s;
}

.process-step:nth-child(2) .step-content {
    transition-delay: 0.8s;
}

.process-step:nth-child(3) .step-content {
    transition-delay: 1.3s;
}

.process-step:nth-child(2)::after {
    transition-delay: 0.5s;
}

.process-step:nth-child(3)::after {
    transition-delay: 1s;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 42px;
    /* Standardized heading size */
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #1A1A1A;
}

.step-text {
    font-family: var(--font-serif);
    font-size: 15px;
    /* Standardized body size */
    color: #666;
    line-height: 1.7;
    font-weight: 300;
    max-width: 300px;
}

/* Staggered Reveal Delays for Process */
.process-step:nth-child(1) {
    transition-delay: 0.1s;
}

.process-step:nth-child(2) {
    transition-delay: 0.3s;
}

.process-step:nth-child(3) {
    transition-delay: 0.5s;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .process-step {
        border-top: none;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
        padding: 0 0 0 2rem;
    }

    .step-num {
        top: -20px;
        left: -10px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 150px 5rem;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.pricing-section .section-title {
    font-family: var(--font-handwritten) !important;
    font-size: 42px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    padding: 2.5rem 2.2rem;
    /* Further reduced for maximum compactness */
    border-radius: 35px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.pricing-card:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    border-color: rgba(233, 193, 193, 0.4);
}

/* Featured (Storyteller) 'Magic' Hover Glow */
.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 40px 10px rgba(245, 105, 156, 0.25), 0 30px 80px rgba(0, 0, 0, 0.08);
    border-color: rgba(245, 105, 156, 0.4);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--pink-primary);
}

.pricing-card.featured:hover .btn {
    box-shadow: 0 0 20px rgba(245, 105, 156, 0.4);
    /* Extra glow for featured card button */
}

.tier-name {
    font-family: var(--font-handwritten) !important;
    font-size: 42px;
    /* Standardized heading size */
    font-weight: normal;
    margin-bottom: 0.8rem;
    color: #1A1A1A;
}

.tier-price {
    font-family: var(--font-serif);
    font-size: 42px;
    /* Standardized heading size */
    font-weight: 300;
    margin-bottom: 0.3rem;
    color: #1A1A1A;
}

.currency {
    font-size: 1rem;
    margin-left: 5px;
    opacity: 0.6;
}

.tier-desc {
    font-family: var(--font-serif);
    font-size: 15px;
    /* Standardized body size */
    color: #777;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    max-width: 220px;
}

.tier-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    width: 100%;
    flex-grow: 1;
}

.tier-features li {
    font-family: var(--font-serif);
    font-size: 17px;
    /* Standardized body size */
    color: #555;
    margin-bottom: 0.8rem;
    /* Reduced margin for compactness */
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
    line-height: 1.4;
    /* Tighter line height */
}

.tier-icon {
    width: 18px;
    /* Icon size 18px */
    height: 18px;
    object-fit: contain;
    opacity: 0.8;
}

.pricing-footer {
    width: 100%;
    margin-top: auto;
}

/* 3-Tier Staggered Reveal (Slow Motion) */
.pricing-card:nth-child(1) {
    transition: transform 1.5s ease-out, opacity 1.5s ease-out, box-shadow 1.5s ease-out;
    transition-delay: 0.3s;
}

.pricing-card:nth-child(2) {
    transition: transform 1.5s ease-out, opacity 1.5s ease-out, box-shadow 1.5s ease-out;
    transition-delay: 0.7s;
}

.pricing-card:nth-child(3) {
    transition: transform 1.5s ease-out, opacity 1.5s ease-out, box-shadow 1.5s ease-out;
    transition-delay: 1.1s;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card {
        padding: 4rem 2rem;
    }
}

.btn-secondary {
    background: transparent;
    color: #000;
    border: 1px solid #000;
}

.badge {
    text-transform: uppercase;
    font-size: 0.6rem;
    letter-spacing: 0.15rem;
    background: #f8f8f8;
    padding: 0.4rem 1rem;
    margin-bottom: 2rem;
    display: inline-block;
    border-radius: 50px;
    color: #999;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 4rem 2rem;
    }
}

/* FAQ Section (High-Contrast Professional Style) */
.faq-section {
    padding: 150px 5rem;
    background-color: #ffffff;
}

.faq-section .section-title {
    font-family: var(--font-handwritten) !important;
    font-size: 42px;
    /* Standardized heading size */
    font-weight: normal !important;
    margin-bottom: 3.5rem;
    color: #1A1A1A;
    text-align: center;
}

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

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid #f0ede8;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    /* Reduced by 50% for compactness */
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.5s ease;
}

.faq-q-text {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.faq-num {
    font-family: var(--font-handwritten) !important;
    font-size: 42px;
    /* Standardized scale */
    color: #000000 !important;
    opacity: 1 !important;
    display: inline-block;
    min-width: 50px;
}

.faq-label {
    font-family: var(--font-serif);
    font-size: 15px;
    /* Standardized body size */
    font-weight: 400;
    color: #1A1A1A !important;
    transition: all 0.3s ease;
}

.faq-item.open .faq-label {
    font-weight: 500;
    /* Slightly bolder when active */
    opacity: 1;
}

.faq-question:hover .faq-label {
    opacity: 0.6;
}

.faq-icon {
    width: 20px;
    color: #1A1A1A;
    opacity: 0.8;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    /* Elegant Slow Motion */
}

.faq-a-inner {
    padding-left: 5.6rem;
    /* Aligned under the question label */
    padding-top: 0.5rem;
    /* Reduced gap between Q and A */
    padding-bottom: 1.5rem;
    /* Reduced total height */
}

.faq-answer p {
    font-family: var(--font-serif);
    font-size: 15px;
    /* Standardized body size */
    color: #444;
    line-height: 1.7;
    font-weight: 300;
    max-width: 650px;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    /* Safe upper limit for expansion */
}

/* Footer Section (Refined Branding) */
.footer {
    padding: 180px 5rem 80px;
    /* Increased whitespace to let it breathe */
    background-color: #ffffff;
    text-align: center;
}

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

.footer-cta-wrapper {
    margin-bottom: 120px;
}

.footer-cta-title {
    font-family: var(--font-handwritten) !important;
    font-size: 42px;
    /* Standardized heading size */
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 4rem;
    color: #1A1A1A;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    /* Balanced gap */
    margin-bottom: 6rem;
    border-top: 1px solid #f8f8f8;
    padding-top: 6rem;
}

.footer-brand-block {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.footer-logo-hero {
    height: 120px;
    /* Large, authoritative logo size */
    width: auto;
    filter: brightness(1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo-hero:hover {
    transform: scale(1.05);
    /* Subtle interaction */
}

.footer-nav {
    display: flex;
    gap: 3.5rem;
}

.footer-social {
    font-family: var(--font-serif);
    font-size: 15px;
    /* Standardized body size */
    font-weight: 400;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    /* Increased spacing as requested */
    color: #999;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social svg,
.footer-social .social-icon-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.footer-social:hover {
    color: #F5699C;
    letter-spacing: 0.3rem;
    /* Dynamic interaction */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-serif);
    font-size: 15px;
    /* Standardized body size */
    color: #D6CEC5;
    /* Light Beige */
    padding-top: 3.5rem;
    border-top: 1px solid #fafafa;
}

@media (max-width: 768px) {
    .footer-cta-title {
        font-size: 42px;
        /* Aligned with standardized scale */
        margin-bottom: 2rem;
    }

    .footer {
        padding: 60px 1.5rem 40px;
    }

    .footer-main {
        margin-bottom: 1rem;
        padding-top: 2rem;
        gap: 1.5rem;
    }

    .footer-brand-block {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 0;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 1.5rem;
        row-gap: 1.5rem;
        max-width: 320px; /* Forces wrap to look like a neat grid */
        margin: 0 auto;
    }

    .footer-social {
        font-size: 12px;
        letter-spacing: 0.15rem;
    }

    .footer-social:last-child {
        flex-basis: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
    }
}

/* Artisan Contact Form */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-top: 2rem;
}

.artisan-form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.form-row {
    display: flex;
    gap: 3rem;
}

@media (max-width: 768px) {
    .artisan-form {
        gap: 1.2rem;
    }
    .form-row {
        flex-direction: column;
        gap: 1.2rem;
    }
    .form-group input,
    .form-group select {
        padding: 0.8rem 0;
    }
    .btn-form-submit {
        margin-top: 0.5rem;
        padding: 1rem 3rem;
    }
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1.2rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    /* Minimal hairline border */
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 300;
    color: #1A1A1A;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-bottom-color: var(--pink-primary);
    padding-left: 10px;
    /* Elegant shift */
    letter-spacing: 0.02em;
}

.form-group input::placeholder {
    color: #BBB;
    opacity: 0.8;
}

/* Using generic .btn class styles. Overrides for form only */
.btn-form-submit {
    align-self: center;
    padding: 1.2rem 4rem;
    font-family: var(--font-serif);
    font-size: 15px;
    margin-top: 2rem;
    background: #1A1A1A;
    color: #FFF;
    border: 1px solid #1A1A1A;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-form-submit:hover {
    background: #FF7A00;
    /* Signature accent on final CTA */
    border-color: #FF7A00;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.25);
}

.btn-form-submit:active {
    transform: translateY(-1px);
}

.btn-form-submit.loading {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

/* Success Message */
.form-success-msg {
    display: none;
    /* Controlled via JS */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 4rem 0;
}

.form-success-msg.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.success-calligraphy {
    font-family: var(--font-serif) !important;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 450px;
    margin: 0 auto;
}

.artisan-form.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    display: none;
}

/* ── Paper Airplane ── */
#paper-plane {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    /* Never blocks clicks */
    z-index: 1001;
    /* Above navbar (z-index: 1000) */
    transform-origin: center center;
    opacity: 0.92;
    will-change: transform, top, left;
    /* NO CSS transitions on top/left — JS rAF handles all smoothing */
}

@media (max-width: 768px) {
    #paper-plane img {
        width: 60px;
        height: 60px;
    }
}

/* ── Mobile Side Drawer ── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 380px);
    height: 100dvh;
    background-color: var(--bg-primary);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.03);
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.5rem 2rem;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.drawer-logo-img {
    height: 85px;
    /* Large logo to match large menu text */
    width: auto;
}

.drawer-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    padding: 8px;
}

.drawer-nav {
    flex-grow: 1;
}

.drawer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.drawer-link {
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.9rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 300;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateX(20px);
}

.mobile-drawer.active .drawer-link {
    opacity: 1;
    transform: translateX(0);
}

.drawer-link span {
    font-family: var(--font-handwritten);
    font-size: 1.3rem;
    color: #F5699C;
    margin-top: 5px;
    line-height: 1.2;
}

/* Staggered entry animation */
.mobile-drawer.active .drawer-list li:nth-child(1) .drawer-link {
    transition-delay: 0.2s;
}

.mobile-drawer.active .drawer-list li:nth-child(2) .drawer-link {
    transition-delay: 0.3s;
}

.mobile-drawer.active .drawer-list li:nth-child(3) .drawer-link {
    transition-delay: 0.4s;
}

.mobile-drawer.active .drawer-list li:nth-child(4) .drawer-link {
    transition-delay: 0.5s;
}

.drawer-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.6s;
}

.mobile-drawer.active .drawer-footer {
    opacity: 1;
    transform: translateY(0);
}

.btn-drawer-cta {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
}

.drawer-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
}

.drawer-social-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.drawer-social-link .social-icon-img,
.drawer-social-link svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.drawer-social-link:hover {
    opacity: 1;
    color: #F5699C;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(25, 25, 25, 0.2);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* ── Phone Frame Mobile Responsive ── */
@media screen and (max-width: 480px) {
    .phone-frame {
        width: 100%;
        max-width: 320px; /* Increased from 210px for much better mobile visibility */
        height: 670px; /* Kept proportional to width */
        border-width: 2px !important;
        border-radius: 50px;
        padding: 8px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }

    .mockup-screen {
        border-radius: 44px;
    }

    .dynamic-island {
        width: 80px; /* Scaled up in proportion */
        height: 22px;
        top: 15px;
    }
}