:root {
    --primary: #2563EB;
    --secondary: #0F172A;
    --accent: #22C55E;
    --bg: #F8FAFC;
    --text: #172033;
    --muted: #64748B;
    --border: #E2E8F0;
    --white: #FFFFFF;
    --shadow: 0 22px 60px rgba(15, 23, 42, .12);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
h1, h2, h3 { color: var(--secondary); font-weight: 800; line-height: 1.15; letter-spacing: 0; }
h1 { font-size: clamp(42px, 7vw, 78px); }
h2 { font-size: clamp(28px, 4vw, 46px); }
h3 { font-size: 21px; }
p { color: var(--muted); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, .8);
}
.navbar { min-height: 82px; }
.navbar > .container {
    display: flex;
    align-items: center;
}
.navbar-toggler {
    margin-left: auto;
}
.navbar-brand, .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary);
    font-weight: 900;
}
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 14px 34px rgba(37, 99, 235, .28);
}
.nav-link { color: #334155; font-weight: 600; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.btn {
    min-height: 48px;
    border-radius: 8px;
    padding: 11px 20px;
    font-weight: 800;
}
.btn-gradient {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 16px 34px rgba(37, 99, 235, .24);
}
.btn-gradient:hover { color: #fff; transform: translateY(-1px); }
.glass-panel {
    border: 1px solid rgba(255,255,255,.62);
    background: rgba(255,255,255,.74);
    backdrop-filter: blur(18px);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 92px 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, .96) 0%, rgba(15, 23, 42, .90) 42%, rgba(15, 23, 42, .36) 68%, rgba(15, 23, 42, .08) 100%),
        url("../images/home-hero-callback.webp") center / cover no-repeat;
}
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, .06), rgba(15, 23, 42, .28));
    pointer-events: none;
}
.hero-section .container { position: relative; z-index: 2; }
.section-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.hero-section h1, .hero-section p { color: #fff; }
.premium-hero h1 {
    max-width: 920px;
    font-size: clamp(42px, 4.6vw, 64px);
    line-height: 1.05;
}
.premium-hero h1,
.premium-hero .hero-copy {
    text-shadow: 0 3px 18px rgba(0,0,0,.34);
}
.hero-section h1 span { color: #86EFAC; }
.hero-copy {
    max-width: 760px;
    font-size: 19px;
    color: #F8FAFC !important;
}
.hero-rating {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: #FDE68A;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 900;
}
.hero-offer-line {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-bottom: 14px;
    padding: 9px 13px;
    border: 1px solid rgba(134,239,172,.32);
    border-radius: 8px;
    color: #ECFEFF;
    background: rgba(15,23,42,.42);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 900;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-call-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    min-width: 236px;
    line-height: 1.1;
}
.hero-call-btn small {
    color: rgba(255,255,255,.88);
    font-size: 13px;
    font-weight: 800;
}
.hero-consultation-form {
    max-width: 340px;
    margin-left: auto;
}
.hero-proof-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    max-width: 380px;
    margin-top: 18px;
}
.hero-proof-row div {
    padding: 9px 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(14px);
}
.hero-proof-row strong {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
}
.hero-proof-row span {
    display: block;
    margin-top: 4px;
    color: #DDEBFF;
    font-size: 10px;
    font-weight: 700;
}
.hero-float-card {
    position: absolute;
    z-index: 2;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 16px;
    color: #fff;
    background: rgba(15, 23, 42, .34);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 50px rgba(15,23,42,.22);
    font-weight: 900;
    animation: floatMetric 5s ease-in-out infinite alternate;
}
.hero-float-one { top: 18%; right: 31%; }
.hero-float-two { bottom: 18%; right: 12%; animation-delay: .8s; }
.hero-float-three { top: 8%; right: 1%; animation-delay: 1.5s; }
@keyframes floatMetric {
    from { transform: translateY(0); }
    to { transform: translateY(-12px); }
}
.hero-visual {
    position: relative;
    min-height: 430px;
    padding: 32px;
}
.metric-card {
    background: #fff;
    border-radius: 8px;
    padding: 26px;
}
.metric-card span, .metric-card small { color: var(--muted); }
.metric-card strong { display: block; color: var(--primary); font-size: 54px; font-weight: 900; }
.growth-chart {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 36px;
    height: 160px;
    display: flex;
    align-items: end;
    gap: 14px;
}
.growth-chart span {
    flex: 1;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, var(--accent), var(--primary));
    animation: rise 2.4s ease-in-out infinite alternate;
}
.growth-chart span:nth-child(1) { height: 42%; }
.growth-chart span:nth-child(2) { height: 58%; animation-delay: .2s; }
.growth-chart span:nth-child(3) { height: 72%; animation-delay: .4s; }
.growth-chart span:nth-child(4) { height: 86%; animation-delay: .6s; }
.growth-chart span:nth-child(5) { height: 100%; animation-delay: .8s; }
@keyframes rise { from { transform: scaleY(.8); } to { transform: scaleY(1); } }
.floating-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--secondary);
    background: #fff;
    box-shadow: var(--shadow);
    font-weight: 800;
}
.floating-card.one { top: 24px; right: -16px; }
.floating-card.two { bottom: 28px; left: -18px; }
.stats-row {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 66px;
    padding: 24px;
}
.stats-row div { text-align: center; }
.stats-row strong { display: block; color: var(--primary); font-size: 34px; font-weight: 900; }
.stats-row span { color: var(--secondary); font-weight: 700; }
.section { padding: 86px 0; }
.section-soft { background: #fff; }
.section-heading { max-width: 790px; margin: 0 auto 42px; text-align: center; }
.premium-services-section {
    background:
        radial-gradient(circle at top left, rgba(37,99,235,.08), transparent 34%),
        linear-gradient(180deg, #F8FAFC, #FFFFFF);
}
.premium-service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}
.premium-service-card {
    position: relative;
    overflow: hidden;
    min-height: 285px;
    padding: 24px;
    border: 1px solid rgba(37,99,235,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 16px 36px rgba(15,23,42,.07);
    transform: translateY(0) scale(1);
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, background .32s ease;
    will-change: transform;
}
.premium-service-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -42px;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(34,197,94,.10);
    transform: scale(1);
    transition: transform .36s ease, opacity .36s ease;
}
.premium-service-card:hover {
    border-color: rgba(37,99,235,.38);
    background: #fff;
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
    transform: translateY(-10px) scale(1.025);
}
.premium-service-card:hover::after {
    opacity: .95;
    transform: scale(1.45);
}
.premium-service-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 14px 30px rgba(37,99,235,.22);
    transition: transform .32s ease, box-shadow .32s ease;
}
.premium-service-card:hover .premium-service-icon {
    transform: translateY(-4px) rotate(-3deg) scale(1.08);
    box-shadow: 0 18px 38px rgba(37,99,235,.30);
}
.premium-service-card h3 {
    position: relative;
    z-index: 1;
    font-size: 19px;
    transition: color .25s ease;
}
.premium-service-card:hover h3 {
    color: var(--primary);
}
.premium-service-card ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 18px 0 20px;
    list-style: none;
}
.premium-service-card li {
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    transform: translateX(0);
    transition: transform .25s ease, color .25s ease;
}
.premium-service-card:hover li {
    color: #334155;
}
.premium-service-card:hover li:nth-child(1) { transform: translateX(4px); }
.premium-service-card:hover li:nth-child(2) { transform: translateX(7px); }
.premium-service-card:hover li:nth-child(3) { transform: translateX(10px); }
.premium-service-card a i {
    transition: transform .25s ease;
}
.premium-service-card:hover a i {
    transform: translateX(6px);
}
.premium-service-card li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--accent);
    font-weight: 900;
}
.premium-service-card a {
    position: relative;
    z-index: 1;
    color: var(--primary);
    font-weight: 900;
}
.service-card, .industry-card, .portfolio-card, .team-card, .contact-form-panel, .office-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.76) 42%, rgba(255,255,255,.16) 100%),
        var(--service-bg) right center / cover no-repeat;
    opacity: 1;
    pointer-events: none;
}
.service-card > * {
    position: relative;
    z-index: 1;
}
.row > div:nth-child(6n+1) > .service-card { --service-bg: url("../images/service-website.webp"); }
.row > div:nth-child(6n+2) > .service-card { --service-bg: url("../images/service-ads.webp"); }
.row > div:nth-child(6n+3) > .service-card { --service-bg: url("../images/service-seo.webp"); }
.row > div:nth-child(6n+4) > .service-card { --service-bg: url("../images/service-landing.webp"); }
.row > div:nth-child(6n+5) > .service-card { --service-bg: url("../images/service-local.webp"); }
.row > div:nth-child(6n+6) > .service-card { --service-bg: url("../images/service-leads.webp"); }
.service-card:hover, .industry-card:hover, .portfolio-card:hover, .team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.service-card > i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.service-card a:not(.btn), .industry-card a { color: var(--primary); font-weight: 800; }
.service-card-full h2 { font-size: 24px; }
.service-card-full ul {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 18px 0 24px;
    list-style: none;
}
.service-card-full li {
    color: #475569;
    font-weight: 600;
}
.service-card-full li::before {
    content: "✓";
    color: var(--accent);
    font-weight: 900;
    margin-right: 8px;
}
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.industry-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: #fff;
}
.industry-card-media {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: #e2e8f0;
}
.industry-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #e2e8f0;
    transform: scale(1);
    transition: transform .45s ease, filter .45s ease;
    will-change: transform;
}
.industry-card:hover .industry-card-image {
    filter: brightness(1.04) saturate(1.06);
    transform: scale(1.1);
}
.industry-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}
.industry-stat {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #166534;
    background: rgba(34,197,94,.10);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}
