/* ============================================
   Desis Clean — Premium Agency-Style Stylesheet
   ============================================ */

:root {
    /* Brand */
    --brand-50:  #eff6ff;
    --brand-100: #dbeafe;
    --brand-200: #bfdbfe;
    --brand-300: #93c5fd;
    --brand-400: #60a5fa;
    --brand-500: #3b82f6;
    --brand-600: #2563eb;
    --brand-700: #1d4ed8;
    --brand-800: #1e40af;
    --brand-900: #1e3a8a;

    /* Neutrals */
    --ink-50:  #f8fafc;
    --ink-100: #f1f5f9;
    --ink-200: #e2e8f0;
    --ink-300: #cbd5e1;
    --ink-400: #94a3b8;
    --ink-500: #64748b;
    --ink-600: #475569;
    --ink-700: #334155;
    --ink-800: #1e293b;
    --ink-900: #0f172a;

    /* Surfaces */
    --bg:        #ffffff;
    --bg-soft:   #f8fafc;
    --bg-tint:   #f4f8ff;

    --warn: #f59e0b;
    --success: #10b981;

    --radius-sm: 12px;
    --radius:    18px;
    --radius-lg: 28px;
    --radius-xl: 36px;

    --shadow-xs: 0 1px 2px rgba(15, 23, 42, .05);
    --shadow-sm: 0 4px 12px rgba(15, 23, 42, .06);
    --shadow:    0 12px 32px rgba(15, 23, 42, .08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, .12);
    --shadow-xl: 0 40px 80px -20px rgba(30, 64, 175, .25);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
*::selection { background: var(--brand-200); color: var(--brand-900); }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink-900);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11", "ss01";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
    color: var(--brand-700);
    text-decoration: none;
    transition: color .2s var(--ease);
}
a:hover { color: var(--brand-800); }

h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--ink-900);
    line-height: 1.05;
    margin: 0 0 .5em;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
}
h2 {
    font-size: clamp(2rem, 3vw + 1rem, 3.5rem);
    letter-spacing: -0.03em;
}
h3 { font-size: 1.25rem; letter-spacing: -0.02em; }
h4 { font-size: 1.05rem; letter-spacing: -0.015em; }

em {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--brand-600);
    letter-spacing: 0.005em;
}

p { margin: 0 0 1em; color: var(--ink-600); }
.lead { font-size: 1.1rem; color: var(--ink-600); }

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ============================================
   Background blobs
   ============================================ */
.bg-blobs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .35;
}
.blob-1 {
    width: 600px; height: 600px;
    background: var(--brand-200);
    top: -200px; right: -150px;
}
.blob-2 {
    width: 500px; height: 500px;
    background: var(--brand-100);
    top: 600px; left: -250px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .92rem;
    cursor: pointer;
    transition: all .25s var(--ease-out);
    border: 1.5px solid transparent;
    white-space: nowrap;
    font-family: inherit;
    letter-spacing: -0.005em;
    position: relative;
    overflow: hidden;
}
.btn svg { transition: transform .25s var(--ease-out); }

.btn-primary {
    background: var(--ink-900);
    color: #fff;
    box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, var(--shadow-sm);
}
.btn-primary:hover {
    background: var(--brand-600);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(37, 99, 235, .5);
}
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
    background: #fff;
    color: var(--ink-900);
    border-color: var(--ink-200);
}
.btn-outline:hover {
    border-color: var(--ink-900);
    transform: translateY(-2px);
}

.btn-link {
    background: transparent;
    color: var(--ink-900);
    padding: 12px 4px;
    border-radius: 0;
}
.btn-link::after {
    content: '';
    position: absolute;
    left: 4px; right: 4px; bottom: 8px;
    height: 1.5px;
    background: var(--ink-900);
    transform: scaleX(.3);
    transform-origin: left;
    transition: transform .3s var(--ease-out);
}
.btn-link:hover { color: var(--brand-700); }
.btn-link:hover::after {
    transform: scaleX(1);
    background: var(--brand-600);
}

