/* Runnr – samme mørke, eksklusive stil som appen */

:root {
    --night: #0a0a0c;
    --panel: rgba(255, 255, 255, 0.05);
    --hairline: rgba(255, 255, 255, 0.10);
    --dim: rgba(255, 255, 255, 0.62);
    --orange: #ff5125;
    --radius: 28px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--night);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Topbar */
header {
    position: sticky;
    top: 0;
    z-index: 10;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    background: rgba(10, 10, 12, 0.7);
    border-bottom: 1px solid var(--hairline);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 24px;
    max-width: 1060px;
    margin: 0 auto;
}

.nav img {
    height: 26px;
    display: block;
}

.nav a.cta {
    font-size: 14px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switcher {
    position: relative;
    z-index: 20;
}

.language-switcher summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 6px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
    list-style: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-switcher summary::-webkit-details-marker {
    display: none;
}

.language-switcher summary:hover {
    opacity: 0.78;
}

.language-flag {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.language-code {
    letter-spacing: 0.02em;
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 158px;
    padding: 8px;
    border: 1px solid var(--hairline);
    border-radius: 18px;
    background: rgba(17, 17, 20, 0.96);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 11px;
    border-radius: 12px;
    color: var(--dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
    white-space: nowrap;
}

.language-option-flag {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.language-option:hover,
.language-option[aria-current="true"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex: 1;
}

.nav-links a {
    color: var(--dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #fff;
}

/* Knapper – kapsler som i appen */
.btn {
    position: relative;
    display: inline-block;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

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

.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transform: translate(-22px, -50%);
    pointer-events: none;
}

.btn:hover::after {
    animation: buttonRunner 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.btn:active {
    transform: scale(0.96);
    opacity: 0.85;
}

.btn-orange {
    background: var(--orange);
    box-shadow: 0 8px 28px rgba(255, 81, 37, 0.35);
}

.btn-glass {
    background: var(--panel);
    border: 1px solid var(--hairline);
}

.btn-glass:hover {
    border-color: rgba(255, 81, 37, 0.35);
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    padding: 96px 0 72px;
}

.hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

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

.hero p.lead {
    margin: 20px 0 32px;
    font-size: 19px;
    color: var(--dim);
    max-width: 46ch;
}

.hero .actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.cta-stack {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero .note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--dim);
}

.distance-rotator {
    display: inline-grid;
    grid-template-columns: max-content 160px;
    column-gap: 8px;
    align-items: start;
    margin: -8px 0 8px 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
    font-weight: 750;
}

.distance-label {
    width: auto;
    text-align: left;
    white-space: nowrap;
}

.distance-window {
    display: block;
    height: 22px;
    width: 160px;
    overflow: hidden;
    color: var(--orange);
    text-align: left;
}

.distance-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    animation: distanceFlip 11s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.distance-list span {
    display: block;
    width: max-content;
    height: 22px;
    line-height: 22px;
    text-align: left;
    white-space: nowrap;
}

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

/* Telefon-mockup med rute */
.phone {
    position: relative;
    justify-self: center;
    width: 300px;
    border-radius: 48px;
    border: 1px solid var(--hairline);
    background: linear-gradient(180deg, #131316, #0a0a0c);
    padding: 14px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
}

.phone-screen {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    background: #09090b;
}

.phone .screen {
    display: block;
    width: 100%;
    background: #09090b;
}

/* Apple Watch overlejret i telefonens nederste højre hjørne */
.watch {
    position: absolute;
    right: -30px;
    bottom: -26px;
    width: 122px;
    padding: 6px;
    border-radius: 34px;
    background: linear-gradient(155deg, #4c4c50, #1a1a1d);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.6);
}

.watch img {
    display: block;
    width: 100%;
    border-radius: 28px;
}

/* Digital Crown-knop */
.watch::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 36%;
    width: 4px;
    height: 22px;
    border-radius: 2px;
    background: linear-gradient(180deg, #6a6a6e, #2a2a2e);
}

/* Sektioner */
section {
    padding: 72px 0;
}

section h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
}

section p.sub {
    color: var(--dim);
    margin-bottom: 40px;
    max-width: 60ch;
}

/* SEO-forside */
.problem {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 64px;
    align-items: center;
}

.text-panel {
    position: relative;
    padding: 8px 0 8px 30px;
    border-left: 2px solid var(--orange);
    background: transparent;
}

.text-panel::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: 40%;
    background: #fff;
}

.text-panel h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.text-panel p {
    color: var(--dim);
}

.people-marquee-section {
    padding: 48px 0 66px;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.people-marquee-header {
    max-width: 780px;
    margin-bottom: 26px;
}

.people-marquee-header h2 {
    max-width: 18ch;
    font-size: clamp(34px, 5.2vw, 66px);
    line-height: 1.04;
    margin-bottom: 0;
}

.people-marquee {
    position: relative;
    display: flex;
    gap: 0;
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    margin-left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    padding: 6px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.people-marquee-track {
    display: flex;
    flex: 0 0 auto;
    gap: 16px;
    padding-right: 16px;
    min-width: max-content;
    animation: people-marquee 92s linear infinite;
}

.people-card {
    flex: 0 0 286px;
    min-height: 184px;
    padding: 22px;
    border: 1px solid var(--hairline);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 81, 37, 0.08), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.04);
    transition:
        background 180ms ease,
        border-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.people-card:hover {
    background: var(--orange);
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow: 0 18px 44px rgba(255, 81, 37, 0.22);
    transform: translateY(-2px);
}

.people-card:hover span,
.people-card:hover h3,
.people-card:hover p {
    color: #fff;
}

.people-marquee .people-card.reveal,
.people-marquee .people-card.reveal.visible {
    opacity: 1;
    transform: none;
    transition:
        background 180ms ease,
        border-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.people-marquee .people-card.reveal:hover,
.people-marquee .people-card.reveal.visible:hover {
    transform: translateY(-2px);
}

.people-card span {
    display: block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 28px;
}

.people-card h3 {
    max-width: 13ch;
    color: #fff;
    font-size: 20px;
    line-height: 1.12;
    margin-bottom: 10px;
}

.people-card p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14.5px;
    line-height: 1.45;
}

@keyframes people-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.comparison {
    display: grid;
    grid-template-columns: 0.76fr 1.24fr;
    gap: 70px;
    align-items: center;
}

.comparison h2 {
    max-width: 11ch;
}

.comparison .sub {
    margin-bottom: 0;
}

.compare-rows {
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.compare-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.44fr) minmax(0, 1fr);
    gap: 26px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-row:first-child {
    border-top: 0;
}

.compare-row span {
    color: #fff;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.35;
}

.compare-row p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
}

.compare-row.is-runnr span {
    color: var(--orange);
}

.compact-grid .card {
    min-height: 0;
}

.statement-section {
    min-height: 72vh;
    display: grid;
    place-items: center;
    padding: 110px 0;
}

.statement-section h2 {
    max-width: 850px;
    margin: 0;
    text-align: center;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 1.04;
    letter-spacing: 0;
}

.statement-section h2 span {
    color: var(--orange);
}

.route-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 42px;
    border-bottom: 1px solid var(--hairline);
}

.route-link {
    position: relative;
    display: block;
    min-height: 0;
    padding: 22px 34px 22px 0;
    border-top: 1px solid var(--hairline);
    border-radius: 0;
    background: transparent;
    text-decoration: none;
    color: #fff;
    transition: color 0.18s ease;
}

.route-link::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 22px;
    color: var(--orange);
    font-size: 19px;
    line-height: 1;
    transform: translateX(-5px);
    opacity: 0;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.route-link:hover {
    color: var(--orange);
}

.route-link:hover::after {
    transform: translateX(0);
    opacity: 1;
}

.route-link span {
    display: block;
    font-size: 19px;
    font-weight: 850;
    margin-bottom: 6px;
}

.route-link small {
    display: block;
    color: var(--dim);
    font-size: 13.5px;
    line-height: 1.45;
}

/* Trin 1-2-3 */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
    border-bottom: 1px solid var(--hairline);
}

.step {
    background: transparent;
    border: 0;
    border-top: 1px solid var(--hairline);
    border-radius: 0;
    padding: 24px 0 28px;
}

.step .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 81, 37, 0.12);
    color: var(--orange);
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step p {
    color: var(--dim);
    font-size: 15px;
}

/* Feature-grid */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 42px;
    border-bottom: 1px solid var(--hairline);
}

.card {
    background: transparent;
    border: 0;
    border-top: 1px solid var(--hairline);
    border-radius: 0;
    padding: 24px 0 28px;
    transition: color 0.18s ease;
}

.card:hover {
    color: #fff;
}

.card .icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-bottom: 14px;
    display: block;
}

