@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --blue: #1557ff;
    --blue-deep: #0b3fd6;
    --blue-soft: #e8f0ff;
    --green: #12c76a;
    --green-deep: #0aa356;
    --lime: #7dff3a;
    --ink: #122033;
    --muted: #5d6b7c;
    --line: #e6edf5;
    --surface: #f7fafc;
    --white: #ffffff;
    --hero: linear-gradient(105deg, #0d4fd6 0%, #1a6dff 38%, #00b07a 78%, #7cff3a 100%);
    --footer: linear-gradient(105deg, #0a3bb8 0%, #0d8a62 70%, #2fbf3a 100%);
    --radius: 16px;
    --shadow: 0 18px 50px rgba(15, 40, 80, 0.12);
    --font: 'Plus Jakarta Sans', sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.container {
    width: min(1180px, calc(100% - 2.5rem));
    margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(20, 40, 80, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 96px;
    padding: 0.5rem 0;
}

.logo {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    line-height: 0;
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -0.03em;
    color: var(--blue);
}

.logo-header-img,
.logo-footer-img {
    display: block;
    width: 200px;
    height: auto;
    max-width: 100%;
    aspect-ratio: 480 / 238;
    object-fit: contain;
    object-position: center;
}

.logo-footer {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    line-height: 0;
    background: #fff;
    border-radius: 14px;
    padding: 0.55rem 0.75rem;
}

.logo-full {
    display: block;
    width: auto;
    height: auto;
    max-height: 68px;
    max-width: 220px;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
    image-rendering: -webkit-optimize-contrast;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
}

.logo-word .o {
    display: inline-grid;
    place-items: center;
    width: 1.05em;
    height: 1.05em;
    margin: 0 0.02em;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    color: #fff;
    font-size: 0.72em;
    line-height: 1;
    vertical-align: -0.08em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--muted);
    position: relative;
    padding: 0.35rem 0;
}

.nav a:hover,
.nav a.active { color: var(--blue); }

.nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--blue);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.78rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-blue {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(21, 87, 255, 0.28);
}

.btn-green {
    background: linear-gradient(135deg, #1ed760 0%, #0aa356 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(18, 199, 106, 0.28);
}

.btn-ghost {
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--hero);
    color: #fff;
    padding: 2.5rem 0 7.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 80%, rgba(255,255,255,0.12), transparent 28%),
        radial-gradient(circle at 78% 30%, rgba(255,255,255,0.14), transparent 26%),
        linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.08) 100%);
    pointer-events: none;
}

