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

:root {
    --accent: #2563EB;
    --accent-light: #3B82F6;
    --accent-dark: #1D4ED8;
    --accent-glow: rgba(37, 99, 235, .15);
    --accent-subtle: rgba(37, 99, 235, .06);

    --gray-900: #18181B;
    --gray-800: #27272A;
    --gray-700: #3F3F46;
    --gray-600: #52525B;
    --gray-500: #71717A;
    --gray-400: #A1A1AA;
    --gray-300: #D4D4D8;
    --gray-200: #E4E4E7;
    --gray-100: #F4F4F5;
    --white: #FFFFFF;

    --glass: rgba(255,255,255,.45);
    --glass-strong: rgba(255,255,255,.6);
    --glass-border: rgba(255,255,255,.55);
    --glass-shadow: 0 8px 32px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.03), inset 0 1px 0 rgba(255,255,255,.6);
    --glass-shadow-hover: 0 16px 48px rgba(0,0,0,.07), inset 0 1px 0 rgba(255,255,255,.8);
    --blur: blur(24px) saturate(180%);
    --blur-strong: blur(40px) saturate(200%);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --radius: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --t: .3s cubic-bezier(.4, 0, .2, 1);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font); color: var(--gray-900);
    line-height: 1.6; -webkit-font-smoothing: antialiased;
    overflow-x: hidden; min-height: 100vh;
    background: var(--white);
    position: relative;
}
/* Grid train line */
.grid-train {
    position: absolute; pointer-events: none; z-index: 0;
}
.grid-train--h {
    height: 2px; width: 80px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    top: 0; left: -80px;
    animation: trainH 8s linear infinite;
}
.grid-train--v {
    width: 2px; height: 80px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    left: 0; top: -80px;
    animation: trainV 10s linear infinite;
}
@keyframes trainH {
    0% { left: -80px; opacity: 0; }
    3% { opacity: .5; }
    97% { opacity: .5; }
    100% { left: 100%; opacity: 0; }
}
@keyframes trainV {
    0% { top: -80px; opacity: 0; }
    3% { opacity: .4; }
    97% { opacity: .4; }
    100% { top: 100%; opacity: 0; }
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }


/* ===== TOPBAR ===== */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 101;
    background: linear-gradient(135deg, var(--accent-dark) 0%, #7C3AED 100%);
    height: 32px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
}
.topbar__icons {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.topbar__icon {
    position: absolute;
    opacity: 0.1;
    object-fit: contain;
    aspect-ratio: 1/1;
}
.topbar__text {
    font-size: 12px; color: rgba(255,255,255,.9); letter-spacing: 0.02em;
    position: relative;
}
.topbar__text strong {
    color: var(--white); font-weight: 700;
    margin-right: 4px;
}

/* ===== NAV ===== */
.nav {
    position: fixed; top: 32px; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,.85);
    backdrop-filter: var(--blur-strong);
    -webkit-backdrop-filter: var(--blur-strong);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--t);
}
.nav--scrolled {
    background: rgba(255,255,255,.95);
    box-shadow: 0 1px 8px rgba(0,0,0,.04);
}
.nav__inner {
    max-width: 1400px; margin: 0 auto;
    height: 52px; padding: 0 24px;
    display: flex; align-items: center; gap: 24px;
    position: relative;
}
.nav__logo-img { height: 26px; width: auto; position: relative; top: 2px; }
.nav__partner-sep { width: 1px; height: 20px; background: var(--gray-200); flex-shrink: 0; margin: 0 -14px; }
.nav__partner-badge { height: 32px; width: auto; flex-shrink: 0; border: 1px solid var(--gray-200); border-radius: 6px; }
.nav__links { display: flex; gap: 4px; margin: 0 auto; }
.nav__links a {
    font-family: var(--font);
    font-size: 14px; font-weight: 600; color: var(--gray-900);
    transition: var(--t); padding: 8px 18px; border-radius: 999px;
    letter-spacing: -0.02em;
    position: relative;
}
.nav__links a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--accent);
    border-radius: 2px; transition: var(--t);
}
.nav__links a:hover {
    color: var(--gray-900);
}
.nav__links a:hover::after {
    width: 20px;
}
.nav__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn.btn--sm { font-size: 13px !important; padding: 8px 20px !important; }
.nav__burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span {
    display: block; width: 18px; height: 1.5px; background: var(--gray-700);
    margin: 4px 0; transition: var(--t); border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
    display: none; position: fixed; top: 86px; left: 16px; right: 16px;
    z-index: 99; padding: 20px;
    flex-direction: column; gap: 4px;
    background: rgba(255,255,255,.65);
    backdrop-filter: var(--blur-strong);
    -webkit-backdrop-filter: var(--blur-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow-hover);
}
.mobile-menu::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,.95) 50%, transparent 90%);
    border-radius: var(--radius) var(--radius) 0 0;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    font-size: 15px; font-weight: 500; padding: 14px 16px;
    border-radius: var(--radius-sm); color: var(--gray-600); transition: var(--t);
}
.mobile-menu a:hover { background: rgba(0,0,0,.03); }
.mobile-menu__login {
    margin-top: 8px; text-align: center;
    border: 1px solid var(--gray-200) !important;
    border-radius: var(--radius-sm) !important; font-weight: 600 !important;
}
.mobile-menu__cta {
    text-align: center;
    background: var(--accent) !important; color: var(--white) !important;
    border-radius: var(--radius-sm) !important; font-weight: 600 !important;
}

/* ===== MEGA MENU ===== */
.nav__item { position: static; }
.nav__links { position: static; }
.nav__trigger {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: var(--font);
    font-size: 14px; font-weight: 600; color: var(--gray-900);
    padding: 8px 18px; border-radius: 999px;
    transition: var(--t); cursor: pointer;
    letter-spacing: -0.02em; text-decoration: none;
}
.nav__trigger svg {
    transition: transform .2s ease;
}
.nav__item.active .nav__trigger svg {
    transform: rotate(180deg);
}
.nav__link-single {
    font-family: var(--font);
    font-size: 14px; font-weight: 600; color: var(--gray-900);
    padding: 8px 18px; border-radius: 999px;
    transition: var(--t); text-decoration: none;
    letter-spacing: -0.02em;
}