.card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.card p {
    color: var(--dim);
    font-size: 14.5px;
}

.card .tag {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    background: rgba(255, 81, 37, 0.14);
    border-radius: 999px;
    padding: 4px 12px;
}

/* Premium */
.pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 640px;
}

.price {
    background: var(--panel);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 30px;
}

.price.best {
    background: #fff;
    color: var(--night);
    border-color: transparent;
}

.price .period {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dim);
}

.price.best .period {
    color: rgba(10, 10, 12, 0.55);
}

.price .amount {
    font-size: 34px;
    font-weight: 900;
    margin: 8px 0 4px;
}

.price .save {
    font-size: 13px;
    font-weight: 800;
    color: var(--orange);
}

.price ul {
    margin-top: 16px;
    list-style: none;
    font-size: 14px;
    color: var(--dim);
}

.price.best ul {
    color: rgba(10, 10, 12, 0.7);
}

.price ul li::before {
    content: "✓ ";
    color: var(--orange);
    font-weight: 800;
}

.trial-note {
    margin-top: 18px;
    color: var(--dim);
    font-size: 14px;
}

/* Privatliv-banner */
.privacy-banner {
    background: var(--panel);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.privacy-banner .icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.accent-link {
    color: var(--orange);
}

.privacy-banner h3 {
    margin-bottom: 6px;
}

.privacy-banner p {
    color: var(--dim);
    max-width: 64ch;
}

/* Footer */
footer {
    border-top: 1px solid var(--hairline);
    padding: 40px 0 60px;
    color: var(--dim);
    font-size: 14px;
}

footer .cols {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

footer img {
    height: 20px;
    opacity: 0.9;
}

footer a {
    color: var(--dim);
    text-decoration: none;
    margin-left: 18px;
}

footer a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    margin-left: 0;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    transition: border-color 0.18s ease, color 0.18s ease;
}

.social-links a:hover {
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--orange);
}

