﻿/* ===================================================
   TANLY — Main Stylesheet · tanly.co
   Tanning Session Tracker for iOS
   =================================================== */

/*@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --orange: #FF7A2E; /* #FF5C00 */
    --orange-light: #FF7A2E;
    --orange-dim: rgba(255, 92, 0, 0.12);
    --orange-glow: rgba(255, 92, 0, 0.28);
    --black: #080808;
    --dark: #111111;
    --dark2: #181818;
    --gray: #242424;
    --border: rgba(255,255,255,0.07);
    --muted: #f1f1f1;
    --muted2: #4A4A4A;
    --white: #FFFFFF;
    --off-white: #F0EDE8;
    --font-display: "Poppins"; /*'Syne', sans-serif*/ /* system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif */
    --font-body: "Poppins"; /*'DM Sans', sans-serif*/
    --radius: 20px;
    --radius-sm: 12px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ========== CURSOR ========== */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--orange);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width 0.25s, height 0.25s;
    opacity: 0.5;
}

@media (hover: none) {
    .cursor, .cursor-ring {
        display: none;
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(8,8,8,0.8);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -1.5px;
}

    .logo span {
        color: var(--orange);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

    .nav-links a {
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--muted);
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--white);
        }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 0.55rem 1.3rem;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: all 0.2s !important;
}

    .nav-cta:hover {
        background: var(--orange-light) !important;
        transform: scale(1.04);
    }

.hamburger {
    display: none;
    background: none;
    border: 1px solid var(--border);
    color: var(--white);
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.2s;
}

    .hamburger:hover {
        border-color: var(--orange);
        color: var(--orange);
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 5vw 2rem;
    gap: 1.5rem;
    z-index: 199;
}

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        font-size: 1rem;
        font-weight: 500;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 0.6rem;
        transition: color 0.2s;
    }

        .mobile-menu a:hover {
            color: var(--white);
        }

        .mobile-menu a i {
            color: var(--orange);
            font-size: 0.85rem;
        }

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal:nth-child(2) {
        transition-delay: 0.1s;
    }

    .reveal:nth-child(3) {
        transition-delay: 0.2s;
    }

    .reveal:nth-child(4) {
        transition-delay: 0.3s;
    }

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 40px var(--orange-glow);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

    .btn-primary i {
        font-size: 1.15rem;
    }

    .btn-primary small {
        display: block;
        font-size: 0.65rem;
        font-weight: 400;
        opacity: 0.8;
        line-height: 1;
    }

    .btn-primary span {
        display: flex;
        flex-direction: column;
        line-height: 1.25;
    }

    .btn-primary:hover {
        background: var(--orange-light);
        transform: translateY(-3px);
        box-shadow: 0 14px 50px var(--orange-glow);
    }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-ghost:hover {
        border-color: var(--orange);
        color: var(--orange);
        background: var(--orange-dim);
    }

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    background: var(--white);
    color: var(--black);
    padding: 0.9rem 1.8rem;
    border-radius: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(255,255,255,0.1);
}

    .app-store-btn i {
        font-size: 1.8rem;
    }

    .app-store-btn small {
        display: block;
        font-size: 0.65rem;
        font-weight: 400;
        opacity: 0.6;
        line-height: 1;
    }

    .app-store-btn span {
        display: flex;
        flex-direction: column;
        line-height: 1.25;
    }

    .app-store-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 50px rgba(255,255,255,0.18);
        background: var(--off-white);
    }

    .app-store-btn.big {
        font-size: 1.25rem;
        padding: 1.1rem 2.2rem;
    }

        .app-store-btn.big i {
            font-size: 2.2rem;
        }

.footer-store-btn {
    font-size: 0.9rem !important;
    padding: 0.75rem 1.4rem !important;
}

    .footer-store-btn i {
        font-size: 1.4rem !important;
    }

/* ========== SHARED SECTION ========== */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.25rem;
}

    .section-label.light {
        color: rgba(255,92,0,0.65);
    }

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 3rem;
}

.word-orange {
    color: var(--orange);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 120px 5vw 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,92,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,92,0,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-dim);
    border: 1px solid rgba(255,92,0,0.3);
    color: var(--orange);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeUp 0.7s ease both;
}

h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.7s 0.1s ease both;
}

.line-outline {
    -webkit-text-stroke: 2px var(--orange);
    color: transparent;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeUp 0.7s 0.45s ease both;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
}

    .stat-num i {
        font-size: 0.9rem;
        color: var(--orange);
        margin-left: 2px;
    }