/* Mega dropdown */
.mega__body {
    display: flex;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0,0,0,.12), 0 1px 3px rgba(0,0,0,.04);
    overflow: hidden;
    width: 100%;
}
.mega {
    opacity: 0; visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    transform: translateY(4px);
    padding-top: 6px;
}
.mega--open {
    opacity: 1; visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.mega__cols {
    flex: 1; display: flex; padding: 32px 0;
}
.mega__col {
    flex: 1; padding: 0 32px;
    border-right: 1px solid var(--gray-100);
}
.mega__col:last-child { border-right: none; }
.mega__col h5 {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--gray-400);
    margin-bottom: 14px; padding: 0 8px;
}
.mega__link {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 8px;
    transition: var(--t); text-decoration: none;
    font-size: 14px !important; font-weight: 400 !important; color: var(--gray-900) !important;
    border-radius: var(--radius-sm);
}
.mega__link:hover {
    color: var(--gray-900);
    background: var(--gray-100);
}
.mega__link-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--accent-subtle); border: 1px solid rgba(37,99,235,.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: var(--t);
}
.mega__link:hover .mega__link-icon { background: var(--accent); border-color: var(--accent); }
.mega__link-icon svg {
    color: var(--accent); width: 16px; height: 16px;
    transition: color .2s;
}
.mega__link:hover .mega__link-icon svg { color: var(--white); }
.mega__link-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; padding-top: 1px; }
.mega__link-text strong { font-size: 13px !important; font-weight: 600 !important; color: var(--gray-900) !important; display: flex; align-items: center; gap: 6px; }
.mega__link-desc { font-size: 11px !important; color: var(--gray-400) !important; font-weight: 400 !important; line-height: 1.4; }
/* Legacy direct svg in mega__link (fallback) */
.mega__link > svg {
    color: var(--gray-400); flex-shrink: 0;
    transition: color .2s;
}
.mega__link:hover > svg { color: var(--accent); }
.mega__badge {
    display: inline-flex; font-size: 9px !important; font-weight: 500 !important;
    text-transform: uppercase; letter-spacing: 0.02em;
    color: #fff !important; background: #22C55E;
    padding: 1px 5px; border-radius: 999px;
    white-space: nowrap; line-height: 1.3;
}

/* CTA panel */
.mega__cta {
    width: 240px; flex-shrink: 0;
    background: var(--gray-900);
    padding: 32px 28px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
}
.mega__cta-glow {
    position: absolute; top: -60px; right: -60px;
    width: 180px; height: 180px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
    filter: blur(40px); pointer-events: none;
}
.mega__cta h4 {
    font-size: 16px; font-weight: 700; color: var(--white);
    letter-spacing: -0.02em; margin-bottom: 10px;
    line-height: 1.3; position: relative; z-index: 1;
}
.mega__cta p {
    font-size: 12px; color: var(--gray-400); line-height: 1.6;
    margin-bottom: 20px; position: relative; z-index: 1;
}
.mega__cta .btn {
    position: relative; z-index: 1;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font); font-size: 14px; font-weight: 600;
    padding: 13px 28px; border-radius: 999px; transition: var(--t);
    cursor: pointer; border: none;
    position: relative;
}
/* Pixel cursor on hover */
.btn::before {
    content: '';
    position: absolute; right: -30px; top: -18px;
    width: 32px; height: 40px;
    background-image: url('/img/kursor.png');
    background-size: contain;
    background-repeat: no-repeat;
    image-rendering: pixelated;
    opacity: 0;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(1px 2px 0 rgba(0,0,0,.15));
}
.btn:hover::before {
    right: 8px;
    top: -2px;
    opacity: 1;
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 20px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.15);
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.btn:hover .btn__shimmer {
    animation: shimmer 1s ease forwards;
}
.btn__shimmer {
    position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 0%, transparent 40%, rgba(255,255,255,.2) 50%, transparent 60%, transparent 100%);
    background-size: 200% 100%;
    background-position: -200% 0;
    pointer-events: none;
    border-radius: inherit;
}
.btn--primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 8px 32px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.2);
    transform: translateY(-3px) scale(1.04);
}
.btn--outline {
    background: transparent;
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
}
.btn--outline:hover {
    transform: translateY(-3px) scale(1.04);
}

/* ===== HERO ===== */
.hero {
    position: relative; padding: 180px 24px 60px;
    max-width: 1400px; margin: 0 auto;
    border-bottom: 1px solid var(--gray-200);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid-lines {
    position: absolute; inset: 0; overflow: hidden;
    background-image:
        linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 85% at 50% 45%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 45%, black 30%, transparent 75%);
}

.hero__content {
    position: relative; z-index: 1; width: 100%;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
    align-items: center;
}
.hero__left {
    max-width: 480px;
}

.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; color: var(--accent);
    padding: 6px 16px 6px 12px; border-radius: 999px; margin-bottom: 28px;
    background: var(--accent-subtle);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(37,99,235,.1);
}
.hero__badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero__title {
    font-size: 44px; font-weight: 700; line-height: 1.12;
    letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero__typing {
    border-right: 2px solid var(--accent);
    animation: typingCursor .8s step-end infinite;
}
.hero__typing--done {
    border-right-color: transparent;
    animation: none;
}
@keyframes typingCursor {
    0%, 100% { border-right-color: var(--accent); }
    50% { border-right-color: transparent; }
}
.hero__title-gradient {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic; font-weight: 600;
    font-size: 1.03em;
    background: linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__sub {
    font-size: 16px; line-height: 1.7; color: var(--gray-500); margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }

/* Social proof */
.hero__social-proof { display: flex; flex-direction: column; gap: 16px; }
.hero__google {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--gray-500); transition: var(--t);
}
.hero__google:hover { color: var(--gray-700); }
.hero__google strong { color: var(--gray-900); }
.hero__google-stars { color: #FBBF24; font-size: 15px; letter-spacing: 1px; }
.hero__stats {
    display: flex; align-items: center; gap: 16px;
}
.hero__stat {
    font-size: 13px; color: var(--gray-500);
}
.hero__stat strong { color: var(--gray-900); font-weight: 700; }
.hero__stat-sep {
    width: 1px; height: 14px; background: var(--gray-200);
}

/* ===== HERO VIDEO ===== */
.hero__video {
    width: 100%;
    border-radius: var(--radius);
    position: relative;
    background: var(--glass);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}
.hero__video::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; z-index: 1;
    background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,.9) 50%, transparent 90%);
}
.hero__video video {
    width: 100%; display: block;
    border-radius: var(--radius);
}