/* SEO-landingssider */
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--dim);
    font-size: 13px;
    padding-top: 34px;
}

.breadcrumb a {
    color: var(--dim);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff;
}

.landing-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
    padding: 64px 0 56px;
}

.landing-hero h1 {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.landing-hero .lead {
    margin: 20px 0 30px;
    color: var(--dim);
    font-size: 19px;
    max-width: 52ch;
}

.landing-hero-media {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 56px;
    padding-top: 72px;
    padding-bottom: 72px;
}

.landing-device-shot {
    margin: 0;
    justify-self: end;
    max-width: 330px;
}

.landing-device-shot img,
.landing-device-shot video,
.landing-inline-image img,
.landing-image-band img {
    display: block;
    width: 100%;
    border: 1px solid var(--hairline);
    background: #111114;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45);
}

.landing-device-shot img,
.landing-device-shot video {
    border-radius: 46px;
}

.landing-device-shot figcaption {
    margin-top: 14px;
    color: var(--dim);
    font-size: 13px;
    text-align: center;
}

.landing-card p {
    color: var(--dim);
}

.landing-facts {
    list-style: none;
    margin-top: 18px;
}

.landing-facts li {
    color: var(--dim);
    margin-top: 8px;
}

.landing-facts li::before {
    content: "✓ ";
    color: var(--orange);
    font-weight: 900;
}

.landing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 36px;
    align-items: start;
    padding: 36px 0 72px;
}

.landing-copy {
    max-width: 720px;
}

.landing-copy h2,
.faq h2,
.landing-cta h2 {
    font-size: 28px;
    font-weight: 900;
    margin: 38px 0 12px;
}

.landing-copy h2:first-child {
    margin-top: 0;
}

.landing-copy p,
.landing-copy li,
.faq p {
    color: var(--dim);
    font-size: 16px;
}

.landing-copy p + p {
    margin-top: 14px;
}

.landing-copy ul {
    padding-left: 22px;
    margin: 14px 0 0;
}

.landing-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
    gap: 52px;
    align-items: center;
    padding: 64px 0 78px;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.landing-split .landing-copy {
    max-width: 650px;
}

.landing-inline-image {
    position: relative;
    margin: 0;
}