.industry-card-body h3 {
    margin-bottom: 0;
}
.industry-card-body a {
    margin-top: 18px;
}
.service-detail-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.service-detail-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}
.service-detail-list a {
    position: relative;
    padding: 14px 14px 14px 42px;
    border: 1px solid rgba(37,99,235,.16);
    border-radius: 8px;
    color: var(--secondary);
    background: rgba(255,255,255,.9);
    box-shadow: 0 10px 24px rgba(15,23,42,.05);
    font-weight: 800;
}
.service-detail-list a::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-50%);
}
.service-detail-list a:hover {
    color: var(--primary);
    border-color: rgba(37,99,235,.3);
    transform: translateY(-1px);
}
.website-service-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 38px;
}
.website-service-groups h3 {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    font-size: 30px;
}
.website-service-note {
    grid-column: 1 / -1;
    max-width: 760px;
    margin: -2px 0 8px;
}
.website-service-group {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(37,99,235,.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(239,246,255,.86));
    box-shadow: 0 14px 30px rgba(15,23,42,.06);
}
.website-service-group::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(37,99,235,.16), rgba(6,182,212,.18));
    transform: rotate(18deg);
}
.website-service-group a {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 76px;
    padding: 18px 44px 18px 18px;
    border-radius: 8px;
    color: var(--secondary);
    background: transparent;
    font-size: 15px;
    font-weight: 900;
}
.website-service-group a:hover {
    color: var(--primary);
    background: rgba(255,255,255,.52);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.results-section {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(34,197,94,.18), transparent 30%),
        linear-gradient(135deg, #0F172A, #1E3A8A);
}
.results-section h2,
.results-section p {
    color: #fff;
}
.campaign-data-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .75fr);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
    backdrop-filter: blur(16px);
}
.campaign-data-shot img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center top;
}
.campaign-data-placeholder {
    display: grid;
    place-items: center;
    min-height: 360px;
    color: #DDEBFF;
    background: rgba(15,23,42,.36);
    font-weight: 900;
}
.campaign-data-placeholder i {
    margin-bottom: 10px;
    color: #86EFAC;
    font-size: 42px;
}
.campaign-data-placeholder span {
    display: block;
}
.campaign-data-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    color: #fff;
    background: linear-gradient(135deg, rgba(30,58,138,.80), rgba(37,99,235,.64));
}
.campaign-data-content > span {
    color: #86EFAC;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.campaign-data-content h3 {
    margin: 12px 0 22px;
    color: #fff;
    font-size: clamp(28px, 3vw, 42px);
}
.campaign-data-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.campaign-data-metrics div {
    padding: 16px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(255,255,255,.10);
}
.campaign-data-metrics strong {
    display: block;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}