/* ===== TERMINAL ===== */
.hero__terminal {
    position: absolute; bottom: -20px; right: -30px; z-index: 2;
    background: rgba(15,15,20,.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 10px 16px 12px;
    min-width: 260px;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
}
.terminal__dots {
    display: flex; gap: 5px; margin-bottom: 8px;
}
.terminal__dots span {
    width: 8px; height: 8px; border-radius: 50%;
}
.terminal__dots span:nth-child(1) { background: #FF5F56; }
.terminal__dots span:nth-child(2) { background: #FFBD2E; }
.terminal__dots span:nth-child(3) { background: #27C93F; }
.terminal__code {
    display: flex; align-items: center; gap: 8px;
}
.terminal__prompt {
    color: #27C93F; font-size: 13px; font-weight: 700;
}
.terminal__text {
    color: rgba(255,255,255,.85); font-size: 13px;
}
.terminal__cursor {
    color: var(--accent-light); font-size: 14px; font-weight: 300;
    animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== TECH SLIDER ===== */
.tech-slider {
    overflow: hidden;
    padding: 40px 0;
    max-width: 1400px; margin: 0 auto;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.tech-slider__track {
    display: flex; align-items: center; gap: 64px;
    width: max-content;
}
.tech-slider__track img {
    height: 62px; width: auto;
    flex-shrink: 0;
    filter: grayscale(100%) contrast(0) brightness(0.75);
    opacity: 0.8;
    transition: all .3s ease;
}
.tech-slider__track img.tech-xl { height: 116px; }
.tech-slider__track img.tech-lg { height: 86px; }
.tech-slider__track img.tech-md { height: 70px; }
.tech-slider__track img:hover {
    opacity: 1;
    filter: grayscale(100%) contrast(0) brightness(0.6);
}
/* Custom inline logo (icon + text side by side) */
.tech-logo {
    display: flex; align-items: center; gap: 10px;
    flex-shrink: 0; opacity: 0.8;
    transition: all .3s ease;
}
.tech-logo:hover { opacity: 1; }
.tech-logo__icon { width: 32px !important; height: 32px !important; max-width: 32px !important; filter: grayscale(100%) contrast(0) brightness(0.55) !important; }
.tech-logo__text {
    font-family: var(--font); font-size: 20px; font-weight: 500;
    color: var(--gray-500); letter-spacing: -0.02em;
}

/* ===== CASE STUDY ===== */
.cases {
    padding: 60px 0 80px;
    max-width: 100%; margin: 0 auto;
    position: relative;
}
.cases::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 20%, transparent 70%);
}
.cases__header {
    display: flex; gap: 200px; align-items: flex-end; justify-content: space-between;
    padding: 0 24px; margin-bottom: 40px;
    max-width: 1400px; margin-left: auto; margin-right: auto;
}
.cases__header-left { flex: 1; }
.cases__header-right { flex: 1; text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.cases__header h2 {
    font-size: 40px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 16px;
}
.cases__header-accent {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic; font-weight: 600; font-size: 1.03em;
    background: linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cases__header-left p {
    font-size: 15px; color: var(--gray-500); line-height: 1.7;
}
.cases__header-right p {
    font-size: 15px; color: var(--gray-500); line-height: 1.7;
    margin-bottom: 20px;
}

/* Horizontal scroll track */
.cases__scroll {
    overflow: hidden;
}
.cases__track {
    display: flex; gap: 20px;
    width: max-content;
    padding: 20px 40px;
}

.cs {
    display: block; flex-shrink: 0;
    width: 550px; height: 550px;
    border-radius: var(--radius);
    overflow: hidden; position: relative;
    transition: transform .4s ease, box-shadow .4s ease;
}
.cs:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 64px rgba(0,0,0,.18);
}
.cs > img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.cs:hover > img {
    transform: scale(1.05);
}
.cs__ov {
    position: absolute; inset: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.4);
    opacity: 0;
    transition: opacity .3s ease;
    color: var(--white);
}
.cs:hover .cs__ov { opacity: 1; }
.cs__ov h3 {
    font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.cs__ov p {
    font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 10px;
}
.cs__ov span {
    font-size: 13px; font-weight: 600; color: var(--white);
    padding: 10px 24px; border-radius: 999px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
}
.cs--zoom > img { transform: scale(1.3); }
.cs--zoom:hover > img { transform: scale(1.35); }

.cases__counter {
    text-align: center; margin-top: 64px; padding: 24px;
    font-size: 15px; color: var(--gray-500);
}
.cases__counter strong { color: var(--gray-900); }


/* ===== ABOUT + OFERTA ===== */
.about {
    padding: 100px 0;
    position: relative;
}
.about::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 20%, transparent 70%);
}
.about__container {
    max-width: 1400px; margin: 0 auto; padding: 0 24px;
}
.about__accent {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic; font-weight: 600; font-size: 1.03em;
    background: linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Intro */
.about__intro {
    display: flex; gap: 120px; align-items: flex-end;
    margin-bottom: 48px;
}
.about__intro-left { flex: 1.2; }
.about__intro-right { flex: 1; text-align: right; }
.about__intro h2 {
    font-size: 38px; font-weight: 700; letter-spacing: -0.03em;
    line-height: 1.15;
}
.about__intro-right p {
    font-size: 15px; color: var(--gray-500); line-height: 1.7;
}


/* Specs layout */
.specs {
    display: flex; gap: 16px; margin-bottom: 32px;
}

/* Hero card - strony internetowe */
.specs__hero {
    flex: 0 0 420px;
    border-radius: var(--radius);
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    position: relative; overflow: hidden;
    padding: 48px 40px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.specs__hero-glow {
    position: absolute; top: -100px; right: -100px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: orbFloat 12s ease-in-out infinite;
}
.specs__hero-content { position: relative; z-index: 1; }
.specs__hero-badge {
    display: inline-block; font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--accent-light); background: rgba(59,130,246,.12);
    padding: 5px 14px; border-radius: 999px; margin-bottom: 28px;
    border: 1px solid rgba(59,130,246,.15);
}
.specs__hero h3 {
    font-size: 42px; font-weight: 600; letter-spacing: -0.04em;
    color: var(--white); line-height: 1.05; margin-bottom: 20px;
}
.specs__hero p {
    font-size: 14px; color: var(--gray-400); line-height: 1.7;
    margin-bottom: 28px;
}
.specs__hero-price { margin-bottom: 24px; }
.specs__hero-from {
    font-size: 14px; color: var(--gray-500); margin-right: 6px;
}
.specs__hero-val {
    font-size: 36px; font-weight: 800; color: var(--white);
    letter-spacing: -0.03em;
}
.specs__hero-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
    margin-bottom: 32px;
}
.specs__hero-feat {
    font-size: 12px; color: var(--gray-400); font-weight: 500;
}
.specs__hero .btn { align-self: flex-start; }

/* Right grid - 4 cards */
.specs__grid {
    flex: 1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.spec-card {
    padding: 28px; border-radius: var(--radius-md);
    border: 1px solid var(--gray-200); background: transparent;
    transition: var(--t);
    display: flex; flex-direction: column; justify-content: center;
}
.spec-card:hover {
    border-color: var(--gray-300); transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.05);
}
.spec-card__icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--gray-50); border: 1px solid var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); margin-bottom: 16px;
}
.spec-card h4 {
    font-size: 16px; font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.spec-card p {
    font-size: 13px; color: var(--gray-500); line-height: 1.6;
    margin-bottom: 14px;
}
.spec-card__feats {
    display: flex; flex-direction: column; gap: 4px;
}
.spec-card__feats span {
    font-size: 11px; color: var(--gray-400); font-weight: 500;
}

.about__bottom { margin-top: 16px; text-align: center; }
.about__bottom-box {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px dashed var(--gray-200);
    background: var(--gray-50);
}
.about__bottom-box span { font-size: 18px; }
.about__bottom-box p {
    font-size: 14px; font-weight: 500; color: var(--gray-500);
}

/* ===== FOOTER ===== */
.footer {
    position: relative; padding: 100px 0 0;
    border-top: 1px solid var(--gray-200);
}
.footer__bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.footer__grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 85% at 50% 45%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 45%, black 30%, transparent 75%);
}
.footer__inner {
    max-width: 1400px; margin: 0 auto; padding: 0 24px;
    position: relative; z-index: 1;
}

