/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

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

/* ===== DESIGN TOKENS ===== */
:root {
    --white:   #ffffff;
    --off:     #fafafa;
    --soft:    #f4f4f8;

    --ink-900: #0e0e14;
    --ink-700: #2a2a38;
    --ink-500: #6b6b84;
    --ink-300: #b0b0c4;
    --ink-100: #e8e8f0;

    /* blob palette — purple theme (image 1) */
    --blob-a: #c4b5fd;   /* lavender */
    --blob-b: #a78bfa;   /* violet */
    --blob-c: #f5d0fe;   /* pink-lilac */
    --blob-d: #fde8d8;   /* peach */
    --blob-e: #e0e7ff;   /* periwinkle */

    /* accent */
    --accent:  #7c3aed;
    --accent2: #a855f7;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-sans:    'Outfit', sans-serif;

    --radius-card: 24px;
    --section-pad: 110px 0;

    --shadow-soft: 0 2px 24px rgba(124,58,237,0.07);
    --shadow-card: 0 4px 32px rgba(80,40,160,0.08);
    --shadow-hover: 0 16px 48px rgba(80,40,160,0.14);
}

/* Section-level blob palette overrides */
.process-section   { --blob-a: #bfdbfe; --blob-b: #93c5fd; --blob-c: #ddd6fe; --blob-d: #fde8d8; --accent: #2563eb; }
.services-section  { --blob-a: #d1fae5; --blob-b: #6ee7b7; --blob-c: #a7f3d0; --blob-d: #fef9c3; --accent: #059669; }
.benefits-section  { --blob-a: #fce7f3; --blob-b: #f9a8d4; --blob-c: #fbcfe8; --blob-d: #fde8d8; --accent: #db2777; }
.pricing-section   { --blob-a: #ede9fe; --blob-b: #c4b5fd; --blob-c: #ddd6fe; --blob-d: #fdf4ff; --accent: #7c3aed; }
.contact-section   { --blob-a: #cffafe; --blob-b: #67e8f9; --blob-c: #a5f3fc; --blob-d: #e0f2fe; --accent: #0891b2; }
.faq-section       { --blob-a: #fef3c7; --blob-b: #fcd34d; --blob-c: #fde68a; --blob-d: #fff7ed; --accent: #d97706; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f4f4f8; }
::-webkit-scrollbar-thumb { background: var(--blob-b); border-radius: 5px; }

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--ink-700);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== FLUID BLOB MIXIN — reusable via section pseudo-elements ===== */
/* Every section gets its own floating blobs via ::before / ::after */

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    z-index: 1000;
    border-bottom: 1px solid rgba(200,190,240,0.18);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 4px 24px rgba(124,58,237,0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 28px;
}

.nav-brand h2 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink-900);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.15rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--ink-500);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.45rem 0.85rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.nav-menu a:hover { color: var(--ink-900); background: var(--soft); }

.nav-menu .btn-secondary {
    color: var(--accent);
    border: 1.5px solid rgba(124,58,237,0.25);
    background: rgba(124,58,237,0.04);
    border-radius: 12px;
    font-weight: 600;
}

.nav-menu .btn-secondary:hover {
    background: rgba(124,58,237,0.08);
    border-color: rgba(124,58,237,0.5);
    color: var(--accent);
}

.nav-menu .btn-primary {
    background: var(--ink-900);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    padding: 0.55rem 1.3rem;
}

.nav-menu .btn-primary:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124,58,237,0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 22px; height: 2px;
    background: var(--ink-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--ink-900);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124,58,237,0.35);
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: transparent;
    color: var(--ink-700);
    text-decoration: none;
    border-radius: 14px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    border: 1.5px solid var(--ink-100);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: rgba(124,58,237,0.4);
    color: var(--accent);
    background: rgba(124,58,237,0.04);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--ink-700);
    text-decoration: none;
    border-radius: 14px;
    font-family: var(--font-sans);
    font-weight: 500;
    border: 1.5px solid var(--ink-100);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large { padding: 1.05rem 2.6rem; font-size: 1rem; }

/* ===== SECTION SHARED STYLES ===== */
section {
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
    background: var(--white);
}

/* Alternating section bg */
.process-section,
.benefits-section,
.faq-section { background: var(--off); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    padding: 0.35rem 1.1rem;
    background: rgba(124,58,237,0.06);
    color: var(--accent);
    border-radius: 100px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(124,58,237,0.12);
}

/* Override per section */
.process-section .section-label   { background: rgba(37,99,235,0.06);  color: #2563eb; border-color: rgba(37,99,235,0.12); }
.services-section .section-label  { background: rgba(5,150,105,0.06);  color: #059669; border-color: rgba(5,150,105,0.12); }
.benefits-section .section-label  { background: rgba(219,39,119,0.06); color: #db2777; border-color: rgba(219,39,119,0.12); }
.pricing-section .section-label   { background: rgba(124,58,237,0.06); color: #7c3aed; border-color: rgba(124,58,237,0.12); }
.contact-section .section-label   { background: rgba(8,145,178,0.06);  color: #0891b2; border-color: rgba(8,145,178,0.12); }
.faq-section .section-label       { background: rgba(217,119,6,0.06);  color: #d97706; border-color: rgba(217,119,6,0.12); }

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ink-900);
    margin-bottom: 1.1rem;
    letter-spacing: -0.01em;
}

.section-header h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--ink-500);
    line-height: 1.8;
    font-weight: 300;
}

/* ===== FLUID BLOB SYSTEM — FULL-BLEED (matching reference images) ===== */
.blob-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Blob base — massive, heavily blurred, high opacity */
.blob {
    position: absolute;
    border-radius: 50%;
    animation: blobDrift 18s ease-in-out infinite;
}

/* PRIMARY blob — huge swirling mass, covers 60-70% of section */
.blob-1 {
    width: 900px; height: 800px;
    filter: blur(90px);
    opacity: 0.82;
    top: -200px; right: -180px;
    animation-duration: 20s;
    background: radial-gradient(ellipse at 40% 45%,
        #c4b5fd 0%,
        #a78bfa 25%,
        #ddd6fe 50%,
        #f5d0fe 70%,
        transparent 88%);
}

/* SECONDARY blob — layered on top, different shape for the swirl effect */
.blob-2 {
    width: 700px; height: 650px;
    filter: blur(80px);
    opacity: 0.65;
    top: -80px; right: 60px;
    animation-duration: 24s;
    animation-delay: -7s;
    background: radial-gradient(ellipse at 55% 40%,
        #fde8d8 0%,
        #f5d0fe 30%,
        #e0e7ff 55%,
        transparent 80%);
}

/* TERTIARY blob — accent, bottom edge fade */
.blob-3 {
    width: 550px; height: 500px;
    filter: blur(100px);
    opacity: 0.5;
    bottom: -120px; right: -60px;
    animation-duration: 16s;
    animation-delay: -12s;
    background: radial-gradient(ellipse at 50% 50%,
        #c4b5fd 0%,
        #a78bfa 40%,
        transparent 75%);
}

@keyframes blobDrift {
    0%,100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    20%      { transform: translate(-30px, 25px) scale(1.03) rotate(2deg); }
    40%      { transform: translate(20px, -30px) scale(0.98) rotate(-1deg); }
    60%      { transform: translate(-15px, 20px) scale(1.04) rotate(1.5deg); }
    80%      { transform: translate(25px, 10px) scale(0.97) rotate(-2deg); }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 130px 0 100px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Hero blobs — massive purple/violet swirl like reference image */
.hero .blob-wrap { z-index: 0; }
.hero .blob-1 {
    width: 1100px; height: 1000px;
    top: -300px; right: -250px;
    opacity: 0.88;
    filter: blur(85px);
    animation-duration: 22s;
    background: radial-gradient(ellipse at 38% 42%,
        #a78bfa 0%,
        #8b5cf6 18%,
        #c4b5fd 38%,
        #ddd6fe 55%,
        #f5d0fe 70%,
        transparent 85%);
}
.hero .blob-2 {
    width: 750px; height: 700px;
    top: -60px; right: 80px;
    opacity: 0.7;
    filter: blur(100px);
    animation-duration: 26s;
    animation-delay: -9s;
    background: radial-gradient(ellipse at 55% 38%,
        #fde8d8 0%,
        #fce7f3 28%,
        #ede9fe 52%,
        transparent 78%);
}
.hero .blob-3 {
    width: 600px; height: 550px;
    bottom: -150px; right: -80px;
    opacity: 0.55;
    filter: blur(110px);
    animation-duration: 18s;
    animation-delay: -14s;
    background: radial-gradient(ellipse at 50% 50%,
        #7c3aed 0%,
        #a78bfa 35%,
        transparent 72%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content { position: relative; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.38rem 1rem 0.38rem 0.6rem;
    background: rgba(124,58,237,0.06);
    border: 1px solid rgba(124,58,237,0.14);
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeUp 0.7s ease both;
}

.hero-eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: 0.5; }
}

.hero-eyebrow span {
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ink-900);
    margin-bottom: 1.6rem;
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--ink-500);
    margin-bottom: 2.8rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 480px;
    animation: fadeUp 0.9s 0.2s ease both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.3s ease both;
}

.hero-stats {
    display: flex;
    gap: 2.8rem;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--ink-100);
    animation: fadeUp 1.1s 0.4s ease both;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--ink-900);
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--ink-300);
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Hero visual — glass cards */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: fadeUp 0.9s 0.2s ease both;
}