.stat-label {
    font-size: 0.75rem;
    color: var(--muted);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Phone Mockup */
.hero-phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    animation: fadeUp 0.7s 0.2s ease both;
    width: min(100%, 420px);
    margin: 0 auto;
    padding-inline: 1rem;
}

.hero-phone-image {
    display: block;
    width: min(100%, 320px);
    height: auto;
    max-height: 78vh;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.phone-glow {
    position: absolute;
    width: min(90%, 380px);
    aspect-ratio: 19 / 24;
    background: radial-gradient(ellipse, rgba(255,92,0,0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%,100% {
        opacity: 1;
        transform: translate(-50%,-50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%,-50%) scale(1.06);
    }
}

.phone-mockup {
    width: 285px;
    background: var(--dark2);
    border-radius: 46px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,92,0,0.07), inset 0 0 20px rgba(255,92,0,0.02);
}

.phone-screen {
    background: #F5F5F7;
    border-radius: 38px;
    overflow: hidden;
    min-height: 580px;
}

.phone-notch {
    width: 100px;
    height: 30px;
    background: var(--dark2);
    border-radius: 0 0 20px 20px;
    margin: 0 auto 0;
}

.phone-ui {
    padding: 12px 14px 0;
}

.phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.phone-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -1px;
    color: #111;
}

.phone-loc {
    font-size: 0.65rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 3px;
}

    .phone-loc i {
        color: var(--orange);
        font-size: 0.6rem;
    }

/* Welcome card */
.phone-welcome-card {
    background: linear-gradient(135deg, #FFF0E0, #FFE4C4);
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,140,0,0.15);
}

.welcome-top {
    margin-bottom: 8px;
}

.welcome-hi {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
}

.welcome-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.weather-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    padding: 3px 8px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #333;
}

    .weather-badge i {
        font-size: 0.6rem;
        color: #F59E0B;
    }

    .weather-badge.uv i {
        color: #EF8C00;
    }

/* Progress row */
.phone-progress-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.prog-item {
    border-radius: 12px;
    padding: 10px 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

    .prog-item i {
        font-size: 0.85rem;
        margin-bottom: 2px;
    }

    .prog-item strong {
        font-size: 0.9rem;
        font-weight: 800;
        color: #111;
        line-height: 1;
    }

    .prog-item span {
        font-size: 0.6rem;
        color: #888;
    }

.orange-bg {
    background: #FFF0E6;
}

    .orange-bg i {
        color: var(--orange);
    }

.blue-bg {
    background: #E8F0FF;
}

    .blue-bg i {
        color: #3B82F6;
    }

.green-bg {
    background: #E8FFF0;
}

    .green-bg i {
        color: #10B981;
    }

/* Score card */
.phone-score-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #EEF3FF;
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 10px;
}

.score-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: conic-gradient(#3B82F6 0% 74%, #ddd 74% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .score-circle span {
        font-size: 0.7rem;
        font-weight: 800;
        color: #1D40AF;
        background: #EEF3FF;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.score-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111;
}

.score-grade {
    font-size: 0.65rem;
    color: #666;
}

.score-arrow {
    margin-left: auto;
    font-size: 0.7rem;
    color: #aaa;
}

/* Achievement */
.phone-achievement {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFFBEA;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid rgba(234,179,8,0.2);
}

    .phone-achievement > i {
        color: #D97706;
        font-size: 1rem;
        flex-shrink: 0;
    }

.ach-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111;
}

.ach-sub {
    font-size: 0.6rem;
    color: #888;
}

/* Bottom nav */
.phone-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 1px solid #E5E5E5;
    padding: 10px 0 8px;
    background: rgba(255,255,255,0.9);
}

.pnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 0.55rem;
    color: #999;
    font-weight: 500;
}

    .pnav-item i {
        font-size: 1rem;
    }

    .pnav-item.active {
        color: var(--orange);
    }

.pnav-plus {
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(255,92,0,0.4);
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted);
    font-size: 0.75rem;
    text-decoration: none;
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
}

    .scroll-hint i {
        font-size: 1rem;
        color: var(--orange);
    }