/* CTA */
.footer__cta {
    text-align: center; margin-bottom: 72px;
}
.footer__cta h2 {
    font-size: 40px; font-weight: 700; letter-spacing: -0.03em;
    line-height: 1.15; margin-bottom: 14px;
}
.footer__cta-profile {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px 8px 8px;
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    margin-bottom: 20px;
}
.footer__cta-profile img {
    width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
}
.footer__cta-profile strong {
    display: block; font-size: 13px; font-weight: 600; color: var(--gray-900); line-height: 1.2;
}
.footer__cta-profile span {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; color: #16a34a; font-weight: 500;
}
.footer__cta-dot {
    width: 6px; height: 6px; background: #16a34a; border-radius: 50%;
    display: inline-block; animation: onlinePulse 2s ease-in-out infinite;
}
.footer__cta-accent {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic; font-weight: 600; font-size: 1.03em;
    background: linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer__cta p {
    font-size: 15px; color: var(--gray-500); margin-bottom: 24px;
}
.footer__cta-actions {
    display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}

/* Columns */
.footer__cols {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-200);
}
.footer__col h4 {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 18px;
}
.footer__col a {
    display: block; font-size: 14px; color: var(--gray-500);
    padding: 4px 0; transition: var(--t); text-decoration: none;
}
.footer__col a:hover { color: var(--gray-900); transform: translateX(4px); }

/* Brand */
.footer__logo { height: 30px; width: auto; margin-bottom: 20px; }
.footer__col--brand > p {
    font-size: 13px; color: var(--gray-500); line-height: 1.7;
    margin-bottom: 14px;
}
.footer__status {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; color: #22C55E; font-weight: 600;
    margin-bottom: 18px;
}
.footer__status-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 8px rgba(34,197,94,.4);
    animation: dotPulse 2s ease-in-out infinite;
}
.footer__socials { display: flex; gap: 8px; }
.footer__socials a {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex !important; align-items: center; justify-content: center;
    border: 1px solid var(--gray-200);
    color: var(--gray-400); transition: var(--t);
    padding: 0 !important;
}
.footer__socials a:hover {
    background: var(--accent); color: var(--white);
    border-color: var(--accent); transform: translateY(-2px) !important;
}

/* Contact col */
.footer__company {
    font-weight: 700; color: var(--gray-700) !important;
    margin-bottom: 8px !important;
}
.footer__col--contact p {
    font-size: 13px; color: var(--gray-500); line-height: 1.6;
    margin-bottom: 6px;
}
.footer__map {
    margin-top: 12px; border-radius: var(--radius-sm); overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 16px rgba(0,0,0,.04);
}
.footer__map iframe {
    filter: grayscale(100%) contrast(0.9) brightness(1.05);
    transition: filter .4s ease;
}
.footer__map:hover iframe {
    filter: grayscale(0%) contrast(1) brightness(1);
}

/* Bottom */
.footer__bottom {
    padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px; color: var(--gray-400);
}
.footer__legal {
    display: flex; gap: 20px;
}
.footer__legal a {
    font-size: 12px; color: var(--gray-400); text-decoration: none;
    transition: var(--t);
}
.footer__legal a:hover { color: var(--gray-600); }

/* ===== CHATGPT SEO ===== */
.gpt-section {
    padding: 100px 0;
    position: relative;
}
.gpt-section::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 20%, transparent 70%);
}
.gpt__container {
    max-width: 1400px; margin: 0 auto; padding: 0 24px;
}
.gpt__accent {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic; font-weight: 600; font-size: 1.03em;
    background: linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section heading */
.gpt__heading {
    text-align: center; margin-bottom: 48px;
    max-width: 800px; margin-left: auto; margin-right: auto;
}
.gpt__heading h2 {
    font-size: 40px; font-weight: 700; letter-spacing: -0.03em;
    line-height: 1.2;
}

/* Intro 50/50 */
.gpt__intro {
    display: flex; gap: 80px; align-items: flex-start;
    margin-bottom: 56px;
}
.gpt__intro-left { flex: 1; }
.gpt__intro-right { flex: 1; text-align: right; }
.gpt__intro-left p, .gpt__intro-right p {
    font-size: 15px; color: var(--gray-500); line-height: 1.7;
}

/* Content 50/50 */
.gpt__content {
    display: flex; gap: 72px; align-items: flex-start;
}
.gpt__text {
    flex: 1;
}
.gpt__text h3 {
    font-size: 28px; font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 24px;
}

/* Reasons */
.gpt__reasons {
    display: flex; flex-direction: column; gap: 20px;
    margin-bottom: 32px;
}
.gpt__reason {
    display: flex; gap: 16px; align-items: flex-start;
}
.gpt__reason-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--accent-subtle); border: 1px solid rgba(37,99,235,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); flex-shrink: 0;
}
.gpt__reason strong {
    font-size: 14px; font-weight: 700; color: var(--gray-900);
    display: block; margin-bottom: 2px;
}
.gpt__reason p {
    font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0;
}

/* Stats row */
.gpt__stats {
    display: flex; gap: 24px; margin-bottom: 36px;
}
.gpt__stat {
    flex: 1; padding: 16px 20px;
    border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
    background: var(--white);
}
.gpt__stat strong {
    display: block; font-size: 24px; font-weight: 800;
    letter-spacing: -0.03em; color: var(--accent); margin-bottom: 4px;
}
.gpt__stat span {
    font-size: 12px; color: var(--gray-500); line-height: 1.5;
}