.animated-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
    width: 100%;
    max-width: 360px;
}

.grid-item {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: 0 8px 32px rgba(124,58,237,0.08), 0 2px 8px rgba(0,0,0,0.04);
    animation: cardFloat 5s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    cursor: default;
}

/* Tinted per card */
.figure-spanner  { background: linear-gradient(135deg, rgba(221,214,254,0.5), rgba(255,255,255,0.8)); }
.figure-robot    { background: linear-gradient(135deg, rgba(253,233,255,0.5), rgba(255,255,255,0.8)); animation-delay: 0.8s !important; }
.figure-workflow { background: linear-gradient(135deg, rgba(224,231,255,0.5), rgba(255,255,255,0.8)); animation-delay: 1.6s !important; }
.figure-nodes    { background: linear-gradient(135deg, rgba(209,250,229,0.5), rgba(255,255,255,0.8)); animation-delay: 2.4s !important; }

.grid-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 48px rgba(124,58,237,0.14), 0 4px 12px rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.9) !important;
}

@keyframes cardFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.grid-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, transparent 60%);
    border-radius: 24px;
}

.figure-icon {
    width: 50%; height: 50%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 1;
    transition: all 0.3s ease;
}

.figure-spanner .figure-icon  { background-image: url('assets/hero-icons/spanner.svg');   filter: hue-rotate(230deg) saturate(0.8); }
.figure-robot .figure-icon    { background-image: url('assets/hero-icons/robot.svg');     filter: hue-rotate(280deg) saturate(0.7); }
.figure-workflow .figure-icon { background-image: url('assets/hero-icons/workflow.svg');  filter: hue-rotate(190deg) saturate(0.8); }
.figure-nodes .figure-icon    { background-image: url('assets/hero-icons/nodes.svg');     filter: hue-rotate(130deg) saturate(0.8); }