.landing-inline-image::before {
    content: "";
    position: absolute;
    inset: 18% -12% 12% 18%;
    border-radius: 50%;
    background: rgba(255, 81, 37, 0.16);
    filter: blur(42px);
    z-index: -1;
}

.landing-inline-image img {
    max-height: 560px;
    object-fit: cover;
    object-position: top;
    border-radius: 34px;
}

.landing-text-block {
    max-width: 880px;
    padding: 70px 0 78px;
}

.landing-text-block h2,
.landing-image-band h2,
.landing-related h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    margin-bottom: 16px;
}

.landing-text-block p,
.landing-image-band p {
    color: var(--dim);
    max-width: 66ch;
    font-size: 17px;
}

.landing-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 34px;
    list-style: none;
    margin-top: 28px;
}

.landing-feature-list li {
    padding: 18px 0;
    border-top: 1px solid var(--hairline);
    color: var(--dim);
}

.landing-feature-list strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.landing-image-band {
    display: grid;
    grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    padding: 64px 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.landing-image-band figure {
    margin: 0;
    max-width: 260px;
    justify-self: center;
}

.landing-image-band img {
    border-radius: 36px;
}

.landing-related {
    padding: 56px 0 64px;
}

.landing-related > div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.landing-related a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.035);
    transition: border-color 0.18s ease, background 0.18s ease;
}

.landing-related a:hover {
    border-color: rgba(255, 81, 37, 0.36);
    background: rgba(255, 81, 37, 0.10);
}

.landing-aside {
    position: sticky;
    top: 96px;
    background: var(--panel);
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    padding: 24px;
}

.landing-aside h2 {
    font-size: 17px;
    margin-bottom: 14px;
}

.landing-aside a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    border-top: 1px solid var(--hairline);
}

.landing-aside a:first-of-type {
    border-top: none;
}

.landing-aside small {
    display: block;
    color: var(--dim);
    line-height: 1.4;
    margin-top: 2px;
}

.faq {
    padding: 0 0 72px;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    padding: 24px;
}

.faq-item h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.landing-cta {
    background: linear-gradient(135deg, rgba(255, 81, 37, 0.14), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 81, 37, 0.28);
    border-radius: 22px;
    padding: 36px;
    margin-bottom: 84px;
}

.landing-cta h2 {
    margin-top: 0;
}

.landing-cta p {
    color: var(--dim);
    max-width: 64ch;
    margin-bottom: 22px;
}

/* Web-generator: fuldt kortview før sidens tekstindhold */
.web-route {
    position: relative;
    isolation: isolate;
    width: 100%;
    height: calc(100svh - 81px);
    min-height: 650px;
    overflow: hidden;
    background: #17171b;
}

#route-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.web-route-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    top: auto;
    height: 520px;
    background: linear-gradient(180deg, transparent 0%, rgba(5,5,6,.16) 34%, rgba(5,5,6,.78) 100%);
}

.web-route-panel {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 20px;
    align-items: center;
    width: min(680px, calc(100% - 40px));
    padding: 0;
    transform: translateX(-50%);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.web-route-panel.is-choosing { width: min(720px, calc(100% - 40px)); grid-template-columns: 1fr; gap: 14px; padding: 0; }
.web-route-panel.is-choosing .web-route-controls { display: block; width: 100%; }
.web-route-panel.is-choosing .web-route-status strong { font-size: 17px; }

.web-route-status { display: flex; align-items: center; min-width: 0; gap: 12px; }
.web-route-status > div { min-width: 0; }
.web-route-status-icon { position: relative; flex: 0 0 38px; width: 38px; height: 38px; border-radius: 13px; background: rgba(24,29,38,.38); border: 1px solid rgba(255,255,255,.22); box-shadow: inset 0 1px rgba(255,255,255,.12); -webkit-backdrop-filter: blur(18px) saturate(1.25); backdrop-filter: blur(18px) saturate(1.25); }
.web-route-status-icon::before { content: ""; position: absolute; inset: 10px; border: 2px solid var(--orange); border-radius: 50%; }
.web-route-status-icon::after { content: ""; position: absolute; left: 17px; top: 5px; width: 2px; height: 28px; background: linear-gradient(var(--orange) 0 5px, transparent 5px 23px, var(--orange) 23px); }
.web-route-status strong { display: block; overflow: hidden; color: #fff; font-size: 15px; font-weight: 800; line-height: 1.2; text-overflow: ellipsis; text-shadow: 0 2px 10px rgba(0,0,0,.7); white-space: nowrap; }
.web-route-status small { display: block; overflow: hidden; margin-top: 3px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 650; line-height: 1.3; text-overflow: ellipsis; text-shadow: 0 2px 8px rgba(0,0,0,.75); white-space: nowrap; }

.web-route-controls { display: flex; flex-wrap: nowrap; justify-content: flex-end; gap: 10px; }
.web-route-controls button { font: inherit; }
.web-route-controls .btn { min-height: 46px; padding: 0 20px; border: 0; -webkit-appearance: none; appearance: none; white-space: nowrap; }
.web-route-controls [hidden], .web-route-result[hidden], .web-route-error[hidden] { display: none; }

.distance-choice {
    display: block;
    width: 100%;
}

.route-distance-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(84px, 1fr));
    gap: 9px;
    overflow-x: auto;
    padding: 1px 1px 5px;
    scrollbar-width: none;
}
.route-distance-row::-webkit-scrollbar { display: none; }