/* Chat wrapper */
.gpt__chat-wrap {
    flex: 1; position: relative;
}
.gpt__chat-badge {
    position: absolute; bottom: -20px; right: -10px; z-index: 2;
    display: flex; align-items: center; gap: 10px;
    background: var(--gray-900); color: var(--white);
    padding: 10px 18px; border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    max-width: 320px;
}
.gpt__chat-badge-cursor {
    width: 28px; height: 34px; flex-shrink: 0;
    image-rendering: pixelated;
    filter: drop-shadow(1px 2px 0 rgba(0,0,0,.15));
}
.gpt__chat-badge span {
    font-size: 12px; line-height: 1.5; color: rgba(255,255,255,.8);
}
.gpt__chat-badge strong {
    color: var(--white); font-weight: 700;
}


/* Chat mockup */
.chat {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    font-family: var(--font);
    box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.chat__msg {
    padding: 20px 24px;
}
.chat__msg--user {
    display: flex; align-items: flex-start; justify-content: flex-end; gap: 10px;
}
.chat__msg--ai {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 20px 24px 12px;
}
.chat__avatar {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 12px; font-weight: 700;
}
.chat__avatar--user { background: var(--accent); color: var(--white); }
.chat__avatar--ai { background: var(--gray-900); color: var(--white); }
.chat__bubble--user {
    font-size: 14px; font-weight: 500; color: var(--white);
    background: var(--accent);
    padding: 12px 18px;
    border-radius: 18px 18px 4px 18px;
    max-width: 85%;
}

/* AI response body */
.chat__body { flex: 1; }
.chat__body > p {
    font-size: 13.5px; color: var(--gray-700); line-height: 1.7;
    margin-bottom: 16px;
}
.chat__entry {
    margin-bottom: 16px; padding-left: 2px;
}
.chat__entry-head {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    margin-bottom: 4px;
}
.chat__entry-head strong {
    font-size: 13.5px; font-weight: 700; color: var(--gray-900);
}
.chat__stars {
    font-size: 11px; color: #FBBF24; letter-spacing: 0.5px;
}
.chat__entry-badge {
    font-size: 10px; font-weight: 700;
    color: var(--accent); background: rgba(37,99,235,.08);
    padding: 2px 10px; border-radius: 999px;
}
.chat__entry-meta {
    font-size: 12.5px; color: var(--gray-500); line-height: 1.6;
}
.chat__entry-meta strong {
    font-weight: 600; color: var(--gray-600);
}
.chat__entry--highlight {
    background: rgba(37,99,235,.03);
    border-left: 2px solid var(--accent);
    padding: 10px 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Action buttons */
.chat__actions {
    display: flex; gap: 4px; padding-top: 8px; border-top: 1px solid var(--gray-100);
    margin-top: 8px;
}
.chat__action {
    background: none; border: none; cursor: pointer;
    width: 30px; height: 30px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-400); transition: var(--t);
}
.chat__action:hover {
    background: var(--gray-50); color: var(--gray-600);
}

/* Input */
.chat__input {
    display: flex; align-items: center; gap: 12px;
    margin: 8px 20px 20px;
    padding: 10px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    background: var(--white);
}
.chat__input-icon {
    color: var(--gray-300); flex-shrink: 0;
}
.chat__input-text {
    font-size: 13px; color: var(--gray-300); flex: 1;
}
.chat__input-send {
    color: var(--gray-300); flex-shrink: 0;
}

/* ===== BLOG ===== */
.blog {
    padding: 100px 0;
    position: relative;
}
.blog::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 20%, transparent 70%);
}
.blog__container {
    max-width: 1400px; margin: 0 auto; padding: 0 24px;
}
.blog__header {
    display: flex; gap: 80px; align-items: flex-end; justify-content: space-between;
    margin-bottom: 40px;
}
.blog__header-left { flex: 1; }
.blog__header-right { flex-shrink: 0; }
.blog__header h2 {
    font-size: 40px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 16px;
}
.blog__accent {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic; font-weight: 600; font-size: 1.03em;
    background: linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.blog__header-left p {
    font-size: 15px; color: var(--gray-500); line-height: 1.7;
}
.blog__grid {
    display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
    gap: 20px; height: 560px;
}

/* Featured card — left, spans 2 rows */
.blog-card {
    border-radius: var(--radius); overflow: hidden;
    position: relative; text-decoration: none; color: inherit;
    transition: var(--t);
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.blog-card--featured {
    grid-row: 1 / 3;
}
.blog-card__img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0; z-index: 0;
    transition: transform .6s ease;
}
.blog-card:hover .blog-card__img {
    transform: scale(1.04);
}
.blog-card--featured .blog-card__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
}
.blog-card--featured .blog-card__body {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: 36px;
}
.blog-card--featured .blog-card__cat {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--white);
    background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
    padding: 4px 12px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    display: inline-block; margin-bottom: 12px;
}
.blog-card--featured .blog-card__title {
    font-size: 26px; font-weight: 700; letter-spacing: -0.03em;
    line-height: 1.25; color: var(--white); margin-bottom: 10px;
}
.blog-card--featured .blog-card__excerpt {
    font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6;
    margin-bottom: 16px;
}
.blog-card--featured .blog-card__footer {
    display: flex; align-items: center; justify-content: space-between;
}
.blog-card--featured .blog-card__read {
    font-size: 13px; font-weight: 600; color: var(--white);
    display: inline-flex; align-items: center; gap: 4px;
}
.blog-card--featured .blog-card__date {
    font-size: 12px; color: rgba(255,255,255,.45);
}