.grid-item:hover .figure-icon { opacity: 1; transform: scale(1.1); }

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

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

/* ===== PROCESS ===== */
.process-section .blob-1 {
    background: radial-gradient(circle at 40% 40%, #bfdbfe, #ddd6fe, transparent 80%);
}
.process-section .blob-2 {
    background: radial-gradient(circle at 50% 50%, #93c5fd, transparent 70%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.process-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--ink-100);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #bfdbfe, #93c5fd, #ddd6fe);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(37,99,235,0.15);
}

.process-card:hover::before { opacity: 1; }

/* Subtle click hint */
.process-card::after {
    content: 'Start a conversation →';
    position: absolute;
    bottom: 1.5rem; right: 1.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #2563eb;
    letter-spacing: 0.02em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover::after { opacity: 1; }

.process-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--ink-100);
    position: absolute;
    top: 1rem; right: 1.5rem;
    letter-spacing: -0.04em;
    transition: color 0.3s ease;
}

.process-card:hover .process-number { color: rgba(37,99,235,0.12); }

.process-icon {
    font-size: 2rem;
    margin-bottom: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: rgba(37,99,235,0.07);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(37,99,235,0.1);
}

.process-card:hover .process-icon {
    background: rgba(37,99,235,0.12);
    transform: scale(1.08) rotate(-4deg);
}

.process-card h3 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: 0.75rem;
}