.btn-white {
    background: #fff;
    color: var(--ink-900);
}
.btn-white:hover {
    background: var(--brand-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-white:hover svg { transform: translateX(3px); }

.btn-ghost-light {
    background: rgba(255,255,255,.1);
    color: #fff;
    border-color: rgba(255,255,255,.25);
    backdrop-filter: blur(10px);
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.5);
}

.btn-xl { padding: 16px 30px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: calc(100% - 32px);
    max-width: 1200px;
    transition: top .3s var(--ease-out), max-width .3s var(--ease-out);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 4px 30px rgba(15, 23, 42, .08), inset 0 1px 0 rgba(255,255,255,.7);
    border-radius: 999px;
    padding: 10px 12px 10px 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--ink-900);
    font-size: 1.1rem;
    letter-spacing: -0.025em;
}
.brand-mark {
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-name em {
    color: var(--brand-600);
    margin-left: 1px;
}

.nav-links {
    display: flex;
    gap: 6px;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    color: var(--ink-700);
    font-weight: 500;
    font-size: .92rem;
    padding: 8px 14px;
    border-radius: 999px;
    transition: all .2s var(--ease);
}
.nav-links a:hover {
    color: var(--ink-900);
    background: rgba(15, 23, 42, .06);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink-700);
    font-weight: 600;
    font-size: .9rem;
    padding: 8px 14px;
    border-radius: 999px;
    transition: all .2s var(--ease);
}
.nav-phone:hover {
    color: var(--ink-900);
    background: rgba(15, 23, 42, .06);
}

.menu-toggle {
    display: none;
    width: 38px; height: 38px;
    background: var(--ink-900);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
}
.menu-toggle span {
    width: 16px; height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: all .25s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { transform: translateY(-2px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 160px 0 100px;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--ink-200);
    padding: 7px 14px 7px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--ink-700);
    margin-bottom: 28px;
    box-shadow: var(--shadow-xs);
}
.dot {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .15);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(16, 185, 129, .15); }
    50%      { box-shadow: 0 0 0 7px rgba(16, 185, 129, .25); }
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}
.underline-mark {
    position: relative;
    white-space: nowrap;
}
.underline-mark::after {
    content: '';
    position: absolute;
    left: -2%; right: -2%;
    bottom: 4px;
    height: 14px;
    background: var(--brand-200);
    z-index: -1;
    border-radius: 4px;
    transform: skewX(-6deg);
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--ink-600);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--ink-200);
    padding: 12px 18px 12px 12px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.avatars {
    display: flex;
}
.avatar {
    width: 36px; height: 36px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -10px;
    box-shadow: var(--shadow-xs);
}
.avatar:last-child { margin-right: 0; }
.meta-text { line-height: 1.25; }
.stars-mini {
    color: var(--warn);
    font-size: .85rem;
    letter-spacing: 1px;
    font-weight: 600;
}
.stars-mini span {
    color: var(--ink-900);
    font-size: .85rem;
    letter-spacing: 0;
    margin-left: 6px;
}
.meta-text small {
    display: block;
    color: var(--ink-500);
    font-size: .78rem;
    margin-top: 2px;
}

/* Hero Visual */
.hero-right {
    position: relative;
    height: 100%;
    min-height: 540px;
}
.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 540px;
}
.hv-image {
    position: absolute;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-xl);
}
.hv-main {
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(37, 99, 235, .08), rgba(37, 99, 235, 0)),
        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1200&q=85');
    animation: floatY 8s ease-in-out infinite;
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.hv-card {
    position: absolute;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatY 6s ease-in-out infinite;
}
.hv-card-1 {
    top: 30px; left: -30px;
    animation-delay: -2s;
}
.hv-card-2 {
    top: 50%; right: -20px;
    transform: translateY(-50%);
    padding: 18px 22px;
    animation-delay: -4s;
}
.hv-card-3 {
    bottom: 40px; left: 20px;
    animation-delay: -1s;
}
.hv-card strong {
    display: block;
    font-size: .85rem;
    color: var(--ink-900);
    margin-bottom: 1px;
    font-weight: 600;
}
.hv-card small {
    display: block;
    font-size: .72rem;
    color: var(--ink-500);
}
.hv-card-icon {
    width: 36px; height: 36px;
    background: var(--success);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hv-card-icon.orange {
    background: var(--warn);
}
.hv-stat { text-align: center; }
.hv-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-600);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 2px;
}
.hv-stat-lbl {
    display: block;
    font-size: .72rem;
    color: var(--ink-500);
    font-weight: 500;
}

