:root {
    --bg: #061016;
    --bg-2: #0b1418;
    --surface: rgba(255,255,255,0.07);
    --surface-strong: rgba(255,255,255,0.12);
    --surface-solid: #101b20;
    --line: rgba(255,255,255,0.13);
    --line-strong: rgba(255,255,255,0.22);
    --text: #eef8fb;
    --text-muted: #a9bdc6;
    --text-dim: #71838d;
    --border: rgba(255,255,255,0.14);
    --border-hi: rgba(255,255,255,0.24);
    --primary: #00a7ff;
    --secondary: #66ffd5;
    --accent: #ff8a3d;
    --danger: #ff5b68;
    --success: #66ffd5;
    --radius: 22px;
    --radius-sm: 12px;
    --shadow: 0 30px 90px rgba(0,0,0,0.42);
    --topbar-height: 34px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
    font-family: var(--font-body, Inter, system-ui, sans-serif);
    background: linear-gradient(180deg, #061016 0%, #0b1418 42%, #061016 100%);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4, h5 {
    font-family: var(--font-display, Inter, system-ui, sans-serif);
    color: var(--text);
    line-height: 1.02;
    letter-spacing: 0;
}

.site-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 90;
    opacity: .09;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

.container, .footer-inner, .footer-bottom {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 96;
    min-height: var(--topbar-height);
    background: #0e2229;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    line-height: 1.2;
}
.topbar span {
    min-width: 0;
    max-width: calc(100% - 110px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.topbar a { color: var(--secondary); flex: 0 0 auto; font-weight: 800; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
    background: linear-gradient(180deg, rgba(5,12,17,.92), rgba(5,12,17,.22));
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
}
body.has-announcement .site-header { top: var(--topbar-height); }
.nav-shell {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 26px;
    color: var(--text);
    white-space: nowrap;
}
.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--primary) 62%, var(--accent));
    box-shadow: 0 16px 45px rgba(0,167,255,.3);
    position: relative;
    overflow: hidden;
}
.brand-mark:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 60px;
    top: -12px;
    left: 5px;
    transform: rotate(35deg);
    background: rgba(255,255,255,.55);
    animation: shine 4s infinite;
}
@keyframes shine {
    0%, 35% { transform: translateX(-44px) rotate(35deg); }
    65%, 100% { transform: translateX(56px) rotate(35deg); }
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 750;
    color: #d7eaf2;
}
.nav-links a {
    padding: 11px 13px;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease;
}
.nav-links a:hover,
.nav-links a[aria-expanded="true"] { background: rgba(255,255,255,.09); color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.phone-link { color: var(--text-muted); font-size: 13px; font-weight: 800; }

.mega-menu {
    position: absolute;
    top: 76px;
    left: 50%;
    width: min(1060px, calc(100vw - 48px));
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7,16,22,.96);
    box-shadow: var(--shadow);
}
.nav-shell:hover .mega-menu,
.nav-shell.is-mega-open .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-visual {
    min-height: 230px;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(7,16,22,.08), rgba(7,16,22,.82)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80") center/cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.mega-visual h3 { font-size: 24px; margin-bottom: 8px; }
.mega-visual p, .mega-list a { color: rgba(255,255,255,.75); font-size: 14px; }
.mega-list h4 { font-size: 14px; margin-bottom: 12px; color: #fff; }
.mega-list a {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.mega-list a:hover { color: #fff; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 19px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    border: 1px solid var(--line);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 55px rgba(89,230,255,.18); }
.btn-light, .btn-primary { background: #fff; color: #061016; }
.btn-dark, .btn-outline { background: rgba(255,255,255,.07); color: #fff; }

.hero {
    min-height: 100vh;
    padding: 148px 4vw 70px;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 42px;
    align-items: center;
    position: relative;
}
.hero:after {
    content: "DIGITAL GROWTH";
    position: absolute;
    left: 4vw;
    bottom: 8px;
    font-size: 118px;
    line-height: .8;
    font-weight: 900;
    color: rgba(255,255,255,.035);
    white-space: nowrap;
    pointer-events: none;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    padding: 10px 14px;
    color: #d9faff;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 24px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 22px var(--secondary);
}
.hero h1, .subhero h1, .service-hero h1, .seo-hero h1, .contact-hero h1 {
    font-size: 88px;
    font-weight: 900;
    max-width: 980px;
}
.grad {
    background: linear-gradient(90deg, #fff 0%, var(--primary) 46%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lead, .hero p, .subhero p, .service-hero p, .seo-hero p, .contact-hero p {
    margin-top: 26px;
    color: #bad0da;
    font-size: 20px;
    line-height: 1.75;
    max-width: 720px;
}
.hero-actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.trust { display: flex; gap: 26px; margin-top: 44px; flex-wrap: wrap; }
.trust b { font-size: 34px; line-height: 1; display: block; }
.trust span { color: var(--text-muted); font-size: 13px; font-weight: 800; }

.stage { min-height: 620px; position: relative; perspective: 1200px; }
.photo-stack { position: absolute; inset: 0; animation: floatStack 7s ease-in-out infinite; }
@keyframes floatStack { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.main-photo, .side-photo {
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.main-photo {
    right: 2%;
    top: 4%;
    width: 78%;
    height: 72%;
    border-radius: 30px;
    transform: rotate(-3deg);
}
.side-photo {
    left: 2%;
    bottom: 8%;
    width: 48%;
    height: 38%;
    border-radius: 26px;
    transform: rotate(6deg);
    z-index: 2;
}
.main-photo img, .side-photo img { width: 100%; height: 100%; object-fit: cover; }
.main-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.68));
}
.panel-card {
    position: absolute;
    right: 0;
    bottom: 3%;
    width: min(360px, 72%);
    padding: 20px;
    border-radius: 24px;
    background: rgba(7,16,22,.82);
    border: 1px solid var(--line);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    z-index: 4;
}
.panel-top, .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.chip { font-size: 12px; color: #061016; background: var(--secondary); padding: 7px 10px; border-radius: 999px; font-weight: 900; }
.bar { height: 9px; border-radius: 30px; background: rgba(255,255,255,.1); margin: 16px 0; overflow: hidden; }
.bar i { display: block; height: 100%; width: 76%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), var(--secondary)); animation: load 3.2s ease-in-out infinite; }
@keyframes load { 0%,100% { width: 58%; } 50% { width: 91%; } }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.metric { padding: 14px; border-radius: 14px; background: rgba(255,255,255,.07); }
.metric b { font-size: 22px; display: block; }
.metric span { display: block; color: var(--text-muted); font-size: 11px; margin-top: 4px; }

.section { padding: 104px 4vw; position: relative; }
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin: 0 0 48px;
}
.kicker {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-head h2, .story h2, .cta h2 {
    font-size: 62px;
    font-weight: 900;
    max-width: 920px;
}
.section-head p, .story p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 510px;
}

.marquee {
    border-block: 1px solid rgba(255,255,255,.09);
    overflow: hidden;
    background: rgba(255,255,255,.035);
}
.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    white-space: nowrap;
    animation: mar 24s linear infinite;
    padding: 24px 0;
}
.marquee span {
    font-size: 56px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.38);
}
@keyframes mar { to { transform: translateX(-50%); } }

.services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.services-wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service {
    min-height: 420px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--line);
    background: #111;
    transition: transform .35s ease;
}
.service:hover { transform: translateY(-10px); }
.service img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.service:hover img { transform: scale(1.06); }
.service:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.84));
}
.service-content {
    position: absolute;
    inset: auto 0 0;
    padding: 25px;
    z-index: 2;
}
.service small, .project-info small, .reference-body span, .mobile-card span, .mini-card span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}
.service h3 { font-size: 25px; margin: 13px 0 10px; }
.service p { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.62; }
.service a { display: inline-flex; margin-top: 14px; color: var(--secondary); font-weight: 900; }

