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

:root {
    --bg-primary: #0a0e0f;
    --bg-secondary: #0f1517;
    --bg-card: #131b1e;
    --bg-card-hover: #182226;
    --teal: #1db99a;
    --teal-dim: #178a73;
    --teal-glow: rgba(29, 185, 154, 0.15);
    --green: #2a9d5c;
    --green-dim: #1e7a45;
    --text-primary: #e8edef;
    --text-secondary: #97a7ad;
    --text-muted: #5e7279;
    --accent-line: #1db99a;
    --font-body: 'Outfit', sans-serif;
    --max-width: 1140px;
    --section-pad: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 2rem);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: #5ee8c8; }

.container { max-width: var(--max-width); margin: 0 auto; }

/* ========== NAV ========== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 14, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(29, 185, 154, 0.1);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5); }
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem clamp(1.25rem, 4vw, 2rem);
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo img, .nav-logo-img { height: 38px; width: auto; border-radius: 8px; }
.nav-logo span {
    font-family: var(--font-body);
    font-weight: 700; font-size: 1.15rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
    font-size: 0.85rem; font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); }
.nav-cta {
    background: var(--teal);
    color: var(--bg-primary) !important;
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #5ee8c8; color: var(--bg-primary) !important; transform: translateY(-1px); }

.nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative;
}
.nav-toggle span {
    display: block; width: 100%; height: 2px;
    background: var(--text-primary);
    position: absolute; left: 0;
    transition: all 0.3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 600; font-size: 1rem;
    cursor: pointer; border: none;
    transition: all 0.2s;
    font-family: var(--font-body);
}
.btn-primary { background: var(--teal); color: var(--bg-primary); }
.btn-primary:hover { background: #5ee8c8; color: var(--bg-primary); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(29, 185, 154, 0.25); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid rgba(29, 185, 154, 0.3); }
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 1.5rem 4rem;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('graphics/hero-bg.png') center/cover no-repeat;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,14,15,0.82) 0%, rgba(10,14,15,0.7) 50%, rgba(10,14,15,0.95) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-logo {
    height: 100px; width: auto;
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 40px rgba(29, 185, 154, 0.2);
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--teal), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-tagline {
    font-family: var(--font-body); font-weight: 300;
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    color: var(--teal);
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}
.hero-desc {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 580px;
    margin-left: auto; margin-right: auto;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-phone {
    display: block;
    font-family: var(--font-body); font-weight: 300;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}
.hero-phone a { color: var(--text-muted); }
.hero-phone a:hover { color: var(--teal); }

/* ========== HOME NAV GRID ========== */
.home-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.home-nav-btn {
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    background: var(--bg-card);
    border: 1px solid rgba(29, 185, 154, 0.1);
    border-radius: 14px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.2s, box-shadow 0.3s;
    color: var(--text-primary);
}
.home-nav-btn:hover {
    border-color: rgba(29, 185, 154, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(29, 185, 154, 0.1);
    color: var(--text-primary);
}
.home-nav-btn .nav-btn-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(29, 185, 154, 0.08);
    border-radius: 12px;
    color: var(--teal);
    font-size: 1.4rem;
}
.home-nav-btn .nav-btn-label { font-weight: 600; font-size: 0.95rem; }
.home-nav-btn .nav-btn-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
.home-nav-btn-centered { grid-column: 1 / -1; max-width: 260px; justify-self: center; }

/* ========== SECTIONS (shared) ========== */
section { padding: var(--section-pad); }

.section-label {
    font-family: var(--font-body); font-weight: 300;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--teal);
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
}

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 8rem clamp(1.25rem, 4vw, 2rem) 3rem;
    text-align: center;
    background: var(--bg-secondary);
    border-bottom: 1px solid rgba(29, 185, 154, 0.06);
}
.page-header .section-subtitle { margin-left: auto; margin-right: auto; }

/* ========== PROBLEM SECTION ========== */
.problem { background: var(--bg-primary); }
.problem-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center; margin-top: 2.5rem;
}
.problem-stats { display: flex; flex-direction: column; gap: 1.5rem; }
.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(29, 185, 154, 0.08);
    border-radius: 12px; padding: 1.5rem;
    transition: border-color 0.3s, transform 0.2s;
}
.stat-card:hover { border-color: rgba(29, 185, 154, 0.25); transform: translateY(-2px); }
.stat-number {
    font-size: 2.2rem; font-weight: 800;
    background: linear-gradient(135deg, var(--teal), var(--green));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 0.4rem;
}
.stat-text { color: var(--text-secondary); font-size: 0.95rem; }
.problem-message {
    background: var(--bg-card);
    border: 1px solid rgba(29, 185, 154, 0.08);
    border-radius: 16px; padding: 2.5rem;
}
.problem-message p { font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1rem; }
.problem-message p:last-child { margin-bottom: 0; }
.problem-message strong { color: var(--text-primary); }
.problem-message em.teal { color: var(--teal); font-style: normal; font-weight: 600; }

