@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
    --bg: #070816;
    --bg2: #0b1020;
    --purple: #4b00d8;
    --neon: #6d1bff;
    --cyan: #ff7a1a;
    --orange: #ff7a1a;
    --white: #f8fafc;
    --text-purple: #6d1bff;
    --muted: #e2e8f0;
    --card: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 8%, rgba(75, 0, 216, 0.2), transparent 30%),
        radial-gradient(circle at 88% 15%, rgba(255, 122, 26, 0.14), transparent 28%),
        linear-gradient(135deg, #020305, #05060b 58%, #020305);
    line-height: 1.65;
    overflow-x: hidden;
}
body[data-theme="light"] {
    --bg: #f7f7fb;
    --bg2: #ffffff;
    --white: #101828;
    --muted: #475467;
    --card: rgba(255, 255, 255, 0.78);
    --border: rgba(75, 0, 216, 0.16);
    --shadow: 0 26px 80px rgba(16, 24, 40, 0.16);
    background:
        radial-gradient(circle at 12% 8%, rgba(75, 0, 216, 0.12), transparent 30%),
        radial-gradient(circle at 88% 15%, rgba(255, 122, 26, 0.14), transparent 28%),
        linear-gradient(135deg, #f8fafc, #ffffff 58%, #eef2ff);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    background: var(--bg);
    transition: opacity .35s ease, visibility .35s ease;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.page-loader span {
    width: 52px;
    height: 52px;
    border: 4px solid var(--border);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.site-header {
    position: sticky;
    top: 18px;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    width: min(1400px, calc(100% - 36px));
    min-height: 74px;
    margin: 18px auto -96px;
    padding: 13px clamp(18px, 3vw, 70px);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    background: rgba(5, 6, 10, 0.86);
    box-shadow: 0 28px 70px rgba(0,0,0,.34);
    backdrop-filter: blur(18px);
    transition: background .25s ease, border .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
    background: rgba(5, 6, 10, 0.94);
    border-color: rgba(109, 27, 255, 0.35);
    backdrop-filter: blur(18px);
}
body[data-theme="light"] .site-header {
    border-color: rgba(75, 0, 216, .14);
    background: rgba(255,255,255,.88);
}
.brand img {
    width: 172px;
    max-height: 54px;
    object-fit: contain;
}
.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}
.nav a:hover { color: var(--cyan); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
}
.nav-icon, .theme-toggle {
    position: relative;
    display: inline-grid;
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255,255,255,.055);
    font: inherit;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
}
.nav-icon svg, .theme-toggle svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.nav-whatsapp svg { width: 22px; height: 22px; }
.nav-whatsapp svg path:first-child { fill: none; }
.nav-whatsapp svg path:last-child { fill: currentColor; stroke: none; }
.nav-login svg path:first-child { fill: none; }
.nav-login svg path:last-child { fill: none; }
.theme-toggle svg path { fill: currentColor; stroke: none; }
.nav-icon:hover, .theme-toggle:hover {
    border-color: rgba(109, 27, 255, .65);
    color: #ffffff;
    background: rgba(109, 27, 255, .26);
}
body[data-theme="light"] .nav-icon, body[data-theme="light"] .theme-toggle {
    border-color: rgba(75, 0, 216, .16);
    background: rgba(75, 0, 216, .06);
}
.nav-cta {
    padding: 11px 18px;
    border: 1px solid rgba(109, 27, 255, .65);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple), var(--neon));
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(75, 0, 216, .34);
}
.nav a.nav-cta:hover { color: #ffffff; transform: translateY(-1px); }
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
}
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