.split {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 52px;
    align-items: center;
}
.big-image {
    height: 680px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    position: relative;
}
.big-image img { width: 100%; height: 100%; object-fit: cover; }
.big-image:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,16,22,.75), transparent 45%); }
.floating-note {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(7,16,22,.78);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
    z-index: 2;
}
.floating-note b { font-size: 26px; display: block; }
.floating-note p { margin-top: 8px; color: #b9ccd5; }
.story p { margin-top: 24px; }
.story-list { margin-top: 32px; display: grid; gap: 14px; }
.story-item {
    display: flex;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    border: 1px solid var(--line);
}
.story-item i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #061016;
    font-style: normal;
    font-weight: 900;
    flex: 0 0 auto;
}
.story-item span { display: block; margin-top: 4px; color: var(--text-muted); font-size: 14px; }

.projects {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    gap: 20px;
}
.project {
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--line);
    background: #111;
    box-shadow: 0 22px 70px rgba(0,0,0,.24);
}
.project.tall { min-height: 620px; }
.project img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .85s ease; }
.project:hover img { transform: scale(1.06); }
.project:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.82)); }
.project-info { position: absolute; inset: auto 0 0; padding: 28px; z-index: 2; }
.project-info h3 { font-size: 33px; margin-top: 12px; }
.project-info p { color: #c7d6dd; margin-top: 10px; line-height: 1.6; }
.logo-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}
.logo-strip a {
    position: relative;
    min-height: 86px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.055);
    display: grid;
    place-items: center;
    text-align: center;
    color: rgba(255,255,255,.76);
    font-weight: 900;
    padding: 14px;
    isolation: isolate;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}
