:root {
    --ink: #07111f;
    --ink-soft: #0b1728;
    --surface: #102036;
    --surface-2: #152a44;
    --paper: #f4f7fb;
    --paper-blue: #edf4fb;
    --white: #ffffff;
    --text: #142136;
    --muted: #5e6b7e;
    --muted-dark: #a8b7ca;
    --line: #dbe4ef;
    --line-dark: rgba(255, 255, 255, 0.12);
    --cyan: #40d8f7;
    --cyan-dark: #07758f;
    --blue: #2877ff;
    --violet: #7f4dff;
    --magenta: #d434b3;
    --lime: #b8f33d;
    --danger: #bd3149;
    --success: #228958;
    --gradient: linear-gradient(115deg, #38d9f7 0%, #6f5aff 47%, #cb35b4 73%, #b8f33d 100%);
    --shadow-sm: 0 12px 30px rgba(11, 23, 40, 0.08);
    --shadow: 0 24px 70px rgba(3, 13, 28, 0.14);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --container: 1180px;
    --header-height: 84px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
    font: inherit;
    cursor: pointer;
}

p,
h1,
h2,
h3,
h4 {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

h1 {
    margin-bottom: 28px;
    font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.25rem, 4.1vw, 4rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
}

::selection {
    color: var(--ink);
    background: var(--cyan);
}

:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--ink);
}

.sr-only,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 9999;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 16px;
    margin: 0;
    overflow: visible;
    clip: auto;
    color: var(--ink);
    background: var(--white);
    border-radius: 8px;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 132px 0;
}

