:root {
    --primary: #0e2356;
    --primary-2: #173c8f;
    --accent: #1e6fff;
    --teal: #0e9f9a;
    --gold: #d99b2b;
    --ink: #0d1b2a;
    --text: #1e293b;
    --muted: #64748b;
    --line: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(14, 35, 86, .12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html,
body {
    min-height: 100%;
    overflow-x: hidden;
}

html {
    height: 100%;
    overflow-y: hidden;
}

body {
    height: 100%;
    overflow-y: auto;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Inter, Poppins, Cairo, Tajawal, Arial, sans-serif;
    line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.skip-link {
    position: absolute;
    inset-inline-start: 16px;
    top: -80px;
    background: var(--primary);
    color: var(--white);
    padding: 10px 14px;
    z-index: 20;
}

.skip-link:focus { top: 10px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255,255,255,.88);
    border-bottom: 1px solid rgba(226, 232, 240, .8);
    backdrop-filter: blur(18px);
    transition: box-shadow .2s ease;
}

.site-header.is-scrolled { box-shadow: 0 12px 36px rgba(14, 35, 86, .08); }

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand img {
    width: 190px;
    height: auto;
    max-height: 54px;
    object-fit: contain;
    object-position: center;
}

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

.site-nav > a,
.language-switch a {
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--muted);
    font-size: 15px;
}

.site-nav > a:hover,
.site-nav > a.is-active,
.language-switch a.is-active {
    color: var(--primary);
    background: #eef5ff;
}

.language-switch {
    display: flex;
    gap: 2px;
    padding-inline-start: 10px;
    border-inline-start: 1px solid var(--line);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 6px;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--primary);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 76px 0 52px;
    background:
        linear-gradient(135deg, rgba(14,35,86,.05), rgba(30,111,255,.08) 42%, rgba(14,159,154,.08)),
        #fff;
}

.digital-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(14,35,86,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14,35,86,.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.15), rgba(0,0,0,.82), rgba(0,0,0,.2));
    pointer-events: none;
}

.hero-pulse-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .72;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
    gap: 56px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(42px, 7vw, 84px);
    line-height: .98;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: 0;
}

h3 { margin: 0; color: var(--ink); font-size: 22px; }

.hero-desc,
.section-head p,
.page-hero p {
    color: var(--muted);
    max-width: 680px;
    font-size: 18px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.btn svg,
.inline-action svg,
.icon-mark svg,
.whatsapp-float svg,
.back-top svg,
.hero-metrics svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 14px 30px rgba(14, 35, 86, .18); }
.btn-primary:hover { background: var(--primary-2); transform: translateY(-2px); }
.btn-secondary { color: var(--primary); border-color: var(--line); background: var(--white); }
.btn-secondary:hover { border-color: var(--accent); box-shadow: 0 12px 28px rgba(30,111,255,.12); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--primary); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,255,255,.18); }

.magnetic-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.34), transparent);
    transform: translateX(-120%);
    transition: transform .55s ease;
}

.magnetic-link:hover::after { transform: translateX(120%); }

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid rgba(30,111,255,.18);
    border-radius: 6px;
    background: rgba(255,255,255,.74);
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.brand-stage {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: grid;
    align-items: center;
    padding: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.78), rgba(255,255,255,.96)),
        repeating-linear-gradient(135deg, rgba(14,35,86,.08) 0 1px, transparent 1px 18px);
    box-shadow: var(--shadow);
}

.brand-stage::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(30,111,255,.16);
    border-radius: 6px;
    pointer-events: none;
}

.brand-stage img {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    margin-inline: auto;
    filter: drop-shadow(0 18px 26px rgba(14,35,86,.12));
}

.brand-stage .stage-logo {
    width: min(100%, 250px);
    max-height: 105px;
    object-fit: contain;
}

.digital-stage {
    background:
        linear-gradient(90deg, rgba(255,255,255,.82), rgba(255,255,255,.96)),
        linear-gradient(135deg, rgba(30,111,255,.12), rgba(14,159,154,.1)),
        repeating-linear-gradient(135deg, rgba(14,35,86,.1) 0 1px, transparent 1px 18px);
}