.process-card p {
    color: var(--ink-500);
    line-height: 1.75;
    font-size: 0.93rem;
    font-weight: 300;
}

/* ===== SERVICES ===== */
.services-section .blob-1 {
    background: radial-gradient(circle at 40% 40%, #d1fae5, #a7f3d0, transparent 80%);
    left: -100px; top: -80px; right: auto;
}
.services-section .blob-2 {
    background: radial-gradient(circle at 50% 50%, #6ee7b7, transparent 70%);
    left: 180px; top: 80px; right: auto;
}
.services-section .blob-3 {
    background: radial-gradient(circle at 50% 50%, #fef9c3, transparent 70%);
    right: 40px; bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    padding: 2.4rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--ink-100);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6ee7b7, #a7f3d0, #fef9c3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5,150,105,0.15);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    font-size: 1.9rem;
    margin-bottom: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: rgba(5,150,105,0.07);
    border: 1px solid rgba(5,150,105,0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(5,150,105,0.12);
    transform: scale(1.08) rotate(6deg);
}

.service-card h3 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: 0.7rem;
}

.service-card > p {
    color: var(--ink-500);
    line-height: 1.75;
    margin-bottom: 1.4rem;
    font-size: 0.92rem;
    font-weight: 300;
}

.service-features {
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--ink-100);
    padding-top: 1.2rem;
}

.service-features li {
    padding: 0.4rem 0;
    color: var(--ink-500);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #059669;
    flex-shrink: 0;
}

/* ===== BENEFITS ===== */
.benefits-section .blob-1 {
    background: radial-gradient(circle at 40% 40%, #fce7f3, #fbcfe8, transparent 80%);
    right: -80px; top: -60px;
}
.benefits-section .blob-2 {
    background: radial-gradient(circle at 50% 50%, #f9a8d4, transparent 70%);
    right: 200px; top: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: var(--white);
    padding: 2.2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--ink-100);
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(219,39,119,0.1);
    border-color: rgba(219,39,119,0.15);
}

.benefit-icon {
    font-size: 1.9rem;
    margin-bottom: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    background: rgba(219,39,119,0.07);
    border: 1px solid rgba(219,39,119,0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(219,39,119,0.12);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-family: var(--font-sans);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: 0.65rem;
}

.benefit-card p {
    color: var(--ink-500);
    line-height: 1.75;
    font-size: 0.9rem;
    font-weight: 300;
}

/* ===== PRICING ===== */
.pricing-section .blob-1 {
    background: radial-gradient(circle at 40% 40%, #ede9fe, #ddd6fe, transparent 80%);
    left: -80px; top: -80px; right: auto;
}
.pricing-section .blob-2 {
    background: radial-gradient(circle at 50% 50%, #c4b5fd, transparent 70%);
    left: 160px; bottom: 60px; right: auto; top: auto;
}
.pricing-section .blob-3 {
    background: radial-gradient(circle at 50% 50%, #fdf4ff, transparent 70%);
    right: -40px; bottom: -40px;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.toggle-label {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--ink-500);
    font-size: 0.9rem;
}

.save-badge {
    display: inline-block;
    padding: 0.18rem 0.55rem;
    background: rgba(5,150,105,0.1);
    color: #059669;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-left: 0.4rem;
    border: 1px solid rgba(5,150,105,0.2);
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px; height: 24px;
}

.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--ink-100);
    border-radius: 34px;
    transition: 0.3s;
}

.slider::before {
    position: absolute;
    content: "";
    height: 16px; width: 16px;
    left: 4px; bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

input:checked + .slider { background: var(--accent); }
input:checked + .slider::before { transform: translateX(22px); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 1.5rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--ink-100);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ddd6fe, #c4b5fd, #f5d0fe);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(124,58,237,0.2);
}

.pricing-card:hover::before { opacity: 1; }

.pricing-card.featured {
    background: linear-gradient(160deg, #faf5ff 0%, #f5f3ff 100%);
    border-color: rgba(124,58,237,0.3);
    box-shadow: 0 8px 40px rgba(124,58,237,0.12);
    transform: scale(1.04);
}

.pricing-card.featured::before { opacity: 1; }

.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }

.popular-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--ink-900);
    color: white;
    padding: 0.3rem 1.1rem;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--ink-100);
}

.pricing-header h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: 1rem;
}

