﻿:root {
    --bg: #f5f9ff;
    --bg-soft: #eaf3ff;
    --surface: #ffffff;
    --surface-strong: #f8fbff;
    --ink: #061b3a;
    --muted: #617088;
    --muted-strong: #334763;
    --line: rgba(6, 27, 58, 0.11);
    --primary: #1478ff;
    --primary-dark: #073b8e;
    --primary-soft: rgba(20, 120, 255, 0.12);
    --blue: #1478ff;
    --dark: #061b3a;
    --shadow: 0 22px 60px rgba(6, 27, 58, 0.13);
    --shadow-soft: 0 14px 36px rgba(6, 27, 58, 0.09);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
    --transition: 220ms ease;
    --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, rgba(20, 120, 255, 0.14), transparent 32rem),
        radial-gradient(circle at 88% 8%, rgba(12, 118, 255, 0.12), transparent 26rem),
        var(--bg);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

svg {
    display: block;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: rgba(245, 249, 255, 0.82);
    backdrop-filter: blur(20px);
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 32px rgba(6, 27, 58, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
}

.logo-img {
    display: block;
    width: 168px;
    height: 48px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 10px 18px rgba(6, 27, 58, 0.1));
}

.logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--dark), #073b8e);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    box-shadow: 0 12px 24px rgba(6, 27, 58, 0.18);
}