.route-distance-row button,
.route-distance-row a {
    position: relative;
    display: grid;
    place-items: center;
    min-width: 84px;
    min-height: 58px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 22px;
    background: rgba(25,31,41,.38);
    box-shadow: inset 0 1px rgba(255,255,255,.13), 0 8px 22px rgba(0,0,0,.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.28);
    backdrop-filter: blur(18px) saturate(1.28);
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 850;
    text-decoration: none;
}

.route-distance-row button.is-selected { border-color: transparent; background: var(--orange); box-shadow: 0 8px 22px rgba(255,81,37,.24); }
.route-distance-row .is-locked { color: rgba(255,255,255,.68); }
.route-distance-row .is-locked::after { content: ""; position: absolute; top: 7px; right: 8px; width: 16px; height: 16px; background: url("assets/icons/lock.png") center/contain no-repeat; opacity: .7; }

.route-utility-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.route-utility-row > a { display: flex; align-items: center; gap: 11px; min-height: 58px; padding: 9px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 20px; background: rgba(25,31,41,.36); box-shadow: inset 0 1px rgba(255,255,255,.12),0 8px 22px rgba(0,0,0,.12); -webkit-backdrop-filter: blur(18px) saturate(1.28); backdrop-filter: blur(18px) saturate(1.28); color: #fff; text-decoration: none; }
.route-utility-row strong, .route-utility-row small { display: block; }
.route-utility-row strong { font-size: 14px; line-height: 1.15; }
.route-utility-row small { margin-top: 3px; color: var(--dim); font-size: 11px; font-weight: 650; line-height: 1.15; }
.utility-sliders { position: relative; flex: 0 0 25px; width: 25px; height: 22px; background: linear-gradient(var(--orange),var(--orange)) 0 3px/25px 2px no-repeat, linear-gradient(var(--orange),var(--orange)) 0 10px/25px 2px no-repeat, linear-gradient(var(--orange),var(--orange)) 0 17px/25px 2px no-repeat; }
.utility-sliders::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 65% 4px,var(--orange) 0 3px,transparent 3.5px),radial-gradient(circle at 35% 11px,var(--orange) 0 3px,transparent 3.5px),radial-gradient(circle at 72% 18px,var(--orange) 0 3px,transparent 3.5px); }
.utility-dice { flex: 0 0 27px; width: 27px; height: 27px; padding: 3px; border: 2px solid var(--orange); border-radius: 7px; color: var(--orange); font-size: 11px; font-style: normal; font-weight: 900; line-height: 8px; text-align: center; }