.price {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 300;
    color: var(--ink-900);
    margin: 0.8rem 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.15rem;
    letter-spacing: -0.03em;
}

.currency { font-size: 1.7rem; color: var(--ink-500); }
.period   { font-size: 0.95rem; font-weight: 400; color: var(--ink-300); font-family: var(--font-sans); }

.pricing-header p { color: var(--ink-500); font-size: 0.88rem; font-weight: 300; }

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.65rem 0;
    color: var(--ink-500);
    border-bottom: 1px solid var(--ink-100);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-card .btn-primary,
.pricing-card .btn-outline { width: 100%; text-align: center; }

/* ===== CONTACT ===== */
.contact-section .blob-1 {
    background: radial-gradient(circle at 40% 40%, #cffafe, #a5f3fc, transparent 80%);
    right: -80px; top: -60px;
}
.contact-section .blob-2 {
    background: radial-gradient(circle at 50% 50%, #67e8f9, transparent 70%);
    right: 220px; top: 100px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: rgba(8,145,178,0.07);
    border: 1px solid rgba(8,145,178,0.12);
    border-radius: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(8,145,178,0.12);
    transform: scale(1.06);
}

.contact-item h4 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-300);
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: #0891b2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-item a:hover { color: var(--ink-900); }

.contact-item p {
    color: var(--ink-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-card);
    box-shadow: 0 8px 40px rgba(8,145,178,0.08);
    border: 1px solid var(--ink-100);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #67e8f9, #a5f3fc, #cffafe);
}

.form-group { margin-bottom: 1.3rem; }

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ink-300);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.82rem 1rem;
    border: 1.5px solid var(--ink-100);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--ink-900);
    background: var(--off);
    transition: all 0.25s ease;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-300); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(8,145,178,0.45);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(8,145,178,0.08);
}

.contact-form button { width: 100%; }