.section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: 92px 0;
}
.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    gap: 46px;
    min-height: 100vh;
    padding-top: 150px;
}
.service-hero {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-left: max(18px, calc((100vw - 1320px) / 2));
    padding-right: max(18px, calc((100vw - 1320px) / 2));
    overflow: hidden;
}
.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(2,3,5,.96) 0%, rgba(2,3,5,.82) 46%, rgba(2,3,5,.7) 100%),
        radial-gradient(circle at 62% 36%, rgba(255,122,26,.18), transparent 36%),
        linear-gradient(135deg, #050607, #15151b 54%, #050607);
}
.hero-bg-stack {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .72;
    filter: saturate(1.05);
}
.hero-bg-card {
    position: absolute;
    width: min(680px, 52vw);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 40px 110px rgba(0,0,0,.52);
    opacity: .74;
}
.card-one {
    right: 7vw;
    top: 150px;
    transform: rotate(-8deg) scale(1.08);
}
.card-two {
    right: 28vw;
    bottom: 72px;
    transform: rotate(8deg) scale(.92);
    opacity: .42;
}
.card-three {
    right: -8vw;
    bottom: 160px;
    transform: rotate(2deg) scale(.84);
    opacity: .34;
}
.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, transparent 0%, rgba(2,3,5,.38) 70%, rgba(2,3,5,.95) 100%),
        radial-gradient(circle at 18% 50%, transparent 0 24%, rgba(2,3,5,.24) 55%, rgba(2,3,5,.9) 100%);
    pointer-events: none;
}
.hero-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .42;
    pointer-events: none;
}
.hero-glow.one { left: -120px; top: 120px; background: var(--purple); }
.hero-glow.two { right: -90px; bottom: 90px; background: var(--cyan); }
.eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
    max-width: 780px;
    margin-bottom: 22px;
    font-size: clamp(44px, 6vw, 82px);
    line-height: .95;
    letter-spacing: -0.055em;
}
h1 span { color: var(--orange); }
h2 {
    max-width: 780px;
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}
h3 { margin-bottom: 10px; font-size: 22px; }
p { color: var(--muted); }
.hero-content p { max-width: 680px; font-size: 19px; }
.service-hero .hero-content {
    max-width: 790px;
}
.service-hero .hero-content h1 {
    max-width: 850px;
    color: #ffffff;
    font-size: clamp(48px, 5.2vw, 82px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}
.service-hero .hero-content p {
    max-width: 650px;
    color: #e4e4e7;
}
.service-hero .hero-orbit {
    display: none;
}
.hero-actions, .feature-row, .filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-actions { margin-top: 30px; }
.feature-row { margin-top: 28px; }
.feature-row span {
    padding: 9px 12px;
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
}
.hero-tabs {
    position: absolute;
    left: 50%;
    bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: min(680px, calc(100% - 36px));
    padding: 8px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
}
.hero-tabs a {
    padding: 10px 20px;
    border-radius: 999px;
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 900;
}
.hero-tabs a.active {
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple), var(--neon));
    box-shadow: 0 14px 34px rgba(75, 0, 216, .36);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}
.btn.primary {
    background: linear-gradient(135deg, var(--purple), var(--neon), var(--cyan));
    box-shadow: 0 16px 42px rgba(75, 0, 216, .34);
}
.btn.ghost, .btn.tiny {
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--white);
}
.btn.tiny { min-height: 40px; padding: 10px 12px; font-size: 14px; }

.hero-orbit {
    position: relative;
    display: grid;
    min-height: 460px;
    place-items: center;
}
.main-card {
    width: min(420px, 100%);
    padding: 34px;
    text-align: center;
    transform: rotate(-2deg);
}
.main-card strong { display: block; font-size: 34px; line-height: 1.05; }
.mini-bars { display: grid; gap: 12px; margin-top: 28px; }
.mini-bars span {
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
}
.mini-bars span:nth-child(2) { width: 78%; }
.mini-bars span:nth-child(3) { width: 58%; }
.float-chip {
    position: absolute;
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    box-shadow: var(--shadow);
    font-weight: 900;
    animation: float 4s ease-in-out infinite;
}
.chip-a { top: 35px; left: 20px; }
.chip-b { right: 10px; top: 110px; animation-delay: .6s; }
.chip-c { bottom: 50px; left: 80px; animation-delay: 1.1s; }
@keyframes float { 50% { transform: translateY(-16px); } }

