/* ========================================
   Revive Landing Page v2 — Styles
   ======================================== */

/* --- Design Tokens --- */
:root {
    --primary: #6c63ff;
    --primary-dark: #5a52e0;
    --primary-light: #8b85ff;
    --secondary: #9891ff;
    --tertiary: #eeedff;
    --alternate: #eceef9;
    --confirmed: #00008b;
    --dark-purple: #3a3180;
    --shade-purple: #bfb9ff;

    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    --primary-glow: rgba(108, 99, 255, 0.2);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --section-py: 120px;
}

/* --- Reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
}

.accent-text {
    color: var(--primary);
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   Navigation
   ======================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--primary);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: all 0.3s ease;
    display: block;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--tertiary) 0%, var(--white) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, var(--shade-purple) 0%, transparent 60%);
    opacity: 0.25;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.6s ease both;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.hero h1 {
    font-size: clamp(40px, 5.5vw, 64px);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 12px;
    max-width: 480px;
    line-height: 1.7;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero .launch-text {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeInUp 0.7s ease 0.25s both;
}

.download-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    animation: fadeInUp 0.7s ease 0.3s both;
}

/* Store Buttons */
.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

.store-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--gray-800);
    flex-shrink: 0;
}

.store-btn-text {
    text-align: left;
}

.store-btn-text small {
    font-size: 11px;
    color: var(--gray-500);
    display: block;
    line-height: 1.3;
}

.store-btn-text span {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
}

/* Coming Soon Banner */
.coming-soon-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-purple) 100%);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-top: 16px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.7s ease 0.35s both;
}

.coming-soon-banner a {
    color: var(--shade-purple);
    text-decoration: none;
    font-weight: 600;
}

.coming-soon-banner a:hover {
    text-decoration: underline;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.9s ease 0.3s both;
}

.phone-screenshot {
    width: 140%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    margin: -20px -20% -20px 0;
}

/* ========================================
   Trust Bar
   ======================================== */
.trust-bar {
    padding: 48px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-600);
    font-size: 15px;
    font-weight: 500;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    fill: none;
    flex-shrink: 0;
}

/* ========================================
   Why Revive Section
   ======================================== */
.why-revive {
    padding: var(--section-py) 0;
    background: var(--white);
}

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

.why-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    background: var(--white);
    transition: all 0.4s ease;
}

.why-card:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 48px var(--primary-glow);
    transform: translateY(-4px);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--tertiary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--primary);
}

.why-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    fill: none;
    transition: stroke 0.3s ease;
}

.why-card:hover .why-icon svg {
    stroke: var(--white);
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.why-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.services-disclaimer {
    font-size: 14px;
    color: var(--gray-400);
    font-style: italic;
    margin-top: 12px;
}

.services-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.carousel-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.carousel-arrow:hover svg {
    stroke: var(--white);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--gray-600);
    transition: stroke 0.3s ease;
}

.carousel-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

.services-scroll-container {
    flex: 1;
    overflow: hidden;
}

.services-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 30px;
}

.services-scroll::-webkit-scrollbar {
    display: none;
}

.service-item {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 16px 48px var(--primary-glow);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px auto 0;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: var(--primary);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary);
    fill: none;
    transition: stroke 0.3s ease;
}

.service-item:hover .service-icon svg {
    stroke: var(--white);
}

.service-info {
    padding: 20px 24px 28px;
    text-align: center;
}

.service-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Syne', sans-serif;
}

.service-info p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}


/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    padding: var(--section-py) 0;
    position: relative;
    background: var(--white);
}

/* 3-column phone showcase */
.how-steps-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.how-step-card {
    text-align: center;
}

.how-step-phone {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}

.how-step-phone img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 32px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
    transition: transform 0.4s ease;
}

.how-step-card:hover .how-step-phone img {
    transform: translateY(-8px);
}

.how-step-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    flex-shrink: 0;
    margin-bottom: 4px;
}

.how-step-info h3 {
    font-size: 20px;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.how-step-info p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 300px;
}

/* Tracking bonus row */
.how-tracking {
    margin-top: 80px;
    background: var(--gray-50);
    border-radius: 24px;
    padding: 56px 48px;
    border: 1px solid var(--gray-100);
}

.how-tracking-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: center;
}

.how-tracking-phone {
    display: flex;
    justify-content: center;
}

.how-tracking-phone img {
    max-width: 240px;
    width: 100%;
    height: auto;
    border-radius: 28px;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.1));
}

.tracking-badge {
    display: inline-block;
    background: var(--tertiary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.how-tracking-text h3 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 16px;
}

.how-tracking-text p {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 440px;
}

/* ========================================
   Pro Section
   ======================================== */
.pro-section {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--dark-purple) 0%, var(--gray-900) 100%);
    position: relative;
    overflow: hidden;
}

.pro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.5;
}

.pro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pro-content .section-label {
    color: var(--secondary);
}

.pro-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    color: var(--white);
}

.pro-content h2 .accent-pro {
    color: var(--secondary);
}

.pro-content > p {
    font-size: 17px;
    color: var(--gray-300);
    margin-bottom: 32px;
    line-height: 1.8;
}

.download-label-pro {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.pro-ctas {
    display: flex;
    gap: 12px;
}

.pro-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

.pro-store-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--gray-800);
}

.pro-store-btn .store-btn-text small {
    color: var(--gray-500);
}

.pro-store-btn .store-btn-text span {
    color: var(--gray-800);
}

.pro-coming-soon-banner {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-top: 16px;
}

.pro-coming-soon-banner a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.pro-coming-soon-banner a:hover {
    text-decoration: underline;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(108, 99, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
}

.benefit-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--white);
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Pro Features */
.pro-features-section {
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

.pro-features-heading {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    text-align: center;
}

.pro-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pro-feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.pro-feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(108, 99, 255, 0.3);
}