.logo-strip a:hover,
.logo-strip a:focus-visible {
    z-index: 30;
    color: #fff;
    border-color: rgba(89,230,255,.42);
    background: rgba(255,255,255,.09);
    transform: translateY(-4px);
}
.logo-title {
    position: relative;
    z-index: 2;
}
.logo-preview {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 14px);
    width: min(380px, 74vw);
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0,0,0,.48);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px) scale(.96);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.logo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.logo-strip a:nth-child(-n+5) .logo-preview {
    top: calc(100% + 14px);
    bottom: auto;
    transform: translate(-50%, -10px) scale(.96);
}
.logo-strip a:hover .logo-preview,
.logo-strip a:focus-visible .logo-preview {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}

.process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.step {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,.055);
    border: 1px solid var(--line);
    min-height: 250px;
    position: relative;
    overflow: hidden;
}
.step:before {
    content: attr(data-no);
    position: absolute;
    right: 18px;
    top: 8px;
    font-size: 82px;
    line-height: 1;
    font-weight: 900;
    color: rgba(255,255,255,.045);
}
.step h3 { font-size: 23px; margin-top: 78px; }
.step p { margin-top: 12px; color: var(--text-muted); font-size: 14px; }

.subhero, .service-hero, .seo-hero, .contact-hero {
    padding: 140px 4vw 72px;
    min-height: 560px;
    display: grid;
    align-items: center;
}
.subhero-inner { max-width: 940px; }
.service-hero, .seo-hero, .contact-hero {
    grid-template-columns: 1fr .9fr;
    gap: 46px;
}