/* Small cards — right side */
.blog-card--small {
    display: flex; flex-direction: row;
    border: 1px solid var(--gray-200); background: var(--white);
    position: relative;
}
.blog-card--small .blog-card__img {
    position: relative; width: 45%; height: auto; flex-shrink: 0;
}
.blog-card--small .blog-card__body {
    padding: 20px 24px;
    display: flex; flex-direction: column; justify-content: center;
    flex: 1;
}
.blog-card--small .blog-card__meta {
    display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.blog-card--small .blog-card__cat {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--accent);
    background: var(--accent-subtle); padding: 3px 10px;
    border-radius: 999px; border: 1px solid rgba(37,99,235,.1);
}
.blog-card--small .blog-card__date {
    font-size: 11px; color: var(--gray-400);
}
.blog-card--small .blog-card__title {
    font-size: 15px; font-weight: 700; letter-spacing: -0.02em;
    line-height: 1.35; color: var(--gray-900); margin-bottom: 6px;
}
.blog-card--small .blog-card__excerpt {
    font-size: 12px; color: var(--gray-500); line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card--small .blog-card__footer {
    display: flex; align-items: center; justify-content: space-between;
}
.blog-card--small .blog-card__read {
    font-size: 12px; font-weight: 600; color: var(--accent);
}
.blog-card--small .blog-card__time {
    font-size: 11px; color: var(--gray-400);
}

/* ===== TIMELINE (proces) ===== */
/* ── PROCES (horizontal steps) ── */
.proces {
    padding: 80px 24px;
    max-width: 1200px; margin: 0 auto;
    position: relative; overflow: hidden;
}
.proces__grid-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
}
.proces__header {
    text-align: center; max-width: 600px; margin: 0 auto 48px;
}
.proces__header h2 {
    font-size: 36px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px;
}
.proces__accent {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic; font-weight: 600;
    background: linear-gradient(135deg, var(--accent) 0%, #7C3AED 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.proces__header p {
    font-size: 15px; color: var(--gray-500); line-height: 1.7;
}

/* Track (horizontal connecting line) */
.proces__track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.proces__track::before {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(12.5% + 32px);
    right: calc(12.5% + 32px);
    height: 2px;
    background: var(--gray-200);
    z-index: 1;
}
.proces__track::after {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(12.5% + 32px);
    right: calc(12.5% + 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), #7C3AED);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}
.proces__track.is-visible::after {
    transform: scaleX(1);
}

/* Single step */
.proces__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 12px;
}

/* Number circle */
.proces__num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 700; color: var(--gray-400);
    position: relative; z-index: 3;
    transition: all .5s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
}
.proces__step.is-active .proces__num {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 0 0 6px var(--accent-glow), 0 4px 24px rgba(37, 99, 235, .25);
}

/* Badge */
.proces__badge {
    display: inline-block;
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--accent);
    background: var(--accent-subtle);
    padding: 3px 10px;
    border-radius: 999px;
    margin-top: 16px;
    margin-bottom: 8px;
}

/* Card content */
.proces__body {
    margin-top: 4px;
}
.proces__body h3 {
    font-size: 16px; font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 6px; color: var(--gray-900);
}
.proces__body p {
    font-size: 13px; color: var(--gray-500); line-height: 1.6;
    margin-bottom: 10px;
    max-width: 240px; margin-left: auto; margin-right: auto;
}
.proces__tags {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 4px;
}
.proces__tags span {
    font-size: 10px; font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 3px 10px;
    border-radius: 999px;
}

/* Hover card effect */
.proces__step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}
.proces__step.is-active {
    opacity: 1;
    transform: translateY(0);
}
.proces__step:nth-child(2).is-active { transition-delay: .1s; }
.proces__step:nth-child(3).is-active { transition-delay: .2s; }
.proces__step:nth-child(4).is-active { transition-delay: .3s; }

/* CTA */
.proces__cta {
    text-align: center; margin-top: 40px;
}
.proces__cta p {
    font-size: 15px; color: var(--gray-500); margin-bottom: 20px;
}
.proces__cta strong {
    color: var(--gray-900);
}

/* Responsive */
@media (max-width: 768px) {
    .proces { padding: 60px 16px; }
    .proces__header h2 { font-size: 28px; }
    .proces__track {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-left: 40px;
    }
    .proces__track::before,
    .proces__track::after {
        top: 0; bottom: 0;
        left: 18px; right: auto;
        width: 2px; height: auto;
    }
    .proces__track::after {
        transform: scaleY(0);
        transform-origin: top;
    }
    .proces__track.is-visible::after {
        transform: scaleY(1);
    }
    .proces__step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 16px;
    }
    .proces__num {
        position: absolute;
        left: -40px;
        width: 40px; height: 40px;
        font-size: 13px;
    }
    .proces__body p { max-width: 100%; }
    .proces__tags { justify-content: flex-start; }
    .proces__badge { margin-top: 0; }
}