.section-dark {
    color: var(--white);
    background: var(--ink);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark p {
    color: var(--muted-dark);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 20px;
    color: var(--cyan) !important;
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow > span:first-child {
    width: 7px;
    height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(64, 216, 247, 0.13);
}

.eyebrow-dark {
    color: #066f89 !important;
}

.text-gradient {
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.lead-copy {
    color: var(--ink);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 600;
    letter-spacing: -0.018em;
    line-height: 1.45;
}

.button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.button-row-center {
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 54px;
    padding: 14px 22px;
    color: var(--ink);
    background: var(--cyan);
    border: 1px solid var(--cyan);
    border-radius: 10px;
    font-size: 0.91rem;
    font-weight: 750;
    letter-spacing: -0.01em;
    line-height: 1.2;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    background: var(--lime);
    border-color: var(--lime);
    box-shadow: 0 13px 30px rgba(184, 243, 61, 0.17);
    transform: translateY(-2px);
}

.button-small {
    min-height: 43px;
    padding: 10px 16px;
    font-size: 0.82rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.91rem;
    font-weight: 700;
    transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
    color: var(--cyan);
    border-color: var(--cyan);
}

.text-link-dark {
    color: var(--ink);
    border-color: rgba(7, 17, 31, 0.25);
}

.section-heading {
    max-width: 720px;
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 64px;
    max-width: none;
    margin-bottom: 64px;
}

.section-heading-row > div {
    max-width: 700px;
}

.section-heading-row > p {
    max-width: 410px;
    margin-bottom: 8px;
    color: var(--muted);
}

.section-dark .section-heading-row > p {
    color: var(--muted-dark);
}

.section-heading-centered {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.section-heading-centered .eyebrow {
    justify-content: center;
}

.section-heading-centered > p:last-child {
    color: var(--muted);
    font-size: 1.05rem;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 160ms;
}

/* Header and brand */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: height 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
    height: 72px;
    background: rgba(7, 17, 31, 0.92);
    box-shadow: 0 12px 35px rgba(2, 8, 18, 0.18);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand-logo {
    display: block;
    width: 230px;
    height: auto;
}

.site-footer .brand-logo {
    width: 260px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav > a:not(.button) {
    position: relative;
    padding: 9px 0;
    color: rgba(255, 255, 255, 0.73);
    font-size: 0.82rem;
    font-weight: 650;
    transition: color 180ms ease;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
    color: var(--white);
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

/* Home hero */
.hero {
    min-height: 820px;
    padding: 170px 0 0;
    overflow: hidden;
    contain: paint;
}

.hero-grid,
.contact-grid,
.page-cta-grid,
.portrait-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
}

.orb {
    position: absolute;
    width: 520px;
    height: 520px;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.14;
}

.orb-one {
    top: 20px;
    right: -230px;
    background: var(--violet);
}

.orb-two {
    bottom: -250px;
    left: -260px;
    background: var(--cyan);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: 78px;
}

.hero-copy {
    max-width: 670px;
}

.hero-copy h1 {
    font-size: clamp(3.4rem, 6vw, 5.7rem);
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 38px;
    color: var(--muted-dark);
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    line-height: 1.65;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    padding: 0;
    margin: 42px 0 0;
    list-style: none;
}

.hero-facts li {
    color: #c5d1df;
    font-size: 0.78rem;
    font-weight: 650;
}

.hero-facts span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 7px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
    font-size: 0.65rem;
}

.hero-visual {
    position: relative;
    min-height: 510px;
    perspective: 1300px;
}

.visual-glow {
    position: absolute;
    inset: 40px 0 0 50px;
    background: radial-gradient(circle at 50% 50%, rgba(64, 216, 247, 0.22), transparent 58%);
    filter: blur(18px);
}

.browser-card {
    position: absolute;
    z-index: 2;
    top: 32px;
    right: -58px;
    width: 560px;
    min-height: 396px;
    overflow: hidden;
    background: rgba(15, 33, 54, 0.92);
    border: 1px solid rgba(112, 162, 218, 0.28);
    border-radius: 18px;
    box-shadow: 0 40px 90px rgba(0, 4, 15, 0.5);
    transform: rotateY(-6deg) rotateX(2deg);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.browser-topbar {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 50px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dots span,
.dev-window-bar > span {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.24);
    border-radius: 50%;
}

.browser-dots span:first-child,
.dev-window-bar > span:first-child { background: #f75d73; }
.browser-dots span:nth-child(2),
.dev-window-bar > span:nth-child(2) { background: #f4c54f; }
.browser-dots span:nth-child(3),
.dev-window-bar > span:nth-child(3) { background: #6ada87; }

.browser-address {
    flex: 1;
    padding: 6px 12px;
    color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.035);
    border-radius: 6px;
    font-size: 0.59rem;
}

.status-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #baf178;
    font-size: 0.58rem;
    font-weight: 700;
}

.status-chip i,
.availability > span,
.contact-note i,
.it-status i {
    width: 7px;
    height: 7px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(184, 243, 61, 0.75);
}

.app-shell {
    display: grid;
    min-height: 345px;
    grid-template-columns: 63px 1fr;
}

.app-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 22px 12px;
    background: rgba(3, 12, 26, 0.45);
    border-right: 1px solid rgba(255, 255, 255, 0.065);
}

.mini-mark {
    width: 23px;
    height: 23px;
    background: conic-gradient(from 90deg, var(--cyan), var(--violet), var(--magenta), var(--lime), var(--cyan));
    clip-path: polygon(50% 0, 100% 28%, 78% 100%, 22% 100%, 0 28%);
}

.side-line {
    width: 25px;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.side-line.active { background: var(--cyan); box-shadow: 0 0 12px rgba(64, 216, 247, 0.35); }
.side-line.short { width: 17px; }

.app-content {
    padding: 25px 24px;
}

.app-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.app-heading div {
    display: grid;
}

.app-heading small,
.metric small,
.metric span,
.chart-head small {
    color: rgba(255, 255, 255, 0.37);
    font-size: 0.57rem;
}

.app-heading strong {
    margin-top: 2px;
    color: var(--white);
    font-size: 1rem;
}

.app-button {
    padding: 6px 10px;
    color: var(--ink);
    background: var(--cyan);
    border-radius: 6px;
    font-size: 0.58rem;
    font-weight: 800;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.metric {
    display: grid;
    min-height: 85px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 9px;
}

.metric-primary {
    background: linear-gradient(145deg, rgba(64, 216, 247, 0.16), rgba(127, 77, 255, 0.08));
    border-color: rgba(64, 216, 247, 0.32);
}

.metric strong {
    color: var(--white);
    font-size: clamp(0.9rem, 1.7vw, 1.2rem);
    line-height: 1.2;
}

.metric span { color: #8eeeb2; }

.chart-card {
    padding: 15px;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.028);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
}

.chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.62rem;
}

.chart {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 92px;
    padding-top: 14px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 100% 25%;
}

.chart i {
    flex: 1;
    background: linear-gradient(to top, var(--violet), var(--cyan));
    border-radius: 3px 3px 0 0;
    opacity: 0.78;
}

.chart-bar-1 { height: 22%; }
.chart-bar-2 { height: 31%; }
.chart-bar-3 { height: 29%; }
.chart-bar-4 { height: 46%; }
.chart-bar-5 { height: 53%; }
.chart-bar-6 { height: 67%; }
.chart-bar-7 { height: 73%; }
.chart-bar-8 { height: 88%; }

.floating-card {
    position: absolute;
    z-index: 3;
    padding: 15px;
    background: rgba(13, 30, 50, 0.91);
    border: 1px solid rgba(116, 170, 230, 0.26);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 5, 16, 0.38);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.floating-code {
    top: 0;
    left: -25px;
    display: grid;
    gap: 8px;
    width: 165px;
}

.code-dot {
    width: 6px;
    height: 6px;
    margin-bottom: 3px;
    background: var(--magenta);
    border-radius: 50%;
}

.code-line {
    display: block;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 5px;
}

.code-line.cyan { width: 65%; background: rgba(64, 216, 247, 0.78); }
.code-line.purple { background: rgba(127, 77, 255, 0.7); }
.code-line.lime { background: rgba(184, 243, 61, 0.65); }
.code-line.medium { width: 76%; }
.code-line.short { width: 45%; }

.floating-system {
    right: -18px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 190px;
}

.system-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--ink);
    background: var(--lime);
    border-radius: 9px;
}

.floating-system > span:last-child {
    display: grid;
}

.floating-system strong {
    color: var(--white);
    font-size: 0.68rem;
}

.floating-system small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.57rem;
}

.hero-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 56px 0 38px;
    margin-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-bottom p {
    margin: 0;
    color: var(--muted-dark);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-bottom div {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.76rem;
    font-weight: 650;
}

.hero-bottom i {
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
}

/* Home content */
.intro-section {
    background: var(--white);
}

.split-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.75fr);
    gap: 100px;
}

.intro-copy {
    color: var(--muted);
}

.intro-copy .text-link {
    margin-top: 12px;
}

.services-section {
    background: var(--paper);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    display: flex;
    min-height: 510px;
    padding: 34px;
    overflow: hidden;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
    border-color: rgba(40, 119, 255, 0.3);
    box-shadow: var(--shadow-sm);
    transform: translateY(-6px);
}

.service-featured {
    color: var(--white);
    background: var(--ink-soft);
    border-color: var(--ink-soft);
}

.service-featured::after {
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    content: "";
    background: radial-gradient(circle, rgba(64, 216, 247, 0.17), transparent 65%);
}

.service-featured h3 { color: var(--white); }
.service-featured p { color: var(--muted-dark); }

.service-number,
.detail-number {
    align-self: flex-end;
    color: #526178;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.71rem;
    letter-spacing: 0.08em;
}

.service-icon {
    position: relative;
    width: 62px;
    height: 62px;
    margin: 46px 0 36px;
    color: var(--cyan);
    background: rgba(64, 216, 247, 0.08);
    border: 1px solid rgba(64, 216, 247, 0.28);
    border-radius: 16px;
}

.service-card:not(.service-featured) .service-icon {
    color: var(--blue);
    background: rgba(40, 119, 255, 0.06);
    border-color: rgba(40, 119, 255, 0.18);
}

.browser-icon::before {
    position: absolute;
    inset: 16px 12px 13px;
    content: "";
    border: 2px solid currentColor;
    border-radius: 3px;
}

.browser-icon::after {
    position: absolute;
    top: 23px;
    left: 13px;
    width: 36px;
    height: 2px;
    content: "";
    background: currentColor;
}

.browser-icon i {
    position: absolute;
    z-index: 2;
    top: 19px;
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
}

.browser-icon i:first-child { left: 17px; }
.browser-icon i:nth-child(2) { left: 22px; }
.browser-icon i:nth-child(3) { left: 27px; }

.app-icon {
    display: grid;
    padding: 14px;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.app-icon i { border: 2px solid currentColor; border-radius: 3px; }

.nodes-icon::before,
.nodes-icon::after {
    position: absolute;
    content: "";
    background: currentColor;
}

.nodes-icon::before { top: 29px; left: 16px; width: 30px; height: 2px; }
.nodes-icon::after { top: 16px; left: 29px; width: 2px; height: 30px; }
.nodes-icon i { position: absolute; width: 8px; height: 8px; background: var(--white); border: 2px solid currentColor; border-radius: 50%; }
.nodes-icon i:first-child { top: 12px; left: 26px; }
.nodes-icon i:nth-child(2) { top: 25px; right: 10px; }
.nodes-icon i:nth-child(3) { bottom: 10px; left: 26px; }
.nodes-icon i:nth-child(4) { top: 25px; left: 10px; }

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.48rem;
}

.service-card > p {
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 0.93rem;
}

.service-card.service-featured > p,
.service-featured .service-number {
    color: var(--muted-dark);
}

.check-list {
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 7px 0 7px 23px;
    color: var(--muted);
    font-size: 0.82rem;
}

.check-list li::before {
    position: absolute;
    top: 11px;
    left: 1px;
    width: 12px;
    height: 7px;
    content: "";
    border-bottom: 2px solid var(--cyan-dark);
    border-left: 2px solid var(--cyan-dark);
    transform: rotate(-45deg);
}

.service-featured .check-list li { color: #b6c5d7; }
.service-featured .check-list li::before { border-color: var(--lime); }

.service-card > a {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    margin-top: auto;
    color: var(--ink);
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
    font-weight: 750;
}

.service-featured > a { color: var(--cyan); border-color: rgba(255, 255, 255, 0.12); }

.service-compact {
    min-height: auto;
    grid-column: 1 / -1;
    align-items: center;
    flex-direction: row;
    gap: 42px;
}

.service-compact .service-number { align-self: center; }
.service-compact > div { flex: 1; }
.service-compact h3 { margin-bottom: 7px; }
.service-compact p { max-width: 730px; margin: 0; }
.service-compact > a { width: 160px; padding: 14px 0; margin: 0; }

.needs-section {
    overflow: hidden;
}

.needs-section::before {
    position: absolute;
    top: -300px;
    right: -280px;
    width: 640px;
    height: 640px;
    content: "";
    background: radial-gradient(circle, rgba(127, 77, 255, 0.18), transparent 65%);
}

.needs-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 0.75fr) minmax(460px, 1.25fr);
    gap: 100px;
}

.needs-layout .section-heading {
    position: sticky;
    top: 140px;
    align-self: start;
}

.needs-layout .section-heading > p:last-child {
    max-width: 500px;
}

.needs-list {
    border-top: 1px solid var(--line-dark);
}

.need-item {
    display: grid;
    align-items: center;
    padding: 27px 4px;
    grid-template-columns: 54px 1fr 40px;
    gap: 16px;
    border-bottom: 1px solid var(--line-dark);
    transition: background 180ms ease, padding 180ms ease;
}

.need-item:hover {
    padding-inline: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.need-item > span {
    color: var(--cyan);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.68rem;
}

.need-item strong {
    color: var(--white);
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    font-weight: 600;
}

.need-item i {
    color: rgba(255, 255, 255, 0.4);
    font-style: normal;
    text-align: right;
}

.process-section {
    background: var(--white);
}

.process-grid {
    display: grid;
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    list-style: none;
}

.process-step {
    --step-accent: #089fc2;
    --step-soft: #e8f9fc;
    position: relative;
    min-height: 270px;
    padding: 24px 24px 28px;
    background: radial-gradient(circle at 92% 0, var(--step-soft), transparent 40%), linear-gradient(145deg, #ffffff, #f9fbfe);
    border: 1px solid #dce6f0;
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(13, 35, 58, 0.07);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.process-step:nth-child(2) { --step-accent: #6659e8; --step-soft: #efedff; }
.process-step:nth-child(3) { --step-accent: #b637ca; --step-soft: #f8eafa; }
.process-step:nth-child(4) { --step-accent: #6b9d14; --step-soft: #f0f8df; }

.process-step::before {
    position: absolute;
    top: -1px;
    right: 20px;
    left: 20px;
    height: 3px;
    content: "";
    background: var(--step-accent);
    border-radius: 0 0 4px 4px;
}

.process-step:hover {
    border-color: #c8d8e6;
    box-shadow: 0 20px 46px rgba(13, 35, 58, 0.11);
}

.process-step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-number {
    color: #526477;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.67rem;
    font-weight: 750;
    letter-spacing: 0.08em;
}

.process-symbol {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--step-accent);
    background: var(--step-soft);
    border: 1px solid color-mix(in srgb, var(--step-accent) 22%, transparent);
    border-radius: 15px;
}

.process-symbol svg {
    width: 25px;
    height: 25px;
}

.process-connector {
    position: absolute;
    z-index: 3;
    top: 39px;
    left: -26px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #708297;
    background: var(--white);
    border: 1px solid #d7e2ec;
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(13, 35, 58, 0.08);
}

.process-connector svg { width: 15px; height: 15px; }

.process-step h3 { margin: 34px 0 13px; font-size: 1.16rem; }
.process-step p { margin: 0; color: var(--muted); font-size: 0.83rem; }

.about-section {
    background: var(--paper-blue);
}

.about-layout {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(380px, 0.85fr) minmax(420px, 1.15fr);
    gap: 105px;
}

.portrait-wrap {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    contain: paint;
    background: var(--ink-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.portrait-wrap::before {
    position: absolute;
    inset: auto -50px -120px;
    height: 350px;
    content: "";
    background: radial-gradient(circle, rgba(64, 216, 247, 0.31), transparent 64%);
}

.portrait-wrap img {
    position: absolute;
    z-index: 2;
    right: auto;
    bottom: 0;
    left: 50%;
    width: auto;
    max-width: none;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    transform: translateX(-50%);
}

.portrait-label {
    position: absolute;
    z-index: 3;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: grid;
    padding: 16px 18px;
    background: rgba(7, 17, 31, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.portrait-label span { color: var(--white); font-size: 0.88rem; font-weight: 700; }
.portrait-label small { color: var(--cyan); font-size: 0.66rem; }

.about-copy > p:not(.eyebrow) { color: var(--muted); }

.about-values {
    padding: 7px 0;
    margin: 36px 0 28px;
    border-top: 1px solid #ccd8e6;
    border-bottom: 1px solid #ccd8e6;
}

.about-values > div {
    display: grid;
    align-items: start;
    padding: 18px 0;
    grid-template-columns: 34px 120px 1fr;
    gap: 14px;
}

.about-values > div + div { border-top: 1px solid #d7e1ec; }
.about-values span { color: var(--cyan-dark); font: 0.65rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.about-values strong { color: var(--ink); font-size: 0.9rem; }
.about-values p { margin: 0; color: var(--muted); font-size: 0.8rem; }

.faq-section {
    background: var(--white);
}

.faq-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(300px, 0.72fr) minmax(460px, 1.28fr);
    gap: 100px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 2px;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.4;
    list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--cyan-dark); font-size: 1.4rem; font-weight: 400; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { padding: 0 48px 26px 2px; margin: 0; color: var(--muted); font-size: 0.9rem; }

.contact-section {
    padding: 110px 0;
    overflow: hidden;
}

.contact-grid {
    -webkit-mask-image: radial-gradient(circle at 30% 50%, black, transparent 75%);
    mask-image: radial-gradient(circle at 30% 50%, black, transparent 75%);
}

.contact-section::after {
    position: absolute;
    right: -230px;
    bottom: -310px;
    width: 700px;
    height: 700px;
    content: "";
    background: radial-gradient(circle, rgba(127, 77, 255, 0.17), transparent 65%);
}

.contact-layout {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(360px, 0.9fr) minmax(470px, 1.1fr);
    gap: 110px;
}

.contact-copy > p:not(.eyebrow):not(.contact-note) {
    max-width: 540px;
    color: var(--muted-dark);
    font-size: 1.05rem;
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    color: #9eacc0 !important;
    font-size: 0.73rem !important;
}

.contact-details {
    position: relative;
    padding: 18px;
    margin: 0;
    overflow: hidden;
    font-style: normal;
    background: rgba(13, 29, 48, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 35px 85px rgba(0, 3, 12, 0.28);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.contact-details::before {
    position: absolute;
    top: 0;
    right: 28px;
    left: 28px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--cyan), var(--violet), var(--lime));
}

.contact-details-label {
    padding: 10px 10px 15px;
    margin: 0;
    color: #96a8bd;
    font-size: 0.66rem;
    font-style: normal;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-method {
    display: grid;
    align-items: center;
    padding: 17px 18px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.contact-method + .contact-method { margin-top: 10px; }

a.contact-method {
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.contact-method:hover {
    background: rgba(64, 216, 247, 0.07);
    border-color: rgba(64, 216, 247, 0.28);
    box-shadow: 0 10px 26px rgba(0, 4, 14, 0.17);
}

.contact-method-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--cyan);
    background: rgba(64, 216, 247, 0.08);
    border: 1px solid rgba(64, 216, 247, 0.2);
    border-radius: 13px;
}

.contact-method-icon svg { width: 22px; height: 22px; }
.contact-method-copy { display: grid; min-width: 0; gap: 3px; }
.contact-method-copy small { color: #8193a9; font-size: 0.62rem; font-style: normal; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-method-copy strong { color: var(--white); font-size: 0.94rem; font-style: normal; overflow-wrap: anywhere; }
.contact-method-action { color: var(--cyan); font-size: 1rem; }
.contact-method-static { background: rgba(255, 255, 255, 0.025); }

/* Footer */
.site-footer {
    color: #afbed0;
    background: #040b14;
}

.footer-grid {
    display: grid;
    padding: 78px 0 62px;
    grid-template-columns: 1.6fr 0.7fr 0.8fr;
    gap: 90px;
}

.footer-brand > p {
    max-width: 420px;
    margin: 26px 0 22px;
    color: #8292a7;
    font-size: 0.83rem;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #a3b2c4;
    font-size: 0.7rem;
}

.site-footer h2 {
    margin: 0 0 22px;
    color: #718198;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a,
.site-footer address {
    color: #b6c5d6;
    font-size: 0.78rem;
    font-style: normal;
    transition: color 180ms ease;
}

.footer-links a:hover { color: var(--cyan); }
.footer-contact { margin-top: 18px; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom a {
    color: #8495aa;
    font-size: 0.66rem;
}

.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--white); }

/* Shared subpage hero */
.subhero {
    position: relative;
    min-height: 790px;
    padding: 158px 0 0;
    overflow: hidden;
}

.subhero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    min-height: 560px;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
    gap: 90px;
}

.subhero-copy h1 {
    max-width: 760px;
    font-size: clamp(3.1rem, 5.4vw, 5.2rem);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.67rem;
}

.breadcrumbs a:hover { color: var(--cyan); }

.anchor-nav {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 72px;
    margin-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.anchor-nav a {
    padding: 8px 24px;
    color: rgba(255, 255, 255, 0.55);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.71rem;
    font-weight: 650;
}

.anchor-nav a:last-child { border-right: 0; }
.anchor-nav a:hover { color: var(--cyan); }

/* Development visual */
.development-visual {
    position: relative;
    min-height: 490px;
}

.development-visual::before {
    position: absolute;
    inset: 30px -80px 0 0;
    content: "";
    background: radial-gradient(circle, rgba(127, 77, 255, 0.23), transparent 63%);
    filter: blur(30px);
}

.dev-window {
    position: absolute;
    overflow: hidden;
    background: rgba(15, 32, 52, 0.9);
    border: 1px solid rgba(113, 164, 220, 0.26);
    border-radius: 16px;
    box-shadow: 0 35px 80px rgba(0, 4, 15, 0.46);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.dev-window-main {
    z-index: 2;
    top: 50px;
    right: -30px;
    width: 500px;
    height: 340px;
    transform: rotate(2deg);
}

.dev-window-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 42px;
    padding: 0 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dev-window-bar small { margin-left: 12px; color: rgba(255, 255, 255, 0.34); font-size: 0.56rem; }

.dev-layout {
    position: relative;
    display: grid;
    min-height: 298px;
    padding: 35px 30px;
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
}

.dev-nav { position: absolute; top: 15px; right: 24px; display: flex; gap: 8px; }
.dev-nav i { width: 28px; height: 4px; background: rgba(255, 255, 255, 0.1); border-radius: 3px; }
.dev-copy-lines { display: flex; justify-content: center; flex-direction: column; }
.dev-copy-lines strong { width: 80%; height: 17px; margin-bottom: 16px; background: var(--white); border-radius: 3px; }
.dev-copy-lines span { width: 95%; height: 6px; margin-bottom: 8px; background: rgba(255, 255, 255, 0.15); border-radius: 4px; }
.dev-copy-lines span.short { width: 62%; }
.dev-copy-lines .visual-button { display: block; width: 63px; padding: 7px; margin-top: 15px; color: var(--ink); background: var(--cyan); border-radius: 4px; font-size: 0.52rem; font-style: normal; text-align: center; }
.dev-art { position: relative; overflow: hidden; background: linear-gradient(145deg, rgba(64, 216, 247, 0.2), rgba(127, 77, 255, 0.3)); border: 1px solid rgba(100, 177, 255, 0.23); border-radius: 12px; }
.dev-art i { position: absolute; background: rgba(255, 255, 255, 0.14); border-radius: 50%; }
.dev-art i:first-child { width: 130px; height: 130px; top: 24px; left: 27px; }
.dev-art i:nth-child(2) { width: 80px; height: 80px; right: -25px; bottom: -15px; background: rgba(184, 243, 61, 0.4); }
.dev-art i:nth-child(3) { width: 38px; height: 38px; right: 22px; top: 26px; background: rgba(212, 52, 179, 0.55); }

.dev-code-card {
    z-index: 3;
    bottom: 13px;
    left: -4px;
    display: grid;
    width: 230px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.68);
    border-radius: 12px;
    font: 0.67rem/1.7 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.dev-code-card b { color: var(--violet); }
.dev-code-card em { color: var(--lime); font-style: normal; }

.dev-phone {
    position: absolute;
    z-index: 4;
    right: -55px;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 120px;
    height: 235px;
    padding: 26px 13px 15px;
    flex-direction: column;
    background: #0d1c2e;
    border: 2px solid #335272;
    border-radius: 22px;
    box-shadow: 0 25px 55px rgba(0, 3, 13, 0.52);
    transform: rotate(5deg);
}

.dev-phone > i { position: absolute; top: 8px; width: 33px; height: 5px; background: #233c58; border-radius: 6px; }
.dev-phone strong { width: 56%; height: 9px; margin-top: 18px; background: var(--white); border-radius: 3px; }
.dev-phone span { width: 84%; height: 5px; margin-top: 10px; background: rgba(255, 255, 255, 0.13); border-radius: 4px; }
.dev-phone .visual-button { display: block; width: 70%; height: 24px; margin-top: 22px; background: var(--cyan); border-radius: 5px; }

.dev-badge {
    position: absolute;
    z-index: 5;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(14, 30, 49, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9px;
}

.dev-badge span { display: grid; width: 20px; height: 20px; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 0.62rem; }
.dev-badge small { color: var(--white); font-size: 0.63rem; font-weight: 700; }

/* Development service detail */
.detail-services { padding-top: 0; background: var(--white); }
.detail-stack { display: grid; gap: 24px; }
.detail-service {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 530px;
    padding: 58px 58px 58px 88px;
    grid-template-columns: minmax(360px, 1fr) minmax(360px, 0.9fr);
    gap: 80px;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.detail-service-reverse .detail-copy { grid-column: 2; }
.detail-service-reverse .detail-preview { grid-column: 1; grid-row: 1; }
.detail-number { position: absolute; top: 30px; left: 30px; }
.detail-copy h2 { margin-bottom: 22px; font-size: clamp(2rem, 3.3vw, 3.25rem); }
.detail-copy > p:not(.eyebrow) { color: var(--muted); }

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.feature-pills li {
    padding: 7px 11px;
    color: #4c5d72;
    background: var(--white);
    border: 1px solid #d7e1eb;
    border-radius: 99px;
    font-size: 0.69rem;
    font-weight: 650;
}

.detail-preview {
    position: relative;
    min-height: 330px;
}

.website-preview {
    overflow: hidden;
    background: var(--white);
    border: 1px solid #cadae9;
    border-radius: 13px;
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
}

.preview-browser { display: flex; align-items: center; gap: 5px; height: 35px; padding: 0 12px; background: var(--ink-soft); }
.preview-browser span { width: 6px; height: 6px; background: #53667c; border-radius: 50%; }
.preview-site-nav { display: flex; justify-content: flex-end; gap: 10px; padding: 14px 18px; }
.preview-site-nav i { width: 28px; height: 4px; background: #d9e2eb; border-radius: 4px; }
.preview-site-hero { display: grid; align-items: center; padding: 24px; grid-template-columns: 1fr 0.9fr; gap: 25px; }
.preview-site-hero > div { display: grid; gap: 8px; }
.preview-site-hero strong { width: 85%; height: 14px; background: var(--ink); border-radius: 3px; }
.preview-site-hero span { width: 100%; height: 5px; background: #d9e3ec; border-radius: 3px; }
.preview-site-hero .visual-button { display: block; width: 62px; height: 23px; margin-top: 7px; background: var(--cyan); border-radius: 4px; }
.preview-site-hero > i { height: 145px; background: linear-gradient(145deg, var(--violet), var(--cyan)); border-radius: 9px; }
.preview-site-cards { display: grid; padding: 0 24px 24px; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.preview-site-cards i { height: 55px; background: #edf2f7; border: 1px solid #e0e7ee; border-radius: 6px; }

.dashboard-preview {
    display: grid;
    overflow: hidden;
    grid-template-columns: 55px 1fr;
    background: var(--ink-soft);
    border: 1px solid #34506f;
    border-radius: 14px;
    box-shadow: var(--shadow);
    transform: rotate(-1.5deg);
}

.dashboard-side { display: flex; align-items: center; padding-top: 30px; flex-direction: column; gap: 18px; background: #091525; }
.dashboard-side i { width: 22px; height: 5px; background: rgba(255, 255, 255, 0.12); border-radius: 4px; }
.dashboard-side i:first-child { height: 22px; background: var(--cyan); border-radius: 6px; }
.dashboard-main { padding: 38px 26px; }
.dashboard-main > strong { display: block; width: 48%; height: 14px; background: var(--white); border-radius: 3px; }
.dashboard-main > span { display: block; width: 70%; height: 5px; margin: 10px 0 24px; background: rgba(255, 255, 255, 0.13); border-radius: 4px; }
.dashboard-main > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.dashboard-main > div i { height: 70px; background: linear-gradient(145deg, rgba(64, 216, 247, 0.15), rgba(127, 77, 255, 0.12)); border: 1px solid rgba(89, 158, 225, 0.18); border-radius: 8px; }
.dashboard-main > b { display: block; height: 105px; margin-top: 10px; background: repeating-linear-gradient(to right, transparent 0 10%, rgba(64, 216, 247, 0.45) 10% 14%); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; opacity: 0.5; }

.phones-preview { min-height: 380px; }
.phones-preview > div { position: absolute; display: flex; align-items: center; padding: 35px 16px 18px; flex-direction: column; background: var(--ink-soft); border: 2px solid #334f6b; border-radius: 25px; box-shadow: 0 25px 55px rgba(7, 17, 31, 0.27); }
.phone-back { top: 20px; left: 15%; width: 155px; height: 300px; transform: rotate(-8deg); opacity: 0.72; }
.phone-front { right: 14%; bottom: 5px; width: 180px; height: 350px; transform: rotate(5deg); }
.phones-preview i { position: absolute; top: 10px; width: 42px; height: 5px; background: #2d4965; border-radius: 6px; }
.phones-preview strong { width: 55%; height: 13px; margin-top: 30px; background: var(--white); border-radius: 3px; }
.phones-preview span { width: 82%; height: 6px; margin-top: 13px; background: rgba(255, 255, 255, 0.13); border-radius: 4px; }
.phone-back span:first-of-type { height: 120px; background: linear-gradient(145deg, var(--cyan), var(--violet)); border-radius: 9px; }
.phone-front > div { display: grid; width: 100%; margin-top: 25px; grid-template-columns: 1fr 1fr; gap: 8px; }
.phone-front b { height: 78px; background: rgba(64, 216, 247, 0.12); border: 1px solid rgba(64, 216, 247, 0.2); border-radius: 8px; }

.integration-preview { min-height: 360px; background-image: radial-gradient(#bccbd9 1px, transparent 1px); background-size: 22px 22px; }
.integration-preview strong { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; width: 90px; height: 90px; place-items: center; color: var(--white); background: linear-gradient(145deg, var(--violet), var(--blue)); border-radius: 24px; box-shadow: 0 20px 45px rgba(61, 74, 198, 0.3); transform: translate(-50%, -50%); }
.integration-preview .node { position: absolute; z-index: 3; display: grid; width: 54px; height: 54px; place-items: center; color: var(--cyan-dark); background: var(--white); border: 1px solid #cfdae5; border-radius: 14px; box-shadow: var(--shadow-sm); font-style: normal; font-weight: 800; }
.node-a { top: 25px; left: 25px; }
.node-b { top: 45px; right: 15px; }
.node-c { right: 55px; bottom: 28px; }
.connection { position: absolute; z-index: 1; top: 50%; left: 50%; width: 220px; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--violet)); transform-origin: left; }
.connection-a { transform: rotate(215deg); }
.connection-b { transform: rotate(330deg); }

.usecases-section { overflow: hidden; }
.usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.usecase-grid article { min-height: 290px; padding: 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.usecase-grid span { color: var(--cyan); font: 0.66rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.usecase-grid h3 { margin: 70px 0 16px; font-size: 1.18rem; }
.usecase-grid p { margin: 0; font-size: 0.81rem; }

.principles-section { background: var(--white); }
.principles-layout { display: grid; grid-template-columns: minmax(320px, 0.8fr) minmax(470px, 1.2fr); gap: 110px; }
.principles-layout .section-heading { position: sticky; top: 130px; align-self: start; }
.principles-layout .section-heading > p:last-child { color: var(--muted); }
.principle-list { border-top: 1px solid var(--line); }
.principle-list article { display: grid; padding: 27px 0; grid-template-columns: 52px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.principle-list span { color: var(--cyan-dark); font: 0.67rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.principle-list h3 { margin-bottom: 8px; font-size: 1.16rem; }
.principle-list p { margin: 0; color: var(--muted); font-size: 0.84rem; }

.page-cta { padding: 118px 0; overflow: hidden; text-align: center; }
.page-cta::after { position: absolute; bottom: -300px; left: 50%; width: 700px; height: 500px; content: ""; background: radial-gradient(circle, rgba(64, 216, 247, 0.18), transparent 65%); transform: translateX(-50%); }
.page-cta-grid { -webkit-mask-image: radial-gradient(circle at center, black, transparent 70%); mask-image: radial-gradient(circle at center, black, transparent 70%); }
.page-cta-inner { position: relative; z-index: 2; max-width: 900px; }
.page-cta .eyebrow { justify-content: center; }
.page-cta h2 { font-size: clamp(2.5rem, 4.5vw, 4.4rem); }
.page-cta p { max-width: 650px; margin: 0 auto 34px; }

/* IT page */
.scope-microcopy { display: flex; align-items: center; gap: 9px; margin-top: 26px; color: #9eb0c4 !important; font-size: 0.72rem; }
.scope-microcopy span { display: grid; width: 18px; height: 18px; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 0.6rem; }

.it-visual { position: relative; min-height: 510px; }
.it-visual::before { position: absolute; inset: 20px -60px; content: ""; background: radial-gradient(circle, rgba(64, 216, 247, 0.18), transparent 60%); filter: blur(20px); }
.it-orbit { position: absolute; top: 50%; left: 50%; border: 1px dashed rgba(90, 168, 232, 0.24); border-radius: 50%; transform: translate(-50%, -50%); }
.orbit-one { width: 310px; height: 310px; }
.orbit-two { width: 455px; height: 455px; }
.it-core { position: absolute; z-index: 3; top: 50%; left: 50%; display: flex; align-items: center; justify-content: center; width: 170px; height: 170px; flex-direction: column; background: linear-gradient(145deg, rgba(20, 48, 76, 0.97), rgba(11, 27, 46, 0.97)); border: 1px solid rgba(64, 216, 247, 0.34); border-radius: 50%; box-shadow: 0 0 60px rgba(64, 216, 247, 0.15); transform: translate(-50%, -50%); }
.it-core .mini-mark { margin-bottom: 13px; }
.it-core strong { color: var(--white); font-size: 0.79rem; }
.it-core small { color: var(--cyan); font-size: 0.59rem; }
.it-node { position: absolute; z-index: 4; display: grid; width: 80px; height: 80px; place-items: center; color: var(--white); background: rgba(14, 31, 51, 0.94); border: 1px solid rgba(103, 158, 213, 0.28); border-radius: 18px; box-shadow: 0 20px 45px rgba(0, 4, 15, 0.32); }
.it-node span { color: var(--cyan); font-size: 1.15rem; line-height: 1; }
.it-node small { color: #a9b7c8; font-size: 0.58rem; }
.it-node-a { top: 25px; left: 40%; }
.it-node-b { top: 175px; right: -15px; }
.it-node-c { right: 82px; bottom: 15px; }
.it-node-d { bottom: 70px; left: 0; }
.it-status { position: absolute; z-index: 5; right: -10px; bottom: 100px; display: flex; align-items: center; gap: 11px; padding: 12px 15px; background: rgba(13, 30, 50, 0.94); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 10px; box-shadow: 0 18px 40px rgba(0, 4, 15, 0.3); }
.it-status > span { display: grid; }
.it-status strong { color: var(--white); font-size: 0.65rem; }
.it-status small { color: #90a1b7; font-size: 0.55rem; }

.it-services-section { background: var(--paper); }
.it-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.it-service-card { position: relative; min-height: 430px; padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 200ms ease, box-shadow 200ms ease; }
.it-service-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.it-service-card .service-number { position: absolute; top: 30px; right: 30px; }
.line-icon { position: relative; width: 60px; height: 60px; margin: 40px 0 30px; color: var(--blue); background: #edf4ff; border: 1px solid #d5e4fb; border-radius: 16px; }
.cloud-line-icon::before { position: absolute; top: 24px; left: 15px; width: 30px; height: 19px; content: ""; border: 2px solid currentColor; border-radius: 12px; }
.cloud-line-icon::after { position: absolute; top: 18px; left: 24px; width: 16px; height: 16px; content: ""; background: #edf4ff; border: 2px solid currentColor; border-bottom: 0; border-radius: 50% 50% 0 0; }
.access-line-icon i:first-child { position: absolute; top: 14px; left: 22px; width: 16px; height: 16px; border: 2px solid currentColor; border-radius: 50%; }
.access-line-icon i:nth-child(2) { position: absolute; bottom: 13px; left: 14px; width: 32px; height: 16px; border: 2px solid currentColor; border-radius: 16px 16px 5px 5px; }
.support-line-icon i:first-child { position: absolute; inset: 14px; border: 2px solid currentColor; border-radius: 50%; }
.support-line-icon i:nth-child(2) { position: absolute; right: 11px; bottom: 11px; width: 17px; height: 17px; background: #edf4ff; border: 2px solid currentColor; border-radius: 50%; }
.process-line-icon i { position: absolute; width: 12px; height: 12px; border: 2px solid currentColor; border-radius: 3px; }
.process-line-icon i:first-child { top: 13px; left: 13px; }
.process-line-icon i:nth-child(2) { top: 25px; right: 12px; }
.process-line-icon i:nth-child(3) { bottom: 12px; left: 17px; }
.it-service-card h3 { margin-bottom: 15px; }
.it-service-card > p { color: var(--muted); font-size: 0.89rem; }
.it-service-card .check-list { margin-bottom: 0; columns: 2; column-gap: 15px; }
.it-service-card .check-list li { break-inside: avoid; }

.scope-section { background: var(--white); }
.scope-card { padding: 64px; background: var(--paper-blue); border: 1px solid #d3e1ed; border-radius: var(--radius-lg); }
.scope-heading { display: grid; margin-bottom: 50px; grid-template-columns: 180px 1fr; gap: 30px; }
.scope-heading > span { color: var(--cyan-dark); font-size: 0.73rem; font-weight: 750; letter-spacing: 0.11em; text-transform: uppercase; }
.scope-heading h2 { max-width: 750px; margin: 0; }
.scope-columns { display: grid; margin-bottom: 30px; grid-template-columns: 1fr 1fr; gap: 18px; }
.scope-columns > div { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.scope-columns h3 { font-size: 1rem; }
.scope-columns h3 span { display: inline-grid; width: 25px; height: 25px; margin-right: 8px; place-items: center; border-radius: 50%; font-size: 0.75rem; }
.scope-yes h3 span { color: #116b45; background: #dcf6e8; }
.scope-no h3 span { color: #9d3043; background: #ffe7eb; }
.scope-columns ul { padding-left: 20px; margin: 18px 0 0; color: var(--muted); font-size: 0.83rem; }
.scope-card > p { margin: 0; color: var(--muted); font-size: 0.82rem; text-align: center; }

.support-flow-section { overflow: hidden; }
.support-flow-layout { display: grid; grid-template-columns: minmax(340px, 0.8fr) minmax(440px, 1.2fr); gap: 110px; }
.support-flow-layout .section-heading > p:not(.eyebrow) { margin-bottom: 32px; }
.support-flow { padding: 0; margin: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.support-flow li { display: grid; padding: 30px 0; grid-template-columns: 52px 1fr; gap: 16px; border-bottom: 1px solid var(--line-dark); }
.support-flow li > span { color: var(--cyan); font: 0.66rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.support-flow h3 { margin-bottom: 8px; font-size: 1.1rem; }
.support-flow p { margin: 0; font-size: 0.82rem; }

.consultation-section { background: var(--white); }
.consultation-layout { display: grid; grid-template-columns: minmax(320px, 0.8fr) minmax(470px, 1.2fr); gap: 110px; }
.consultation-steps { display: grid; gap: 14px; }
.consultation-steps article { display: grid; padding: 26px; grid-template-columns: 54px 1fr; gap: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 14px; }
.consultation-steps article > span { display: grid; width: 42px; height: 42px; place-items: center; color: var(--cyan-dark); background: #e2f7fb; border-radius: 12px; font: 0.74rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.consultation-steps h3 { margin-bottom: 7px; font-size: 1.08rem; }
.consultation-steps p { margin: 0; color: var(--muted); font-size: 0.82rem; }
.it-faq-section { background: var(--paper); }

/* Legal pages */
.legal-hero {
    position: relative;
    min-height: 470px;
    padding: 160px 0 90px;
    overflow: hidden;
}

.legal-hero-inner { position: relative; z-index: 2; max-width: var(--container); }
.legal-hero-inner h1 { margin-bottom: 20px; font-size: clamp(3.4rem, 7vw, 6.6rem); }
.legal-hero-inner > p:not(.eyebrow) { max-width: 690px; color: var(--muted-dark); font-size: 1.08rem; }
.legal-hero-inner > small { display: block; margin-top: 25px; color: var(--muted-dark); font-size: 0.68rem; }

.legal-section { background: var(--white); }
.legal-layout { display: grid; align-items: start; grid-template-columns: minmax(230px, 0.55fr) minmax(540px, 1.45fr); gap: 110px; }
.legal-aside { position: sticky; top: 120px; display: grid; padding: 30px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; }
.legal-aside-label { margin-bottom: 20px; color: var(--cyan-dark); font-size: 0.68rem; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; }
.legal-aside h2 { margin-bottom: 15px; font-size: 1.35rem; }
.legal-aside a,
.legal-aside address { color: var(--muted); font-size: 0.78rem; font-style: normal; }
.legal-aside > a { display: flex; align-items: center; min-height: 24px; }
.legal-aside a:hover { color: var(--cyan-dark); }
.legal-aside address { margin-top: 15px; }
.privacy-index nav { display: grid; gap: 10px; }
.privacy-index nav a { padding-bottom: 9px; border-bottom: 1px solid var(--line); }

.legal-content { max-width: 790px; }
.legal-content section { padding-bottom: 42px; margin-bottom: 42px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.legal-content h2 { margin-bottom: 20px; font-size: clamp(1.7rem, 2.8vw, 2.25rem); }
.legal-content h3 { margin: 26px 0 10px; font-size: 1.05rem; }
.legal-content p,
.legal-content li { color: var(--muted); font-size: 0.9rem; }
.legal-content a { color: var(--cyan-dark); text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul { padding-left: 22px; }
.legal-content li + li { margin-top: 9px; }

/* Help page */
.help-hero { min-height: 550px; }
.help-hero h1 { font-size: clamp(3.2rem, 6vw, 5.8rem); }
.help-intro-section { background: var(--paper); }
.help-intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.security-card,
.help-download { padding: 42px; border-radius: var(--radius); }
.security-card { display: grid; grid-template-columns: 60px 1fr; gap: 22px; color: var(--white); background: var(--ink-soft); }
.security-card h2 { color: var(--white); font-size: 2rem; }
.security-card .check-list li { color: var(--muted-dark); }
.security-card .check-list li::before { border-color: var(--lime); }
.security-icon { display: grid; width: 54px; height: 54px; place-items: center; color: var(--ink); background: var(--lime); border-radius: 16px; font-size: 1.4rem; }
.help-download { background: var(--white); border: 1px solid var(--line); }
.help-download h2 { font-size: 2rem; }
.help-download > p:not(.eyebrow) { color: var(--muted); }
.help-download .button { margin-top: 12px; }
.help-download > small { display: block; margin-top: 12px; color: var(--muted); font-size: 0.65rem; }
.help-download code { font-family: ui-monospace, "SFMono-Regular", Consolas, monospace; font-size: 0.9em; overflow-wrap: anywhere; }

.help-steps-section { background: var(--white); }
.help-steps { max-width: 880px; padding: 0; margin: 0 auto; list-style: none; }
.help-step { display: grid; padding: 45px 0; grid-template-columns: 80px 1fr; gap: 34px; border-top: 1px solid var(--line); }
.help-step:last-child { border-bottom: 1px solid var(--line); }
.help-number { display: grid; width: 58px; height: 58px; place-items: center; color: var(--cyan-dark); background: var(--paper-blue); border: 1px solid #d2e4ef; border-radius: 50%; font: 0.74rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.help-step-content h3 { margin-bottom: 12px; font-size: 1.4rem; }
.help-step-content > p { color: var(--muted); }
.help-actions { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.help-actions a { color: var(--cyan-dark); font-size: 0.78rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.file-mock,
.app-mock,
.credentials-mock,
.finish-mock { display: flex; align-items: center; gap: 14px; max-width: 520px; padding: 16px; margin-top: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; }
.file-mock > span { display: grid; width: 43px; height: 43px; place-items: center; color: var(--white); background: var(--violet); border-radius: 9px; font-size: 0.62rem; font-weight: 800; }
.file-mock div,
.app-mock div,
.finish-mock div { display: grid; flex: 1; }
.file-mock strong,
.app-mock strong,
.finish-mock strong { color: var(--ink); font-size: 0.78rem; }
.file-mock small,
.app-mock small,
.finish-mock small { color: var(--muted); font-size: 0.65rem; }
.file-mock > i { color: var(--cyan-dark); font-style: normal; }
.instruction-note { display: grid; max-width: 600px; padding: 16px 18px; margin-top: 22px; grid-template-columns: 55px 1fr; gap: 12px; color: #536477; background: #eef9fb; border-left: 3px solid var(--cyan-dark); border-radius: 0 9px 9px 0; font-size: 0.76rem; }
.instruction-note strong { color: var(--cyan-dark); }
.app-mock .mini-mark { width: 39px; height: 39px; }
.app-mock > i { padding: 6px 10px; color: var(--ink); background: var(--cyan); border-radius: 5px; font-size: 0.62rem; font-style: normal; }
.credentials-mock { display: grid; grid-template-columns: 9px 1fr 1fr; }
.credentials-mock > i { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 8px rgba(184, 243, 61, 0.6); }
.credentials-mock > span { display: grid; }
.credentials-mock small { color: var(--muted); font-size: 0.58rem; }
.credentials-mock strong { color: var(--ink); font: 0.75rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.small-note { margin-top: 12px; font-size: 0.72rem; }
.finish-mock > span { display: grid; width: 42px; height: 42px; place-items: center; color: #116b45; background: #dff7e9; border-radius: 50%; }
.help-contact-section { padding: 95px 0; }
.help-contact-card { display: flex; align-items: center; justify-content: space-between; gap: 70px; }
.help-contact-card > div:first-child { max-width: 700px; }
.help-contact-card h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }

/* Responsive */
@media (max-width: 1120px) {
    .site-nav { gap: 20px; }
    .hero-layout,
    .subhero-layout { grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr); gap: 40px; }
    .browser-card { right: -100px; transform: scale(0.9) rotateY(-6deg) rotateX(2deg); }
    .floating-system { right: -25px; }
    .dev-window-main { right: -70px; transform: scale(0.9) rotate(2deg); }
    .dev-phone { right: -30px; }
    .detail-service { padding: 55px 50px 55px 70px; gap: 45px; }
    .about-layout,
    .contact-layout { gap: 65px; }
    .footer-grid { gap: 55px; }
}

@media (max-width: 960px) {
    :root { --header-height: 74px; }
    .container { width: min(calc(100% - 36px), var(--container)); }
    .section { padding: 100px 0; }
    .menu-toggle { display: block; }
    .site-nav {
        position: fixed;
        z-index: -1;
        top: 0;
        right: 0;
        left: 0;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        height: 100dvh;
        min-height: 0;
        padding: 110px 26px 40px;
        flex-direction: column;
        gap: 7px;
        overflow-y: auto;
        overscroll-behavior: contain;
        visibility: hidden;
        background: rgba(7, 17, 31, 0.98);
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
    }
    .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
    .no-js .menu-toggle { display: none; }
    .no-js .site-nav { position: static; z-index: auto; width: 100%; height: auto; min-height: 0; padding: 0; flex-direction: row; flex-wrap: wrap; visibility: visible; overflow: visible; background: transparent; opacity: 1; transform: none; }
    .no-js .header-inner { height: auto; min-height: var(--header-height); padding-block: 14px; flex-wrap: wrap; }
    .no-js .site-header { position: relative; height: auto; min-height: var(--header-height); background: var(--ink); }
    .site-nav > a:not(.button) { padding: 15px 0; font-size: 1.35rem; }
    .site-nav .button { margin-top: 15px; }
    .hero { padding-top: 135px; }
    .hero-layout,
    .subhero-layout { grid-template-columns: 1fr; }
    .hero-copy { max-width: 760px; }
    .hero-visual { width: min(100%, 650px); min-height: 520px; margin: 10px auto 0; }
    .browser-card { right: -20px; transform: scale(0.95) rotateY(-4deg); }
    .hero-bottom { margin-top: 15px; }
    .split-intro,
    .needs-layout,
    .about-layout,
    .faq-layout,
    .principles-layout,
    .contact-layout,
    .support-flow-layout,
    .consultation-layout,
    .legal-layout { grid-template-columns: minmax(0, 1fr); gap: 60px; }
    .legal-aside,
    .legal-content { min-width: 0; overflow-wrap: anywhere; }
    .section-heading-row { align-items: start; flex-direction: column; gap: 18px; }
    .section-heading-row > p { max-width: 650px; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .service-card { min-height: 480px; }
    .service-card:nth-child(3) { grid-column: 1 / -1; min-height: auto; }
    .service-card:nth-child(3) .service-icon { margin-top: 35px; }
    .needs-layout .section-heading,
    .principles-layout .section-heading,
    .legal-aside { position: static; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-step { min-height: 250px; }
    .process-connector { display: none; }
    .portrait-wrap { width: min(100%, 520px); margin: 0 auto; }
    .contact-copy { max-width: 700px; }
    .contact-details { width: min(100%, 720px); }
    .subhero { padding-top: 135px; }
    .subhero-layout { min-height: auto; }
    .development-visual,
    .it-visual { width: min(100%, 600px); margin: 0 auto; }
    .anchor-nav { flex-wrap: wrap; padding: 16px 0; }
    .detail-service,
    .detail-service-reverse { grid-template-columns: 1fr; padding: 75px 45px 45px; }
    .detail-service-reverse .detail-copy,
    .detail-service-reverse .detail-preview { grid-column: auto; grid-row: auto; }
    .detail-preview { width: min(100%, 520px); margin-inline: auto; }
    .usecase-grid { grid-template-columns: 1fr 1fr; }
    .it-service-card .check-list { columns: 1; }
    .scope-heading { grid-template-columns: 1fr; }
    .help-intro-layout { grid-template-columns: 1fr; }
    .help-contact-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 78px 0; }
    h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
    h2 { font-size: clamp(2rem, 9vw, 3rem); }
    .page-cta h2 { font-size: clamp(1.9rem, 9vw, 3rem); }
    .brand-logo { width: 205px; }
    .site-footer .brand-logo { width: min(260px, 100%); }
    .hero { padding-top: 120px; }
    .hero-copy h1 { font-size: clamp(2.8rem, 13vw, 4.1rem); }
    .subhero-copy h1 { font-size: clamp(2.35rem, 11vw, 3rem); }
    .hero-lead { font-size: 1rem; }
    .button-row { align-items: stretch; flex-direction: column; gap: 14px; }
    .button-row .button { width: 100%; }
    .button-row .text-link { align-self: center; }
    .hero-facts { display: grid; }
    .hero-visual { min-height: 390px; }
    .browser-card { top: 25px; right: 50%; width: 560px; transform: translateX(50%) scale(0.63); transform-origin: top center; }
    .floating-code { top: -10px; left: 0; transform: scale(0.82); }
    .floating-system { right: -3px; bottom: 10px; transform: scale(0.82); }
    .hero-bottom { align-items: flex-start; padding-bottom: 28px; flex-direction: column; gap: 22px; }
    .hero-bottom div { flex-wrap: wrap; gap: 10px 13px; }
    .hero-bottom i { display: none; }
    .split-intro { gap: 38px; }
    .section-heading-row { margin-bottom: 42px; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card,
    .service-card:nth-child(3) { min-height: auto; padding: 28px; grid-column: auto; }
    .service-card .service-icon { margin: 32px 0 26px; }
    .service-compact { align-items: stretch; flex-direction: column; gap: 12px; }
    .service-compact > a { width: 100%; }
    .needs-layout { gap: 38px; }
    .need-item { grid-template-columns: 38px 1fr 20px; padding: 22px 0; }
    .process-grid { grid-template-columns: 1fr; gap: 28px; }
    .process-step { min-height: auto; padding: 22px 22px 25px; }
    .process-connector { top: -26px; left: calc(50% - 17px); display: grid; transform: rotate(90deg); }
    .process-step h3 { margin-top: 26px; }
    .portrait-wrap { min-height: 480px; }
    .portrait-wrap img { right: auto; left: 50%; width: auto; height: 100%; }
    .about-values > div { grid-template-columns: 30px 1fr; }
    .about-values p { grid-column: 2; }
    .faq-layout { gap: 30px; }
    .faq-list summary { padding: 20px 0; font-size: 0.93rem; }
    .faq-list details p { padding-right: 20px; }
    .contact-section { padding: 82px 0; }
    .contact-layout { gap: 42px; }
    .contact-details { padding: 12px; border-radius: 20px; }
    .contact-method { padding: 14px; grid-template-columns: 44px minmax(0, 1fr) auto; gap: 12px; }
    .contact-method-icon { width: 44px; height: 44px; }
    .footer-grid { grid-template-columns: 1fr; gap: 42px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
    .subhero { min-height: auto; padding-top: 118px; }
    .subhero-layout { gap: 25px; }
    .development-visual { min-height: 380px; }
    .dev-window-main { top: 35px; right: 50%; transform: translateX(50%) scale(0.68) rotate(2deg); transform-origin: top center; }
    .dev-code-card { bottom: 8px; left: -7px; transform: scale(0.78); transform-origin: bottom left; }
    .dev-phone { right: -4px; bottom: -4px; transform: scale(0.73) rotate(5deg); transform-origin: bottom right; }
    .dev-badge { left: 0; transform: scale(0.85); transform-origin: top left; }
    .anchor-nav { justify-content: flex-start; }
    .anchor-nav a { padding: 7px 12px; }
    .detail-service,
    .detail-service-reverse { min-height: auto; padding: 70px 22px 28px; gap: 35px; }
    .detail-number { top: 23px; left: 23px; }
    .detail-preview { min-height: 270px; }
    .website-preview { min-height: 290px; }
    .phones-preview { min-height: 330px; }
    .phone-back { left: 4%; transform: scale(0.86) rotate(-8deg); transform-origin: top left; }
    .phone-front { right: 3%; transform: scale(0.86) rotate(5deg); transform-origin: bottom right; }
    .usecase-grid { grid-template-columns: 1fr; }
    .usecase-grid article { min-height: 230px; }
    .usecase-grid h3 { margin-top: 45px; }
    .page-cta { padding: 90px 0; }
    .it-visual { min-height: 390px; transform: scale(0.84); transform-origin: top center; }
    .it-service-grid,
    .scope-columns { grid-template-columns: 1fr; }
    .it-service-card { min-height: auto; padding: 28px; }
    .scope-card { padding: 30px 20px; }
    .scope-heading { margin-bottom: 30px; }
    .consultation-layout,
    .support-flow-layout { gap: 40px; }
    .legal-hero { min-height: 420px; padding-top: 130px; }
    .legal-hero-inner h1,
    .help-hero h1 { font-size: clamp(2.55rem, 12vw, 3.2rem); }
    .legal-layout { gap: 48px; }
    .legal-aside { padding: 24px; }
    .help-intro-layout { gap: 14px; }
    .security-card,
    .help-download { padding: 28px 22px; }
    .security-card { grid-template-columns: 1fr; }
    .help-step { grid-template-columns: 1fr; gap: 15px; }
    .help-number { width: 48px; height: 48px; }
    .credentials-mock { grid-template-columns: 8px 1fr; }
    .credentials-mock > span:last-child { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
    .reveal { opacity: 1; transform: none; }
}

@media print {
    .site-header,
    .site-footer,
    .page-cta { display: none !important; }
    body { color: #000; background: #fff; }
    .section,
    .legal-section { padding: 30px 0; }
    .legal-hero { min-height: 0; padding: 40px 0; color: #000; background: #fff; }
    .legal-hero h1,
    .legal-hero p { color: #000 !important; }
    .legal-layout { display: block; }
    .legal-aside { display: none; }
    .contact-section { color: #000; background: #fff; }
    .contact-grid,
    .contact-section::after { display: none; }
    .contact-copy h2,
    .contact-copy p,
    .contact-method-copy strong { color: #000 !important; }
    .contact-details { background: #fff; border: 1px solid #aaa; box-shadow: none; }
}