/* ===== FAQ ===== */
.faq-section .blob-1 {
    background: radial-gradient(circle at 40% 40%, #fef3c7, #fde68a, transparent 80%);
    left: -80px; bottom: -60px; right: auto; top: auto;
}
.faq-section .blob-2 {
    background: radial-gradient(circle at 50% 50%, #fcd34d, transparent 70%);
    left: 160px; bottom: 60px; right: auto; top: auto;
}

.faq-container {
    max-width: 740px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    margin-bottom: 0.75rem;
    border: 1.5px solid var(--ink-100);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-item:hover { border-color: rgba(217,119,6,0.2); }
.faq-item.active {
    border-color: rgba(217,119,6,0.25);
    box-shadow: 0 4px 24px rgba(217,119,6,0.07);
}

.faq-question {
    width: 100%;
    padding: 1.35rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--ink-700);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s ease;
}

.faq-question:hover { color: var(--ink-900); }
.faq-item.active .faq-question { color: var(--ink-900); font-weight: 600; }

.faq-icon {
    font-size: 1.3rem;
    font-weight: 300;
    color: #d97706;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--ink-500);
    line-height: 1.8;
    font-size: 0.93rem;
    font-weight: 300;
}

/* ===== CTA ===== */
.cta-section {
    background: var(--white);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Full-bleed blob for CTA */
.cta-section::before {
    content: '';
    position: absolute;
    width: 900px; height: 700px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at 50% 50%, #ede9fe 0%, #fce7f3 40%, transparent 70%);
    filter: blur(80px);
    opacity: 0.6;
    border-radius: 50%;
    animation: ctaBlobBreath 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaBlobBreath {
    0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
    50%      { transform: translate(-50%,-50%) scale(1.08); opacity: 0.8; }
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 300;
    color: var(--ink-900);
    margin-bottom: 1.2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-section h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--ink-500);
    font-weight: 300;
}

.cta-note {
    font-size: 0.82rem;
    margin-top: 1.2rem;
    color: var(--ink-300);
    font-family: var(--font-sans);
    letter-spacing: 0.02em;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ink-900);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}

/* Subtle blob in footer */
.footer::before {
    content: '';
    position: absolute;
    width: 500px; height: 400px;
    top: -100px; right: -100px;
    background: radial-gradient(ellipse, rgba(196,181,253,0.08) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.7rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-logo { width: 34px; height: 34px; }

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.2rem;
}

.footer-col p {
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-col a:hover { color: rgba(255,255,255,0.9); }

.social-links { display: flex; gap: 0.6rem; }

.social-links a {
    padding: 0.4rem 0.85rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: rgba(196,181,253,0.12);
    border-color: rgba(196,181,253,0.25);
    color: rgba(255,255,255,0.9);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    position: relative;
    z-index: 1;
}

.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.82rem; }

/* ===== QUICK MESSAGE OVERLAY ===== */
.quick-message-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(14,14,20,0.4);
    backdrop-filter: blur(8px);
    z-index: 1200;
}

.quick-message-overlay.active { display: flex; }

.quick-message-panel {
    width: min(540px, 100%);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    background: var(--white);
    box-shadow: 0 32px 80px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid var(--ink-100);
    position: relative;
    animation: panelIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
    overflow: hidden;
}

/* Top accent bar */
.quick-message-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ddd6fe, #a78bfa, #f5d0fe);
}

/* Blob inside panel */
.quick-message-panel::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    top: -80px; right: -80px;
    background: radial-gradient(circle, #f5d0fe 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.35;
    pointer-events: none;
}

@keyframes panelIn {
    from { opacity: 0; transform: scale(0.94) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.quick-message-close {
    position: absolute;
    top: 1rem; right: 1.2rem;
    border: none;
    background: var(--soft);
    border-radius: 8px;
    width: 30px; height: 30px;
    font-size: 1.1rem;
    color: var(--ink-300);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1;
}

.quick-message-close:hover {
    background: var(--ink-100);
    color: var(--ink-700);
}

.quick-message-panel h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--ink-900);
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 1;
}

.quick-message-panel > p {
    color: var(--ink-300);
    margin-bottom: 1.8rem;
    font-size: 0.88rem;
    position: relative;
    z-index: 1;
}

.quick-message-form {
    display: grid;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

/* ===== THEME COMPAT (JS kept, visual unified to light) ===== */
body.theme-purple-pink .hero .blob-1 { background: radial-gradient(circle at 35% 45%, #f5d0fe 0%, #ddd6fe 40%, #fde8d8 65%, transparent 80%); }
body.theme-pink-blue   .hero .blob-1 { background: radial-gradient(circle at 35% 45%, #bfdbfe 0%, #ddd6fe 40%, #fce7f3 65%, transparent 80%); }
body.theme-green-yellow .hero .blob-1 { background: radial-gradient(circle at 35% 45%, #d1fae5 0%, #fef9c3 40%, #fde8d8 65%, transparent 80%); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 320px; margin: 0 auto; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
    :root { --section-pad: 80px 0; }

    .navbar .container { padding: 0.85rem 20px; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 66px;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        width: calc(100% - 32px);
        left: 16px;
        text-align: center;
        transition: top 0.3s ease, opacity 0.3s ease;
        box-shadow: 0 16px 48px rgba(0,0,0,0.1);
        padding: 1.5rem;
        border-radius: 20px;
        border: 1px solid var(--ink-100);
        gap: 0.15rem;
        opacity: 0;
        pointer-events: none;
        top: 80px;
    }

    .nav-menu.active { opacity: 1; pointer-events: all; }
    .hamburger { display: flex; }

    .hero { padding: 110px 0 80px; }
    .hero-title { font-size: 2.6rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons a { width: 100%; text-align: center; max-width: 300px; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }

    .hero .blob-1 { width: 400px; height: 400px; top: -60px; right: -80px; }
    .hero .blob-2 { display: none; }

    .section-header h2 { font-size: 1.9rem; }
    .pricing-card.featured { transform: scale(1); }
    .footer-grid { grid-template-columns: 1fr; }
    .animated-grid { max-width: 260px; }

    /* Reduce blob sizes on mobile */
    .blob-1 { width: 360px !important; height: 360px !important; }
    .blob-2 { display: none; }
    .blob-3 { width: 220px !important; height: 220px !important; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.1rem; }
    .section-header h2 { font-size: 1.7rem; }
    .process-card, .service-card, .benefit-card { padding: 1.8rem; }
    .quick-message-panel { padding: 1.8rem; }
}

/* Process card focus */
.process-card[role="button"]:focus-visible {
    outline: 2px solid rgba(37,99,235,0.4);
    outline-offset: 3px;
}