/* ===== SECTION NAV (dot navigation) ===== */
.section-nav {
    position: fixed; right: 24px; top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex; flex-direction: column; gap: 12px;
}
.section-nav__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
}
.section-nav__dot:hover {
    background: var(--gray-400);
    transform: scale(1.3);
}
.section-nav__dot.active {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    transform: scale(1.3);
}
.section-nav__label {
    position: absolute; right: 22px; top: 50%;
    transform: translateY(-50%);
    background: var(--gray-900);
    color: var(--white);
    font-family: var(--font);
    font-size: 11px; font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.section-nav__dot:hover .section-nav__label {
    opacity: 1;
}
@media (max-width: 1024px) {
    .section-nav { display: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__content { grid-template-columns: 1fr 1fr; }
    .hero__title { font-size: 36px; }
    .hero__left { padding-top: 20px; }
    .cases__header { flex-direction: column; gap: 16px; }
    .about__intro { flex-direction: column; gap: 24px; }
    .about__intro h2 { font-size: 28px; }
    .about__intro-right { text-align: left; }
    .specs { flex-direction: column; }
    .specs__hero { flex: auto; }
    .specs__hero h3 { font-size: 32px; }
    .specs__grid { grid-template-columns: 1fr; }
    .gpt__content { flex-direction: column; }
    .gpt__heading h2 { font-size: 28px; }
    .gpt__intro { flex-direction: column; gap: 24px; }
    .gpt__intro-right { text-align: left; }
    .gpt__chat-badge { position: relative; bottom: auto; left: auto; margin-top: 16px; max-width: 100%; }
    .footer__cta h2 { font-size: 28px; }
    .footer__cols { grid-template-columns: 1fr 1fr; }
    .blog__header { flex-direction: column; gap: 16px; align-items: flex-start; }
    .blog__header h2 { font-size: 28px; }
    .blog__grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
    .blog-card--featured { grid-row: auto; min-height: 360px; }
    .blog-card--small { flex-direction: row; }
    .blog-card--small .blog-card__img { width: 40%; }
    .chat__msg { padding: 12px 14px; }
}
@media (max-width: 768px) {
    .topbar { padding: 6px 16px; }
    .topbar__text { font-size: 11px; }
    .nav { top: 32px; }
    .nav__links, .nav__actions { display: none; }
    .nav__burger { display: block; }

    .hero { padding: 120px 16px 40px; }
    .hero__content { grid-template-columns: 1fr; gap: 32px; }
    .hero__left { position: static; }
    .hero__title { font-size: 28px; }
    .hero__sub { font-size: 14px; }
    .hero__badge { font-size: 11px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__stats { flex-wrap: wrap; gap: 8px; }
    .hero__stat { font-size: 12px; }
    .hero__google { font-size: 12px; }

    .hero__video { border-radius: var(--radius-md); }

    /* Tech slider mobile */
    .tech-slider { padding: 24px 0; }
    .tech-slider__track { gap: 40px; }
    .tech-slider__track img { height: 44px; }
    .tech-slider__track img.tech-xl { height: 72px; }
    .tech-slider__track img.tech-lg { height: 60px; }
    .tech-slider__track img.tech-md { height: 50px; }
    .tech-logo__icon { width: 20px !important; height: 20px !important; max-width: 20px !important; }
    .tech-logo__text { font-size: 15px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 24px; }
    .hero__sub { font-size: 13px; margin-bottom: 24px; }
    .hero__badge { font-size: 10px; padding: 5px 12px 5px 10px; margin-bottom: 20px; }
    .btn { font-size: 13px; padding: 12px 24px; }
    .hero__stats { gap: 6px; }
    .hero__stat-sep { height: 10px; }
    .footer__cta h2 { font-size: 24px; }
    .footer__email { font-size: 14px; padding: 12px 28px; }
    .footer__cols { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── PROFILE BADGE (in form card) ── */
.sw-form-card__profile {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}
.sw-form-card__profile-info {
    align-items: center;
}
.sw-form-card__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    flex-shrink: 0;
}
.sw-form-card__profile-info {
    display: flex; flex-direction: column; gap: 2px;
}
.sw-form-card__profile-info strong {
    font-size: 14px; font-weight: 700; color: var(--gray-900);
}
.sw-form-card__profile-phone {
    display: flex; align-items: center; gap: 5px;
    font-size: 13px; font-weight: 600; color: var(--gray-900);
    text-decoration: none;
    transition: color .2s;
}
.sw-form-card__profile-phone svg { color: var(--accent); }
.sw-form-card__profile-phone:hover { color: var(--accent); }
.sw-form-card__online {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; color: #16a34a; font-weight: 500;
}
.sw-form-card__online-dot {
    width: 6px; height: 6px;
    background: #16a34a;
    border-radius: 50%;
    display: inline-block;
    animation: onlinePulse 2s ease-in-out infinite;
}
@keyframes onlinePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(22,163,74,.4); }
    50% { opacity: .7; box-shadow: 0 0 0 4px rgba(22,163,74,0); }
}

/* ── HERO PROFILE BADGE (homepage) ── */
.hero__profile-badge {
    position: absolute;
    top: -20px; left: -30px;
    z-index: 5;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px 8px 8px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 999px;
    box-shadow: 0 4px 24px rgba(0,0,0,.1);
}
.hero__profile-img {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.hero__profile-info {
    display: flex; flex-direction: column;
}
.hero__profile-info strong {
    font-size: 13px; font-weight: 600; color: var(--gray-900); line-height: 1.2;
}
.hero__profile-info span {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; color: #16a34a; font-weight: 500;
}
.hero__profile-dot {
    width: 6px; height: 6px;
    background: #16a34a;
    border-radius: 50%;
    display: inline-block;
    animation: onlinePulse 2s ease-in-out infinite;
}

/* ── TEAM SECTION ── */
.team {
    padding: 80px 24px;
    max-width: 1100px; margin: 0 auto;
    position: relative; overflow: hidden;
}
.team__grid-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
}
.team__header {
    text-align: center; max-width: 560px; margin: 0 auto 48px;
}
.team__header h2 {
    font-size: 32px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px;
}
.team__header p {
    font-size: 15px; color: var(--gray-500); line-height: 1.7;
}
.team__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}
.team__card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
    position: relative; z-index: 1;
}
.team__card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, .08);
}
.team__photo {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}
.team__photo img {
    width: 80px; height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.team__photo--main img {
    width: 104px; height: 104px;
}
.team__card--main {
    transform: scale(1.08);
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(37, 99, 235, .08);
}
.team__card--main:hover {
    transform: scale(1.08) translateY(-4px);
}
.team__card--side { opacity: .9; }
.team__status {
    position: absolute;
    bottom: 2px; right: -4px;
    display: flex; align-items: center; gap: 4px;
    font-size: 10px; font-weight: 600; color: #16a34a;
    background: var(--white);
    padding: 2px 8px 2px 6px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.team__status-dot {
    width: 6px; height: 6px;
    background: #16a34a;
    border-radius: 50%;
    display: inline-block;
    animation: onlinePulse 2s ease-in-out infinite;
}
.team__card h3 {
    font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 2px;
}
.team__role {
    font-size: 13px; color: var(--accent); font-weight: 600;
    display: block; margin-bottom: 4px;
}
.team__link {
    font-size: 12px; color: var(--gray-500); text-decoration: none;
    display: inline-flex; align-items: center; gap: 4px;
    margin-bottom: 8px;
    transition: color .2s;
}
.team__link:hover { color: var(--accent); }
.team__card p {
    font-size: 13px; color: var(--gray-500); line-height: 1.65;
    margin-bottom: 14px;
}
.team__tags {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 5px;
}
.team__tags span {
    font-size: 10px; font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 3px 10px;
    border-radius: 999px;
}

/* ── APP CASES ── */
.app-cases {
    padding: 80px 24px;
    max-width: 1100px; margin: 0 auto;
    position: relative; overflow: hidden;
}
.app-cases__grid-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
}
.app-cases__header {
    text-align: center; max-width: 600px; margin: 0 auto 40px;
    position: relative; z-index: 1;
}
.app-cases__header h2 {
    font-size: 32px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px;
}
.app-cases__header p {
    font-size: 15px; color: var(--gray-500); line-height: 1.7;
}
.app-cases__cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    position: relative; z-index: 1;
}
.app-cases__card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}
.app-cases__card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(37, 99, 235, .08);
}
.app-cases__card-badge {
    display: inline-block;
    font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--accent); background: var(--accent-subtle);
    padding: 3px 10px; border-radius: 999px;
    margin-bottom: 12px;
}
.app-cases__card h3 {
    font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px;
}
.app-cases__card-desc {
    font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 14px;
}
.app-cases__card-features {
    display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px;
}
.app-cases__card-features span {
    font-size: 10px; font-weight: 500; color: var(--gray-600);
    background: var(--gray-100); padding: 3px 10px; border-radius: 999px;
}
.app-cases__card-link {
    font-size: 12px; font-weight: 500; color: var(--accent);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 4px;
    transition: color .2s;
}
.app-cases__card-link:hover { color: var(--accent-dark, #1d4ed8); }
.app-cases__card-link--wip {
    color: var(--gray-400); font-style: italic;
}

@media (max-width: 768px) {
    .app-cases { padding: 60px 16px; }
    .app-cases__cards { grid-template-columns: 1fr; }
    .app-cases__header h2 { font-size: 26px; }
}

/* ── DLA KOGO ── */
.for-who {
    padding: 80px 24px;
    max-width: 1100px; margin: 0 auto;
    position: relative; overflow: hidden;
}
.for-who__grid-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
}
.for-who__header {
    text-align: center; max-width: 600px; margin: 0 auto 48px;
    position: relative; z-index: 1;
}
.for-who__header h2 {
    font-size: 36px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px;
}
.for-who__header p {
    font-size: 15px; color: var(--gray-500); line-height: 1.7;
}
.for-who__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    position: relative; z-index: 1;
}
.for-who__item {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 500; color: var(--gray-700);
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.for-who__item svg {
    color: var(--accent); flex-shrink: 0;
}
.for-who__item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .08);
}
.for-who__item--cta {
    flex-direction: column; align-items: center;
    text-align: center; gap: 2px;
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    cursor: pointer;
}
.for-who__item--cta strong {
    font-size: 14px;
}
.for-who__item--cta span {
    font-size: 11px; opacity: .8;
}
.for-who__item--cta:hover {
    border-color: var(--accent-dark, #1d4ed8);
    background: var(--accent-dark, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .25);
}

@media (max-width: 768px) {
    .for-who { padding: 60px 16px; }
    .for-who__header h2 { font-size: 28px; }
    .for-who__grid { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE FIRST SECTION ── */
.mobile-first {
    padding: 80px 24px;
    max-width: 1200px; margin: 0 auto;
    position: relative; overflow: hidden;
}
.mobile-first__grid-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
}
.mobile-first__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative; z-index: 1;
}
.mobile-first__visual {
    position: relative;
}
.mobile-first__visual img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0,0,0,.1);
}
.mobile-first__badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 11px; color: rgba(255,255,255,.8); line-height: 1.3;
    box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.mobile-first__badge strong {
    color: #fff;
}
.mobile-first__float {
    position: absolute;
    bottom: -16px; right: -16px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    padding: 16px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(37, 99, 235, .3);
}
.mobile-first__float-num {
    display: block;
    font-size: 32px; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
}
.mobile-first__float-label {
    font-size: 12px; font-weight: 500; opacity: .85;
}
.mobile-first__content h2 {
    font-size: 32px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 16px;
}
.mobile-first__lead {
    font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 28px;
}
.mobile-first__stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    margin-bottom: 24px;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}
.mobile-first__stat {
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid var(--gray-200);
}
.mobile-first__stat:last-child { border-right: none; }
.mobile-first__stat strong {
    display: block;
    font-size: 28px; font-weight: 800; color: var(--accent);
    letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px;
}
.mobile-first__stat span {
    font-size: 11px; color: var(--gray-500); line-height: 1.25;
}
.mobile-first__note {
    font-size: 14px; color: var(--gray-500); line-height: 1.7;
}
.mobile-first__note strong {
    color: var(--gray-900);
}