.code-stream {
    position: absolute;
    inset: 18px;
    z-index: 1;
    margin: 0;
    padding: 22px;
    overflow: hidden;
    border-radius: 6px;
    color: rgba(14, 35, 86, .4);
    font: 700 13px/1.85 "JetBrains Mono", "Fira Code", Consolas, monospace;
    text-align: left;
    direction: ltr;
    white-space: pre-wrap;
    background:
        linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,.5)),
        rgba(255,255,255,.18);
    mask-image: linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.82) 18%, rgba(0,0,0,.7) 72%, rgba(0,0,0,.18));
    pointer-events: none;
}

.code-stream::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 1.15em;
    margin-inline-start: 4px;
    background: rgba(30,111,255,.62);
    vertical-align: -2px;
    animation: code-caret .9s steps(1) infinite;
}

@keyframes code-caret {
    50% { opacity: 0; }
}

.orbit-ring {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 320px;
    aspect-ratio: 1;
    border: 1px solid rgba(30,111,255,.22);
    border-radius: 50%;
    translate: -50% -50%;
    pointer-events: none;
}

.ring-two {
    width: 410px;
    border-color: rgba(14,159,154,.22);
    transform: rotate(18deg) scaleX(1.16);
}

.pulse-node {
    position: absolute;
    z-index: 3;
    width: 10px;
    height: 10px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 8px rgba(14,159,154,.12), 0 0 24px rgba(14,159,154,.55);
}

.node-one { inset-inline-start: 18%; top: 22%; }
.node-two { inset-inline-end: 20%; top: 30%; background: var(--accent); box-shadow: 0 0 0 8px rgba(30,111,255,.12), 0 0 24px rgba(30,111,255,.5); }
.node-three { inset-inline-start: 50%; bottom: 24%; background: var(--gold); box-shadow: 0 0 0 8px rgba(217,155,43,.14), 0 0 24px rgba(217,155,43,.48); }

.signal-row {
    position: absolute;
    z-index: 4;
    inset-inline: 28px;
    bottom: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.signal-row span {
    padding: 9px 6px;
    text-align: center;
    border-radius: 6px;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 800;
}

.stats-band {
    background: var(--primary);
    color: var(--white);
    padding: 28px 0;
}

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

.stat-item strong { display: block; font-size: 34px; line-height: 1; }
.stat-item span { color: rgba(255,255,255,.76); }

.section { padding: 86px 0; }
.section-muted { background: var(--bg); }

.section-head {
    margin-bottom: 34px;
}

.section-head h2 { max-width: 760px; }

.card-grid,
.work-grid,
.blog-grid,
.pricing-grid,
.values-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card,
.work-card,
.post-card,
.price-card,
.values-grid article,
.side-panel,
.contact-panel,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 24px;
}

.service-card {
    min-height: 265px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

[data-tilt-card] {
    transform-style: preserve-3d;
    will-change: transform;
}

.service-card,
.work-card,
.post-card,
.price-card {
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-card:hover,
.work-card:hover,
.post-card:hover,
.price-card:hover {
    border-color: rgba(30,111,255,.32);
    box-shadow: 0 18px 42px rgba(14, 35, 86, .1);
}

.service-card p,
.work-card p,
.post-card p,
.price-card li,
.narrative p,
.detail-copy p {
    color: var(--muted);
}

.service-card a,
.work-card a,
.post-card a,
.text-link,
.footer-grid a,
.side-panel a {
    color: var(--accent);
    font-weight: 800;
}

.icon-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: var(--primary);
    background: #eef5ff;
    font-weight: 900;
    text-transform: uppercase;
}

.inline-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.inline-action svg {
    transition: transform .2s ease;
}

.inline-action:hover svg {
    transform: translate(2px, -2px);
}

.work-card,
.post-card,
.price-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.work-visual {
    position: relative;
    overflow: hidden;
    min-height: 174px;
    display: flex;
    align-items: end;
    padding: 16px;
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(14,35,86,.96), rgba(30,111,255,.76)),
        linear-gradient(45deg, transparent, rgba(217,155,43,.5));
}

.work-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-visual.has-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,27,42,.04), rgba(13,27,42,.55));
}

