:root {
    --bg: #f7f6f3;
    --bg-soft: #ffffff;
    --ink: #151516;
    --ink-soft: #4a4a52;
    --muted: #8c8c97;
    --brand: #9575cd;
    --brand-soft: rgba(149, 117, 205, 0.12);
    --accent: #5e4a8a;
    --border: rgba(21, 21, 22, 0.08);
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: "Poppins", "Segoe UI", Arial, sans-serif;
    --font-body: "Poppins", "Segoe UI", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(149, 117, 205, 0.08), transparent 40%),
        radial-gradient(circle at 80% 0%, rgba(21, 21, 22, 0.05), transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(149, 117, 205, 0.06), transparent 50%);
    pointer-events: none;
    z-index: -2;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(16px);
    background: rgba(247, 246, 243, 0.85);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 5%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    cursor: pointer;
}

.brand-logo {
    height: 28px;
    width: auto;
    transition: transform 0.4s var(--transition);
}

.logo:hover .brand-logo {
    transform: rotate(-5deg) scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}


.nav-links a {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s var(--transition);
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--ink);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--brand);
}

/* Hamburger button — hidden on desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.3s var(--transition), opacity 0.3s var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


.hero {
    padding: 120px 5% 80px;
    display: grid;
    gap: 48px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin: 16px 0 20px;
}

.hero h1 span {
    color: var(--brand);
}

.lead {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 520px;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
}

.btn.primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 12px 30px var(--brand-soft);
}

.btn.primary:hover {
    transform: translateY(-2px);
}

.btn.ghost {
    border: 1px solid var(--border);
    color: var(--ink);
    background: #fff;
}


.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-card {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    max-width: 240px;
}

.about {
    padding: 100px 0;
}

.about h2,
.section-head h2,
.contact h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--ink-soft);
}

.keywords {
    color: var(--brand);
    font-weight: 600;
}


.section-head {
    margin-bottom: 40px;
}

.section-head p {
    color: var(--muted);
}

.services {
    padding: 100px 0;
}

.bento,
.bento-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.bento-container {
    width: min(1200px, 90%);
    margin: 0 auto;
    padding-bottom: 80px;
}

@media (min-width: 901px) {

    .bento,
    .bento-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bento-item {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 320px;
}

.bento-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 58%, rgba(255, 255, 255, 0) 82%);
    z-index: 1;
    pointer-events: none;
}

.bento-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.bento-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.bento-item p {
    color: var(--ink-soft);
    max-width: 62%;
    position: relative;
    z-index: 2;
}

.bento-item ul {
    margin-top: 16px;
    padding-left: 18px;
    color: var(--muted);
    position: relative;
    z-index: 2;
    max-width: 62%;
}

.bento-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    mask-image: linear-gradient(to left, black 70%, transparent 100%);
    transition: transform 0.6s var(--transition), opacity 0.6s var(--transition);
    z-index: 0;
}

.bento-item:hover .bento-img,
.bento-item.active .bento-img {
    opacity: 1;
    transform: scale(1.04);
}

/* Bubble animations */
.bubble {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1200;
    background: radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.95), rgba(123, 184, 244, 0.32));
    border: 1px solid rgba(255, 255, 255, 0.45);
    animation: bubble-float 2.3s ease-out forwards;
}

.foam {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1200;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(191, 216, 255, 0.4));
    animation: foam-pop 0.55s ease-out forwards;
}

@keyframes bubble-float {
    0% {
        transform: translate(0, 0) scale(0.9);
        opacity: 0.85;
    }
    100% {
        transform: translate(var(--tx, 0), var(--ty, -80px)) scale(0.1);
        opacity: 0;
    }
}

@keyframes foam-pop {
    0% {
        transform: scale(1);
        opacity: 0.95;
    }
    100% {
        transform: scale(0.1);
        opacity: 0;
    }
}

.pricing {
    padding: 100px 0;
}

.price-grid {
    columns: 3;
    column-gap: 24px;
}

.price-card {
    break-inside: avoid;
    margin-bottom: 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.price-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand);
    margin-bottom: 16px;
}

.price-card table {
    width: 100%;
    border-collapse: collapse;
}

.price-card td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    font-size: 0.92rem;
}

.price-card td:last-child {
    text-align: right;
    font-weight: 700;
}

.price-card tr:last-child td {
    border-bottom: none;
}

.partners {
    padding: 90px 0;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.partner-logos img {
    height: 100px;
    width: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s var(--transition);
}

.partner-logos img:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-4px) scale(1.05);
}