/* ============================================
   Marquee
   ============================================ */
.marquee-section {
    padding: 30px 0 60px;
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
    overflow: hidden;
}
.marquee-label {
    text-align: center;
    font-size: .75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-400);
    font-weight: 600;
    margin-bottom: 24px;
}
.marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
    display: flex;
    gap: 36px;
    align-items: center;
    animation: marquee 40s linear infinite;
    width: max-content;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -.02em;
}
.marquee-track span {
    color: var(--ink-300);
    transition: color .3s ease;
    white-space: nowrap;
}
.marquee-track span:hover { color: var(--brand-600); }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   Section Head
   ============================================ */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}
.section-head p {
    font-size: 1.1rem;
    margin-top: 18px;
    color: var(--ink-500);
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-700);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    font-size: .75rem;
    padding: 6px 12px;
    background: var(--brand-50);
    border: 1px solid var(--brand-100);
    border-radius: 999px;
    margin-bottom: 20px;
}
.eyebrow.light {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.2);
    color: rgba(255,255,255,.95);
}

/* ============================================
   Services — Bento Grid
   ============================================ */
.services {
    padding: 120px 0;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 16px;
}
.bento {
    position: relative;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.bento:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-200);
}
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}
.bento-feature {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--ink-900), var(--brand-900));
    border-color: var(--ink-800);
    color: #fff;
    overflow: hidden;
}
.bento-feature:hover {
    border-color: var(--brand-700);
}
.bento-feature h3, .bento-feature p { color: #fff; }
.bento-feature p { color: rgba(255,255,255,.7); }
.bento-feature .bento-arrow {
    color: #fff;
    background: rgba(255,255,255,.15);
}

.bento-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s var(--ease-out);
}
.bento-large:hover .bento-img {
    transform: scale(1.05);
}
.bento-content {
    position: relative;
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
    z-index: 2;
}
.bento-content-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, .85) 100%);
    color: #fff;
    justify-content: flex-end;
}
.bento-content-overlay h3,
.bento-content-overlay p { color: #fff; }
.bento-content-overlay p { color: rgba(255,255,255,.85); }

.bento-icon {
    width: 44px; height: 44px;
    background: var(--brand-50);
    color: var(--brand-700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all .3s var(--ease-out);
}
.bento:hover .bento-icon {
    background: var(--brand-600);
    color: #fff;
    transform: scale(1.05);
}

.bento h3 { margin-bottom: 8px; }
.bento p {
    color: var(--ink-500);
    font-size: .92rem;
    margin: 0;
    line-height: 1.5;
}
.bento-tag {
    display: inline-block;
    align-self: flex-start;
    background: var(--brand-50);
    color: var(--brand-700);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 5px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.bento-tag.dark {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.95);
}
.bento-content-overlay .bento-tag {
    background: rgba(255,255,255,.2);
    color: #fff;
    backdrop-filter: blur(10px);
}
.bento-arrow {
    align-self: flex-end;
    width: 38px; height: 38px;
    background: var(--brand-50);
    color: var(--brand-700);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    margin-left: auto;
    transition: all .3s var(--ease-out);
    font-weight: 600;
}
.bento:hover .bento-arrow {
    background: var(--brand-600);
    color: #fff;
    transform: rotate(-45deg);
}
.bento-content-overlay .bento-arrow {
    background: rgba(255,255,255,.2);
    color: #fff;
    backdrop-filter: blur(10px);
}
.bento-feature:hover .bento-arrow { transform: rotate(-45deg); }

.bento-deco {
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--brand-500), transparent 70%);
    opacity: .4;
    pointer-events: none;
}