.static-hero {
    min-height: 690px;
    padding: 142px 4vw 64px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 44px;
}
.static-hero-copy h1 {
    max-width: 820px;
    font-size: 78px;
    font-weight: 900;
}
.static-hero-copy p {
    max-width: 680px;
    margin-top: 24px;
    color: #bad0da;
    font-size: 19px;
    line-height: 1.75;
}
.static-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 650px;
    margin-top: 34px;
}
.static-stat-row div {
    min-height: 92px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.065);
}
.static-stat-row strong {
    display: block;
    color: #fff;
    font-size: 26px;
    line-height: 1;
}
.static-stat-row span {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 800;
}
.static-hero-media {
    position: relative;
    min-height: 520px;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #101b20;
}
.static-hero-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,12,17,.02), rgba(5,12,17,.34));
    pointer-events: none;
}
.static-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}
.static-page-body { padding-top: 54px; }
.static-page-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .55fr);
    align-items: start;
    gap: 34px;
    max-width: 1320px;
    margin: 0 auto;
}
.static-section-grid {
    display: grid;
    gap: 16px;
}
.static-info-card {
    min-height: 210px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.055);
}
.static-info-card h2 {
    font-size: 34px;
    margin-bottom: 14px;
}
.static-info-card p {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.78;
}
.static-link-panel {
    position: sticky;
    top: 130px;
}
.static-link-panel h2 {
    max-width: 420px;
    margin: 12px 0 18px;
    font-size: 34px;
}
.static-link-grid {
    display: grid;
    gap: 10px;
}
.static-link-grid a {
    display: block;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.065);
    transition: transform .22s ease, background .22s ease;
}
.static-link-grid a:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.105);
}
.static-link-grid strong {
    display: block;
    color: #fff;
    font-size: 16px;
}
.static-link-grid span {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
}
.service-hero-media, .seo-hero-card, .contact-form, .feature-panel {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.07);
    box-shadow: var(--shadow);
    border-radius: 28px;
}
.service-hero-media { overflow: hidden; min-height: 520px; }
.service-hero-media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.feature-panel { padding: 32px; }
.feature-panel h3 { font-size: 30px; margin-bottom: 22px; }
.feature-panel ul { display: grid; gap: 12px; list-style: none; }
.feature-panel li {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.07);
    color: var(--text-muted);
}

.seo-band {
    background: rgba(255,255,255,.035);
    border-block: 1px solid rgba(255,255,255,.07);
}
.seo-quick-grid, .mini-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.seo-quick-grid a, .mini-card {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.065);
    border-radius: 18px;
    padding: 18px;
    color: #d7eaf2;
    font-weight: 850;
    transition: transform .2s ease, background .2s ease;
}
.seo-quick-grid a:hover, .mini-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.1); }
.mini-card strong { display: block; font-size: 21px; margin: 12px 0 8px; color: #fff; }
.mini-card p { color: var(--text-muted); font-size: 14px; }

.seo-hero-card {
    padding: 26px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.seo-hero-card div {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.07);
}
.seo-hero-card strong { font-size: 30px; display: block; }
.seo-hero-card span { color: var(--text-muted); font-weight: 800; }
.seo-hero-visual {
    display: block;
    padding: 0;
    overflow: hidden;
}
.seo-hero-visual img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}
.seo-hero-visual > .seo-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    background: transparent;
    border-radius: 0;
}
.seo-hero-visual .seo-stat-grid div {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.075);
}
.breadcrumbs { display: flex; gap: 9px; flex-wrap: wrap; color: var(--text-muted); font-size: 13px; margin-bottom: 18px; }
.breadcrumbs a { color: var(--secondary); }

.province-list { display: grid; gap: 12px; }
.province-list details {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    overflow: hidden;
}
.province-list summary {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
}
.province-list summary::-webkit-details-marker { display: none; }
.province-list summary span { font-size: 20px; font-weight: 900; }
.province-list summary a { color: var(--secondary); font-weight: 900; }
.province-list summary small { color: var(--text-muted); }
.district-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 18px 18px;
}
.district-links a {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #d7eaf2;
    font-size: 13px;
}

.faq-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.faq-item {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
    border-radius: 18px;
    overflow: hidden;
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    padding: 18px;
    font-weight: 900;
}
.faq-q i {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--secondary);
    color: #061016;
    font-style: normal;
    flex: 0 0 auto;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .24s ease; }
.faq-a p { padding: 0 18px 18px; color: var(--text-muted); }
.faq-item.is-open .faq-a { max-height: 320px; }