.work-visual span {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,.96);
    color: var(--primary);
    padding: 8px 10px;
    border-radius: 6px;
    font-weight: 800;
}

.post-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    object-fit: cover;
    background: var(--bg);
}

.price-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    min-height: 245px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.testimonial-card blockquote {
    margin: 0;
    color: var(--ink);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.7;
}

.testimonial-card div {
    display: grid;
    gap: 4px;
}

.testimonial-card strong {
    color: var(--primary);
    font-size: 18px;
}

.testimonial-card span {
    color: var(--muted);
    font-weight: 800;
}

.badge {
    align-self: flex-start;
    background: #e9f8f7;
    color: var(--teal);
    border-radius: 6px;
    padding: 5px 9px;
    font-weight: 800;
}

.price-card strong { color: var(--primary); font-size: 34px; }
.price-card ul, .check-list { padding-inline-start: 20px; margin: 0; }
.price-card .btn { margin-top: auto; }

.split,
.cta-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.cta-band {
    padding: 70px 0;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(14,35,86,.98), rgba(30,111,255,.84)),
        var(--primary);
}

.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.8); }

.page-hero {
    padding: 92px 0 60px;
    background:
        linear-gradient(135deg, rgba(14,35,86,.05), rgba(14,159,154,.07)),
        var(--white);
}

.page-hero h1 {
    max-width: 880px;
    font-size: clamp(38px, 6vw, 68px);
}

.services-hero,
.service-detail-hero {
    position: relative;
    overflow: hidden;
}

.services-hero::before,
.service-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(14,35,86,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14,35,86,.045) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.services-hero-grid,
.service-detail-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(330px, .8fr);
    gap: 42px;
    align-items: center;
}

.services-console {
    overflow: hidden;
    border: 1px solid rgba(30,111,255,.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.98)),
        linear-gradient(135deg, rgba(30,111,255,.1), rgba(14,159,154,.09));
    box-shadow: var(--shadow);
}

.console-header {
    display: flex;
    gap: 7px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
}

.console-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
}

.console-header span:nth-child(2) { background: var(--teal); }
.console-header span:nth-child(3) { background: var(--accent); }

.console-body {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.console-row {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255,255,255,.82);
    color: var(--primary);
    font-weight: 800;
}

.console-row svg,
.service-nav-panel svg,
.outcome-item svg,
.deliverable-card svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.2;
}

.console-row strong {
    color: var(--teal);
    font-size: 14px;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-feature {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-feature::before,
.service-orbit::before {
    content: "";
    position: absolute;
    inset-inline: auto -80px;
    top: -90px;
    width: 220px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--service-glow, rgba(30,111,255,.12));
    filter: blur(4px);
}

.service-feature:hover {
    border-color: rgba(30,111,255,.32);
    box-shadow: 0 18px 42px rgba(14,35,86,.1);
}

.service-feature-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-number {
    color: rgba(14,35,86,.16);
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
}

.service-label {
    margin: 8px 0 0;
    color: var(--accent);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
}

.service-feature h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
}

.service-feature p {
    color: var(--muted);
    margin: 0;
}

.service-outcomes {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 4px 0 6px;
    list-style: none;
}

.service-outcomes li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text);
    font-weight: 700;
}

.service-outcomes svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    color: var(--teal);
}

.service-feature .inline-action {
    margin-top: auto;
}

.service-method {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.method-step {
    padding: 22px;
    border-inline-start: 3px solid var(--accent);
    background: var(--white);
}

.method-step span,
.workflow-step > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 6px;
    background: #eef5ff;
    color: var(--primary);
    font-weight: 900;
}

.method-step p,
.workflow-step p {
    color: var(--muted);
    margin-bottom: 0;
}

.service-detail-grid {
    grid-template-columns: minmax(0, .98fr) minmax(340px, .82fr);
}

.service-orbit {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid rgba(30,111,255,.16);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.97)),
        repeating-linear-gradient(135deg, rgba(14,35,86,.08) 0 1px, transparent 1px 18px);
    box-shadow: var(--shadow);
}

.service-orbit-core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 12px;
    width: 190px;
    height: 190px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    color: var(--primary);
    text-align: center;
    translate: -50% -50%;
}