/* ============================================
   Stats
   ============================================ */
.stats {
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 60px 40px;
    background: var(--bg-soft);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-xl);
}
.stat { text-align: center; }
.stat-num {
    font-size: clamp(2.5rem, 4vw, 3.6rem);
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: -0.035em;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--ink-900), var(--brand-700));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.stat-label {
    font-size: .92rem;
    color: var(--ink-500);
    font-weight: 500;
}

/* ============================================
   About
   ============================================ */
.about {
    padding: 120px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.about-visual {
    position: relative;
    aspect-ratio: 1 / 1.15;
    max-width: 520px;
}
.about-img-1, .about-img-2 {
    position: absolute;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}
.about-img-1 {
    top: 0; left: 0;
    width: 70%;
    height: 78%;
    background-image: url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=900&q=85');
    z-index: 1;
}
.about-img-2 {
    bottom: 0; right: 0;
    width: 60%;
    height: 55%;
    background-image: url('https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?auto=format&fit=crop&w=900&q=85');
    z-index: 2;
    border: 6px solid #fff;
}
.about-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #fff;
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 3;
    border: 1px solid var(--ink-100);
}
.ab-num {
    display: block;
    font-size: 1.8rem;
    color: var(--brand-600);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 4px;
}
.ab-txt {
    font-size: .75rem;
    color: var(--ink-600);
    font-weight: 600;
    max-width: 100px;
    display: block;
    line-height: 1.3;
}

.about-content h2 { margin-bottom: 20px; }
.about-content .lead { margin-bottom: 32px; }
.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
}
.value-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.check-circle {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--brand-50);
    color: var(--brand-700);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.value-list h4 {
    font-size: 1.02rem;
    margin: 0 0 4px;
}
.value-list p {
    color: var(--ink-500);
    font-size: .92rem;
    margin: 0;
}

/* ============================================
   Process
   ============================================ */