.pro-feature-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    flex-shrink: 0;
}

.pro-feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.pro-feature-text p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0;
}


/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-purple) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.final-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.final-cta .store-btn {
    background: var(--white);
    border-color: var(--white);
}

.final-cta .cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

.final-cta .cta-note a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
}

.final-cta .cta-note a:hover {
    text-decoration: underline;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    padding: var(--section-py) 0;
    background: var(--gray-50);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
}

.faq-question span {
    font-size: 17px;
    font-weight: 500;
    color: var(--gray-800);
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--gray-400);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    stroke: var(--primary);
}

.faq-item.active .faq-question span {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: var(--section-py) 0;
    background: var(--white);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 560px;
    margin: 0 auto 64px;
}

.contact-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px var(--primary-glow);
    background: var(--white);
}

.contact-card svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 17px;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.contact-card p {
    font-size: 15px;
    color: var(--gray-500);
}

.contact-card a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: var(--gray-50);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    font-size: 22px;
    margin-bottom: 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.form-group label .required {
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    color: var(--gray-800);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

/* Form Toast Notification */
.form-toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--gray-900);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s ease;
}

.form-toast.visible {
    transform: translateY(0);
    opacity: 1;
}

.form-toast.error {
    background: #dc2626;
}

/* ========================================
   Footer
   ======================================== */
footer {
    padding: 72px 0 36px;
    background: var(--gray-900);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand .logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 360px;
}

.footer-store-btns {
    display: flex;
    gap: 12px;
}

.footer-store-btns .store-btn {
    padding: 10px 16px;
    background: var(--gray-800);
    border-color: var(--gray-700);
}

.footer-store-btns .store-btn:hover {
    background: var(--gray-700);
    border-color: var(--gray-600);
}

.footer-store-btns .store-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-store-btns .store-btn-text small {
    font-size: 9px;
    color: var(--gray-400);
}

.footer-store-btns .store-btn-text span {
    font-size: 13px;
    color: var(--white);
}

.footer-coming-soon {
    color: var(--gray-400);
    font-size: 13px;
    font-weight: 500;
    margin-top: 12px;
    font-style: italic;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 15px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 36px;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-400);
    text-decoration: none;
    margin-left: 24px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary);
}

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

.social-links a {
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 0;
}

.social-links a:hover {
    background: var(--primary);
}

.social-links a:hover svg {
    fill: var(--white);
}

.social-links svg {
    width: 16px;
    height: 16px;
    fill: var(--gray-400);
    transition: fill 0.3s ease;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Scroll-triggered reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   Responsive — Tablet (1024px)
   ======================================== */
@media (max-width: 1024px) {
    .hero-grid,
    .pro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
    }

    .phone-screenshot {
        width: 100%;
        margin: 0;
    }

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

    .how-steps-showcase {
        gap: 24px;
    }

    .how-step-phone img {
        max-width: 220px;
    }

    .how-tracking {
        padding: 40px 32px;
    }

    .how-tracking-inner {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   Responsive — Mobile (768px)
   ======================================== */
@media (max-width: 768px) {
    :root {
        --section-py: 80px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-100);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-ctas,
    .pro-ctas {
        flex-direction: column;
    }

    .store-btn,
    .pro-store-btn {
        justify-content: center;
    }

    .phone-screenshot {
        max-height: 400px;
        object-fit: contain;
    }

    .trust-bar-inner {
        gap: 24px;
        justify-content: center;
    }

    .trust-item {
        font-size: 13px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .how-steps-showcase {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 360px;
        margin: 0 auto;
    }

    .how-step-phone img {
        max-width: 260px;
    }

    .how-tracking {
        padding: 36px 24px;
        margin-top: 56px;
    }

    .how-tracking-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .how-tracking-phone {
        order: -1;
    }

    .how-tracking-phone img {
        max-width: 220px;
    }

    .how-tracking-text p {
        max-width: 100%;
    }

    .carousel-arrow {
        display: none;
    }

    .services-carousel-wrapper {
        gap: 0;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

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

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

    .pro-features-heading {
        font-size: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom p {
        order: 2;
    }

    .social-links a {
        margin-left: 0;
    }

    .form-toast {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

/* ========================================
   Responsive — Small Mobile (480px)
   ======================================== */
@media (max-width: 480px) {
    :root {
        --section-py: 64px;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 0 48px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .footer-store-btns {
        flex-direction: column;
    }

    .how-steps-showcase {
        max-width: 100%;
    }

    .how-step-phone img {
        max-width: 240px;
    }

    .how-tracking-phone img {
        max-width: 200px;
    }

    .final-cta {
        padding: 72px 0;
    }
}



/* ========================================
   Legal Pages (Privacy Policy / Terms)
   ======================================== */

.legal-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
}

.legal-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-back-link:hover {
    color: var(--primary);
}

.legal-page {
    padding: 72px 0 120px;
    background: var(--white);
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-header h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.legal-effective {
    font-size: 15px;
    color: var(--gray-500);
}

.legal-body h1.legal-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 48px 0 16px;
}

.legal-body h2.legal-section {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 40px 0 12px;
    padding-top: 8px;
    border-top: 1px solid var(--gray-100);
}

.legal-body h3.legal-subsection {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin: 24px 0 8px;
}

.legal-body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.legal-body ul {
    margin: 0 0 16px 24px;
    padding: 0;
}

.legal-body ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.legal-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word;
}

.legal-body a:hover {
    color: var(--primary-dark);
}

@media (max-width: 640px) {
    .legal-page {
        padding: 48px 0 80px;
    }

    .legal-header h1 {
        font-size: 1.75rem;
    }
}