/* ========== STEPS ========== */
.steps-section { background: var(--bg-secondary); }
.steps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3rem; position: relative;
}
.steps::before {
    content: ''; position: absolute; top: 48px;
    left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--green));
    opacity: 0.3;
}
.step { text-align: center; position: relative; padding: 0 0.5rem; }
.step-icon {
    width: 96px; height: 96px;
    margin: 0 auto 1.25rem;
    background: var(--bg-card);
    border: 1px solid rgba(29, 185, 154, 0.15);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.step:hover .step-icon { border-color: rgba(29, 185, 154, 0.4); box-shadow: 0 0 30px rgba(29, 185, 154, 0.1); }
.step-icon svg { width: 44px; height: 44px; }
.step-number { font-family: var(--font-body); font-weight: 300; font-size: 0.7rem; color: var(--teal); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.step h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ========== JUMP PAGE ========== */
.jumppage { background: var(--bg-primary); }
.jumppage-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; margin-top: 2.5rem;
}
.jumppage-mockup { display: flex; justify-content: center; }
.jumppage-mockup img {
    max-height: 520px; width: auto; border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(29,185,154,0.08);
}
.jumppage-details h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.jumppage-details p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.7; }
.jumppage-features {
    list-style: none; margin-top: 1.5rem;
    display: flex; flex-direction: column; gap: 0.75rem;
}
.jumppage-features li {
    display: flex; align-items: flex-start; gap: 0.65rem;
    color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5;
}
.jumppage-features li svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; color: var(--teal); }

/* ========== USE CASES (jumppage extras) ========== */
.use-cases { background: var(--bg-secondary); }
.use-case-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; margin-top: 2.5rem;
}
.use-case-card {
    background: var(--bg-card);
    border: 1px solid rgba(29, 185, 154, 0.06);
    border-radius: 14px; padding: 1.75rem;
    transition: border-color 0.3s, transform 0.2s;
}
.use-case-card:hover { border-color: rgba(29, 185, 154, 0.2); transform: translateY(-3px); }
.use-case-card.full-width { grid-column: 1 / -1; }
.use-case-card h3 {
    font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.use-case-card h3 .icon { color: var(--teal); font-size: 1.2rem; }
.use-case-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ========== ONBOARDING ========== */
.onboarding { background: var(--bg-secondary); }
.onboarding-flow { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.ob-step {
    display: flex; gap: 1.5rem; align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid rgba(29, 185, 154, 0.06);
    border-radius: 14px; padding: 1.75rem;
    transition: border-color 0.3s, transform 0.2s;
}
.ob-step:hover { border-color: rgba(29, 185, 154, 0.2); transform: translateX(4px); }
.ob-number {
    flex-shrink: 0; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--teal), var(--green));
    border-radius: 12px; font-weight: 800; font-size: 1.1rem; color: var(--bg-primary);
}
.ob-content h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; }
.ob-content p { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.7; }

/* ========== WHY SQRIBL ========== */
.why { background: var(--bg-primary); }
.differentiators {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; margin-top: 2.5rem;
}
.diff-card {
    background: var(--bg-card);
    border: 1px solid rgba(29, 185, 154, 0.06);
    border-radius: 14px; padding: 1.75rem;
    transition: border-color 0.3s, transform 0.2s;
}
.diff-card:hover { border-color: rgba(29, 185, 154, 0.2); transform: translateY(-3px); }
.diff-card h3 {
    font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.diff-card h3 .icon { color: var(--teal); font-size: 1.2rem; }
.diff-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }
.diff-card.wide-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(29, 185, 154, 0.05) 100%);
    border-color: rgba(29, 185, 154, 0.12);
}

/* ========== SERVICES ========== */
.services { background: var(--bg-primary); }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 2.5rem;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(29, 185, 154, 0.06);
    border-radius: 14px; padding: 2rem 1.75rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.2s;
}
.service-card:hover { border-color: rgba(29, 185, 154, 0.25); transform: translateY(-3px); }
.service-card .service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }
.package-callout {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(29, 185, 154, 0.05) 100%);
    border: 1px solid rgba(29, 185, 154, 0.15);
    border-radius: 14px; padding: 2rem;
    text-align: center; margin-top: 2rem;
}
.package-callout h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.package-callout p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* ========== ADDITIONAL SERVICES ========== */
.additional {
    background: var(--bg-secondary);
    text-align: center;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.contact + .additional { margin-top: -3rem; }
.additional-inner { max-width: 640px; margin: 0 auto; }
.additional p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; }