@keyframes bounce {
    0%,100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== FEATURES ========== */
.features-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

    .features-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,92,0,0.4), transparent);
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius);
        background: linear-gradient(135deg, rgba(255,92,0,0.05), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .feature-card:hover {
        border-color: rgba(255,92,0,0.3);
        transform: translateY(-4px);
        box-shadow: 0 16px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,92,0,0.08);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

    .feature-card.large-card {
        grid-column: span 2;
    }

    .feature-card.dark-card {
        background: var(--gray);
    }

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--orange-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,92,0,0.2);
}

    .feature-icon.bright {
        background: var(--orange);
        color: var(--white);
        border-color: transparent;
    }

.feature-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
}

.feature-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

    .feature-tags span {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: rgba(255,92,0,0.1);
        border: 1px solid rgba(255,92,0,0.2);
        color: var(--orange);
        padding: 0.35rem 0.85rem;
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 600;
    }

.score-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
    border: 1px solid var(--border);
}

.mini-score {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--orange);
    line-height: 1;
}

.mini-grade {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}

.mini-sub {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 300;
}

/* ========== SESSION SECTION ========== */
.session-section {
    padding: 120px 0;
    background: var(--black);
}

.session-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.session-body {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2rem;
}

.session-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.session-type-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s, transform 0.2s;
}

    .session-type-card:hover {
        border-color: rgba(255,92,0,0.3);
        transform: translateX(4px);
    }

.stype-icon {
    width: 46px;
    height: 46px;
    background: var(--orange-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

    .stype-icon.purple {
        background: rgba(168,85,247,0.1);
        color: #A855F7;
    }

.session-type-card strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.session-type-card span {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 300;
}

.safety-card {
    background: rgba(239,68,68,0.05);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.safety-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

    .safety-header i {
        color: #EF4444;
        font-size: 1rem;
    }

.safety-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

    .safety-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        font-size: 0.88rem;
        color: var(--off-white);
        font-weight: 400;
        line-height: 1.5;
    }

        .safety-list li i {
            color: #22C55E;
            font-size: 0.75rem;
            flex-shrink: 0;
            margin-top: 3px;
        }

.uv-scale-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.uv-scale-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.uv-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

    .uv-row:last-child {
        border-bottom: none;
    }

.uv-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

    .uv-dot.green {
        background: #22C55E;
    }

    .uv-dot.yellow {
        background: #EAB308;
    }

    .uv-dot.orange-dot {
        background: #F97316;
    }

    .uv-dot.red {
        background: #EF4444;
    }

    .uv-dot.purple-dot {
        background: #A855F7;
    }

.uv-range {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    min-width: 36px;
}

.uv-label {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 300;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 120px 0;
    background: var(--dark);
    position: relative;
}

    .testimonials-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,92,0,0.3), transparent);
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.tcard {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

    .tcard:hover {
        border-color: rgba(255,92,0,0.25);
        transform: translateY(-4px);
    }

.tcard-stars {
    color: var(--orange);
    font-size: 0.85rem;
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.tcard p {
    font-size: 0.92rem;
    color: var(--off-white);
    line-height: 1.75;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tcard-avatar {
    width: 38px;
    height: 38px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.85rem;
    border: 1px solid var(--border);
}

.tcard-author strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
}

.tcard-author span {
    font-size: 0.75rem;
    color: var(--muted);
}

/* ========== DOWNLOAD ========== */
.download-section {
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.download-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.download-glow {
    position: absolute;
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(255,92,0,0.14) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: pulseGlow 5s ease-in-out infinite;
}

.download-inner {
    position: relative;
    z-index: 1;
}

.download-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

    .download-title span {
        color: var(--orange);
    }

.download-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.75;
    font-weight: 300;
}

.download-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.download-note {
    font-size: 0.8rem;
    color: var(--muted2);
    letter-spacing: 0.03em;
}

    .download-note i {
        color: var(--orange);
        font-size: 0.7rem;
    }

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 80px 5vw 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 5rem;
    margin-bottom: 60px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 1rem 0 1.5rem;
    font-weight: 300;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

    .footer-col h4 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.8rem;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        color: var(--white);
        margin-bottom: 0.25rem;
    }

    .footer-col a {
        font-size: 0.88rem;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: color 0.2s;
        font-weight: 300;
    }

        .footer-col a:hover {
            color: var(--orange);
        }

        .footer-col a i {
            font-size: 0.8rem;
            color: var(--orange);
            opacity: 0.7;
        }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

    .footer-bottom p {
        font-size: 0.8rem;
        color: var(--muted2);
    }

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

    .footer-bottom-links a {
        font-size: 0.8rem;
        color: var(--muted2);
        transition: color 0.2s;
    }

        .footer-bottom-links a:hover {
            color: var(--orange);
        }

    .footer-bottom-links span {
        color: var(--muted2);
    }

/* ========== LEGAL PAGES ========== */
.legal-hero {
    padding: 160px 5vw 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,92,0,0.1) 0%, transparent 60%);
    pointer-events: none;
}

    .legal-hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,92,0,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,92,0,0.025) 1px, transparent 1px);
        background-size: 60px 60px;
    }