/* ── FAQ ── */
.faq {
    padding: 80px 24px;
    max-width: 800px; margin: 0 auto;
    position: relative; overflow: hidden;
}
.faq__grid-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(0,0,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 70%);
}
.faq__header {
    text-align: center; max-width: 560px; margin: 0 auto 40px;
    position: relative; z-index: 1;
}
.faq__header h2 {
    font-size: 32px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px;
}
.faq__header p {
    font-size: 15px; color: var(--gray-500); line-height: 1.7;
}
.faq__list {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; gap: 0;
}
.faq__item {
    border-bottom: 1px solid var(--gray-200);
}
.faq__item:first-child {
    border-top: 1px solid var(--gray-200);
}
.faq__question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
    background: none; border: none; cursor: pointer;
    font-size: 15px; font-weight: 600; color: var(--gray-900);
    text-align: left; line-height: 1.4;
    transition: color .2s;
}
.faq__question:hover { color: var(--accent); }
.faq__question svg {
    flex-shrink: 0; color: var(--gray-400);
    transition: transform .3s ease, color .2s;
}
.faq__item.is-open .faq__question svg {
    transform: rotate(180deg);
    color: var(--accent);
}
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s ease;
}
.faq__item.is-open .faq__answer {
    max-height: 300px;
}
.faq__answer p {
    padding: 0 0 18px;
    font-size: 14px; color: var(--gray-500); line-height: 1.7;
}
.faq__answer a {
    color: var(--accent); text-decoration: none; font-weight: 500;
}
.faq__answer a:hover { text-decoration: underline; }
.faq__cta {
    text-align: center; margin-top: 32px;
    position: relative; z-index: 1;
}
.faq__cta p {
    font-size: 14px; color: var(--gray-500); margin-bottom: 12px;
}
.faq__cta p a {
    color: var(--accent); text-decoration: none; font-weight: 500;
}
.faq__cta p a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .faq { padding: 60px 16px; }
    .faq__header h2 { font-size: 26px; }
    .faq__question { font-size: 14px; }
}

@media (max-width: 768px) {
    .team { padding: 60px 16px; }
    .team__header h2 { font-size: 26px; }
    .team__cards { grid-template-columns: 1fr; gap: 20px; }
    .team__card--main { transform: scale(1); }
    .team__card--main:hover { transform: translateY(-4px); }
    .hero__profile-badge { top: 12px; left: 12px; padding: 6px 12px 6px 6px; }
    .mobile-first { padding: 60px 16px; }
    .mobile-first__container { grid-template-columns: 1fr; gap: 32px; }
    .mobile-first__content h2 { font-size: 26px; }
    .mobile-first__float { bottom: -12px; right: -8px; padding: 12px 18px; }
    .mobile-first__float-num { font-size: 26px; }
}

/* ===== FORM CHECKBOX FIX ===== */
.sw-form__checkbox label {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 11px; color: var(--gray-400); line-height: 1.5;
    cursor: pointer; flex-wrap: wrap;
}
.sw-form__checkbox label span:last-of-type { flex: 1; min-width: 0; }
.sw-form__checkbox a { color: var(--accent); text-decoration: underline; display: inline; }

/* ===== GLOBAL MOBILE FIXES ===== */
@media (max-width: 768px) {
    .mega { display: none !important; }
    .topbar { height: 28px; }
    .topbar__text { font-size: 11px; }
    .nav__inner { height: 48px; padding: 0 16px; }
    .nav__partner-sep, .nav__partner-badge { display: none; }
    .footer__cols { gap: 32px; }
    .footer__map iframe { height: 160px; }
    .footer__cta h2 { font-size: 24px; }
    .footer__cta { padding: 40px 20px; }
    .footer__cta-actions { flex-direction: column; }
    .footer__cta-actions .btn { width: 100%; justify-content: center; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cases__header { gap: 16px; }
    .cases__header-right .btn { display: none; }
    .gpt__heading h2 { font-size: 24px; }
    .gpt__stats { flex-direction: column; gap: 16px; }
    .blog__header { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__stats { flex-wrap: wrap; gap: 8px; }
    .hero__stat-sep { display: none; }
    .sw-form-card { padding: 24px 16px; }
    .sw-form__row { flex-direction: column; }
    .sw-form-card__trust { flex-direction: column; align-items: center; gap: 8px; }
}