.project-grid-full {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}
.reference-card {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
    border-radius: 26px;
    overflow: hidden;
    display: grid;
    grid-template-columns: .92fr 1fr;
    min-height: 360px;
}
.reference-media { min-height: 360px; background: #fff; }
.reference-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.reference-body { padding: 28px; align-self: center; }
.reference-body h2 { font-size: 34px; margin: 14px 0 12px; }
.reference-body p { color: var(--text-muted); }
.reference-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 18px;
    padding: 11px 16px;
    border-radius: 999px;
    background: #fff;
    color: #061016;
    font-size: 14px;
    font-weight: 900;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag-row small {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(102,255,213,.12);
    color: var(--secondary);
    font-weight: 850;
}
.app-showcase { padding-top: 30px; }
.mobile-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mobile-card {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
    border-radius: 26px;
    padding: 26px;
    display: grid;
    grid-template-columns: minmax(180px, 260px) 1fr;
    gap: 22px;
    align-items: center;
}
.mobile-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: top center;
    border-radius: 18px;
    background: #fff;
}
.mobile-card h3 { font-size: 28px; margin: 12px 0; }
.mobile-card p { color: var(--text-muted); }
.mobile-card a { display: inline-flex; margin-top: 14px; color: var(--secondary); font-weight: 900; }

.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.contact-info-grid div {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
    border-radius: 18px;
    padding: 18px;
}
.contact-info-grid span { display: block; color: var(--text-muted); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.contact-info-grid strong { display: block; margin-top: 6px; color: #fff; overflow-wrap: anywhere; }
.contact-form { padding: 28px; display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; color: #d7eaf2; font-weight: 850; }
.contact-form input, .contact-form textarea,
.prose input, .prose textarea, .prose select {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.08);
    color: #fff;
    border-radius: 12px;
    padding: 13px 14px;
    outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: rgba(102,255,213,.55);
    box-shadow: 0 0 0 4px rgba(102,255,213,.08);
}
.notice { padding: 13px 14px; border-radius: 12px; font-weight: 850; }
.notice.success { background: rgba(102,255,213,.12); color: var(--secondary); }
.notice.danger { background: rgba(255,91,104,.12); color: var(--danger); }

.cta { padding: 70px 4vw 112px; }
.cta-box {
    min-height: 540px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(3,8,12,.9), rgba(3,8,12,.62), rgba(0,167,255,.2)), url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=82") center/cover;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 46px;
    box-shadow: var(--shadow);
}
.cta-inner { position: relative; max-width: 900px; }
.cta p { color: #c4d4dc; font-size: 18px; line-height: 1.8; margin: 24px auto 32px; max-width: 720px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.blog-post {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .2s ease;
}
.blog-post:hover { transform: translateY(-5px); }
.blog-img-box {
    aspect-ratio: 16 / 10;
    position: relative;
    background: linear-gradient(135deg, rgba(0,167,255,.55), rgba(102,255,213,.34));
    background-size: cover;
    background-position: center;
}
.blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,.92);
    color: #061016;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 900;
}
.blog-body { padding: 22px; }
.blog-meta { color: var(--text-dim); font-size: 12px; margin-bottom: 10px; }
.blog-post h4 { font-size: 20px; margin-bottom: 10px; }
.blog-post p { color: var(--text-muted); font-size: 14px; }

.page-section { padding-top: 130px; }
.page-shell { max-width: 900px; }
.page-shell-wide { max-width: 1160px; }
.page-shell-landing { max-width: 1280px; }
.prose {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
    border-radius: 24px;
    padding: 34px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.85;
}
.prose h1 { font-size: 44px; margin-bottom: 22px; }
.prose h2 { font-size: 30px; margin: 34px 0 14px; }
.prose h3 { font-size: 24px; margin: 28px 0 12px; }
.prose p, .prose ul, .prose ol { margin-bottom: 18px; }
.prose ul, .prose ol { margin-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--secondary); text-decoration: underline; }
.prose img { margin: 20px 0; border-radius: 16px; }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px; text-align: left; }
.prose th { background: rgba(255,255,255,.08); }
.feat-card {
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
}
.features-intro { text-align: center; max-width: 780px; margin: 0 auto 44px; padding-top: 110px; }
.features-intro h2 { font-size: 52px; }
.features-intro p { color: var(--text-muted); font-size: 18px; margin-top: 12px; }