.route-primary-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; margin-top: 10px; }
.route-generate-primary { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 58px; border: 0; border-radius: 999px; background: var(--orange); box-shadow: 0 10px 28px rgba(255,81,37,.28); color: #fff; cursor: pointer; font: inherit; font-size: 17px; font-weight: 850; }
.route-generate-primary svg { width: 22px; height: 22px; fill: currentColor; }
.route-generate-primary:disabled { opacity: .58; cursor: wait; }
.route-regenerate { display: grid; place-items: center; width: 58px; height: 58px; padding: 0; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: rgba(25,31,41,.4); box-shadow: inset 0 1px rgba(255,255,255,.13),0 8px 22px rgba(0,0,0,.14); -webkit-backdrop-filter: blur(18px) saturate(1.28); backdrop-filter: blur(18px) saturate(1.28); color: #fff; cursor: pointer; }
.route-regenerate[hidden] { display: none; }
.route-regenerate svg { width: 25px; height: 25px; fill: currentColor; }
.route-regenerate:disabled { opacity: .55; cursor: wait; }

.web-route-error { grid-column: 1 / -1; width: fit-content; max-width: 100%; padding: 7px 11px; border: 1px solid rgba(255,157,132,.25); border-radius: 12px; background: rgba(12,12,14,.62); color: #ffb09c; font-size: 12px; font-weight: 700; line-height: 1.4; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.web-route-attribution { position: absolute; right: 8px; bottom: 6px; z-index: 2; padding: 2px 5px; border-radius: 4px; background: rgba(255,255,255,.68); color: #333; font-size: 9px; line-height: 1.2; }
.web-route-attribution a { color: inherit; }

/* Telefoner: distance-rækkens 5 chips SKAL kunne være på skærmen. Grid-minimum
   på 84px pr. chip giver 456px totalbredde og skubber rækken ud over kanten -
   på smalle skærme deler chipsene i stedet bredden ligeligt. */
@media (max-width: 540px) {
    html, body { max-width: 100%; overflow-x: hidden; }
    .web-route-panel,
    .web-route-panel.is-choosing { left: 12px; right: 12px; width: auto; max-width: none; min-width: 0; transform: none; }
    .web-route-panel *, .web-route-controls, .distance-choice { min-width: 0; max-width: 100%; box-sizing: border-box; }
    .route-distance-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; overflow: visible; }
    .route-distance-row button,
    .route-distance-row a { min-width: 0; min-height: 52px; padding: 0 4px; border-radius: 18px; font-size: 15px; }
    .route-distance-row .is-locked::after { top: 5px; right: 5px; width: 13px; height: 13px; }
    .route-utility-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .route-utility-row > a { min-width: 0; min-height: 54px; padding: 8px 11px; gap: 9px; overflow: hidden; }
    .route-utility-row > a > span:last-child { min-width: 0; overflow: hidden; }
    .route-utility-row strong, .route-utility-row small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .route-utility-row small { font-size: 10px; }
    .route-generate-primary { min-height: 54px; font-size: 16px; }
    .route-regenerate { width: 54px; height: 54px; }
}
.web-route-noscript { position: absolute; z-index: 4; inset: 50% auto auto 50%; transform: translate(-50%,-50%); padding: 20px; background: #111; }

.location-consent { position: absolute; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; }
.location-consent[hidden] { display: none; }
.location-consent-backdrop { position: absolute; inset: 0; background: rgba(5,5,6,.52); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); }
.location-consent-card { position: relative; width: min(420px,100%); padding: 25px; border: 1px solid rgba(255,255,255,.16); border-radius: 26px; background: rgba(17,17,20,.94); box-shadow: 0 28px 90px rgba(0,0,0,.5); text-align: center; -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); }
.location-consent-icon { position: relative; display: block; width: 48px; height: 48px; margin: 0 auto 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.07); }
.location-consent-icon::before { content: ""; position: absolute; inset: 12px; border: 3px solid var(--orange); border-radius: 50%; }
.location-consent-icon::after { content: ""; position: absolute; left: 22px; top: 6px; width: 3px; height: 36px; background: linear-gradient(var(--orange) 0 7px,transparent 7px 29px,var(--orange) 29px); }
.location-consent-card h2 { margin: 0 0 8px; font-size: 25px; line-height: 1.1; }
.location-consent-card > p { margin: 0 auto; max-width: 34ch; color: var(--dim); font-size: 14px; line-height: 1.5; }
.location-consent-help { margin-top: 16px; padding: 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.045); color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.45; text-align: left; }
.location-consent-help[hidden] { display: none; }
.location-consent-help strong, .location-consent-help span { display: block; }
.location-consent-help strong { margin-bottom: 4px; color: #fff; }
.location-help-ios { display: none; }
.location-consent-actions { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 9px; margin-top: 20px; }
.location-consent-actions button { min-height: 48px; padding: 0 18px; border-radius: 999px; color: #fff; cursor: pointer; font: inherit; font-size: 14px; font-weight: 800; -webkit-appearance: none; appearance: none; }
.location-consent-cancel { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); }
.location-consent-allow { border: 0; background: var(--orange); box-shadow: 0 8px 24px rgba(255,81,37,.28); }

@supports (-webkit-touch-callout: none) {
    .location-help-ios { display: block; }
    .location-help-desktop { display: none; }
}

.measure-intro { max-width: none; padding: 96px 0 72px; }
.measure-intro h1 { max-width: 760px; margin: 7px 0 18px; font-size: clamp(42px, 6vw, 64px); line-height: 1.04; letter-spacing: -.025em; }
.measure-intro .lead { max-width: 720px; color: var(--dim); font-size: clamp(18px, 2.2vw, 23px); }
.measure-intro .actions { margin-top: 28px; }

.leaflet-container { font-family: inherit; background: #17171b; }
.leaflet-control-attribution { display: none; }
.leaflet-control-zoom a { background: rgba(10,10,12,.88); color: #fff; border-color: rgba(255,255,255,.12); }
.route-origin-marker { width: 18px; height: 18px; border: 4px solid #fff; border-radius: 50%; background: var(--orange); box-shadow: 0 5px 18px rgba(0,0,0,.42); }
.route-recenter { position: absolute; top: 18px; right: 18px; z-index: 4; display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; background: rgba(25,31,41,.42); box-shadow: inset 0 1px rgba(255,255,255,.14),0 9px 26px rgba(0,0,0,.2); -webkit-backdrop-filter: blur(18px) saturate(1.3); backdrop-filter: blur(18px) saturate(1.3); color: #fff; cursor: pointer; -webkit-appearance: none; appearance: none; }
.route-recenter[hidden] { display: none; }
.route-recenter svg { width: 24px; height: 24px; fill: currentColor; }
.route-recenter:hover { border-color: rgba(255,81,37,.65); color: var(--orange); }

/* Politik-sider */
.legal {
    max-width: 720px;
    margin: 0 auto;
    padding: 64px 24px 96px;
}

.legal h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
}

.legal .updated {
    color: var(--dim);
    font-size: 14px;
    margin-bottom: 36px;
}

.legal h2 {
    font-size: 21px;
    margin: 36px 0 10px;
}

.legal h3 {
    font-size: 17px;
    margin: 24px 0 8px;
}

.legal p,
.legal li {
    color: var(--dim);
    font-size: 15.5px;
}

.legal ul {
    padding-left: 22px;
    margin: 10px 0;
}

.legal a {
    color: var(--orange);
}

/* Opdateringslog */
.release {
    border-top: 1px solid var(--hairline);
    padding-top: 28px;
    margin-top: 28px;
}

.release:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.release-date {
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0 0 6px;
}

/* Scroll-animationer */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.statement-section h2.reveal {
    transform: translateY(38px) scale(0.96);
}

.statement-section h2.reveal.visible {
    transform: translateY(0) scale(1);
}

.phone {
    will-change: transform;
}

/* Rute-skinnen: løberuten der tegnes i takt med scroll */
#route-rail {
    position: fixed;
    left: 26px;
    top: 15vh;
    height: 70vh;
    width: 52px;
    z-index: 4;
    pointer-events: none;
}

#route-rail svg {
    display: block;
    overflow: visible;
}

#route-rail path {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#route-rail .rail-bg {
    stroke: rgba(255, 255, 255, 0.13);
    stroke-dasharray: 1 9;
}

#route-rail .rail-fg {
    stroke: var(--orange);
}