.legal-hero-content {
    position: relative;
    z-index: 1;
}

.legal-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: -0.04em;
    margin: 0.75rem 0 1rem;
}

.legal-meta {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 300;
}

    .legal-meta strong {
        color: var(--white);
        font-weight: 600;
    }

.legal-body {
    padding: 0 5vw 100px;
}

.legal-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 5rem;
    align-items: start;
}

.legal-nav {
    position: sticky;
    top: 100px;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.legal-nav-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-nav a {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    margin-bottom: 2px;
    transition: all 0.2s;
    font-weight: 400;
}

    .legal-nav a:hover {
        background: var(--orange-dim);
        color: var(--orange);
    }

.legal-block {
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--border);
}

    .legal-block:last-child {
        border-bottom: none;
    }

    .legal-block h2 {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: 1.55rem;
        letter-spacing: -0.03em;
        margin-bottom: 1.25rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .legal-block h3 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 1rem;
        margin: 1.5rem 0 0.75rem;
        color: var(--white);
    }

.num {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--orange);
    background: var(--orange-dim);
    border: 1px solid rgba(255,92,0,0.2);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-block p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1rem;
}

    .legal-block p a {
        color: var(--orange);
        text-decoration: underline;
        text-underline-offset: 3px;
    }

.legal-block ul {
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

    .legal-block ul li {
        font-size: 0.92rem;
        color: var(--muted);
        line-height: 1.75;
        font-weight: 300;
    }

        .legal-block ul li strong {
            color: var(--white);
            font-weight: 500;
        }

.legal-highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--orange-dim);
    border: 1px solid rgba(255,92,0,0.2);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
}

    .legal-highlight > i {
        color: var(--orange);
        font-size: 1rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .legal-highlight p {
        font-size: 0.88rem;
        color: var(--off-white);
        line-height: 1.7;
        margin: 0;
        font-weight: 400;
    }

/* Third party grid */
.third-party-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.tp-card {
    display: flex;
    gap: 1rem;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    transition: border-color 0.2s;
}

    .tp-card:hover {
        border-color: rgba(255,92,0,0.25);
    }

.tp-icon {
    width: 40px;
    height: 40px;
    background: var(--orange-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1rem;
    flex-shrink: 0;
}

.tp-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.tp-card span {
    display: block;
    font-size: 0.72rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tp-card p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.tp-card a {
    font-size: 0.78rem;
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    transition: border-color 0.2s, transform 0.2s;
}

    .contact-card:hover {
        border-color: rgba(255,92,0,0.3);
        transform: translateY(-2px);
    }

    .contact-card > i {
        width: 40px;
        height: 40px;
        background: var(--orange-dim);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--orange);
        font-size: 1rem;
        flex-shrink: 0;
    }

    .contact-card strong {
        display: block;
        font-size: 0.72rem;
        color: var(--muted);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 4px;
    }

    .contact-card a {
        font-size: 0.88rem;
        color: var(--white);
        font-weight: 500;
        transition: color 0.2s;
    }

        .contact-card a:hover {
            color: var(--orange);
        }

.navbar-logo {
    height: 68px;
    width: auto;
    display: block;
    margin: 0 0.5rem;
    object-fit: contain;
    vertical-align: middle;
}

.navbar .logo {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
}

.logo-combo {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

    .logo-combo .navbar-logo {
        margin: 0;
        height: 40px;
    }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 60px;
    }

    .hero-sub, .hero-btns, .hero-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-phone-wrapper {
        order: -1;
        margin-bottom: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card.large-card {
        grid-column: span 2;
    }

    .session-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        position: static;
    }

    .third-party-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.large-card {
        grid-column: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-divider {
        display: none;
    }

    .hero-phone-wrapper {
        width: min(100%, 320px);
        padding-inline: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-phone-wrapper {
        width: min(100%, 280px);
    }

    .hero-phone-image {
        width: 100%;
        max-height: 58vh;
    }

    .phone-glow {
        width: min(100%, 260px);
    }
}