.service-orbit-core svg {
    width: 48px;
    height: 48px;
    color: var(--accent);
}

.orbit-chip {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 2px;
    min-width: 118px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 14px 30px rgba(14,35,86,.1);
}

.orbit-chip strong {
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

.orbit-chip span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.chip-1 { inset-inline-start: 28px; top: 44px; }
.chip-2 { inset-inline-end: 28px; top: 126px; }
.chip-3 { inset-inline-start: 54px; bottom: 52px; }

.service-detail-layout,
.service-workflow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}

.service-story {
    max-width: 820px;
}

.service-story > p {
    color: var(--muted);
    font-size: 20px;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    font-weight: 800;
}

.outcome-item svg,
.deliverable-card svg {
    flex: 0 0 auto;
    color: var(--teal);
}

.service-nav-panel a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 6px;
}

.service-nav-panel a.is-active,
.service-nav-panel a:hover {
    border-color: rgba(30,111,255,.2);
    background: #eef5ff;
    color: var(--primary);
}

.deliverable-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.deliverable-card {
    min-height: 158px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.deliverable-card h3 {
    font-size: 20px;
    line-height: 1.22;
}

.workflow-copy {
    position: sticky;
    top: 100px;
}

.tool-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.tool-cloud span {
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--primary);
    font-weight: 800;
}

.workflow-steps {
    display: grid;
    gap: 14px;
}

.workflow-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.service-cta {
    background:
        linear-gradient(135deg, rgba(14,35,86,.98), rgba(14,159,154,.84)),
        var(--primary);
}

.service-tone-commerce { --service-glow: rgba(14,159,154,.18); }
.service-tone-web { --service-glow: rgba(30,111,255,.16); }
.service-tone-marketing { --service-glow: rgba(217,155,43,.2); }
.service-tone-brand { --service-glow: rgba(123,92,255,.16); }
.service-tone-video { --service-glow: rgba(239,68,68,.13); }
.service-tone-mobile { --service-glow: rgba(20,184,166,.16); }

.narrative { max-width: 940px; }
.narrative > p { font-size: 20px; }
.values-grid { margin-top: 34px; }

.detail-layout,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}

.detail-copy {
    font-size: 18px;
}

.side-panel {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.case-gallery div {
    min-height: 180px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.case-gallery div:first-child { grid-column: 1 / -1; min-height: 260px; }

.case-gallery-main {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 260px;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    object-fit: cover;
}

.article-body {
    max-width: 760px;
    padding: 56px 0 90px;
    font-size: 19px;
}

.article-cover {
    width: 100%;
    max-height: 520px;
    margin-top: 32px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--bg);
}

.article-body h2,
.article-body h3,
.article-body h4 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.article-body ul,
.article-body ol {
    color: var(--muted);
    padding-inline-start: 24px;
}

.article-body blockquote {
    margin: 28px 0;
    padding: 18px 20px;
    border-inline-start: 4px solid var(--accent);
    background: var(--bg);
    color: var(--ink);
    font-weight: 800;
}

.article-body a {
    color: var(--accent);
    font-weight: 800;
}

.article-body img {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
    background: var(--bg);
}

.contact-grid {
    grid-template-columns: 360px minmax(0, 1fr);
}

.contact-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-box {
    margin-top: 18px;
    min-height: 220px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: var(--white);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--teal));
}

.contact-form {
    display: grid;
    gap: 16px;
}

label { display: grid; gap: 7px; font-weight: 800; color: var(--ink); }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px 13px;
    font: inherit;
    color: var(--text);
    background: var(--white);
}

input:focus, select:focus, textarea:focus {
    outline: 3px solid rgba(30,111,255,.18);
    border-color: var(--accent);
}

.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.alert {
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 800;
}