.faq {
    padding: 90px 0;
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 6px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    color: var(--ink);
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    padding: 18px 54px 18px 20px;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand);
    font-size: 1.4rem;
    font-weight: 700;
}

.faq-item.open .faq-question::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.35s var(--transition), opacity 0.25s var(--transition), padding 0.35s var(--transition);
}

.faq-answer p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    max-height: 320px;
    opacity: 1;
    padding: 0 20px 16px;
}

.contact {
    padding: 60px 0 40px;
    background: #141416;
    color: #fff;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
}

.contact-strip {
    display: flex;
    justify-content: center;
    gap: 0;
}

.contact-item {
    padding: 0 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-right: none;
}

.contact-item h4 {
    color: #c4b5e0;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    line-height: 1.5;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s var(--transition);
}

.contact-item a:hover {
    color: #fff;
}

@media (max-width: 700px) {
    .contact-strip {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .contact-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 0 0 20px 0;
    }

    .contact-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.footer {
    text-align: center;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
}



.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

section {
    scroll-margin-top: 90px;
}

:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .price-grid {
        columns: 2;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-card {
        position: static;
        margin-top: 20px;
        max-width: none;
    }

    .bento-item p {
        max-width: 100%;
    }

    .bento-img {
        opacity: 0.75;
        width: 50%;
    }

    .bento-item::after {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.65) 55%, rgba(255, 255, 255, 0) 85%);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(247, 246, 243, 0.98);
        backdrop-filter: blur(16px);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 16px 5%;
        border-bottom: 1px solid var(--border);
        gap: 12px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }


    .nav-links.nav-open {
        display: flex;
    }

    .nav-links a {
        padding: 8px 0;
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .logo span {
        display: block;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bento-item {
        padding: 28px;
        min-height: 260px;
    }

    .bento-item h3 {
        font-size: 1.3rem;
    }

    .bento-item p,
    .bento-item ul {
        max-width: 60%;
    }

    .bento-item ul {
        padding-left: 16px;
    }

    .bento-img {
        width: 48%;
    }

    .price-grid {
        columns: 1;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}


/* Fix for Hero Typography - User Request */
.hero h1 span { display: block; font-size: 0.55em; font-weight: 400; margin-top: 0.3rem; opacity: 0.9; letter-spacing: 0.05em; }

/* Allow bento items to be links */
a.bento-link { text-decoration: none; color: inherit; display: contents; }
.bento-item { transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.bento-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* --- Service Modal Styles (Fixed v2) --- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px); z-index: 9999; display: flex; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content { background: white; width: 90%; max-width: 600px; max-height: 90vh; border-radius: 16px; position: relative; overflow-y: auto; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); padding: 0; transform: translateY(20px); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 15px; right: 15px; background: rgba(255,255,255,0.8); border: none; border-radius: 50%; width: 40px; height: 40px; font-size: 28px; line-height: 1; cursor: pointer; color: #000; z-index: 10000; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.modal-close:hover { background: #fff; transform: scale(1.1); }
.modal-image { width: 100%; height: 300px; object-fit: cover; border-bottom: 4px solid var(--brand); }
.modal-body { padding: 30px; }
.modal-body h3 { margin-top: 0; font-size: 2rem; color: #151516; margin-bottom: 1rem; }
.modal-body div { font-size: 1.15rem; line-height: 1.6; color: #4a4a52; }
.modal-body ul { margin-top: 20px; padding-left: 20px; }
.modal-body li { margin-bottom: 10px; }
/ *   - - -   D E F I N I T I V E   M O D A L   F I X   ( C E N T E R I N G   &   D E S I G N )   - - -   * /  
  
 / *   1 .   E n s u r e   O v e r l a y   i s   d e f i n e d   a s   a   F l e x   C o n t a i n e r   f o r   C e n t e r i n g   * /  
 . m o d a l - o v e r l a y   {  
         d i s p l a y :   n o n e ;  
         / *   H i d d e n   b y   d e f a u l t   * /  
         p o s i t i o n :   f i x e d ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         w i d t h :   1 0 0 v w ;  
         h e i g h t :   1 0 0 v h ;  
         b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 6 5 ) ;  
         / *   D a r k e r   d i m   * /  
         b a c k d r o p - f i l t e r :   b l u r ( 8 p x ) ;  
         / *   G l o s s y   e f f e c t   * /  
         z - i n d e x :   9 9 9 9 9   ! i m p o r t a n t ;  
         / *   A l w a y s   o n   t o p   * /  
  
         / *   C e n t e r i n g   M a g i c   * /  
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ;  
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ;  
 }  
  
 / *   2 .   F o r c e   D i s p l a y   F l e x   w h e n   A c t i v e   * /  
 . m o d a l - o v e r l a y . a c t i v e   {  
         d i s p l a y :   f l e x   ! i m p o r t a n t ;  
         o p a c i t y :   1 ;  
         p o i n t e r - e v e n t s :   a u t o ;  
 }  
  
 / *   3 .   P r e m i u m   C a r d   D e s i g n   ( " C h e n a r   F r u m o s " )   * /  
 . m o d a l - c o n t e n t   {  
         p o s i t i o n :   r e l a t i v e ;  
         w i d t h :   9 0 % ;  
         m a x - w i d t h :   5 0 0 p x ;  
         / *   O p t i m a l   r e a d i n g   w i d t h   * /  
         m a x - h e i g h t :   8 5 v h ;  
  
         b a c k g r o u n d :   # f f f f f f ;  
         b o r d e r - r a d i u s :   2 4 p x ;  
         / *   S m o o t h   r o u n d e d   c o r n e r s   * /  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 ) ;  
  
         / *   H e a v y   p r e m i u m   s h a d o w   * /  
         b o x - s h a d o w :  
                 0   2 0 p x   5 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ,  
                 0   0   0   1 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
  
         o v e r f l o w - y :   a u t o ;  
         o v e r s c r o l l - b e h a v i o r :   c o n t a i n ;  
  
         / *   A n i m a t i o n   * /  
         t r a n s f o r m :   s c a l e ( 0 . 9 )   t r a n s l a t e Y ( 2 0 p x ) ;  
         o p a c i t y :   0 ;  
         t r a n s i t i o n :   t r a n s f o r m   0 . 4 s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) ,   o p a c i t y   0 . 3 s   e a s e ;  
 }  
  
 . m o d a l - o v e r l a y . a c t i v e   . m o d a l - c o n t e n t   {  
         t r a n s f o r m :   s c a l e ( 1 )   t r a n s l a t e Y ( 0 ) ;  
         o p a c i t y :   1 ;  
 }  
  
 / *   4 .   B e a u t i f u l   C l o s e   B u t t o n   * /  
 . m o d a l - c l o s e   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   2 0 p x ;  
         r i g h t :   2 0 p x ;  
         w i d t h :   4 0 p x ;  
         h e i g h t :   4 0 p x ;  
         b a c k g r o u n d :   # f 0 f 0 f 5 ;  
         b o r d e r - r a d i u s :   5 0 p x ;  
         b o r d e r :   n o n e ;  
         c o l o r :   # 3 3 3 ;  
         f o n t - s i z e :   2 4 p x ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         c u r s o r :   p o i n t e r ;  
         t r a n s i t i o n :   a l l   0 . 2 s   e a s e ;  
         z - i n d e x :   1 0 ;  
 }  
  
 . m o d a l - c l o s e : h o v e r   {  
         b a c k g r o u n d :   # e 0 e 0 e 5 ;  
         t r a n s f o r m :   r o t a t e ( 9 0 d e g ) ;  
 }  
  
 / *   5 .   C o n t e n t   T y p o g r a p h y   * /  
 . m o d a l - b o d y   h 3   {  
         f o n t - f a m i l y :   ' O u t f i t ' ,   s a n s - s e r i f ;  
         f o n t - w e i g h t :   7 0 0 ;  
         f o n t - s i z e :   1 . 8 r e m ;  
         l e t t e r - s p a c i n g :   - 0 . 0 2 e m ;  
         c o l o r :   # 1 1 1 ;  
         m a r g i n - b o t t o m :   0 . 5 e m ;  
 }  
  
 . m o d a l - b o d y   u l   l i   {  
         p o s i t i o n :   r e l a t i v e ;  
         p a d d i n g - l e f t :   2 4 p x ;  
         m a r g i n - b o t t o m :   8 p x ;  
         l i s t - s t y l e :   n o n e ;  
 }  
  
 . m o d a l - b o d y   u l   l i : : b e f o r e   {  
         c o n t e n t :   " â S " ;  
         p o s i t i o n :   a b s o l u t e ;  
         l e f t :   0 ;  
         c o l o r :   v a r ( - - b r a n d ) ;  
         / *   P u r p l e   * /  
         f o n t - w e i g h t :   b o l d ;  
 }  
 