.hero-skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    opacity: 0.18;
    background:
        linear-gradient(#fff, #fff) 4% 100% / 3% 42% no-repeat,
        linear-gradient(#fff, #fff) 8% 100% / 4% 68% no-repeat,
        linear-gradient(#fff, #fff) 13% 100% / 5% 54% no-repeat,
        linear-gradient(#fff, #fff) 20% 100% / 3% 40% no-repeat,
        linear-gradient(#fff, #fff) 72% 100% / 4% 58% no-repeat,
        linear-gradient(#fff, #fff) 78% 100% / 5% 72% no-repeat,
        linear-gradient(#fff, #fff) 86% 100% / 3% 48% no-repeat,
        linear-gradient(#fff, #fff) 92% 100% / 4% 62% no-repeat;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1.15rem;
    animation: fadeUp 0.7s ease both;
}

.hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 4.2vw, 3.45rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 800;
    max-width: 12ch;
    animation: fadeUp 0.75s ease 0.05s both;
}

.hero h1 .accent { color: var(--lime); }

.hero-lead {
    margin: 0 0 1.6rem;
    max-width: 34rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    animation: fadeUp 0.8s ease 0.1s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    animation: fadeUp 0.85s ease 0.15s both;
}

.hero-visual {
    position: relative;
    min-height: 420px;
    animation: floatIn 0.9s ease 0.1s both;
}

.phone {
    position: absolute;
    right: 8%;
    top: 8%;
    width: min(230px, 52%);
    aspect-ratio: 9 / 18.5;
    border-radius: 28px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    border: 3px solid rgba(255,255,255,0.35);
    box-shadow: 0 30px 60px rgba(0, 30, 80, 0.35);
    padding: 10px;
    z-index: 2;
}

.phone-screen {
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(165deg, #0d4fd6, #12c76a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    color: #fff;
    text-align: center;
    padding: 1rem;
}

.phone-screen .check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    font-weight: 800;
}

.phone-screen strong {
    font-size: 0.95rem;
    line-height: 1.25;
}

.people {
    position: absolute;
    left: 4%;
    bottom: 6%;
    width: 68%;
    z-index: 3;
}

.shop {
    position: absolute;
    right: 2%;
    bottom: 18%;
    width: 92px;
    z-index: 1;
}

.pin {
    position: absolute;
    right: 10%;
    bottom: 42%;
    width: 42px;
    height: 42px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: #fff;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    z-index: 4;
}

.pin::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: var(--green);
}

/* ---------- Features strip ---------- */
.features-wrap {
    position: relative;
    z-index: 5;
    margin-top: -4.5rem;
    margin-bottom: 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    background: #fff;
    border-radius: 28px;
    padding: 1.45rem 1.1rem;
    box-shadow: 0 22px 50px rgba(15, 40, 80, 0.12);
    border: 1px solid rgba(20, 40, 80, 0.04);
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.55rem 0.85rem;
}

.feature + .feature {
    border-left: 1px solid var(--line);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.feature-icon.blue {
    background: #e8f0ff;
    color: var(--blue);
}

.feature-icon.green {
    background: #e6faf0;
    color: var(--green-deep);
}

.feature h3 {
    margin: 0 0 0.15rem;
    font-size: 1rem;
    font-weight: 800;
    color: #122033;
}

.feature p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

/* ---------- Sections ---------- */
.section {
    padding: 4.5rem 0 1rem;
}

.section-label {
    display: inline-block;
    color: #12c76a;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.7rem;
}

.section h2 {
    margin: 0 0 0.9rem;
    font-size: clamp(1.7rem, 2.8vw, 2.35rem);
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #122033;
}

.section-copy {
    color: var(--muted);
    margin: 0 0 1.6rem;
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.7;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-section {
    padding: 2.5rem 0 0;
    background: #fff;
}

.about-card {
    background: #fff;
    border-radius: 28px;
    padding: 1.5rem 0.5rem 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
}

.btn-gradient {
    background: linear-gradient(90deg, #1557ff 0%, #12c76a 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(21, 87, 255, 0.22);
}

.about-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 360px;
}

.about-dots {
    position: absolute;
    right: 0;
    top: 18%;
    width: 56px;
    height: 90px;
    background-image: radial-gradient(rgba(148, 163, 184, 0.55) 1.6px, transparent 1.6px);
    background-size: 12px 12px;
    pointer-events: none;
}

.target {
    width: min(320px, 88%);
    aspect-ratio: 1;
    position: relative;
}

.target-orbit {
    position: absolute;
    inset: -8%;
    border-radius: 50%;
    border: 2px dashed rgba(148, 163, 184, 0.55);
}

.target-ring {
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    border: 22px solid #d8f8e8;
    background: #fff;
    box-shadow: 0 18px 40px rgba(18, 199, 106, 0.12);
}

.target-ring-2 {
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    border: 20px solid #9aefc0;
    background: #fff;
}

.target-core {
    position: absolute;
    inset: 40%;
    border-radius: 50%;
    background: linear-gradient(145deg, #1ed760, #0aa356);
    box-shadow: 0 10px 24px rgba(18, 199, 106, 0.35);
}

.target-arrow {
    position: absolute;
    width: 58%;
    height: 14px;
    background: linear-gradient(90deg, #0f766e, #115e59);
    border-radius: 999px;
    top: 45%;
    left: 26%;
    transform: rotate(-32deg);
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.3);
    z-index: 2;
}

.target-arrow::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0f766e;
}

.target-arrow::after {
    content: '';
    position: absolute;
    right: -14px;
    top: -8px;
    border: 15px solid transparent;
    border-left-color: #115e59;
}

.float-badge {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 40, 80, 0.14);
    display: grid;
    place-items: center;
    z-index: 3;
}

.float-badge.b1 { top: 2%; left: 2%; }
.float-badge.b2 { bottom: 10%; left: -2%; }
.float-badge.b3 { bottom: 8%; right: 0; }

/* ---------- Testimonials ---------- */
.testimonials-section {
    background: linear-gradient(180deg, #d9f3ec 0%, #e8f7f2 35%, #f3fbf8 70%, #ffffff 100%);
    padding: 4.5rem 0 4rem;
    margin-top: 0;
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-intro .section-label {
    margin-bottom: 0.55rem;
}

.testimonials-intro h2 {
    margin: 0;
}

.testimonials-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.view-all {
    color: var(--blue);
    font-weight: 700;
    font-size: 0.92rem;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    margin-bottom: 1.5rem;
}

.quote-card {
    background: var(--white);
    border: 1px solid rgba(20, 40, 80, 0.05);
    border-radius: 20px;
    padding: 1.35rem 1.2rem;
    box-shadow: 0 14px 34px rgba(15, 40, 80, 0.07);
}

.quote-mark {
    color: var(--green);
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.quote-card p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.quote-user {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.avatar.a1 { background: linear-gradient(135deg, #1557ff, #12c76a); }
.avatar.a2 { background: linear-gradient(135deg, #0d4fd6, #00b8d4); }
.avatar.a3 { background: linear-gradient(135deg, #12c76a, #1557ff); }

.quote-user strong {
    display: block;
    font-size: 0.9rem;
}

.quote-user span {
    color: var(--muted);
    font-size: 0.78rem;
}

.stars {
    margin-left: auto;
    color: #f5b400;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.25rem;
}

.testimonial-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c9d5e0;
}

.testimonial-dots span.active {
    background: var(--blue);
    width: 22px;
    border-radius: 999px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.video-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 180px;
    color: #fff;
    display: flex;
    align-items: end;
    padding: 1rem;
    isolation: isolate;
}

.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
}

.video-card.v1::before {
    background:
        linear-gradient(180deg, transparent 30%, rgba(8, 20, 40, 0.75) 100%),
        linear-gradient(135deg, #1a6dff, #12c76a);
}

.video-card.v2::before {
    background:
        linear-gradient(180deg, transparent 30%, rgba(8, 20, 40, 0.75) 100%),
        linear-gradient(135deg, #0aa356, #1557ff);
}

.play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--blue);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.play svg { margin-left: 3px; }

.video-meta strong {
    display: block;
    font-size: 0.95rem;
}

.video-meta span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.time {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    background: rgba(0,0,0,0.45);
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ---------- Contact ---------- */
.contact {
    padding: 3rem 0 4.5rem;
}

.contact-banner {
    display: grid;
    grid-template-columns: 1.05fr 0.9fr 1fr;
    gap: 1.5rem;
    align-items: center;
    border-radius: 28px;
    padding: 2rem 1.75rem;
    background: linear-gradient(120deg, #f4f8ff 0%, #eef7ff 45%, #f7fbff 100%);
    border: 1px solid rgba(21, 87, 255, 0.08);
    box-shadow: 0 18px 50px rgba(15, 40, 80, 0.08);
    overflow: hidden;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: #e8f0ff;
    color: #0b3fd6;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 0.9rem;
}

.contact-left h2 {
    margin: 0 0 0.7rem;
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #122033;
}

.contact-left h2 span { color: var(--blue); }

.contact-left > p {
    margin: 0 0 1.25rem;
    color: var(--muted);
    max-width: 28rem;
    font-size: 0.95rem;
}

.contact-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.contact-art {
    position: relative;
    min-height: 320px;
    display: grid;
    place-items: center;
}

.contact-dots {
    position: absolute;
    inset: 12% 8%;
    background-image: radial-gradient(rgba(21, 87, 255, 0.18) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.55;
    pointer-events: none;
}

.contact-phone {
    width: min(180px, 58%);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 22px 30px rgba(15, 40, 80, 0.22));
}

.contact-bench {
    position: absolute;
    width: 150px;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.contact-pin {
    position: absolute;
    top: 18%;
    right: 14%;
    width: 34px;
    height: 34px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: #12c76a;
    box-shadow: 0 8px 18px rgba(18, 199, 106, 0.35);
    z-index: 4;
}

.contact-pin::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: #fff;
}

.contact-plant {
    position: absolute;
    width: 54px;
    z-index: 1;
}

.contact-plant.left { left: 4%; bottom: 22%; }
.contact-plant.right { right: 2%; bottom: 28%; }

.contact-right {
    display: grid;
    gap: 1rem;
    align-content: center;
}

.contact-help {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-help-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 40, 80, 0.08);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.contact-help strong {
    display: block;
    color: #122033;
    font-size: 0.98rem;
}

.contact-help span {
    color: var(--muted);
    font-size: 0.88rem;
}

.email-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #fff;
    border-radius: 18px;
    padding: 1rem 1.05rem;
    box-shadow: 0 12px 28px rgba(15, 40, 80, 0.08);
    border: 1px solid rgba(21, 87, 255, 0.06);
}

.email-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #e8f0ff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.email-card p {
    margin: 0 0 0.2rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.email-card strong {
    color: var(--blue);
    font-size: 1.02rem;
    font-weight: 800;
}

.btn-get-app {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #1ed760 0%, #0aa356 100%);
    box-shadow: 0 12px 28px rgba(18, 199, 106, 0.28);
}

.btn-get-app:hover { transform: translateY(-1px); }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--footer);
    color: #fff;
    padding: 3rem 0 1.25rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    margin: 0 0 1.1rem;
    max-width: 18rem;
    color: rgba(255,255,255,0.9);
}

.footer-brand p .accent { color: var(--lime); font-weight: 700; }

.socials {
    display: flex;
    gap: 0.65rem;
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.45);
    display: grid;
    place-items: center;
    transition: background 0.2s ease;
}

.socials a:hover { background: rgba(255,255,255,0.15); }

.footer-col h4 {
    margin: 0 0 0.9rem;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.footer-col a {
    color: rgba(255,255,255,0.88);
    font-size: 0.92rem;
}

.footer-col a:hover { color: #fff; }

.store-badges {
    display: grid;
    gap: 0.7rem;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #111;
    color: #fff;
    border-radius: 10px;
    padding: 0.55rem 0.9rem;
    width: fit-content;
    min-width: 180px;
}

.store-badge small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.85;
    line-height: 1.1;
}

.store-badge strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatIn {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 980px) {
    .hero-grid,
    .split,
    .about-grid,
    .footer-grid,
    .contact-banner {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }

    .quote-grid {
        grid-template-columns: 1fr;
    }

    .feature + .feature { border-left: 0; }

    .hero-visual { min-height: 360px; order: -1; }
    .hero h1 { max-width: none; }
    .contact-art { min-height: 280px; }
    .contact-stores { justify-content: start; }
}

@media (max-width: 760px) {
    .menu-toggle { display: inline-flex; }

    .nav {
        display: none;
        position: absolute;
        top: 74px;
        left: 1.25rem;
        right: 1.25rem;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 0.85rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        box-shadow: var(--shadow);
    }

    .nav.open { display: flex; }

    .nav a {
        padding: 0.7rem 0.75rem;
        border-radius: 10px;
    }

    .nav a.active::after { display: none; }
    .nav a.active { background: var(--blue-soft); }

    .header-cta { display: none; }

    .features,
    .quote-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .features-wrap { margin-top: -3.2rem; }
    .hero { padding-bottom: 5.5rem; }
    .contact-art { min-height: 280px; }
    .contact-stores { justify-content: start; }
}