.alert.success { color: #086b4b; background: #e8fff6; }
.alert.error { color: #9b1c1c; background: #fff1f1; }

.site-footer {
    color: rgba(255,255,255,.78);
    background: var(--ink);
    padding: 52px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 32px;
}

.footer-grid h2 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-grid a,
.footer-grid span {
    display: block;
    margin: 7px 0;
}

.footer-logo {
    width: 210px;
    background: var(--white);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 36px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
}

.whatsapp-float,
.back-top {
    position: fixed;
    z-index: 12;
    border: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(13,27,42,.18);
}

.whatsapp-float {
    inset-inline-end: 20px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25d366;
    animation: pulse 2.4s infinite;
}

.back-top {
    inset-inline-end: 30px;
    bottom: 92px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(24px);
}

.reveal,
.reveal.is-visible,
.js-enabled .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity .5s ease, transform .5s ease;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.42); }
    50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

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

    .hero-pulse-canvas { display: none; }
}

@media (max-width: 940px) {
    .menu-toggle { display: block; }
    .site-nav {
        position: absolute;
        inset: 76px 16px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }
    .site-nav.is-open { display: flex; }
    .language-switch { border: 0; padding: 8px 0 0; }
    .hero-grid,
    .services-hero-grid,
    .service-detail-grid,
    .service-detail-layout,
    .service-workflow,
    .detail-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .brand-stage { min-height: 330px; padding: 24px; }
    .service-orbit { min-height: 360px; }
    .workflow-copy { position: static; }
    .stats-grid,
    .card-grid,
    .work-grid,
    .blog-grid,
    .pricing-grid,
    .values-grid,
    .testimonial-grid,
    .services-showcase,
    .deliverable-grid,
    .outcome-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-method { grid-template-columns: 1fr 1fr; }
    .side-panel { position: static; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 24px, 1120px); }
    .brand img { width: 154px; max-height: 44px; }
    .hero { padding-top: 44px; min-height: auto; }
    .hero-grid { gap: 32px; }
    .services-hero-grid,
    .service-detail-grid { gap: 28px; }
    h1 { font-size: 42px; }
    .signal-row { grid-template-columns: 1fr 1fr; }
    .stats-grid,
    .card-grid,
    .work-grid,
    .blog-grid,
    .pricing-grid,
    .values-grid,
    .testimonial-grid,
    .services-showcase,
    .deliverable-grid,
    .outcome-grid,
    .service-method,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .service-feature { min-height: auto; padding: 22px; }
    .service-orbit { min-height: 330px; }
    .service-orbit-core { width: 150px; height: 150px; }
    .orbit-chip { min-width: 100px; padding: 10px; }
    .chip-1 { inset-inline-start: 14px; top: 32px; }
    .chip-2 { inset-inline-end: 14px; top: 112px; }
    .chip-3 { inset-inline-start: 22px; bottom: 36px; }
    .workflow-step { grid-template-columns: 1fr; }
    .split,
    .cta-inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .section { padding: 64px 0; }
    .page-hero { padding: 68px 0 44px; }
}

/* Professional visual refresh */
:root {
    --primary: #102a43;
    --primary-2: #164b76;
    --accent: #2f80ed;
    --teal: #16a394;
    --gold: #c99435;
    --ink: #0b1727;
    --text: #263648;
    --muted: #66758a;
    --line: #dce5ef;
    --bg: #f5f8fb;
    --white: #ffffff;
    --surface: rgba(255,255,255,.86);
    --shadow: 0 22px 60px rgba(16, 42, 67, .13);
    --shadow-soft: 0 14px 36px rgba(16, 42, 67, .08);
}

body {
    background:
        linear-gradient(180deg, #ffffff 0, #f7fbff 430px, #ffffff 900px);
    color: var(--text);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(22, 163, 148, .22);
    color: var(--ink);
}

.container {
    width: min(1180px, calc(100% - 40px));
}

.site-header {
    background: rgba(255,255,255,.78);
    border-bottom: 1px solid rgba(220,229,239,.82);
    box-shadow: 0 1px 0 rgba(255,255,255,.72) inset;
}

.site-header.is-scrolled {
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 48px rgba(16, 42, 67, .09);
}

.nav-wrap {
    min-height: 82px;
}

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

.brand img {
    width: 205px;
}

.site-nav {
    gap: 5px;
    padding: 6px;
    border: 1px solid rgba(220,229,239,.78);
    border-radius: 8px;
    background: rgba(255,255,255,.72);
}

.site-nav > a,
.language-switch a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border-radius: 7px;
    color: #516176;
    font-weight: 700;
}