.glass-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}
.stats, .service-grid, .project-grid, .pricing-grid, .blog-grid, .team-grid, .testimonial-track {
    display: grid;
    gap: 18px;
}
.stats { grid-template-columns: repeat(4, 1fr); padding-top: 10px; }
.stat-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--card);
}
.stat-card strong { display: block; font-size: 40px; line-height: 1; }
.stat-card span, .price-card small, .project-card span, .post-card span, .team-card span { color: var(--cyan); font-weight: 800; }
.section-head { margin-bottom: 34px; }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-card, .project-card, .price-card, .post-card, .team-card, blockquote, .newsletter, .contact-form { padding: 24px; }
.service-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    font-weight: 900;
}
.service-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
ul { margin: 16px 0 0; padding-left: 18px; color: #cbd5e1; }
li { color: var(--white); }
li + li { margin-top: 7px; }
.filter-row { margin-bottom: 22px; }
.filter-row button {
    padding: 10px 14px;
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--card);
    cursor: pointer;
}
.filter-row button.active { background: var(--purple); color: #ffffff; }
.project-grid, .pricing-grid, .blog-grid, .team-grid { grid-template-columns: repeat(3, 1fr); }
.project-img {
    display: grid;
    height: 170px;
    margin-bottom: 18px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(0,0,0,.25);
}
.project-img img { width: 100%; height: 100%; object-fit: cover; }
.price-card { position: relative; }
.price-card.popular { border-color: rgba(255, 122, 26, .62); }
.badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--cyan);
    color: #06111f;
    font-size: 12px;
    font-weight: 900;
}
.price-card strong { display: block; margin: 10px 0; font-size: 34px; }
.compare { margin-top: 22px; padding: 24px; }
.compare-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.compare-table span { padding: 14px; border: 1px solid var(--border); border-radius: 8px; color: var(--white); }
.about, .contact, .faq-newsletter {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 28px;
    align-items: start;
}
.contact {
    position: relative;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(34px, 6vw, 76px);
    align-items: center;
}
.contact::before {
    content: "";
    position: absolute;
    inset: 28px -8vw auto auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 27, 255, .28), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
}
.contact-copy h2 {
    max-width: 520px;
    color: var(--white);
    font-size: clamp(42px, 5.4vw, 72px);
    line-height: .95;
}
.contact-copy > p {
    max-width: 510px;
    color: #d4d4d8;
    font-size: 17px;
}
.contact-methods {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}
.contact-method {
    position: relative;
    display: grid;
    gap: 2px;
    min-height: 56px;
    padding-left: 72px;
    color: #d4d4d8;
    font-weight: 700;
}
.contact-method span {
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(109, 27, 255, .52);
    border-radius: 8px;
    color: var(--neon);
    background: rgba(109, 27, 255, .12);
    font-size: 12px;
    font-weight: 900;
}
.contact-method strong {
    color: var(--white);
    font-size: 17px;
}
.contact-method:hover { color: var(--cyan); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.why-card { padding: 22px; color: var(--white); font-weight: 900; }
.blog-tools {
    display: grid;
    grid-template-columns: minmax(220px, 360px) 1fr;
    gap: 14px;
    margin-bottom: 18px;
    align-items: center;
}
.blog-tools span { color: var(--muted); }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 15px;
    color: var(--white);
    background: rgba(255,255,255,.06);
    font: inherit;
}
textarea { resize: vertical; }
select option {
    color: #111827;
    background: #ffffff;
}
.team-card img { width: 96px; height: 96px; margin-bottom: 18px; border-radius: 50%; background: var(--card); }
.testimonial-track { grid-template-columns: repeat(3, 1fr); }
blockquote { margin: 0; }
cite { color: var(--white); font-style: normal; font-weight: 900; }
strong, h1, h2 { color: var(--text-purple); }
h3, summary, .eyebrow, .stat-card span, .price-card small, .project-card span, .post-card span, .team-card span { color: var(--cyan); }
label, small { color: var(--white); }
cite span { display: block; color: var(--muted); font-size: 13px; }
.map { display: grid; min-height: 180px; margin-top: 18px; place-items: center; color: var(--muted); }
.contact-form {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: clamp(26px, 4vw, 48px);
    border-color: rgba(109, 27, 255, .38);
    background:
        radial-gradient(circle at 20% 0%, rgba(109, 27, 255, .22), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    box-shadow: 0 30px 90px rgba(75, 0, 216, .24), var(--shadow);
}
.contact-form::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 8px;
    pointer-events: none;
}
.form-field {
    display: grid;
    gap: 9px;
}
.form-field label {
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
}
.form-field label span {
    color: var(--neon);
}
.form-field input, .form-field select, .form-field textarea {
    min-height: 52px;
    border-color: rgba(109, 27, 255, .34);
    background: rgba(0,0,0,.22);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: 0;
    border-color: var(--neon);
    box-shadow: 0 0 0 4px rgba(109, 27, 255, .16);
}
.form-wide, .contact-form .alert, .contact-form button { grid-column: 1 / -1; }
.contact-form button {
    min-height: 56px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple), var(--neon));
    box-shadow: 0 18px 40px rgba(75, 0, 216, .36);
}
.package-hint {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.package-hint span {
    padding: 7px 10px;
    color: var(--white);
    background: rgba(255, 122, 26, .12);
    border: 1px solid rgba(255, 122, 26, .24);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}
.alert { padding: 12px 14px; border-radius: 8px; font-weight: 800; }
.alert.success { background: rgba(34,197,94,.18); color: #bbf7d0; }
.alert.error { background: rgba(239,68,68,.18); color: #fecaca; }
.faq-list { display: grid; gap: 12px; }
details { padding: 18px; }
summary { cursor: pointer; font-weight: 900; }
.newsletter input { margin: 8px 0 12px; }
.footer {
    position: relative;
    overflow: hidden;
    padding: 72px clamp(18px, 5vw, 96px) 28px;
    border-top: 1px solid rgba(255, 122, 26, 0.22);
    background:
        radial-gradient(circle at 50% 8%, rgba(75, 0, 216, .22), transparent 24%),
        radial-gradient(circle at 88% 78%, rgba(255, 122, 26, .16), transparent 28%),
        linear-gradient(135deg, #08090d 0%, #141519 46%, #050606 100%);
}
.footer-wave {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .55;
    background:
        linear-gradient(32deg, transparent 16%, rgba(255,255,255,.045) 16.4%, rgba(255,255,255,.02) 36%, transparent 36.4%),
        linear-gradient(151deg, transparent 45%, rgba(255,122,26,.06) 45.5%, rgba(75,0,216,.1) 64%, transparent 64.5%);
}
.footer-top, .footer-cols, .footer-bottom {
    position: relative;
    z-index: 1;
    width: min(100%, 1740px);
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-top h3 { color: var(--white); }
.footer-top p { max-width: 560px; margin-bottom: 0; }
.footer-logo {
    display: grid;
    place-items: center;
}
.footer-logo img {
    width: 260px;
    max-height: 86px;
    object-fit: contain;
}
.footer-idea { text-align: right; }
.footer-idea p { margin-left: auto; }
.footer-cols {
    display: grid;
    grid-template-columns: .8fr .8fr 1.25fr 1.25fr;
    gap: clamp(22px, 4vw, 86px);
    padding: 42px 0 52px;
}
.footer-col {
    display: grid;
    align-content: start;
    gap: 13px;
}
.footer-col strong {
    margin-bottom: 2px;
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-col a, .footer-col p {
    color: #d4d4d8;
    font-size: 15px;
    font-weight: 700;
}
.footer-col a:hover { color: var(--cyan); }
.footer-accent, .footer-col a.footer-accent, .footer-office small {
    color: var(--orange);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.footer-contact a {
    position: relative;
    display: grid;
    gap: 2px;
    min-height: 54px;
    padding-left: 64px;
}
.footer-contact span {
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    color: var(--orange);
    background: rgba(255,255,255,.045);
    font-size: 12px;
    font-weight: 900;
}
.footer-contact small {
    color: #a1a1aa;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.footer-office p { max-width: 420px; margin: 0; }
.footer-office .btn {
    width: fit-content;
    margin-top: 8px;
    border: 1px solid rgba(109, 27, 255, .65);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--purple), var(--neon));
    box-shadow: 0 14px 34px rgba(75, 0, 216, .34);
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom p { margin: 0; font-size: 14px; }
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.footer-social a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255,255,255,.055);
    font-size: 12px;
    font-weight: 900;
}
.footer-social a:hover {
    border-color: var(--orange);
    color: var(--orange);
}
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--orange);
    color: #ffffff;
    font-weight: 900;
    box-shadow: var(--shadow);
}
.cookie {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 45;
    display: none;
    max-width: 390px;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(7,8,22,.92);
    backdrop-filter: blur(14px);
}
.cookie.is-visible { display: flex; }
.cookie button { border: 0; border-radius: 8px; padding: 10px 12px; background: var(--cyan); color: #06111f; font-weight: 900; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
    .site-header {
        top: 12px;
        margin-top: 12px;
        margin-bottom: -88px;
        border-radius: 28px;
    }
    .nav-toggle { display: block; }
    .nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: rgba(7,8,22,.95);
        backdrop-filter: blur(18px);
    }
    .nav-actions { flex-wrap: wrap; margin-left: 0; }
    .nav-icon, .theme-toggle { justify-content: center; width: 42px; }
    .nav-cta { justify-content: center; text-align: center; }
    .nav.is-open { display: flex; }
    .hero, .about, .contact, .faq-newsletter { grid-template-columns: 1fr; }
    .service-hero { padding-top: 132px; }
    .hero-tabs {
        position: relative;
        left: auto;
        bottom: auto;
        justify-self: start;
        width: 100%;
        margin-top: 18px;
        transform: none;
    }
    .service-grid, .project-grid, .pricing-grid, .blog-grid, .team-grid, .testimonial-track { grid-template-columns: repeat(2, 1fr); }
    .stats, .compare-table { grid-template-columns: repeat(2, 1fr); }
    .footer-top, .footer-cols { grid-template-columns: 1fr 1fr; }
    .footer-logo { justify-content: start; }
    .footer-idea { text-align: left; }
    .footer-idea p { margin-left: 0; }
}

@media (max-width: 640px) {
    .section { width: min(100% - 28px, 1180px); padding: 62px 0; }
    .site-header {
        width: min(100% - 24px, 1400px);
        padding: 10px 12px;
    }
    .brand img { width: 146px; }
    h1 { font-size: 42px; letter-spacing: -0.035em; }
    h2 { font-size: 32px; }
    .service-hero {
        min-height: auto;
        padding: 120px 18px 62px;
    }
    .service-hero .hero-content h1 { font-size: 43px; }
    .hero-bg-card { width: 112vw; }
    .card-one { right: -28vw; top: 138px; }
    .card-two, .card-three { display: none; }
    .hero-tabs { border-radius: 24px; justify-content: flex-start; }
    .hero-orbit { min-height: 340px; }
    .float-chip { width: 64px; height: 64px; }
    .service-grid, .project-grid, .pricing-grid, .blog-grid, .team-grid, .testimonial-track, .stats, .why-grid, .blog-tools, .contact-form, .compare-table, .footer, .footer-cols { grid-template-columns: 1fr; }
    .footer { padding-top: 54px; }
    .footer-top { grid-template-columns: 1fr; gap: 20px; }
    .footer-logo { justify-content: start; }
    .footer-logo img { width: 220px; }
    .footer-cols { gap: 28px; padding: 34px 0; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .cookie { right: 18px; }
}