.process {
    padding: 120px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
}
.process-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}
.process-line {
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--brand-200), transparent);
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.ps-circle {
    width: 64px; height: 64px;
    margin: 0 auto 22px;
    background: #fff;
    border: 1.5px solid var(--ink-200);
    color: var(--ink-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: -.01em;
    box-shadow: var(--shadow-sm);
    transition: all .3s var(--ease-out);
}
.process-step:hover .ps-circle {
    background: var(--ink-900);
    color: #fff;
    border-color: var(--ink-900);
    transform: translateY(-3px);
}
.process-step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.process-step p {
    color: var(--ink-500);
    font-size: .95rem;
    max-width: 320px;
    margin: 0 auto;
}

/* ============================================
   Pricing
   ============================================ */
.pricing {
    padding: 120px 0;
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}
.price-grid-single {
    grid-template-columns: 1fr;
    max-width: 460px;
}
.price-grid-single .price-card.popular {
    transform: none;
}
.price-grid-single .price-card.popular:hover {
    transform: translateY(-6px);
}
.price-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-200);
}
.price-card.popular {
    background: linear-gradient(180deg, var(--ink-900), var(--brand-900));
    border-color: var(--ink-900);
    color: #fff;
    box-shadow: var(--shadow-xl);
    transform: scale(1.03);
}
.price-card.popular:hover { transform: scale(1.03) translateY(-6px); }
.price-card.popular h3,
.price-card.popular .price-tag strong { color: #fff; }
.price-card.popular .price-desc,
.price-card.popular .price-tag span,
.price-card.popular .price-features li {
    color: rgba(255,255,255,.75);
}
.price-card.popular .price-features li {
    border-color: rgba(255,255,255,.12);
}
.price-card.popular .check-circle {
    background: rgba(255,255,255,.15);
    color: #fff;
}
.price-card.popular .btn-primary {
    background: #fff;
    color: var(--ink-900);
}
.price-card.popular .btn-primary:hover {
    background: var(--brand-500);
    color: #fff;
}
.popular-tag {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--warn);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: var(--shadow);
}
.price-card h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: .1em;
}
.price-desc {
    font-size: .92rem;
    color: var(--ink-500);
    margin-bottom: 28px;
}
.price-tag {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.price-tag span {
    color: var(--ink-500);
    font-size: .9rem;
    font-weight: 500;
}
.price-tag strong {
    font-size: 3rem;
    color: var(--ink-900);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.price-features li {
    padding: 12px 0;
    border-top: 1px solid var(--ink-100);
    color: var(--ink-700);
    font-size: .92rem;
    position: relative;
    padding-left: 28px;
}
.price-features li:first-child { border-top: none; }
.price-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    background: var(--brand-50);
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}
.price-card.popular .price-features li::before {
    background-color: rgba(255,255,255,.2);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 0;
    transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.testi:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.stars {
    color: var(--warn);
    font-size: 1.05rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}
.testi blockquote {
    margin: 0 0 20px;
    color: var(--ink-800);
    font-size: 1.08rem;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: -.01em;
}
.testi figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--ink-100);
}
.t-avatar {
    width: 42px; height: 42px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.testi figcaption strong {
    display: block;
    color: var(--ink-900);
    font-size: .92rem;
    font-weight: 600;
}
.testi figcaption small {
    display: block;
    color: var(--ink-500);
    font-size: .8rem;
    margin-top: 2px;
}

/* ============================================
   CTA Card
   ============================================ */
.cta {
    padding: 60px 0 120px;
}
.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--brand-700), var(--ink-900));
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.cta-card h2 { color: #fff; margin-bottom: 12px; }
.cta-card p {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0;
}
.cta-content { position: relative; z-index: 2; }
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}
.cta-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.cta-orbs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}
.cta-orbs span:nth-child(1) {
    width: 300px; height: 300px;
    background: var(--brand-400);
    opacity: .35;
    top: -100px; right: -50px;
}
.cta-orbs span:nth-child(2) {
    width: 250px; height: 250px;
    background: var(--brand-500);
    opacity: .25;
    bottom: -100px; left: 100px;
}
.cta-orbs span:nth-child(3) {
    width: 200px; height: 200px;
    background: #ffffff;
    opacity: .08;
    top: 50%; left: 30%;
}

/* ============================================
   Contact
   ============================================ */