#route-rail .rail-dot-outer {
    fill: #fff;
}

#route-rail .rail-dot-inner {
    fill: var(--orange);
}

@keyframes distanceFlip {
    0%, 8% {
        transform: translateY(0);
    }
    11%, 19% {
        transform: translateY(-22px);
    }
    22%, 30% {
        transform: translateY(-44px);
    }
    33%, 41% {
        transform: translateY(-66px);
    }
    44%, 52% {
        transform: translateY(-88px);
    }
    55%, 63% {
        transform: translateY(-110px);
    }
    66%, 74% {
        transform: translateY(-132px);
    }
    77%, 85% {
        transform: translateY(-154px);
    }
    90%, 100% {
        transform: translateY(-176px);
    }
}

@keyframes buttonRunner {
    0% {
        opacity: 0;
        transform: translate(-22px, -50%);
    }
    22% {
        opacity: 0.95;
    }
    100% {
        opacity: 0;
        transform: translate(210px, -50%);
    }
}

@media (max-width: 1180px) {
    #route-rail {
        display: none;
    }
}

.app-qr-popup {
    position: fixed;
    right: max(22px, env(safe-area-inset-right));
    bottom: max(22px, env(safe-area-inset-bottom));
    z-index: 999;
    width: min(342px, calc(100vw - 44px));
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 81, 37, 0.16), transparent 34%),
        rgba(18, 18, 21, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.app-qr-popup.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.app-qr-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.62);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.app-qr-close:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.app-qr-brand img {
    display: block;
    height: 24px;
    width: auto;
    margin-bottom: 18px;
}

