:root {
    --navy: #101c3d;
    --navy-light: #1b2e5d;
    --orange: #ff6b35;
    --orange-dark: #e75220;
    --cream: #fff8f3;
    --soft: #f6f8fc;
    --white: #ffffff;
    --text: #26324b;
    --muted: #68738a;
    --border: #e1e6ef;
    --green: #20ad75;
    --shadow: 0 20px 60px rgba(16, 28, 61, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

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

.narrow {
    max-width: 780px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(225, 230, 239, 0.8);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--navy);
    font-size: 1.28rem;
    font-weight: 700;
    white-space: nowrap;
}

.brand-icon {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(145deg, var(--orange), #ff9b54);
    border-radius: 13px;
    box-shadow: 0 9px 20px rgba(255, 107, 53, 0.26);
}

.brand strong {
    color: var(--orange);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 0.92rem;
    font-weight: 700;
}

.main-nav > a {
    transition: color 0.2s ease;
}

.main-nav > a:hover,
.main-nav > a.active {
    color: var(--orange);
}

.main-nav .nav-download {
    padding: 11px 18px;
    color: var(--white);
    background: var(--navy);
    border-radius: 11px;
}

.main-nav .nav-download:hover {
    color: var(--white);
    background: var(--orange);
}

.menu-toggle {
    display: none;
    color: var(--navy);
    background: none;
    border: 0;
    font-size: 1.45rem;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background: linear-gradient(145deg, #fff9f5 0%, #fff 48%, #eef4ff 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 690px;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 70px;
    padding-top: 65px;
    padding-bottom: 65px;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
}

.hero-glow-one {
    top: -160px;
    right: -100px;
    width: 520px;
    height: 520px;
    background: rgba(255, 107, 53, 0.1);
}

.hero-glow-two {
    bottom: -220px;
    left: 30%;
    width: 460px;
    height: 460px;
    background: rgba(64, 113, 206, 0.1);
}

.trust-pill,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.trust-pill {
    padding: 8px 13px;
    color: #a5411e;
    background: #ffe9dd;
    border-radius: 999px;
    letter-spacing: 0.02em;
    text-transform: none;
}

.hero h1 {
    margin: 22px 0 20px;
    color: var(--navy);
    font-size: clamp(3rem, 5.5vw, 5.25rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.hero h1 span {
    color: var(--orange);
}

.hero-copy > p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 1.1rem;
}

.hero-store-buttons,
.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-store-buttons {
    margin: 30px 0 24px;
}

.store-btn {
    display: inline-flex;
    min-width: 172px;
    align-items: center;
    gap: 11px;
    padding: 10px 16px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.14);
}

.store-btn.dark {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.store-btn i {
    font-size: 1.9rem;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
}

.store-btn small {
    margin-bottom: 3px;
    font-size: 0.67rem;
    font-weight: 500;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #4c5871;
    font-size: 0.87rem;
    font-weight: 700;
}

.hero-points i {
    margin-right: 5px;
    color: var(--green);
}

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

.map-orbit {
    position: absolute;
    border: 1px dashed rgba(255, 107, 53, 0.32);
    border-radius: 50%;
}

.orbit-one {
    width: 490px;
    height: 490px;
}

.orbit-two {
    width: 390px;
    height: 390px;
    border-color: rgba(39, 75, 151, 0.26);
}

.phone-card {
    position: relative;
    z-index: 3;
    width: 285px;
    padding: 12px;
    background: #0c1430;
    border: 4px solid #252e49;
    border-radius: 42px;
    box-shadow: 0 35px 70px rgba(16, 28, 61, 0.3);
    transform: rotate(2deg);
}

.phone-speaker {
    position: absolute;
    z-index: 5;
    top: 20px;
    left: 50%;
    width: 75px;
    height: 19px;
    background: #0c1430;
    border-radius: 999px;
    transform: translateX(-50%);
}

.camera-preview {
    position: relative;
    height: 470px;
    overflow: hidden;
    background: linear-gradient(#92c8f8 0 52%, #70a44c 52% 100%);
    border-radius: 31px;
}

.preview-sky {
    position: absolute;
    top: 58px;
    right: 38px;
    width: 62px;
    height: 62px;
    background: #ffd269;
    border-radius: 50%;
    box-shadow: 0 0 35px rgba(255, 210, 105, 0.8);
}

.preview-hills::before,
.preview-hills::after {
    position: absolute;
    bottom: 125px;
    content: '';
    border-right: 135px solid transparent;
    border-bottom: 145px solid #456f45;
    border-left: 135px solid transparent;
}

.preview-hills::before {
    left: -100px;
}

.preview-hills::after {
    right: -120px;
    border-bottom-color: #527f4d;
}

.preview-road {
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 90px;
    height: 240px;
    background: #848a8d;
    clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
    transform: translateX(-50%);
}

.location-chip {
    position: absolute;
    z-index: 3;
    top: 36px;
    left: 18px;
    padding: 6px 10px;
    color: var(--white);
    background: rgba(16, 28, 61, 0.68);
    border-radius: 999px;
    font-size: 0.67rem;
    backdrop-filter: blur(7px);
}

.location-chip i {
    margin-right: 5px;
    color: #ffad79;
}

.stamp-panel {
    position: absolute;
    z-index: 4;
    right: 10px;
    bottom: 12px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px;
    color: var(--white);
    background: rgba(9, 17, 37, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    backdrop-filter: blur(9px);
}

.mini-map {
    position: relative;
    width: 65px;
    min-width: 65px;
    height: 58px;
    overflow: hidden;
    background: #d9e3d2;
    border-radius: 8px;
}

.mini-map i {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    color: var(--orange);
    transform: translate(-50%, -50%);
}

.map-line {
    position: absolute;
    width: 85px;
    height: 4px;
    background: var(--white);
    transform: rotate(25deg);
}

.line-one {
    top: 15px;
    left: -8px;
}

.line-two {
    right: -10px;
    bottom: 13px;
    transform: rotate(-18deg);
}

.stamp-panel strong,
.stamp-panel span,
.stamp-panel small {
    display: block;
    line-height: 1.4;
}

.stamp-panel strong {
    font-size: 0.68rem;
}

.stamp-panel span,
.stamp-panel small {
    color: #dfe5f0;
    font-size: 0.58rem;
}

.camera-control {
    display: grid;
    height: 64px;
    place-items: center;
}

.camera-control span {
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 4px solid #dce1ea;
    border-radius: 50%;
}

.floating-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.floating-card i {
    font-size: 1.5rem;
}

.floating-card strong,
.floating-card span {
    display: block;
    line-height: 1.4;
}

.floating-card strong {
    color: var(--navy);
    font-size: 0.75rem;
}

.floating-card span {
    color: var(--muted);
    font-size: 0.62rem;
}

.verified-card {
    top: 90px;
    left: 0;
}

.verified-card i {
    color: var(--green);
}

.weather-card {
    right: -5px;
    bottom: 95px;
}

.weather-card i {
    color: #f4a620;
}

.stats-strip {
    background: var(--navy);
}

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

.stats-grid > div {
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-grid > div:last-child {
    border-right: 0;
}

.stats-grid strong,
.stats-grid span {
    display: block;
}

.stats-grid strong {
    color: var(--orange);
    font-size: 1.5rem;
}

.stats-grid span {
    color: #cbd3e5;
    font-size: 0.82rem;
}

.section {
    padding: 95px 0;
}

.section-soft {
    background: var(--soft);
}

.section-dark {
    color: var(--white);
    background: linear-gradient(135deg, #0d1836, #1b315f);
}

.section-heading {
    max-width: 710px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading.left {
    margin: 0;
    text-align: left;
}

.section-heading h2,
.split-copy h2,
.contact-info h2 {
    margin: 10px 0 16px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.17;
    letter-spacing: -0.04em;
}

.section-heading p,
.split-copy p,
.contact-info > p {
    color: var(--muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.feature-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--orange);
    background: #fff0e8;
    border-radius: 15px;
    font-size: 1.25rem;
}

.accent-blue .feature-icon { color: #3477d9; background: #eaf2ff; }
.accent-green .feature-icon { color: #159b65; background: #e6f8f0; }
.accent-purple .feature-icon { color: #8a50c8; background: #f2eaff; }
.accent-cyan .feature-icon { color: #138ca3; background: #e5f8fb; }
.accent-red .feature-icon { color: #d84949; background: #ffeaea; }

.feature-card h3 {
    margin: 18px 0 9px;
    color: var(--navy);
}

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

.center-action {
    margin-top: 38px;
    text-align: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 49px;
    padding: 11px 22px;
    border: 0;
    border-radius: 11px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.24);
}

.button-outline {
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 85px;
}

.split-copy h2 {
    color: var(--white);
}

.split-copy p {
    color: #c7d0e4;
}

.eyebrow.light {
    color: #ffb28d;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.check-list i {
    display: inline-grid;
    width: 23px;
    height: 23px;
    margin-right: 8px;
    place-items: center;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-size: 0.68rem;
}

.template-visual {
    position: relative;
    min-height: 440px;
}

.photo-stack {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    height: 330px;
    background: var(--white);
    border-radius: 23px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.stack-back { transform: translate(-57%, -52%) rotate(-10deg); opacity: 0.22; }
.stack-middle { transform: translate(-45%, -50%) rotate(8deg); opacity: 0.36; }
.stack-front { padding: 13px; transform: translate(-50%, -50%) rotate(-2deg); }

.landscape-art {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(#8bc8f1 0 60%, #6d9a4f 60% 100%);
    border-radius: 15px;
}

.sun {
    position: absolute;
    top: 34px;
    right: 45px;
    width: 55px;
    height: 55px;
    background: #ffd56d;
    border-radius: 50%;
}

.mountain {
    position: absolute;
    bottom: 0;
    border-right: 110px solid transparent;
    border-bottom: 130px solid #497246;
    border-left: 110px solid transparent;
}

.mountain-one { left: -25px; }
.mountain-two { right: -45px; border-bottom-color: #588151; }

.photo-stamp {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 5px 0;
    color: var(--navy);
}

.photo-stamp strong,
.photo-stamp small {
    display: block;
}

.photo-stamp small {
    color: var(--muted);
}

.stamp-map {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--orange);
    background: #ffe9dd;
    border-radius: 13px;
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.use-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--cream);
    border: 1px solid #ffe2d2;
    border-radius: var(--radius-md);
}

.use-card > i {
    display: grid;
    width: 50px;
    min-width: 50px;
    height: 50px;
    place-items: center;
    color: var(--orange);
    background: var(--white);
    border-radius: 14px;
}

.use-card h3 {
    margin: 0 0 5px;
    color: var(--navy);
}

.use-card p {
    margin: 0;
    color: var(--muted);
}

.faq-preview {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.accordion {
    display: grid;
    gap: 13px;
}

.accordion-item {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.accordion-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 19px 21px;
    color: var(--navy);
    background: transparent;
    border: 0;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.accordion-item button i {
    color: var(--orange);
    transition: transform 0.25s ease;
}

.accordion-content {
    display: grid;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    margin: 0;
    padding: 0 21px 20px;
    color: var(--muted);
}

.accordion-item.active .accordion-content {
    max-height: 220px;
}

.accordion-item.active button i {
    transform: rotate(45deg);
}

.page-hero {
    padding: 90px 0 72px;
    text-align: center;
    background: radial-gradient(circle at 15% 20%, rgba(255, 107, 53, 0.12), transparent 25%), linear-gradient(145deg, #fff9f5, #eff4ff);
}

.page-hero.compact {
    padding: 65px 0 55px;
}

.page-hero h1 {
    margin: 12px 0 15px;
    color: var(--navy);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.page-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.light-split {
    color: var(--text);
}

.dark-copy h2 {
    color: var(--navy);
}

.dark-copy p {
    color: var(--muted);
}

.dark-list {
    color: var(--text);
}

.about-art {
    position: relative;
    min-height: 410px;
    background: linear-gradient(145deg, #ffe9dd, #edf3ff);
    border-radius: var(--radius-lg);
}

.about-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 120px;
    height: 120px;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border: 13px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    font-size: 2.6rem;
    box-shadow: var(--shadow);
    transform: translate(-50%, -50%);
}

.about-card {
    position: absolute;
    top: 55px;
    left: 40px;
    display: grid;
    padding: 18px 22px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-card i {
    margin-bottom: 7px;
    color: var(--orange);
}

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

.about-card.second {
    top: auto;
    right: 40px;
    bottom: 55px;
    left: auto;
}

.faq-page {
    max-width: 850px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 65px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 18px;
}

.contact-line > i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--orange);
    background: var(--cream);
    border-radius: 13px;
}

.contact-line span,
.contact-line small {
    display: block;
}

.contact-line small {
    color: var(--muted);
    font-size: 0.75rem;
}

.contact-form {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 800;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    color: var(--text);
    background: var(--white);
    border: 1px solid #cad3e2;
    border-radius: 10px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

.form-note {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.alert-success {
    margin-bottom: 18px;
    padding: 12px 14px;
    color: #0b7249;
    background: #e5f8ef;
    border-radius: 10px;
    font-weight: 700;
}

.legal-section {
    padding: 70px 0 95px;
}

.legal-content {
    max-width: 850px;
}

.legal-content h2 {
    margin: 34px 0 8px;
    color: var(--navy);
    font-size: 1.35rem;
}

.legal-content p,
.legal-content li {
    color: #536078;
}

.legal-content a {
    color: var(--orange-dark);
    font-weight: 700;
}

.legal-note {
    margin-top: 35px;
    padding: 17px 19px;
    color: #754220;
    background: #fff1e7;
    border-left: 4px solid var(--orange);
    border-radius: 10px;
}

.download-banner {
    padding: 60px 0;
    color: var(--white);
    background: linear-gradient(130deg, var(--orange-dark), var(--orange));
}

.download-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.download-inner h2 {
    margin: 7px 0 4px;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.2;
}

.download-inner p {
    margin: 0;
    color: #ffe6d9;
}

.site-footer {
    color: #bbc6dc;
    background: #0b1530;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.75fr 0.9fr 1.15fr;
    gap: 45px;
    padding-top: 65px;
    padding-bottom: 45px;
}

.brand-footer {
    color: var(--white);
}

.footer-about p {
    max-width: 340px;
}

.footer-grid h3 {
    margin: 0 0 15px;
    color: var(--white);
    font-size: 1rem;
}

.footer-grid > div > a:not(.brand) {
    display: block;
    margin: 8px 0;
    font-size: 0.88rem;
}

.footer-grid a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 9px;
    margin-top: 17px;
}

.social-links a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--white);
    background: #182544;
    border-radius: 9px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #24304c;
    font-size: 0.82rem;
}

.footer-bottom p {
    margin: 0;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 20;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    border: 0;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transform: translateY(12px);
    transition: 0.25s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .nav-wrap {
        position: relative;
    }

    .main-nav {
        position: absolute;
        top: 78px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        gap: 5px;
        padding: 18px;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 0 0 15px 15px;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
    }

    .main-nav a {
        padding: 9px 11px;
    }

    .hero-grid,
    .split-layout,
    .faq-preview,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 25px;
        text-align: center;
    }

    .hero-copy > p {
        margin: auto;
    }

    .hero-store-buttons,
    .hero-points {
        justify-content: center;
    }

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

    .split-layout {
        gap: 45px;
    }

    .section-heading.left {
        text-align: center;
    }

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

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

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

    .main-nav {
        top: 68px;
    }

    .brand {
        font-size: 1.05rem;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
    }

    .hero-grid {
        min-height: auto;
        padding-top: 55px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-store-buttons,
    .store-buttons {
        flex-direction: column;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        min-height: 520px;
        transform: scale(0.9);
    }

    .orbit-one {
        width: 410px;
        height: 410px;
    }

    .verified-card {
        left: -10px;
    }

    .weather-card {
        right: -10px;
    }

    .stats-grid,
    .feature-grid,
    .use-grid,
    .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .section {
        padding: 70px 0;
    }

    .template-visual {
        transform: scale(0.82);
    }

    .download-inner {
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        gap: 28px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 2.35rem;
    }

    .hero-visual {
        margin: -25px -25px;
        transform: scale(0.78);
    }

    .photo-stack {
        width: 335px;
    }

    .template-visual {
        margin: -35px -20px;
        transform: scale(0.72);
    }
}