/* ========== CONTACT & FORMS ========== */
.contact { background: var(--bg-primary); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; margin-top: 2.5rem;
}
.contact-info h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 1.5rem; }
.contact-item {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1rem; color: var(--text-secondary); font-size: 1rem;
}
.contact-item svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }
.contact-item a { color: var(--text-secondary); }
.contact-item a:hover { color: var(--teal); }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.form-group label {
    font-size: 0.8rem; font-weight: 500; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-card);
    border: 1px solid rgba(29, 185, 154, 0.1);
    border-radius: 8px; padding: 0.8rem 1rem;
    color: var(--text-primary); font-family: var(--font-body);
    font-size: 0.95rem; transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2397a7ad' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
    padding-right: 2.5rem; cursor: pointer;
}
.form-group select option { background: var(--bg-card); color: var(--text-primary); }
.form-notice { padding: 1rem 1.25rem; border-radius: 8px; font-size: 0.95rem; margin-bottom: 1.25rem; line-height: 1.5; }
.form-notice.success { background: rgba(42,157,92,0.12); border: 1px solid rgba(42,157,92,0.3); color: #5ee8c8; }
.form-notice.success a { color: #fff; text-decoration: underline; }
.form-notice.success a:hover { color: #5ee8c8; }
.form-notice.error { background: rgba(220,60,60,0.12); border: 1px solid rgba(220,60,60,0.3); color: #f0a0a0; }
.form-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.15rem; }

/* Support form centered */
.support-form-wrap { max-width: 600px; margin: 0 auto; }

/* Support options */
.support-options {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; margin-top: 2.5rem; margin-bottom: 3rem;
}
.support-option {
    background: var(--bg-card);
    border: 1px solid rgba(29, 185, 154, 0.08);
    border-radius: 14px; padding: 1.5rem; text-align: center;
}
.support-option .support-option-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.support-option h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.support-option p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 0.5rem; }
.support-option a { font-weight: 600; font-size: 0.95rem; }
.support-option .support-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ========== ARTICLE PAGES ========== */
.article { background: var(--bg-primary); }
.article-inner { max-width: 740px; margin: 0 auto; }
.article-inner h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 700; margin: 2.5rem 0 1rem; color: var(--text-primary);
}
.article-inner p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.25rem; }
.article-inner strong { color: var(--text-primary); }
.article-inner em.teal { color: var(--teal); font-style: normal; font-weight: 600; }
.article-callout {
    background: var(--bg-card);
    border: 1px solid rgba(29, 185, 154, 0.12);
    border-left: 4px solid var(--teal);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 1.75rem; margin: 2rem 0;
}
.article-callout p { margin-bottom: 0; color: var(--text-primary); font-size: 1rem; }
.faq-item { margin-bottom: 1.75rem; }
.faq-item h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--teal); }
.faq-item p { margin-bottom: 0; }

/* ========== SECTION CTA ========== */
.section-cta {
    text-align: center; margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid rgba(29, 185, 154, 0.06);
}
.section-cta p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(29, 185, 154, 0.06);
    padding: 2rem clamp(1.25rem, 4vw, 2rem);
    text-align: center;
}
.footer p { font-size: 0.8rem; color: var(--text-muted); }
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--teal); }

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(10, 14, 15, 0.98);
        flex-direction: column; padding: 1.5rem; gap: 1rem;
        border-bottom: 1px solid rgba(29, 185, 154, 0.1);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: block; }
    .home-nav-grid { grid-template-columns: 1fr; max-width: 320px; }
    .home-nav-btn-centered { max-width: none; }
    .problem-grid { grid-template-columns: 1fr; gap: 2rem; }
    .steps { grid-template-columns: 1fr; gap: 2.5rem; }
    .steps::before { display: none; }
    .jumppage-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .jumppage-mockup { order: -1; }
    .use-case-grid { grid-template-columns: 1fr; }
    .use-case-card, .diff-card, .ob-step, .stat-card, .service-card, .support-option {
        border-color: rgba(29, 185, 154, 0.2);
        background: #151f23;
    }
    .differentiators { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .support-options { grid-template-columns: 1fr; }
}