.site-nav > a:hover,
.site-nav > a.is-active,
.language-switch a:hover,
.language-switch a.is-active {
    background: linear-gradient(180deg, #edf6ff, #f7fbff);
    color: var(--primary);
    box-shadow: 0 1px 0 rgba(255,255,255,.9) inset;
}

.language-switch {
    margin-inline-start: 5px;
    padding-inline-start: 8px;
}

.hero,
.page-hero {
    background:
        linear-gradient(rgba(16,42,67,.052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,42,67,.045) 1px, transparent 1px),
        linear-gradient(135deg, #f8fbff 0%, #eef8f6 52%, #fffaf0 100%);
    background-size: 44px 44px, 44px 44px, auto;
}

.hero {
    min-height: clamp(620px, calc(100svh - 180px), 780px);
    padding: 68px 0 56px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0 72px;
    border-bottom: 1px solid rgba(220,229,239,.72);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.digital-hero::before,
.services-hero::before,
.service-detail-hero::before {
    opacity: .52;
    mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
}

.hero-grid,
.services-hero-grid,
.service-detail-grid {
    gap: 66px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--teal);
    letter-spacing: .08em;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

h1 {
    color: var(--ink);
    font-size: clamp(44px, 6.2vw, 82px);
    line-height: 1.02;
    max-width: 950px;
}

h2 {
    color: var(--ink);
    font-size: clamp(30px, 3.8vw, 48px);
}

h3 {
    color: var(--ink);
    line-height: 1.25;
}

.hero-desc,
.section-head p,
.page-hero p,
.service-story > p,
.narrative > p {
    color: var(--muted);
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.85;
}

.page-hero .eyebrow,
.section-head .eyebrow {
    color: var(--teal);
    font-size: 13px;
    line-height: 1.4;
}

.work-card h2,
.post-card h2,
.price-card h2 {
    font-size: 24px;
    line-height: 1.24;
}

.hero-actions {
    gap: 14px;
    margin-top: 34px;
}

.btn {
    min-height: 50px;
    padding: 13px 20px;
    border-radius: 8px;
    letter-spacing: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #1c5d8d);
    box-shadow: 0 16px 34px rgba(16, 42, 67, .22);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #173b5f, #236da4);
    box-shadow: 0 20px 42px rgba(16, 42, 67, .24);
}

.btn-secondary {
    background: rgba(255,255,255,.82);
    border-color: rgba(188,201,217,.9);
    color: var(--primary);
}

.btn-secondary:hover {
    background: #fff;
    border-color: rgba(47,128,237,.55);
}

.btn-light {
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: 0 14px 32px rgba(0,0,0,.12);
}

.hero-metrics span,
.tool-cloud span,
.badge,
.work-visual span,
.signal-row span {
    border-radius: 8px;
}

.hero-metrics {
    margin-top: 26px;
}

.hero-metrics span {
    min-height: 42px;
    padding: 9px 13px;
    border-color: rgba(47,128,237,.2);
    background: rgba(255,255,255,.78);
    box-shadow: 0 10px 24px rgba(16,42,67,.07);
}

.brand-stage,
.service-orbit,
.services-console {
    border-color: rgba(189,203,219,.9);
    background:
        linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.78)),
        linear-gradient(135deg, rgba(47,128,237,.09), rgba(22,163,148,.08));
    box-shadow: var(--shadow);
}

.brand-stage {
    min-height: 450px;
}

.brand-stage::before {
    inset: 16px;
    border-color: rgba(47,128,237,.18);
}

.orbit-ring {
    border-color: rgba(47,128,237,.25);
}

.ring-two {
    border-color: rgba(22,163,148,.25);
}

.signal-row {
    bottom: 28px;
}

.signal-row span {
    border-color: rgba(220,229,239,.9);
    box-shadow: 0 10px 22px rgba(16,42,67,.07);
}

.stats-band {
    padding: 34px 0;
    background:
        linear-gradient(135deg, #102a43, #164b76 56%, #0f766e);
}

.stats-grid {
    gap: 14px;
}

.stat-item {
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
}

.stat-item strong {
    font-size: clamp(30px, 3vw, 42px);
}

.section {
    padding: 96px 0;
}

.section-muted {
    background:
        linear-gradient(180deg, #f7fafc, #eef6f8);
    border-block: 1px solid rgba(220,229,239,.7);
}

.section-head {
    margin-bottom: 38px;
}

.section-head h2 {
    max-width: 820px;
}

.card-grid,
.work-grid,
.blog-grid,
.pricing-grid,
.values-grid,
.testimonial-grid,
.services-showcase,
.deliverable-grid {
    gap: 22px;
}

.service-card,
.work-card,
.post-card,
.price-card,
.values-grid article,
.side-panel,
.contact-panel,
.contact-form,
.testimonial-card,
.deliverable-card,
.outcome-item,
.workflow-step,
.method-step {
    border-color: rgba(220,229,239,.92);
    background: linear-gradient(180deg, #fff, #fbfdff);
    box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 12px 34px rgba(16,42,67,.055);
}

.service-card,
.work-card,
.post-card,
.price-card,
.values-grid article {
    padding: 28px;
}

.service-card:hover,
.work-card:hover,
.post-card:hover,
.price-card:hover,
.service-feature:hover {
    border-color: rgba(47,128,237,.42);
    box-shadow: 0 22px 52px rgba(16,42,67,.13);
    transform: translateY(-4px);
}

.icon-mark {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: linear-gradient(135deg, #eaf4ff, #edf9f7);
    color: var(--primary);
    box-shadow: 0 10px 22px rgba(47,128,237,.1);
}

.service-card p,
.work-card p,
.post-card p,
.price-card li,
.narrative p,
.detail-copy p,
.method-step p,
.workflow-step p {
    line-height: 1.78;
}

.inline-action,
.service-card a,
.work-card a,
.post-card a,
.text-link,
.footer-grid a,
.side-panel a {
    color: #1d6fd6;
}

.work-visual {
    min-height: 200px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(16,42,67,.96), rgba(47,128,237,.72)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.16) 0 1px, transparent 1px 16px);
}

.post-image,
.article-cover,
.case-gallery-main {
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.price-card.featured {
    border-color: rgba(47,128,237,.62);
    background:
        linear-gradient(180deg, #ffffff, #f6fbff);
    box-shadow: 0 24px 60px rgba(47,128,237,.16);
}

.price-card strong {
    color: var(--primary);
}

.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: "";
    width: 44px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
}

.testimonial-card blockquote {
    font-size: clamp(18px, 2vw, 22px);
}

.cta-band {
    position: relative;
    overflow: hidden;
    padding: 82px 0;
    background:
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(135deg, #102a43, #164b76 58%, #0f766e);
    background-size: 42px 42px, 42px 42px, auto;
}

.cta-inner {
    align-items: center;
}

.services-console {
    overflow: hidden;
}

.console-header {
    background: rgba(255,255,255,.56);
}

.console-row {
    border-color: rgba(220,229,239,.9);
    background: rgba(255,255,255,.78);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.console-row:hover {
    border-color: rgba(47,128,237,.36);
    box-shadow: 0 12px 26px rgba(16,42,67,.08);
    transform: translateY(-2px);
}

.service-feature {
    border-color: rgba(220,229,239,.92);
    background:
        linear-gradient(180deg, #ffffff, #fbfdff);
    box-shadow: 0 12px 34px rgba(16,42,67,.055);
}

.service-feature::before,
.service-orbit::before {
    display: none;
}

.service-number {
    color: rgba(16,42,67,.12);
}

.service-outcomes li {
    padding: 8px 0;
    border-top: 1px solid rgba(220,229,239,.72);
}

.method-step {
    border-inline-start: 0;
    border-top: 3px solid var(--accent);
    border-radius: 8px;
}

.method-step span,
.workflow-step > span {
    border-radius: 8px;
    background: linear-gradient(135deg, #eaf4ff, #edf9f7);
}

.service-orbit-core,
.orbit-chip {
    border-color: rgba(220,229,239,.9);
    background: rgba(255,255,255,.88);
    box-shadow: 0 16px 34px rgba(16,42,67,.1);
}

.service-detail-layout,
.service-workflow,
.detail-layout,
.contact-grid {
    gap: 32px;
}

.side-panel {
    padding: 24px;
}

.service-nav-panel a {
    border-color: rgba(220,229,239,.7);
}

.service-nav-panel a.is-active,
.service-nav-panel a:hover {
    border-color: rgba(47,128,237,.3);
    background: linear-gradient(180deg, #edf6ff, #f7fbff);
}

.outcome-item,
.deliverable-card {
    min-height: 92px;
}

.workflow-step {
    grid-template-columns: 58px 1fr;
}

.tool-cloud span {
    background: rgba(255,255,255,.86);
}

.narrative {
    max-width: 980px;
}

.values-grid article {
    min-height: 220px;
}

.values-grid article h3::after {
    content: "";
    display: block;
    width: 38px;
    height: 3px;
    margin-top: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
}

.detail-copy {
    padding: 28px;
    border: 1px solid rgba(220,229,239,.92);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.case-gallery div {
    background:
        linear-gradient(135deg, var(--primary), var(--accent)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.18) 0 1px, transparent 1px 16px);
}

.article-page .page-hero {
    padding-bottom: 96px;
}

.article-cover {
    margin-top: -56px;
    position: relative;
    z-index: 1;
}

.article-body {
    color: var(--text);
    line-height: 1.9;
}

.article-body p {
    color: var(--text);
}

.article-body blockquote {
    border-radius: 8px;
    background: linear-gradient(180deg, #f7fbff, #edf6ff);
}

.contact-panel,
.contact-form {
    padding: 30px;
}

.contact-panel a,
.contact-panel span {
    padding: 12px 0;
    border-bottom: 1px solid rgba(220,229,239,.72);
}

.map-box {
    min-height: 250px;
    border-radius: 8px;
    background:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px),
        linear-gradient(135deg, #102a43, #0f766e);
    background-size: 34px 34px, 34px 34px, auto;
}

input,
select,
textarea {
    min-height: 48px;
    border-color: rgba(188,201,217,.95);
    border-radius: 8px;
    background: #fbfdff;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

textarea {
    min-height: 142px;
}

input:focus,
select:focus,
textarea:focus {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(47,128,237,.13);
}

.site-footer {
    padding: 64px 0 28px;
    background:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        #0b1727;
    background-size: 42px 42px, 42px 42px, auto;
}

.footer-grid {
    gap: 44px;
}

.footer-logo {
    width: 220px;
    box-shadow: 0 18px 34px rgba(0,0,0,.18);
}

.footer-grid h2 {
    letter-spacing: 0;
}

.footer-grid a:hover {
    color: #80d8cf;
}

.footer-bottom {
    color: rgba(255,255,255,.62);
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #16a394);
}

.back-top {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

@media (max-width: 940px) {
    .container {
        width: min(100% - 32px, 1180px);
    }

    .site-nav {
        inset: 82px 16px auto;
        padding: 12px;
        border-radius: 8px;
        background: rgba(255,255,255,.96);
    }

    .site-nav > a,
    .language-switch a {
        justify-content: center;
    }

    .hero,
    .page-hero {
        padding-block: 68px 52px;
    }

    .hero-grid,
    .services-hero-grid,
    .service-detail-grid {
        gap: 38px;
    }

    .section {
        padding: 76px 0;
    }

    .brand-stage,
    .service-orbit {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .nav-wrap {
        min-height: 74px;
    }

    .brand img {
        width: 160px;
    }

    .site-nav {
        inset: 74px 12px auto;
    }

    .hero,
    .page-hero {
        padding-block: 54px 42px;
    }

    h1 {
        font-size: clamp(38px, 13vw, 48px);
    }

    h2 {
        font-size: clamp(28px, 9vw, 36px);
    }

    .btn {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-metrics span {
        flex: 1 1 100%;
    }

    .service-card,
    .work-card,
    .post-card,
    .price-card,
    .values-grid article,
    .contact-panel,
    .contact-form,
    .detail-copy {
        padding: 22px;
    }

    .workflow-step {
        grid-template-columns: 1fr;
    }

    .article-cover {
        margin-top: -32px;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        inset-inline-end: 16px;
    }
}