.footer {
    border-top: 1px solid rgba(255,255,255,.09);
    padding: 58px 0 34px;
    color: var(--text-muted);
    background: rgba(0,0,0,.2);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 42px;
}
.footer-logo { font-size: 24px; }
.footer-brand p { margin-top: 18px; max-width: 330px; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-weight: 900;
}
.footer-col { display: grid; align-content: start; gap: 9px; }
.footer-col h5 { font-size: 14px; color: #fff; margin-bottom: 8px; }
.footer-col a { font-size: 14px; color: var(--text-muted); }
.footer-col a:hover { color: var(--secondary); }
.footer-bottom {
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
}

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1100px) {
    .nav-links, .phone-link, .mega-menu { display: none; }
    .hero, .split, .service-hero, .seo-hero, .contact-hero, .static-hero, .static-page-grid { grid-template-columns: 1fr; }
    .hero h1, .subhero h1, .service-hero h1, .seo-hero h1, .contact-hero h1 { font-size: 62px; }
    .static-hero-copy h1 { font-size: 62px; }
    .static-hero { min-height: auto; padding-bottom: 54px; }
    .static-hero-media { min-height: 430px; }
    .static-hero-media img { min-height: 430px; }
    .static-link-panel { position: static; }
    .section-head { display: block; }
    .section-head p { margin-top: 16px; }
    .services, .services-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .projects, .project-grid-full, .mobile-cards { grid-template-columns: 1fr; }
    .process, .seo-quick-grid, .mini-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .faq-grid, .blog-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .hero:after { font-size: 74px; }
}

@media (max-width: 680px) {
    .container, .footer-inner, .footer-bottom, .nav-shell { width: min(100% - 32px, 1240px); }
    .site-header { position: sticky; }
    .nav-shell { min-height: 70px; }
    .brand { font-size: 22px; }
    .brand-mark { width: 36px; height: 36px; }
    .nav-actions .btn { padding: 11px 14px; font-size: 13px; }
    .hero, .subhero, .service-hero, .seo-hero, .contact-hero, .static-hero { padding: 86px 20px 52px; min-height: auto; }
    .hero h1, .subhero h1, .service-hero h1, .contact-hero h1, .seo-hero h1 { font-size: 42px; }
    .static-hero-copy h1 { font-size: 42px; }
    .static-hero-copy p { font-size: 17px; }
    .static-stat-row { grid-template-columns: 1fr; margin-top: 24px; }
    .static-stat-row div { min-height: auto; }
    .static-hero-media, .static-hero-media img { min-height: 320px; border-radius: 22px; }
    .static-page-body { padding-top: 32px; }
    .static-info-card { min-height: auto; padding: 22px; }
    .static-info-card h2, .static-link-panel h2 { font-size: 28px; }
    .lead, .hero p, .subhero p, .service-hero p, .contact-hero p, .seo-hero p { font-size: 17px; }
    .hero-actions, .trust { gap: 10px; }
    .hero-actions .btn { width: 100%; }
    .stage { min-height: 470px; }
    .main-photo { width: 92%; height: 62%; right: 0; }
    .side-photo { width: 58%; height: 32%; left: 0; }
    .panel-card { width: 92%; bottom: 0; }
    .section { padding: 72px 20px; }
    .section-head h2, .story h2, .cta h2, .features-intro h2 { font-size: 38px; }
    .services, .services-wide, .process, .seo-quick-grid, .mini-card-grid, .logo-strip, .footer-inner, .mobile-cards { grid-template-columns: 1fr; }
    .logo-preview { display: none; }
    .service { min-height: 360px; }
    .big-image { height: 520px; }
    .projects { gap: 16px; }
    .project, .project.tall { min-height: 420px; }
    .reference-card { grid-template-columns: 1fr; }
    .reference-media { min-height: 300px; }
    .mobile-card { grid-template-columns: 1fr; }
    .contact-info-grid, .seo-hero-card { grid-template-columns: 1fr; }
    .seo-hero-visual img { height: 260px; }
    .seo-hero-visual > .seo-stat-grid { grid-template-columns: 1fr; }
    .province-list summary { grid-template-columns: 1fr; }
    .cta { padding: 40px 20px 78px; }
    .cta-box { min-height: 460px; border-radius: 26px; padding: 30px 20px; }
    .footer-bottom { display: block; line-height: 2; }
    .marquee span { font-size: 34px; }
    .hero:after { display: none; }
}