.campaign-data-metrics small {
    display: block;
    margin-top: 8px;
    color: #DDEBFF;
    font-weight: 750;
}
.case-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(37,99,235,.10) 0%, rgba(6,182,212,.08) 34%, rgba(34,197,94,.10) 68%, rgba(255,255,255,1) 100%);
}
.case-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0 18%, rgba(37,99,235,.08) 18% 31%, transparent 31% 58%, rgba(34,197,94,.08) 58% 70%, transparent 70% 100%);
    pointer-events: none;
}
.case-section .container {
    position: relative;
    z-index: 1;
}
.case-section .section-heading h2 {
    color: #0f172a;
}
.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.case-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(37,99,235,.12);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.94));
    box-shadow: 0 18px 44px rgba(15,23,42,.08);
    transform: translateY(0) scale(1);
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.case-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}
.case-card::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -52px;
    width: 150px;
    height: 150px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(37,99,235,.14), rgba(34,197,94,.16));
    transform: rotate(18deg) scale(1);
    transition: transform .38s ease;
}
.case-card:nth-child(2)::before,
.case-card:nth-child(2) .case-metrics div i {
    background: linear-gradient(90deg, #06B6D4, #2563EB);
}
.case-card:nth-child(3)::before,
.case-card:nth-child(3) .case-metrics div i {
    background: linear-gradient(90deg, #22C55E, #14B8A6);
}
.case-card:hover {
    border-color: rgba(37,99,235,.34);
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
    transform: translateY(-10px) scale(1.02);
}
.case-card:hover::after {
    transform: rotate(24deg) scale(1.24);
}
.case-card > span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.case-card h3 {
    position: relative;
    z-index: 1;
    margin: 10px 0 22px;
    font-size: 22px;
    transition: color .25s ease;
}
.case-card:hover h3 {
    color: var(--primary);
}
.case-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.case-metrics div {
    position: relative;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(37,99,235,.10);
    box-shadow: 0 10px 24px rgba(15,23,42,.05);
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.case-metrics div i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-size: 13px;
}
.case-card:hover .case-metrics div {
    background: #fff;
    border-color: rgba(37,99,235,.18);
}
.case-card:hover .case-metrics div:nth-child(1) { transform: translateY(-3px); }
.case-card:hover .case-metrics div:nth-child(2) { transform: translateY(-6px); }
.case-card:hover .case-metrics div:nth-child(3) { transform: translateY(-5px); }
.case-card:hover .case-metrics div:nth-child(4) { transform: translateY(-8px); }
.case-card:hover .case-metrics div i {
    animation: metricPulse .9s ease both;
}
.case-metrics small {
    display: block;
    color: var(--muted);
    font-weight: 800;
}
.case-metrics strong {
    display: block;
    color: var(--secondary);
    font-size: 20px;
    font-weight: 900;
}
@keyframes metricPulse {
    0%, 100% { transform: scale(1); }
    45% { transform: scale(1.12); }
}
.review-section {
    background:
        radial-gradient(circle at top, rgba(37,99,235,.07), transparent 42%),
        #F8FAFC;
}
.testimonial-card span {
    display: block;
    margin-bottom: 14px;
    color: #F59E0B;
    letter-spacing: .04em;
}
.video-section {
    padding-top: 0;
}
.video-panel {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 26px;
    align-items: center;
    padding: 38px;
    border-radius: 20px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(15,23,42,.94), rgba(37,99,235,.82)),
        url("../images/home-hero-callback.webp") center / cover no-repeat;
    box-shadow: var(--shadow);
}
.video-panel h2,
.video-panel p {
    color: #fff;
}
.video-panel button {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border: 0;
    border-radius: 999px;
    color: var(--primary);
    background: #fff;
    box-shadow: 0 18px 44px rgba(15,23,42,.22);
}
.video-panel button i {
    margin-left: 4px;
    font-size: 28px;
}
.video-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: #0f172a;
    box-shadow: 0 30px 80px rgba(15,23,42,.34);
}
.video-modal .modal-body {
    position: relative;
    padding: 0;
}
.video-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(15,23,42,.76);
    backdrop-filter: blur(12px);
}
.intro-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}
.video-fallback {
    display: grid;
    place-items: center;
    min-height: 420px;
    padding: 56px 28px;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(15,23,42,.96), rgba(37,99,235,.78)),
        url("../images/home-hero-callback.webp") center / cover no-repeat;
}
.video-fallback i {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin-bottom: 20px;
    border-radius: 999px;
    color: var(--secondary);
    background: rgba(255,255,255,.12);
}
.video-fallback h2,
.video-fallback p {
    max-width: 640px;
    color: #fff;
}
.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--border);
    font-weight: 800;
}
.why-item i { color: var(--accent); }
.portfolio-art {
    min-height: 180px;
    border-radius: 8px;
    margin-bottom: 22px;
    background:
        linear-gradient(135deg, rgba(37,99,235,.9), rgba(6,182,212,.78)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.28) 0 10px, transparent 10px 22px);
}
.art-2 { filter: hue-rotate(40deg); }
.art-3 { filter: hue-rotate(95deg); }
.testimonial-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    color: var(--secondary);
    font-size: 22px;
    font-weight: 700;
}
.testimonial-card strong {
    display: block;
    margin-top: 20px;
    color: var(--primary);
    font-size: 16px;
}
.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}
.faq-accordion .accordion-button { font-weight: 800; }
.cta-section { padding: 76px 0; }
.cta-panel {
    text-align: center;
    border-radius: 8px;
    padding: 56px 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: var(--shadow);
}
.cta-panel h2, .cta-panel p { color: #fff; }
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}
.page-hero {
    padding: 108px 0 84px;
    color: #fff;
    background:
        linear-gradient(125deg, rgba(15, 23, 42, .94), rgba(37, 99, 235, .82)),
        url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1600&q=80") center/cover;
}
.page-hero h1, .page-hero p { color: #fff; max-width: 850px; }
.service-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 128px 0 96px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.service-detail-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px;
    height: 70px;
    background: linear-gradient(180deg, transparent, var(--bg));
}
.service-detail-hero .container {
    position: relative;
    z-index: 1;
}
.service-detail-section {
    background:
        linear-gradient(180deg, #F8FAFC 0%, #EEF6FF 100%);
}
.service-detail-panel {
    border-color: rgba(37,99,235,.12);
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(239,246,255,.94));
}
.service-detail-panel > p {
    max-width: 720px;
    margin-bottom: 0;
}
.story-panel { display: grid; gap: 16px; padding: 26px; }
.story-panel div, .timeline-item, .team-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    background: #fff;
}
.story-panel strong { display: block; color: var(--primary); margin-bottom: 5px; }
.timeline { max-width: 860px; margin: 0 auto; }
.timeline-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    margin-bottom: 14px;
}
.timeline-item span {
    width: 18px;
    height: 18px;
    border-radius: 99px;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(6,182,212,.12);
}
.timeline-item p { margin: 0; font-weight: 800; color: var(--secondary); }
.team-card i { color: var(--primary); font-size: 34px; margin-bottom: 16px; }
.contact-form-panel {
    padding: 30px;
    border: 1px solid rgba(37,99,235,.12);
    background:
        radial-gradient(circle at top right, rgba(34,197,94,.08), transparent 30%),
        rgba(255,255,255,.96);
}
.contact-form-panel h2 {
    margin-bottom: 12px;
    color: #0F4F43;
    font-size: 30px;
    text-align: center;
}
.contact-intro {
    max-width: 720px;
    margin: 0 auto 22px;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
}
.contact-form-panel label {
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 6px;
}
.contact-field {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    margin-bottom: 10px;
    padding: 0 17px;
    border: 1px solid #D7DEE8;
    border-radius: 999px;
    background: #fff;
    font-weight: 800;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-field:focus-within {
    border-color: rgba(37,99,235,.5);
    box-shadow: 0 0 0 4px rgba(37,99,235,.10);
}
.contact-field i {
    flex: 0 0 18px;
    color: #0F766E;
    text-align: center;
}
.contact-field .form-control,
.contact-field .form-select {
    width: 100%;
    min-height: 50px;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    color: var(--secondary);
    background: transparent;
    box-shadow: none;
    font: inherit;
    font-size: 15px;
}
.contact-field .form-select {
    appearance: auto;
}
.contact-field .form-control:focus,
.contact-field .form-select:focus {
    box-shadow: none;
    background: transparent;
}
.contact-message-field {
    align-items: flex-start;
    border-radius: 22px;
}
.contact-message-field i {
    margin-top: 16px;
}
.contact-message-field textarea.form-control {
    min-height: 102px;
    padding: 14px 0;
    resize: none;
    line-height: 1.45;
}
.contact-submit {
    width: 100%;
    min-height: 56px;
    margin-top: 2px;
    border: 0;
    background: #0F5F53;
    box-shadow: 0 14px 28px rgba(15,95,83,.25);
}
.contact-submit:hover {
    background: #0B4D43;
}
.contact-submit.is-loading {
    opacity: .75;
    pointer-events: none;
}
.privacy-note {
    display: flex;
    gap: 9px;
    margin: 14px 0 0;
    color: #212529;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}
.privacy-note i {
    margin-top: 4px;
    color: var(--accent);
}
.privacy-note a {
    color: #0F4F43;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.privacy-note a:hover {
    color: var(--primary);
}
.contact-form-panel .privacy-note,
.hero-section .privacy-note {
    color: #212529;
}
.contact-form-panel .privacy-note a,
.hero-section .privacy-note a {
    color: #0F4F43;
}
.contact-form-panel.strategy-call-form {
    max-width: 340px;
    height: auto;
    padding: 22px;
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 26px 70px rgba(15,23,42,.20);
}
.contact-page .strategy-call-form {
    margin: 0 auto;
}
.contact-form-panel.strategy-call-form h2 {
    margin-bottom: 16px;
    color: #0F4F43;
    font-size: 21px;
    line-height: 1.18;
    text-align: center;
}
.strategy-call-form .contact-field {
    min-height: 44px;
    margin-bottom: 9px;
    padding: 0 14px;
}
.strategy-call-form .contact-submit {
    min-height: 44px;
    margin-top: 3px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
}
.strategy-call-form .contact-field .form-control,
.strategy-call-form .contact-field .form-select {
    min-height: 42px;
    font-size: 13px;
}
.strategy-call-form .contact-field i {
    flex-basis: 16px;
    font-size: 14px;
}
.form-control, .form-select {
    min-height: 52px;
    border-radius: 8px;
    border-color: var(--border);
}
.office-card p { display: flex; gap: 12px; color: var(--secondary); font-weight: 700; }
.office-card i { width: 20px; color: var(--primary); }
.service-quote-card {
    position: sticky;
    top: 108px;
    padding: 32px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.92), rgba(239,246,255,.86));
}
.service-quote-card h2 {
    font-size: 34px;
}
.service-quote-card .btn {
    width: 100%;
    justify-content: center;
}
.map-placeholder {
    display: grid;
    place-items: center;
    min-height: 260px;
    margin-top: 24px;
    border-radius: 8px;
    color: var(--muted);
    background: linear-gradient(135deg, #E0F2FE, #F8FAFC);
    border: 1px dashed #93C5FD;
    font-weight: 800;
}
.policy-content { max-width: 940px; }
.policy-content h2 { margin-top: 30px; font-size: 26px; }
.policy-updated {
    margin-top: 14px;
    color: #D1FAE5;
    font-size: 14px;
    font-weight: 800;
}
.site-footer {
    padding: 62px 0 26px;
    color: #CBD5E1;
    background: var(--secondary);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .9fr 1.15fr 1.2fr;
    gap: 32px;
}
.site-footer h3 { color: #fff; font-size: 18px; }
.site-footer p, .site-footer span { color: #CBD5E1; }
.site-footer a { display: block; color: #E2E8F0; margin-bottom: 10px; }
.site-footer a:hover { color: var(--accent); }
.footer-brand { color: #fff !important; margin-bottom: 14px !important; }
.footer-service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-service-areas span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 6px 10px;
    border: 1px solid rgba(226, 232, 240, .16);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    font-size: 14px;
    line-height: 1.25;
}
.footer-service-areas i {
    color: var(--accent);
    font-size: 12px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    margin-top: 36px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom p { margin: 0; }
.float-action, .back-to-top {
    position: fixed;
    right: 18px;
    z-index: 1001;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    box-shadow: var(--shadow);
}
.float-whatsapp { bottom: 86px; background: #22C55E; }
.float-call { bottom: 148px; background: var(--primary); }
.back-to-top { bottom: 24px; background: var(--secondary); opacity: 0; pointer-events: none; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.lead-popup {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}
.lead-popup.active {
    opacity: 1;
    pointer-events: auto;
}
.lead-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,.66);
    backdrop-filter: blur(8px);
}
.lead-popup-card {
    position: relative;
    width: min(100%, 520px);
    padding: 34px;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(34,197,94,.16), transparent 34%),
        #fff;
    box-shadow: 0 30px 90px rgba(15,23,42,.34);
    transform: translateY(16px) scale(.98);
    transition: transform .22s ease;
}
.lead-popup.active .lead-popup-card {
    transform: translateY(0) scale(1);
}
.lead-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    color: #0F172A;
    background: #EEF2FF;
}
.lead-popup-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: #0F766E;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.lead-popup-offer {
    display: block;
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #065F46;
    background: rgba(34,197,94,.12);
    font-size: 15px;
    line-height: 1.35;
}
.lead-popup-card h2 {
    max-width: 360px;
    margin-bottom: 12px;
    color: #0F172A;
    font-size: 28px;
}
.lead-popup-card p {
    color: #475569;
    font-size: 15px;
    line-height: 1.55;
}
.lead-popup-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 22px;
}
.lead-popup-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid rgba(37,99,235,.14);
    border-radius: 999px;
    color: #0F172A;
    background: #F8FAFC;
    font-size: 13px;
    font-weight: 850;
}
.lead-popup-points i {
    color: #16A34A;
}
.lead-popup-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.lead-popup-actions .btn {
    justify-content: center;
    width: 100%;
}
.lead-popup-actions .btn-whatsapp {
    color: #fff;
    border: 0;
    background: #22C55E;
    box-shadow: 0 16px 34px rgba(34, 197, 94, .24);
}
.lead-popup-actions .btn-whatsapp:hover {
    color: #fff;
    background: #16A34A;
    transform: translateY(-1px);
}
