/* Itmerce 2026 Redesign — Premium SaaS / E-Commerce / AI */
:root {
    color-scheme: dark;
    --bg: #07090d;
    --bg-soft: #0c1118;
    --bg-deep: #030407;
    --surface: rgba(255,255,255,0.055);
    --surface-2: rgba(255,255,255,0.085);
    --surface-3: rgba(255,255,255,0.12);
    --surface-solid: #111823;
    --border: rgba(255,255,255,0.10);
    --border-strong: rgba(255,255,255,0.18);
    --text: #f9fafb;
    --text-soft: rgba(249,250,251,0.76);
    --text-muted: rgba(249,250,251,0.52);
    --brand-orange: #df6b00;
    --brand-orange-2: #ff9a1f;
    --brand-orange-soft: rgba(223,107,0,0.18);
    --primary: #2563eb;
    --primary-soft: rgba(37,99,235,0.16);
    --cyan: #06b6d4;
    --cyan-soft: rgba(6,182,212,0.12);
    --green: #10b981;
    --green-soft: rgba(16,185,129,0.12);
    --btn-bg: #ffffff;
    --btn-text: #111827;
    --shadow-xl: 0 34px 100px rgba(0,0,0,0.38);
    --shadow-lg: 0 24px 60px rgba(0,0,0,0.28);
    --shadow-md: 0 14px 34px rgba(0,0,0,0.20);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --section-space: clamp(5.5rem, 9vw, 8.5rem);
    --nav-height: 84px;
    --max-width: 1420px;
}