.logo-text {
    font-size: 1.04rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.logo-text strong {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--muted-strong);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.nav-links a:hover {
    background: rgba(6, 27, 58, 0.06);
    color: var(--ink);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 18px;
    height: 2px;
    margin-inline: auto;
    border-radius: 999px;
    background: var(--ink);
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 20px;
    overflow: hidden;
    font-family: inherit;
    font-size: 0.94rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #1478ff, #073b8e);
    color: #fff;
    box-shadow: 0 16px 34px rgba(20, 120, 255, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 20px 44px rgba(20, 120, 255, 0.36);
}

.btn-secondary {
    border-color: rgba(6, 27, 58, 0.12);
    background: rgba(255, 255, 255, 0.74);
    color: var(--ink);
}

.btn-secondary:hover {
    border-color: rgba(20, 120, 255, 0.42);
    box-shadow: var(--shadow-soft);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
    box-shadow: 0 18px 40px rgba(6, 27, 58, 0.24);
}

.btn-lg {
    min-height: 56px;
    padding: 16px 24px;
    font-size: 1rem;
}

.hero {
    position: relative;
    isolation: isolate;
    padding: 142px 0 74px;
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(234, 243, 255, 0.72));
}

.hero-glow {
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.7;
}

.hero-glow-one {
    width: 310px;
    height: 310px;
    top: 130px;
    left: -90px;
    background: rgba(20, 120, 255, 0.18);
}

.hero-glow-two {
    width: 270px;
    height: 270px;
    right: -70px;
    bottom: 20px;
    background: rgba(12, 118, 255, 0.16);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 58px;
}

.hero-copy {
    max-width: 680px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    border: 1px solid rgba(20, 120, 255, 0.24);
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    padding: 8px 12px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.eyebrow::before {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(20, 120, 255, 0.12);
    content: "";
}

.hero h1,
.section-heading h2,
.conversion-band h2,
.location h2,
.final-cta h2 {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 0.98;
}

.hero h1 {
    max-width: 740px;
    font-size: clamp(2.7rem, 6.2vw, 5.7rem);
}

.hero-brand {
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    max-width: 660px;
    margin-top: 22px;
    color: var(--muted-strong);
    font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.hero-subtitle-small {
    margin-top: 12px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(6, 27, 58, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    padding: 9px 12px;
    color: var(--muted-strong);
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-proof span::before {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--primary);
    content: "";
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.glass-card {
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.48));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.repair-card {
    position: absolute;
    top: 22px;
    right: 28px;
    display: grid;
    width: min(100%, 420px);
    min-height: 500px;
    place-items: center;
    border-radius: 40px;
    padding: 28px;
}

.repair-card::before {
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(6, 27, 58, 0.08);
    border-radius: 30px;
    content: "";
}

.repair-card-header {
    position: absolute;
    top: 28px;
    left: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-strong);
    font-size: 0.84rem;
    font-weight: 800;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 8px rgba(20, 120, 255, 0.12);
}

.phone-mockup {
    position: relative;
    width: 210px;
    height: 396px;
    border: 10px solid #061b3a;
    border-radius: 38px;
    background: #061b3a;
    box-shadow: 0 30px 60px rgba(6, 27, 58, 0.28);
    transform: rotate(7deg);
    animation: floatPhone 5.4s ease-in-out infinite;
}

.phone-mockup::before {
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 3;
    width: 64px;
    height: 18px;
    border-radius: 999px;
    background: #061b3a;
    transform: translateX(-50%);
    content: "";
}

.phone-screen {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 25% 15%, rgba(20, 120, 255, 0.78), transparent 24%),
        radial-gradient(circle at 75% 25%, rgba(12, 118, 255, 0.6), transparent 26%),
        linear-gradient(160deg, #edf6ff, #d9ebff 45%, #ffffff);
}

.screen-shine {
    position: absolute;
    inset: -40% 48% auto auto;
    width: 80px;
    height: 620px;
    background: rgba(255, 255, 255, 0.32);
    transform: rotate(24deg);
}

.screen-crack {
    position: absolute;
    display: block;
    width: 2px;
    border-radius: 999px;
    background: rgba(6, 27, 58, 0.36);
    transform-origin: top;
}

.crack-one {
    top: 76px;
    left: 82px;
    height: 130px;
    transform: rotate(-28deg);
}

.crack-one::before,
.crack-two::before {
    position: absolute;
    width: 2px;
    height: 48px;
    border-radius: inherit;
    background: inherit;
    content: "";
}

.crack-one::before {
    top: 50px;
    left: 20px;
    transform: rotate(58deg);
}

.crack-two {
    top: 104px;
    left: 122px;
    height: 94px;
    transform: rotate(34deg);
}

.crack-two::before {
    top: 36px;
    left: -18px;
    transform: rotate(-62deg);
}

.tool-chip,
.floating-panel {
    position: absolute;
    border: 1px solid rgba(6, 27, 58, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.tool-chip {
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--muted-strong);
    font-size: 0.84rem;
    font-weight: 800;
}

.chip-screen {
    top: 104px;
    left: 28px;
}

.chip-battery {
    right: 36px;
    bottom: 120px;
}

.chip-board {
    left: 54px;
    bottom: 72px;
}

.floating-panel {
    display: grid;
    gap: 2px;
    min-width: 156px;
    border-radius: 20px;
    padding: 18px;
    animation: floatPanel 6s ease-in-out infinite;
}

.floating-panel strong {
    font-size: 1.18rem;
    letter-spacing: -0.04em;
}

.floating-panel span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.panel-top {
    top: 76px;
    left: 0;
}

.panel-bottom {
    right: 0;
    bottom: 44px;
    animation-delay: -1.6s;
}

.trust-section {
    padding: 18px 0 54px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-card,
.confidence-card,
.service-card,
.step-card,
.transformation-card,
.warranty-card,
.unit-list article,
.map-card,
.final-cta-card {
    border: 1px solid rgba(6, 27, 58, 0.08);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 30px rgba(6, 27, 58, 0.05);
}

.trust-card {
    min-height: 190px;
    border-radius: 22px;
    padding: 20px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.trust-card:hover,
.service-card:hover,
.step-card:hover,
.transformation-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 120, 255, 0.28);
    box-shadow: var(--shadow-soft);
}

.icon,
.service-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(20, 120, 255, 0.16), rgba(12, 118, 255, 0.1));
    color: var(--primary-dark);
}

.icon svg,
.service-icon svg,
.floating-whatsapp svg {
    width: 24px;
    height: 24px;
}

.icon svg,
.service-icon svg,
.floating-whatsapp svg,
.footer svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.trust-card strong {
    display: block;
    margin-top: 16px;
    font-size: 1rem;
    letter-spacing: -0.03em;
}

.trust-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.88rem;
}

.section {
    padding: 88px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-heading h2,
.confidence-card h2,
.conversion-band h2,
.warranty-card h2,
.location h2,
.final-cta h2 {
    font-size: clamp(2.05rem, 4vw, 3.8rem);
}

.section-heading p,
.confidence-card p,
.conversion-band p,
.warranty-card p,
.location-copy > p,
.final-cta p {
    margin-top: 16px;
    color: var(--muted-strong);
    font-size: 1.05rem;
}

.services {
    background: linear-gradient(180deg, rgba(234, 243, 255, 0.9), rgba(255, 255, 255, 0.48));
}

.confidence {
    padding-top: 34px;
}

.confidence-card,
.warranty-card {
    border-radius: 32px;
    padding: clamp(28px, 5vw, 56px);
}

.confidence-card p,
.warranty-card p {
    max-width: 880px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    display: flex;
    min-height: 270px;
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 24px;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card h3 {
    margin-top: 22px;
    font-size: 1.22rem;
    letter-spacing: -0.04em;
}

.service-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.95rem;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    color: var(--primary-dark);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.service-card a::after {
    content: ">";
    transition: transform var(--transition);
}

.service-card:hover a::after {
    transform: translateX(4px);
}

.conversion-band {
    margin: 24px auto;
}

.conversion-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.44), transparent 28rem),
        linear-gradient(135deg, #1478ff, #073b8e);
    padding: clamp(28px, 5vw, 54px);
    color: #fff;
    box-shadow: 0 28px 70px rgba(20, 120, 255, 0.24);
}

.conversion-content .eyebrow {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.conversion-content .eyebrow::before {
    background: #fff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
}

.conversion-band h2,
.conversion-band p {
    color: #fff;
}

.conversion-band p {
    max-width: 620px;
    opacity: 0.9;
}

.process {
    position: relative;
}

.process-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.step-card {
    position: relative;
    border-radius: 24px;
    padding: 22px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.step-card span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 15px;
    background: var(--dark);
    color: #fff;
    font-weight: 800;
}

.step-card h3 {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.step-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.88rem;
}

.transformations {
    background: var(--surface);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.transformation-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.transformation-card::before {
    display: block;
    width: 100%;
    height: 170px;
    margin-bottom: 22px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 30% 30%, rgba(20, 120, 255, 0.35), transparent 22%),
        radial-gradient(circle at 70% 70%, rgba(12, 118, 255, 0.24), transparent 25%),
        linear-gradient(135deg, #061b3a, #eaf3ff);
    content: "";
}

.transformation-card.has-photo::before {
    display: none;
}

.transformation-card img {
    display: block;
    width: 100%;
    height: 220px;
    margin-bottom: 22px;
    border-radius: 22px;
    object-fit: cover;
    object-position: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.transformation-card:nth-child(2) img {
    object-position: 44% center;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 800;
}

.before-after span:first-child {
    color: var(--muted);
}

.before-after strong {
    color: var(--primary-dark);
}

.transformation-card p {
    margin-top: 12px;
    color: var(--muted);
}

.location {
    background: linear-gradient(180deg, rgba(245, 249, 255, 0.4), rgba(234, 243, 255, 0.9));
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: 36px;
}

.unit-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.unit-list article {
    border-radius: 18px;
    padding: 18px;
}

.unit-list strong,
.unit-list span {
    display: block;
}

.unit-list span {
    margin-top: 4px;
    color: var(--muted);
}

.unit-list a {
    display: inline-flex;
    width: fit-content;
    margin-top: 12px;
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.unit-list a:hover {
    text-decoration: underline;
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.map-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 32px;
    background:
        radial-gradient(circle at 30% 30%, rgba(20, 120, 255, 0.18), transparent 18rem),
        linear-gradient(135deg, #ffffff, #eaf3ff);
}

.map-grid {
    position: absolute;
    inset: 0;
    opacity: 0.7;
    background-image:
        linear-gradient(rgba(6, 27, 58, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 27, 58, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: rotate(-7deg) scale(1.12);
}

.map-card::before {
    position: absolute;
    top: 45%;
    left: -6%;
    right: -6%;
    height: 70px;
    border-radius: 999px;
    background: rgba(20, 120, 255, 0.16);
    transform: rotate(-10deg);
    content: "";
}

.map-pin {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: var(--dark);
    color: #fff;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: 0 18px 34px rgba(6, 27, 58, 0.24);
}

.map-pin span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 7px rgba(20, 120, 255, 0.18);
}

.pin-one {
    top: 36%;
    left: 18%;
}

.pin-two {
    right: 16%;
    bottom: 26%;
}

.map-caption {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 1px solid rgba(6, 27, 58, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    padding: 14px 16px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    backdrop-filter: blur(14px);
}

.final-cta {
    padding: 86px 0;
}

.final-cta-card {
    overflow: hidden;
    position: relative;
    border-radius: 36px;
    padding: clamp(30px, 6vw, 70px);
    text-align: center;
}

.final-cta-card::before {
    position: absolute;
    inset: auto -80px -160px;
    height: 260px;
    border-radius: 50%;
    background: rgba(20, 120, 255, 0.14);
    content: "";
}

.final-cta-card > * {
    position: relative;
}

.final-cta p {
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}

.final-cta .btn {
    margin-top: 28px;
}

.footer {
    border-top: 1px solid var(--line);
    background: #061b3a;
    color: #fff;
    padding: 54px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.7fr) minmax(220px, 0.9fr);
    gap: 34px;
}

.footer .logo {
    color: #fff;
}

.footer .logo-mark {
    background: linear-gradient(135deg, #1478ff, #073b8e);
}

.logo-img-footer {
    width: 190px;
    height: 54px;
    filter: drop-shadow(0 16px 28px rgba(12, 118, 255, 0.22));
}

.footer p,
.footer span,
.footer a {
    color: rgba(255, 255, 255, 0.72);
}

.footer p {
    max-width: 420px;
    margin-top: 16px;
}

.footer h3 {
    margin-bottom: 14px;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer a,
.footer span {
    display: block;
    margin-top: 9px;
    font-size: 0.95rem;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.footer-notice {
    margin-top: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    padding: 18px;
}

.footer-notice strong {
    display: block;
    color: #fff;
    font-size: 0.92rem;
}

.footer-notice p {
    max-width: 920px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.86rem;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1001;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #1478ff, #073b8e);
    color: #fff;
    box-shadow: 0 22px 46px rgba(20, 120, 255, 0.34);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 26px 56px rgba(20, 120, 255, 0.42);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatPhone {
    0%,
    100% {
        transform: rotate(7deg) translateY(0);
    }
    50% {
        transform: rotate(5deg) translateY(-12px);
    }
}

@keyframes floatPanel {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes photoFloat {
    0%,
    100% {
        transform: scale(1.02) translateY(0);
    }
    50% {
        transform: scale(1.05) translateY(-8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 520px;
        max-width: 560px;
        margin-inline: auto;
        width: 100%;
    }

    .trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-grid,
    .transformation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .nav {
        height: 68px;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 68px;
        right: 14px;
        left: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.94);
        padding: 12px;
        box-shadow: var(--shadow-soft);
        backdrop-filter: blur(18px);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 13px 14px;
    }

    .hero {
        padding-top: 112px;
    }

    .hero h1 {
        font-size: clamp(2.55rem, 12vw, 4.5rem);
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-grid,
    .services-grid,
    .process-steps,
    .transformation-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-card {
        min-height: auto;
    }

    .conversion-content {
        align-items: stretch;
        flex-direction: column;
    }

    .conversion-content .btn {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

    .logo-img {
        width: 142px;
        height: 42px;
    }

    .logo-text {
        font-size: 0.98rem;
    }

    .section {
        padding: 64px 0;
    }

    .hero {
        padding-bottom: 42px;
    }

    .hero-subtitle,
    .section-heading p,
    .conversion-band p,
    .location-copy > p,
    .final-cta p {
        font-size: 1rem;
    }

    .hero-proof {
        display: grid;
    }

    .hero-visual {
        min-height: 450px;
    }

    .repair-card {
        right: 0;
        left: 0;
        width: 100%;
        min-height: 430px;
        border-radius: 30px;
        padding: 20px;
    }

    .phone-mockup {
        width: 168px;
        height: 318px;
        border-width: 8px;
        border-radius: 32px;
    }

    .phone-screen {
        border-radius: 24px;
    }

    .tool-chip {
        padding: 8px 11px;
        font-size: 0.78rem;
    }

    .chip-screen {
        top: 94px;
        left: 18px;
    }

    .chip-board {
        left: 24px;
        bottom: 62px;
    }

    .chip-battery {
        right: 24px;
        bottom: 108px;
    }

    .floating-panel {
        min-width: 132px;
        padding: 14px;
    }

    .panel-top {
        top: 18px;
        left: 8px;
    }

    .panel-bottom {
        right: 8px;
        bottom: 8px;
    }

    .service-card {
        min-height: 240px;
    }

    .before-after {
        align-items: flex-start;
        flex-direction: column;
    }

    .location-grid {
        gap: 26px;
    }

    .map-card {
        min-height: 360px;
        border-radius: 24px;
    }

    .pin-one {
        left: 8%;
    }

    .pin-two {
        right: 8%;
    }

    .location-actions .btn {
        width: 100%;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }
}

/* Mobile-first polish for paid traffic landing experience */
@media (max-width: 860px) {
    body {
        background:
            radial-gradient(circle at 50% -8rem, rgba(20, 120, 255, 0.18), transparent 24rem),
            var(--bg);
    }

    .header {
        background: rgba(255, 255, 255, 0.9);
    }

    .hero {
        padding: 94px 0 34px;
    }

    .hero-grid {
        gap: 24px;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-brand {
        margin-bottom: 8px;
        font-size: 0.92rem;
    }

    .eyebrow {
        margin-bottom: 12px;
        padding: 7px 10px;
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: clamp(2.35rem, 11vw, 3.45rem);
        line-height: 0.96;
        letter-spacing: -0.075em;
    }

    .hero-subtitle {
        margin-top: 16px;
        font-size: 1rem;
        line-height: 1.48;
    }

    .hero-subtitle-small {
        margin-top: 10px;
        color: var(--muted);
        font-size: 0.94rem;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 24px;
    }

    .btn-lg {
        min-height: 52px;
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 18px;
    }

    .hero-proof span {
        align-items: flex-start;
        border-radius: 16px;
        padding: 10px;
        font-size: 0.76rem;
        line-height: 1.25;
    }

    .hero-visual {
        display: flex;
        min-height: auto;
        max-width: 390px;
        margin-top: 6px;
    }

    .repair-card {
        position: relative;
        inset: auto;
        width: 100%;
        min-height: 360px;
        border-radius: 28px;
        padding: 18px;
    }

    .repair-card::before {
        inset: 14px;
        border-radius: 22px;
    }

    .repair-card-header {
        top: 18px;
        left: 20px;
        right: 20px;
        font-size: 0.76rem;
    }

    .phone-mockup {
        width: 150px;
        height: 286px;
        border-width: 8px;
        border-radius: 30px;
    }

    .phone-screen {
        border-radius: 22px;
    }

    .tool-chip {
        padding: 8px 10px;
        font-size: 0.74rem;
        box-shadow: 0 10px 24px rgba(6, 27, 58, 0.1);
    }

    .chip-screen {
        top: 82px;
        left: 18px;
    }

    .chip-battery {
        right: 18px;
        bottom: 98px;
    }

    .chip-board {
        left: 24px;
        bottom: 52px;
    }

    .floating-panel {
        min-width: 118px;
        border-radius: 16px;
        padding: 12px;
    }

    .floating-panel strong {
        font-size: 1rem;
    }

    .floating-panel span {
        font-size: 0.72rem;
    }

    .panel-top {
        top: 8px;
        left: 8px;
    }

    .panel-bottom {
        right: 8px;
        bottom: 8px;
    }

    .trust-section {
        padding: 12px 0 34px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .trust-card {
        display: grid;
        grid-template-columns: 42px 1fr;
        column-gap: 12px;
        align-items: start;
        min-height: auto;
        border-radius: 18px;
        padding: 14px;
    }

    .trust-card .icon {
        grid-row: span 2;
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .trust-card strong {
        margin-top: 0;
        font-size: 0.96rem;
    }

    .trust-card p {
        margin-top: 4px;
        font-size: 0.84rem;
        line-height: 1.42;
    }

    .section {
        padding: 52px 0;
    }

    .confidence {
        padding-top: 18px;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .section-heading h2,
    .confidence-card h2,
    .conversion-band h2,
    .warranty-card h2,
    .location h2,
    .final-cta h2 {
        font-size: clamp(1.78rem, 8vw, 2.55rem);
        line-height: 1.02;
        letter-spacing: -0.065em;
    }

    .section-heading p,
    .confidence-card p,
    .conversion-band p,
    .warranty-card p,
    .location-copy > p,
    .final-cta p {
        margin-top: 12px;
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .confidence-card,
    .warranty-card,
    .final-cta-card {
        border-radius: 24px;
        padding: 24px 18px;
    }

    .service-card,
    .step-card,
    .transformation-card {
        min-height: auto;
        border-radius: 20px;
        padding: 18px;
    }

    .service-card h3 {
        margin-top: 16px;
        font-size: 1.1rem;
    }

    .service-card p,
    .step-card p,
    .transformation-card p {
        font-size: 0.9rem;
        line-height: 1.48;
    }

    .service-card a {
        margin-top: 18px;
    }

    .conversion-band {
        margin: 6px auto 0;
    }

    .conversion-content {
        border-radius: 24px;
        padding: 24px 18px;
    }

    .step-card {
        display: grid;
        grid-template-columns: 40px 1fr;
        column-gap: 12px;
        align-items: start;
    }

    .step-card span {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

    .step-card h3 {
        margin-top: 0;
    }

    .step-card p {
        grid-column: 2;
    }

    .transformation-card img {
        height: 190px;
        border-radius: 18px;
    }

    .location-grid {
        gap: 24px;
    }

    .unit-list article {
        border-radius: 18px;
        padding: 16px;
    }

    .map-card {
        min-height: 310px;
        border-radius: 24px;
    }

    .map-pin {
        max-width: 78%;
        padding: 10px 12px;
        white-space: normal;
        font-size: 0.78rem;
    }

    .footer {
        padding-bottom: 104px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        display: inline-flex;
        width: auto;
        height: 54px;
        gap: 9px;
        border-radius: 999px;
        padding: 0 18px;
    }

    .floating-whatsapp::after {
        content: "WhatsApp";
        font-size: 0.9rem;
        font-weight: 800;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .nav {
        height: 64px;
    }

    .nav-links {
        top: 64px;
    }

    .logo-img {
        width: 128px;
        height: 38px;
    }

    .mobile-menu-btn {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .hero {
        padding-top: 84px;
    }

    .hero h1 {
        max-width: 10ch;
        font-size: clamp(2.08rem, 12vw, 2.9rem);
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .repair-card {
        min-height: 330px;
    }

    .phone-mockup {
        width: 136px;
        height: 258px;
    }

    .panel-bottom {
        display: none;
    }

    .map-card {
        min-height: 280px;
    }
}