.app-qr-copy h2 {
    max-width: 14ch;
    margin-bottom: 4px;
    font-family: "Arial Black", Impact, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    line-height: 0.95;
    letter-spacing: 0;
}

.app-qr-copy p {
    max-width: 25ch;
    color: var(--dim);
    font-size: 14px;
    line-height: 1.45;
}

.app-qr-code {
    display: block;
    width: 190px;
    margin: 18px auto 16px;
    padding: 8px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.app-qr-code img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.app-qr-store {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(255, 81, 37, 0.30);
}

.app-qr-store:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(255, 81, 37, 0.38);
}

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

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .people-marquee-track {
        animation: none;
    }

}

/* Mobil */
@media (max-width: 860px) {
    .app-qr-popup {
        display: none;
    }

    .nav {
        gap: 12px;
    }

    .nav-actions {
        gap: 8px;
    }

    .nav a.cta {
        padding: 11px 15px;
        font-size: 13px;
    }

    .language-switcher summary {
        min-height: 42px;
        padding: 0 4px;
    }

    .language-code {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 56px;
        text-align: center;
    }

    .hero p.lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero .actions {
        justify-content: center;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        align-items: stretch;
    }

    .hero .actions .btn {
        display: block;
        width: 100%;
        text-align: center;
    }

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

    .distance-rotator {
        width: auto;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        justify-self: center;
    }

    .steps,
    .grid,
    .problem,
    .comparison,
    .route-link-grid,
    .landing-hero,
    .landing-layout,
    .landing-split,
    .landing-image-band,
    .faq-list {
        grid-template-columns: 1fr;
    }

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

    .comparison h2 {
        max-width: none;
    }

    .compare-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .people-marquee-section {
        padding: 42px 0 56px;
    }

    .people-marquee-header h2 {
        max-width: 11ch;
    }

    .people-marquee {
        width: 100vw;
        max-width: 100vw;
    }

    .people-card {
        flex-basis: 252px;
        min-height: 176px;
    }

    .landing-aside {
        position: static;
    }

    .actions {
        justify-content: center;
    }

    .landing-hero,
    .landing-split,
    .landing-text-block,
    .landing-image-band,
    .landing-related {
        padding-top: 48px;
        padding-bottom: 56px;
    }

    .landing-hero {
        text-align: center;
    }

    .landing-hero .lead,
    .landing-text-block p,
    .landing-image-band p {
        margin-left: auto;
        margin-right: auto;
    }

    .landing-device-shot,
    .landing-image-band figure {
        justify-self: center;
    }

    .landing-device-shot {
        max-width: 280px;
    }

    .landing-inline-image {
        max-width: 360px;
        justify-self: center;
    }

    .web-route { height: calc(100svh - 75px); min-height: 640px; }
    .web-route-panel { bottom: 12px; width: calc(100% - 24px); padding: 0; grid-template-columns: 1fr; gap: 12px; }
    .web-route-panel.is-choosing { width: calc(100% - 24px); padding: 0; }
    .web-route-controls { display: grid; grid-template-columns: 1fr 1fr; justify-content: stretch; }
    .web-route-controls .btn, .distance-choice { width: 100%; text-align: center; }
    .web-route-controls #route-locate { grid-column: 1 / -1; }
    .route-distance-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .route-recenter { top: 14px; right: 14px; width: 46px; height: 46px; }
    .measure-intro { padding: 64px 0 52px; text-align: left; }
    .measure-intro .actions { justify-content: flex-start; }

    .landing-feature-list {
        grid-template-columns: 1fr;
    }

    .landing-related > div {
        justify-content: center;
    }

    /* Hold uret inden for telefonens kant på små skærme (ingen vandret scroll) */
    .phone .watch {
        right: 0;
        bottom: -12px;
        width: 100px;
    }
}