[data-theme="light"] {
    color-scheme: light;
    --bg: #f7f8fb;
    --bg-soft: #eef2f7;
    --bg-deep: #ffffff;
    --surface: rgba(255,255,255,0.74);
    --surface-2: rgba(255,255,255,0.92);
    --surface-3: #ffffff;
    --surface-solid: #ffffff;
    --border: rgba(15,23,42,0.09);
    --border-strong: rgba(15,23,42,0.16);
    --text: #111827;
    --text-soft: rgba(17,24,39,0.74);
    --text-muted: rgba(17,24,39,0.52);
    --brand-orange-soft: rgba(223,107,0,0.13);
    --primary-soft: rgba(37,99,235,0.10);
    --cyan-soft: rgba(6,182,212,0.10);
    --green-soft: rgba(16,185,129,0.10);
    --btn-bg: #111827;
    --btn-text: #ffffff;
    --shadow-xl: 0 32px 80px rgba(15,23,42,0.13);
    --shadow-lg: 0 22px 50px rgba(15,23,42,0.10);
    --shadow-md: 0 12px 30px rgba(15,23,42,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    min-height: 100vh;
    background:
        radial-gradient(circle at 13% 7%, var(--brand-orange-soft), transparent 26rem),
        radial-gradient(circle at 89% 9%, var(--primary-soft), transparent 30rem),
        radial-gradient(circle at 50% 72%, var(--cyan-soft), transparent 34rem),
        linear-gradient(180deg, var(--bg-soft), var(--bg), var(--bg-deep));
    transition: background .35s ease, color .25s ease;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: radial-gradient(circle at 50% 22%, #000 0 38%, transparent 78%);
    opacity: .40;
}
[data-theme="light"] body::before { background-image: linear-gradient(rgba(15,23,42,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,.05) 1px, transparent 1px); opacity: .55; }
body::after {
    content:"";
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events:none;
    background: conic-gradient(from 140deg at 80% 18%, transparent 0 22%, rgba(223,107,0,.14) 28%, transparent 38%, rgba(37,99,235,.12) 54%, transparent 68%, rgba(6,182,212,.10) 82%, transparent 100%);
    filter: blur(70px);
    opacity: .85;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.container { width: min(var(--max-width), calc(100% - 2.4rem)); margin-inline: auto; }
.section { padding: var(--section-space) 0; position: relative; }
.section-divider { width: min(var(--max-width), calc(100% - 2.4rem)); height: 1px; margin: 0 auto; background: linear-gradient(90deg, transparent, var(--border), transparent); }
.section-header { max-width: 880px; margin: 0 auto 3.6rem; text-align: center; }
.section-header h2,
.inner-title,
.hero-copy h1,
.contact-card h2,
.why-highlight h3 { font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif; letter-spacing: -.055em; line-height: .98; }
.section-header h2 { font-size: clamp(2.1rem, 5vw, 4.3rem); margin-bottom: 1rem; }
.section-header p, .inner-lead, .lead, .hero-copy .lead { color: var(--text-soft); font-size: clamp(1rem, 1.4vw, 1.16rem); }
.noise { position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: .055; background-image: url('https://grainy-gradients.vercel.app/noise.svg'); }
#interactive-grid { position: fixed; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; }
#scroll-progress { position: fixed; inset: 0 auto auto 0; width: 0%; height: 3px; z-index: 9999; background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-2), var(--cyan)); box-shadow: 0 0 24px var(--brand-orange-soft); }
#cursor { position: fixed; width: 18px; height: 18px; border: 1px solid rgba(223,107,0,.82); border-radius: 999px; pointer-events: none; z-index: 10000; transform: translate(-50%,-50%); opacity: 0; transition: width .18s ease, height .18s ease, opacity .2s ease, border-color .18s ease, background .18s ease; mix-blend-mode: difference; }
#cursor::after { content:""; position:absolute; inset:5px; border-radius:inherit; background: var(--brand-orange); }
body.cursor-link #cursor { width: 38px; height: 38px; background: rgba(223,107,0,.13); border-color: rgba(255,154,31,.95); }

.eyebrow { display: inline-flex; align-items: center; gap: .55rem; padding: .72rem .95rem; border: 1px solid var(--border); border-radius: 999px; background: var(--surface); color: var(--text-soft); font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; backdrop-filter: blur(16px); }
.eyebrow::before { content:""; width: .55rem; height: .55rem; border-radius: 50%; background: linear-gradient(135deg,var(--brand-orange),var(--brand-orange-2)); box-shadow: 0 0 18px var(--brand-orange-soft); }
.eyebrow--small { font-size: .66rem; padding: .55rem .75rem; }

.site-nav, nav { position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height); z-index: 6000; background: color-mix(in srgb, var(--bg) 76%, transparent); border-bottom: 1px solid var(--border); backdrop-filter: blur(24px) saturate(140%); }
.nav-inner { height: 100%; display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.logo { color: var(--text); text-decoration: none; font-family:"Space Grotesk",sans-serif; font-weight: 800; letter-spacing:-.04em; }
.logo--mark { display:inline-flex; align-items:center; line-height:0; }
.logo--mark img { height: 38px; width:auto; display:block; object-fit: contain; filter: drop-shadow(0 10px 22px rgba(0,0,0,.15)); }
.nav-center { display:flex; align-items:center; gap:.35rem; padding:.42rem; border:1px solid var(--border); border-radius:999px; background: var(--surface); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.nav-item { position:relative; }
.nav-link, .nav-trigger { min-height: 44px; display:inline-flex; align-items:center; justify-content:center; gap:.45rem; border:0; border-radius:999px; padding:0 1rem; background:transparent; color:var(--text-soft); font:inherit; font-size:.8rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; text-decoration:none; transition:.2s ease; cursor:pointer; }
.nav-trigger::after { content:"▾"; font-size:.65rem; opacity:.62; }
.nav-link:hover, .nav-trigger:hover, .nav-item.open .nav-trigger, .nav-item.active .nav-link, .nav-item.active .nav-trigger, [aria-current="page"] { color: var(--text); background: var(--surface-2); }
.dropdown { position:absolute; top: calc(100% + 14px); left:50%; transform: translate(-50%, 12px); opacity:0; visibility:hidden; pointer-events:none; border:1px solid var(--border); border-radius:30px; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(28px) saturate(140%); box-shadow: var(--shadow-xl); transition: opacity .22s ease, transform .24s ease, visibility .22s ease; }
.nav-item:hover .dropdown, .nav-item.open .dropdown { opacity:1; visibility:visible; pointer-events:auto; transform: translate(-50%,0); }
.dropdown-grid { width:min(920px, calc(100vw - 2rem)); display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:1rem; padding:1rem; }
.dropdown-grid--products { width:min(650px, calc(100vw - 2rem)); grid-template-columns:repeat(2,minmax(0,1fr)); }
.dropdown-card { padding:1.15rem; border:1px solid var(--border); border-radius:24px; background:var(--surface); }
.dropdown-card--highlight { background: linear-gradient(145deg, var(--brand-orange-soft), var(--surface)); }
.dropdown-kicker { display:block; margin-bottom:.45rem; color:var(--brand-orange-2); font-size:.68rem; font-weight:900; text-transform:uppercase; letter-spacing:.12em; }
.dropdown-title { font-family:"Space Grotesk",sans-serif; font-size:1rem; color:var(--text); font-weight:800; margin-bottom:.7rem; }
.dropdown-card p { color: var(--text-soft); font-size:.9rem; margin-bottom:.8rem; }
.dropdown-card a, .dropdown-compact a { display:block; color:var(--text-soft); text-decoration:none; border-radius:14px; padding:.72rem .75rem; transition:.2s ease; }
.dropdown-card a:hover, .dropdown-compact a:hover { color:var(--text); background:var(--surface-2); transform: translateX(4px); }
.dropdown-cta { color: var(--text) !important; font-weight:800; }
.nav-actions { display:flex; align-items:center; gap:.65rem; }
.lang-switch { display:flex; align-items:center; gap:.32rem; padding:.68rem .8rem; border:1px solid var(--border); border-radius:999px; background:var(--surface); color:var(--text-muted); font-size:.78rem; font-weight:900; }
.lang-switch a { text-decoration:none; color:var(--text-muted); }
.lang-switch a[aria-current="true"] { color:var(--brand-orange-2); }
.theme-toggle, .menu-toggle, .offcanvas-close { width:44px; height:44px; border:1px solid var(--border); border-radius:999px; background:var(--surface); color:var(--text); display:inline-flex; align-items:center; justify-content:center; transition:.2s ease; cursor:pointer; }
.theme-toggle:hover, .menu-toggle:hover, .offcanvas-close:hover { transform: translateY(-2px); border-color:var(--border-strong); background:var(--surface-2); }
.theme-toggle { position:relative; overflow:hidden; }
.theme-icon { position:absolute; transition:.22s ease; font-size:1rem; }
[data-theme="dark"] .theme-icon--sun { transform: translateY(22px); opacity:0; }
[data-theme="dark"] .theme-icon--moon { transform: translateY(0); opacity:1; }
[data-theme="light"] .theme-icon--sun { transform: translateY(0); opacity:1; }
[data-theme="light"] .theme-icon--moon { transform: translateY(-22px); opacity:0; }
.menu-toggle { display:none; flex-direction:column; gap:4px; }
.menu-toggle span { width:17px; height:2px; border-radius:999px; background:currentColor; }
.offcanvas-backdrop { position:fixed; inset:0; background:rgba(0,0,0,.48); z-index:7000; opacity:0; visibility:hidden; transition:.25s ease; }
.offcanvas-backdrop.show { opacity:1; visibility:visible; }
.offcanvas { position:fixed; top:0; right:0; z-index:7100; width:min(440px,100%); height:100dvh; overflow-y:auto; padding:1rem; transform:translateX(100%); transition:transform .32s cubic-bezier(.2,1,.3,1); border-left:1px solid var(--border); background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(30px); }
.offcanvas.open { transform:translateX(0); }
.offcanvas-header { display:flex; align-items:center; justify-content:space-between; padding-bottom:1rem; margin-bottom:1rem; border-bottom:1px solid var(--border); }
.offcanvas-title { font-family:"Space Grotesk",sans-serif; font-weight:800; }
.mobile-group { padding:1rem; margin-bottom:.85rem; border:1px solid var(--border); border-radius:24px; background:var(--surface); }
.mobile-group summary { cursor:pointer; list-style:none; font-family:"Space Grotesk",sans-serif; font-weight:800; }
.mobile-group summary::-webkit-details-marker { display:none; }
.mobile-subtitle { margin:1rem 0 .35rem; color:var(--brand-orange-2); font-size:.7rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.mobile-group a { display:block; color:var(--text-soft); text-decoration:none; padding:.55rem 0; }
.mobile-group a:hover { color:var(--text); }

.hero, .page-hero { position:relative; padding-top: calc(var(--nav-height) + 3.5rem); }
.hero { min-height:100vh; display:flex; align-items:center; }
.page-hero { padding-bottom: clamp(3.5rem, 7vw, 6.2rem); }
.hero-grid, .page-hero-grid { display:grid; grid-template-columns: 1.02fr .98fr; gap: clamp(2rem, 5vw, 5rem); align-items:center; }
.hero-grid { padding: 3rem 0 5rem; }
.hero-copy h1 { max-width: 11ch; font-size: clamp(3rem, 7vw, 6.5rem); margin:1.2rem 0 1.1rem; }
.inner-title { font-size: clamp(2.55rem, 5.5vw, 5.2rem); max-width: 13ch; margin:.95rem 0 1.1rem; }
.inner-lead { max-width: 760px; }
.trust-row, .cta-group { display:flex; flex-wrap:wrap; gap:.85rem; }
.trust-row { margin:1.5rem 0; }
.trust-badge, .tag { display:inline-flex; align-items:center; gap:.45rem; border:1px solid var(--border); border-radius:999px; background:var(--surface); color:var(--text-soft); padding:.76rem 1rem; font-size:.86rem; font-weight:800; backdrop-filter:blur(15px); }
.trust-badge::before { content:""; width:.45rem; height:.45rem; border-radius:50%; background:var(--brand-orange); }
.cta-group { margin:1.65rem 0; }
.btn { min-height:54px; display:inline-flex; align-items:center; justify-content:center; gap:.55rem; position:relative; overflow:hidden; border:1px solid transparent; border-radius:18px; padding:.95rem 1.35rem; text-decoration:none; font-weight:900; transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease; }
.btn::before { content:""; position:absolute; inset:0; background:linear-gradient(135deg, rgba(255,255,255,.18), transparent); opacity:0; transition:.2s ease; }
.btn:hover::before { opacity:1; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { color:#fff; background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-2)); box-shadow:0 18px 40px rgba(223,107,0,.22); }
.btn-secondary { color:var(--text); background:var(--surface); border-color:var(--border); }
.btn-secondary:hover { background:var(--surface-2); border-color:var(--border-strong); }
.hero-stats { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; margin-top:1.3rem; }
.stat-card { padding:1.15rem; border:1px solid var(--border); border-radius:24px; background:var(--surface); backdrop-filter:blur(16px); }
.stat-card strong { display:block; font-family:"Space Grotesk",sans-serif; margin-bottom:.35rem; line-height:1.15; }
.stat-card span { color:var(--text-soft); font-size:.88rem; }
.hero-panel, .image-panel, .product-preview, .glass-panel, .contact-card { position:relative; overflow:hidden; border:1px solid var(--border); border-radius:var(--radius-xl); background: linear-gradient(180deg, var(--surface-2), var(--surface)); box-shadow:var(--shadow-lg); backdrop-filter: blur(18px); }
.hero-panel { padding:1rem; }
.hero-panel::before, .image-panel::before, .contact-card::before { content:""; position:absolute; inset:-40%; background: radial-gradient(circle at 18% 20%, var(--brand-orange-soft), transparent 28%), radial-gradient(circle at 82% 32%, var(--primary-soft), transparent 24%); filter:blur(18px); opacity:.9; pointer-events:none; }
.image-panel img { position:relative; display:block; width:100%; height:100%; min-height:360px; object-fit:cover; border-radius:calc(var(--radius-xl) - 8px); }
.dashboard-mockup { position:relative; z-index:1; min-height:560px; border:1px solid var(--border); border-radius:28px; overflow:hidden; background: color-mix(in srgb, var(--surface-solid) 74%, transparent); }
.mockup-topbar { display:flex; justify-content:space-between; align-items:center; padding:1rem; border-bottom:1px solid var(--border); }
.mockup-dots { display:flex; gap:.38rem; }
.mockup-dots span { width:.55rem; height:.55rem; border-radius:50%; background:var(--text-muted); }
.mockup-label { color:var(--text-soft); font-size:.72rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.mockup-body { display:grid; gap:1rem; padding:1rem; }
.mockup-chart, .mockup-box { border:1px solid var(--border); border-radius:22px; background:var(--surface); }
.mockup-chart { height:210px; position:relative; overflow:hidden; }
.mockup-chart svg { position:absolute; inset:0; width:100%; height:100%; }
.mockup-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.mockup-box { padding:1rem; min-height:145px; }
.mockup-box h4 { color:var(--text-soft); font-size:.9rem; margin-bottom:.8rem; }
.mockup-list { display:grid; gap:.7rem; }
.mockup-line { height:10px; border-radius:999px; background:linear-gradient(90deg,var(--brand-orange-soft),var(--primary-soft),var(--cyan-soft)); }

.cards-grid, .projects-grid, .workflow-grid, .products-grid, .value-grid { display:grid; gap:1.35rem; }
.cards-grid, .products-grid, .value-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
.projects-grid, .workflow-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.card, .product-card, .step, .value-card, .glass-panel { padding: clamp(1.35rem, 2vw, 2rem); border:1px solid var(--border); border-radius:var(--radius-lg); background:var(--surface); box-shadow:var(--shadow-md); backdrop-filter:blur(16px); transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.card:hover, .product-card:hover, .step:hover, .value-card:hover, .glass-panel:hover { transform:translateY(-8px); border-color:var(--border-strong); background:var(--surface-2); box-shadow:var(--shadow-lg); }
.card h3, .product-card h3, .step h3, .value-card h3, .glass-panel h3 { font-family:"Space Grotesk",sans-serif; font-size:clamp(1.25rem,2vw,1.65rem); line-height:1.12; letter-spacing:-.035em; margin-bottom:.75rem; }
.card p, .product-card p, .step p, .value-card p, .glass-panel p { color:var(--text-soft); }
.card ul, .product-card ul, .check-list, .feature-bullets { list-style:none; display:grid; gap:.78rem; margin:1.2rem 0; }
.card li, .product-card li, .check-list li, .feature-bullets li { position:relative; padding-left:1.35rem; color:var(--text-soft); }
.card li::before, .product-card li::before, .check-list li::before, .feature-bullets li::before { content:""; position:absolute; left:0; top:.68em; width:.5rem; height:.5rem; border-radius:50%; background:linear-gradient(135deg,var(--brand-orange),var(--brand-orange-2)); box-shadow:0 0 12px var(--brand-orange-soft); }
.product-card { display:flex; flex-direction:column; }
.product-badge { align-self:flex-start; margin-bottom:.9rem; padding:.45rem .72rem; border-radius:999px; color:#fff; background:linear-gradient(135deg,var(--brand-orange),var(--primary)); font-size:.7rem; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.product-preview { min-height:250px; margin:1.25rem 0; padding:.75rem; }
.product-preview-inner { min-height:224px; border:1px solid var(--border); border-radius:22px; overflow:hidden; display:grid; place-items:center; background:var(--surface); }
.product-preview-inner img { width:100%; height:100%; min-height:224px; object-fit:cover; display:block; }
.why-layout { display:grid; grid-template-columns:1.05fr 1fr; gap:1.35rem; align-items:stretch; }
.why-highlight { padding: clamp(1.5rem,3vw,2.6rem); border:1px solid var(--border); border-radius:var(--radius-xl); background:linear-gradient(145deg,var(--brand-orange-soft),var(--primary-soft),var(--surface)); box-shadow:var(--shadow-lg); }
.why-highlight h3 { font-size:clamp(2rem,3.3vw,3rem); margin-bottom:1rem; max-width:13ch; }
.why-highlight p { color:var(--text-soft); max-width:60ch; }
.why-points { display:grid; gap:.85rem; margin-top:1.3rem; }
.why-point { position:relative; padding-left:1.4rem; color:var(--text-soft); }
.why-point::before { content:""; position:absolute; left:0; top:.65em; width:.55rem; height:.55rem; border-radius:50%; background:var(--brand-orange); }
.value-index, .step-num { display:inline-flex; margin-bottom:.75rem; color:var(--brand-orange-2); font-family:"Space Grotesk",sans-serif; font-size:2rem; font-weight:800; opacity:.85; }
.target-tags { display:flex; flex-wrap:wrap; justify-content:center; gap:.9rem; }
.faq-section { max-width:960px; margin:0 auto; }
.faq-item { margin-bottom:.9rem; border:1px solid var(--border); border-radius:22px; background:var(--surface); overflow:hidden; }
.faq-item.active { background:var(--surface-2); border-color:var(--border-strong); }
.faq-q { width:100%; display:flex; justify-content:space-between; align-items:center; gap:1rem; padding:1.2rem 1.35rem; border:0; background:transparent; color:var(--text); text-align:left; font:inherit; font-weight:800; cursor:pointer; }
.faq-q span:last-child { color:var(--brand-orange-2); font-size:1.35rem; }
.faq-a { max-height:0; overflow:hidden; padding:0 1.35rem; color:var(--text-soft); transition:max-height .28s ease, padding .28s ease; }
.faq-item.active .faq-a { max-height:360px; padding:0 1.35rem 1.25rem; }
.contact-band { padding: clamp(4rem,8vw,6rem) 0; }
.contact-card { padding:clamp(2rem,5vw,4rem); text-align:center; }
.contact-card > * { position:relative; z-index:1; }
.contact-card h2 { font-size:clamp(2.2rem,5vw,4.2rem); margin-bottom:1rem; }
.contact-card p { max-width:720px; margin:0 auto 1.3rem; color:var(--text-soft); }

.legal-prose, .prose { max-width:980px; margin:0 auto; padding:clamp(1.2rem,3vw,2rem); border:1px solid var(--border); border-radius:var(--radius-lg); background:var(--surface); color:var(--text-soft); }
.legal-prose h1,.legal-prose h2,.legal-prose h3,.prose h1,.prose h2,.prose h3 { color:var(--text); font-family:"Space Grotesk",sans-serif; line-height:1.15; margin:1.2rem 0 .65rem; }
.legal-prose p,.prose p { margin:.6rem 0; }
.legal-prose a,.prose a { color:var(--brand-orange-2); }
.itm-data-table { width:100%; border-collapse:collapse; overflow:hidden; border-radius:16px; }
.itm-data-table th,.itm-data-table td { padding:.85rem; border:1px solid var(--border); color:var(--text-soft); }

.site-footer, footer { position:relative; padding:4.5rem 0 2rem; border-top:1px solid var(--border); background: color-mix(in srgb, var(--bg) 88%, transparent); }
.footer-grid { display:grid; grid-template-columns:1.25fr .8fr .9fr .85fr 1.25fr; gap:1.6rem; }
.footer-brand p, .footer-col p, .footer-cta p { color:var(--text-soft); font-size:.95rem; }
.footer-col h4, .footer-cta h4 { font-family:"Space Grotesk",sans-serif; margin-bottom:.85rem; }
.footer-col a, .footer-bottom a { display:block; color:var(--text-soft); text-decoration:none; margin-bottom:.6rem; transition:.2s ease; }
.footer-col a:hover, .footer-bottom a:hover { color:var(--text); transform:translateX(3px); }
.footer-cta { padding:1.25rem; border:1px solid var(--border); border-radius:24px; background:linear-gradient(145deg,var(--brand-orange-soft),var(--surface)); }
.footer-cta .btn { margin:.9rem 0 .4rem; width:100%; }
.mail-link { display:inline-block; color:var(--text); text-decoration:none; font-weight:800; margin-top:.35rem; }
.footer-badges { display:flex; flex-wrap:wrap; gap:.45rem; margin-top:1rem; }
.footer-badges span { padding:.4rem .6rem; border:1px solid var(--border); border-radius:999px; color:var(--text-muted); font-size:.72rem; font-weight:800; }
.footer-bottom { display:flex; flex-wrap:wrap; justify-content:space-between; gap:1rem; margin-top:2rem; padding-top:1.3rem; border-top:1px solid var(--border); color:var(--text-muted); font-size:.85rem; }
.footer-bottom span:last-child { display:flex; gap:.4rem; }
.footer-bottom span:last-child a { display:inline; margin:0; }

.reveal { opacity:0; transform:translateY(26px); transition:opacity .65s ease, transform .65s ease; }
.reveal.active, .hero .reveal { opacity:1; transform:none; }
a:focus-visible, button:focus-visible, summary:focus-visible, .btn:focus-visible { outline:2px solid var(--brand-orange-2); outline-offset:3px; }

@media (max-width: 1180px) {
    .hero-grid, .page-hero-grid, .why-layout { grid-template-columns:1fr; }
    .hero-copy h1, .inner-title, .why-highlight h3 { max-width:none !important; }
    .projects-grid, .workflow-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .footer-grid { grid-template-columns:1fr 1fr; }
    .footer-cta { grid-column:1 / -1; }
}
@media (max-width: 980px) {
    :root { --nav-height: 76px; }
    #cursor { display:none; }
    .nav-center, .lang-switch { display:none; }
    .menu-toggle { display:inline-flex; }
    .hero { min-height:auto; }
    .hero-grid { padding:2.5rem 0 4rem; }
    .hero-stats, .cards-grid, .products-grid, .projects-grid, .workflow-grid, .value-grid { grid-template-columns:1fr; }
    .image-panel img { min-height:280px; }
}
@media (max-width: 640px) {
    .container { width:min(100% - 1.2rem, var(--max-width)); }
    .cta-group { flex-direction:column; }
    .btn { width:100%; }
    .trust-badge { width:100%; justify-content:center; }
    .mockup-grid { grid-template-columns:1fr; }
    .dashboard-mockup { min-height:auto; }
    .footer-grid { grid-template-columns:1fr; }
    .footer-bottom, .footer-bottom span:last-child { flex-direction:column; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior:auto !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
    .reveal { opacity:1; transform:none; }
}

.contact-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:1.5rem;align-items:start}.contact-form{padding:2rem;border-radius:var(--card-radius);border:1px solid var(--border);background:var(--surface);box-shadow:var(--shadow-md);backdrop-filter:blur(16px)}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}.contact-form label{display:grid;gap:.45rem;color:var(--text-soft);font-weight:700;margin-bottom:1rem}.contact-form input,.contact-form textarea{width:100%;border:1px solid var(--border);background:var(--surface-2);color:var(--text);border-radius:16px;padding:.95rem 1rem;font:inherit}.contact-form input:focus,.contact-form textarea:focus{outline:2px solid var(--brand-orange);outline-offset:2px}.form-success,.form-error{padding:1rem 1.1rem;border-radius:16px;margin-bottom:1rem;font-weight:700}.form-success{background:rgba(16,185,129,.12);border:1px solid rgba(16,185,129,.28)}.form-error{background:rgba(239,68,68,.12);border:1px solid rgba(239,68,68,.28)}@media(max-width:980px){.contact-layout,.form-grid{grid-template-columns:1fr}}