.contact {
    padding: 0 0 120px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: start;
}
.contact-info h2 { margin-bottom: 18px; }
.contact-info p { font-size: 1.05rem; color: var(--ink-500); }
.contact-list {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    display: grid;
    gap: 22px;
}
.contact-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ci-icon {
    width: 44px; height: 44px;
    background: var(--brand-50);
    color: var(--brand-700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-list small {
    display: block;
    font-size: .75rem;
    color: var(--ink-400);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    margin-bottom: 3px;
}
.contact-list a {
    color: var(--ink-900);
    font-weight: 600;
    font-size: 1.02rem;
}
.contact-list a:hover { color: var(--brand-700); }
.contact-list span {
    color: var(--ink-700);
    font-size: .98rem;
    line-height: 1.55;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form h3 {
    margin-bottom: 28px;
    font-size: 1.35rem;
}
.contact-form label {
    display: block;
    margin-bottom: 18px;
}
.contact-form label > span {
    display: block;
    font-size: .85rem;
    color: var(--ink-700);
    font-weight: 600;
    margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--ink-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: .95rem;
    background: #fff;
    color: var(--ink-900);
    transition: all .2s var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--ink-400);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-500);
    box-shadow: 0 0 0 4px var(--brand-50);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: var(--ink-600);
    margin-bottom: 22px !important;
}
.checkbox input { width: auto !important; margin-top: 3px; padding: 0; }
.checkbox a { color: var(--brand-700); text-decoration: underline; }
.form-success {
    margin: 16px 0 0;
    padding: 14px 18px;
    background: #ecfdf5;
    color: var(--success);
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: .92rem;
}
.form-error {
    margin: 16px 0 0;
    padding: 14px 18px;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: .92rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--ink-900);
    color: rgba(255,255,255,.65);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, .25), transparent 60%);
    pointer-events: none;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    position: relative;
}
.footer-brand .brand {
    color: #fff;
}
.footer-brand .brand-name em { color: var(--brand-300); }
.footer-brand p {
    color: rgba(255,255,255,.55);
    font-size: .92rem;
    margin-top: 16px;
    max-width: 320px;
    line-height: 1.6;
}
.footer-col h4 {
    color: #fff;
    font-size: .85rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col li {
    padding: 6px 0;
    font-size: .92rem;
    color: rgba(255,255,255,.65);
}
.footer-col a {
    color: rgba(255,255,255,.65);
    transition: color .2s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: .85rem;
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a { color: rgba(255,255,255,.55); }
.footer-legal a:hover { color: #fff; }

/* ============================================
   Floating Call
   ============================================ */
.float-call {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 56px; height: 56px;
    background: var(--brand-600);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(37, 99, 235, .5);
    z-index: 50;
    transition: all .3s var(--ease-out);
}
.float-call::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--brand-600);
    z-index: -1;
    animation: pulseRing 2.5s ease-out infinite;
}
@keyframes pulseRing {
    0%   { transform: scale(1);  opacity: .6; }
    100% { transform: scale(1.6); opacity: 0; }
}
.float-call:hover {
    transform: scale(1.08);
    background: var(--brand-700);
}

/* ============================================
   Reveal animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
    .nav-links { gap: 2px; }
    .nav-links a { padding: 8px 10px; font-size: .88rem; }
}

@media (max-width: 960px) {
    .nav-links,
    .nav-phone {
        display: none;
    }
    .nav-inner {
        padding: 10px 12px 10px 18px;
    }
    .menu-toggle { display: flex; }

    .navbar.menu-open .nav-inner {
        border-radius: 24px;
    }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: calc(100% + 12px);
        left: 0; right: 0;
        background: rgba(255,255,255,.95);
        backdrop-filter: blur(18px);
        border: 1px solid var(--ink-100);
        flex-direction: column;
        padding: 12px;
        gap: 2px;
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open a {
        padding: 12px 16px;
        font-size: .95rem;
    }

    .hero { padding: 130px 0 80px; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-right { min-height: 460px; }
    .hero-visual { min-height: 460px; max-width: 540px; margin: 0 auto; }

    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; grid-row: span 1; min-height: 380px; }
    .bento-feature { grid-column: span 2; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 50px 30px; gap: 36px; }

    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { max-width: 480px; margin: 0 auto; }

    .process-track { grid-template-columns: 1fr; gap: 50px; }
    .process-line { display: none; }

    .price-grid { grid-template-columns: 1fr; max-width: 480px; }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-6px); }

    .testi-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }

    .cta-card {
        padding: 50px 36px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-grid { grid-template-columns: 1fr; gap: 50px; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 600px) {
    h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
    h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }

    .container { padding: 0 20px; }
    .navbar { top: 12px; width: calc(100% - 24px); }
    .nav-cta .btn-primary { padding: 10px 18px; font-size: .85rem; }

    .hero { padding: 110px 0 60px; }
    .hero-meta { padding: 10px 14px 10px 10px; gap: 12px; }
    .avatar { width: 30px; height: 30px; }

    .hv-card-1 { left: 0; top: 16px; padding: 10px 14px; }
    .hv-card-1 strong { font-size: .78rem; }
    .hv-card-1 small { font-size: .68rem; }
    .hv-card-2 { right: 0; }
    .hv-card-3 { left: 8px; bottom: 16px; }

    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-feature { grid-column: span 1; }
    .bento { min-height: 200px; }

    .stats-grid { grid-template-columns: 1fr 1fr; padding: 36px 20px; gap: 28px; }
    .stat-num { font-size: 2.4rem; }

    .services, .about, .process, .pricing, .testimonials { padding: 80px 0; }
    .cta { padding: 40px 0 80px; }
    .cta-card { padding: 40px 24px; }

    .contact-form { padding: 28px 22px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { justify-content: center; text-align: center; }

    .marquee-track { font-size: 1.15rem; gap: 24px; }
}
