/*
  Rhiza: Plant Care Landing Page Design System
  Theme: Botanical Premium Dark Mode & Glassmorphism
*/

:root {
    --bg-primary: #0b0f0c;
    --bg-secondary: #121b14;
    --accent-green: #2e7d32;
    --accent-green-hover: #388e3c;
    --accent-green-glow: rgba(46, 125, 50, 0.35);
    --text-primary: #f0f4f1;
    --text-secondary: #9aa89f;
    --text-muted: #67756d;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg-hover: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-green);
    color: #ffffff;
    box-shadow: 0 4px 20px var(--accent-green-glow);
}

.btn-primary:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(46, 125, 50, 0.5);
}

.btn-secondary {
    background-color: var(--glass-bg);
    border-color: var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-2px);
}

.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.btn-subtitle {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
    text-transform: uppercase;
}

.btn-title {
    font-size: 0.95rem;
    font-weight: 700;
}

/* Background Gradients */
.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.glow-1 {
    top: -10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
}

.glow-2 {
    top: 40%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #1b5e20 0%, transparent 70%);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(11, 15, 12, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-text .dot {
    color: var(--accent-green);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-green);
    transition: var(--transition-smooth);
}

.nav-link.active::after, .nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Selector */
.lang-selector {
    position: relative;
}

.lang-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

.chevron-icon {
    width: 14px;
    height: 14px;
    transition: var(--transition-smooth);
}

.lang-selector.open .chevron-icon {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(18, 27, 20, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 6px;
    display: none;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(15px);
}

.lang-selector.open .lang-dropdown {
    display: flex;
}

.dropdown-item {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    width: 100%;
}

.dropdown-item:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle svg {
    width: 24px;
    height: 24px;
}

/* Glassmorphism Card Style Base */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 60px;
}

.badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(46, 125, 50, 0.3);
    color: #4caf50;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 40%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 520px;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Mockup Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.mockup-container {
    position: relative;
    z-index: 2;
    width: 290px;
}

.mockup-frame {
    background: #18221a;
    border: 10px solid #2d3e30;
    border-radius: 36px;
    aspect-ratio: 9 / 19.5;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
}

.mockup-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #0b0f0c;
    position: relative;
    padding-bottom: 50px;
}

/* App Header & Status Bar */
.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #121b14;
    padding: 6px 16px 2px 16px;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.status-right-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-mini-icon {
    width: 10px;
    height: 10px;
    color: var(--text-muted);
}

/* App Toolbar */
.app-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #121b14;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.toolbar-icon-sprout {
    width: 18px;
    height: 18px;
    color: #4caf50;
}

.toolbar-icon-bell {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

/* App Content Scrollable */
.app-content-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Custom Scrollbar for Phone Mockup */
.app-content-scroll::-webkit-scrollbar {
    width: 4px;
}
.app-content-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
}

/* User Greeting Section */
.mockup-user-greeting {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.greeting-texts {
    display: flex;
    flex-direction: column;
}

.greeting-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

.greeting-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.mockup-drops-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(33, 150, 243, 0.12);
    border: 1px solid rgba(33, 150, 243, 0.25);
    color: #2196f3;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
}

.badge-drop-icon {
    width: 14px;
    height: 14px;
    animation: float 3s ease-in-out infinite;
}

/* Active Plant Selector Card */
.mockup-plant-selector {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(46, 125, 50, 0.15);
    padding: 10px 12px;
    border-radius: 12px;
    gap: 10px;
}

.plant-thumb-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plant-thumb-wrapper svg {
    width: 16px;
    height: 16px;
    color: #4caf50;
}

.plant-selector-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.selector-tag {
    font-size: 0.55rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.selector-name {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.selector-species {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.selector-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

/* Mockup Care status card */
.mockup-care-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(33, 150, 243, 0.2);
    padding: 12px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.care-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.care-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(33, 150, 243, 0.15);
    border: 1px solid rgba(33, 150, 243, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2196f3;
}

.care-icon-box svg {
    width: 18px;
    height: 18px;
}

.care-title-box {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.care-title-box h4 {
    font-size: 0.85rem;
    font-weight: 800;
}

.care-volume {
    display: inline-block;
    align-self: flex-start;
    background: #2196f3;
    color: white;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 1px 4px;
    border-radius: 4px;
    margin-top: 1px;
    line-height: 1;
}

.care-subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* 7-Day Timeline Mockup */
.mockup-timeline {
    display: flex;
    justify-content: space-between;
    gap: 2px;
    margin: 4px 0;
}

.timeline-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.day-label {
    font-size: 0.55rem;
    color: var(--text-muted);
    font-weight: 600;
}

.day-indicator {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.timeline-day.is-today .day-indicator {
    border-color: #ffb74d;
}

.day-indicator.has-water {
    background: rgba(33, 150, 243, 0.15);
    border-color: #2196f3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-drop {
    width: 10px;
    height: 10px;
    color: #2196f3;
}

/* Mockup Green Button */
.mockup-action-btn {
    background: var(--accent-green);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
    width: 100%;
}

.mockup-action-btn:hover {
    background: var(--accent-green-hover);
}

/* Mockup FAB Button */
.mockup-fab {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2196f3;
    border: 2px solid #0b0f0c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mockup-fab:hover {
    transform: translateX(-50%) scale(1.06);
}

.mockup-fab svg {
    width: 20px;
    height: 20px;
}

/* Mockup Bottom Navigation */
.mockup-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #121b14;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 5;
    padding: 0 8px;
}

.nav-item {
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item svg {
    width: 16px;
    height: 16px;
}

.nav-item.active {
    color: #4caf50;
}

.placeholder-fab {
    width: 36px;
}

.visual-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.2) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: #4caf50;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.feature-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Feature preview widgets */
.feature-preview-widget {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px;
    margin-top: auto;
    font-size: 0.8rem;
}

.widget-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.widget-row:last-child {
    margin-bottom: 0;
}

.widget-day {
    color: var(--text-muted);
}

.widget-action {
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.widget-action.watering {
    background: rgba(33, 150, 243, 0.15);
    color: #2196f3;
}

.widget-action.fertilizing {
    background: rgba(233, 30, 99, 0.15);
    color: #e91e63;
}

/* Dr Planta scanner preview animation */
.diagnosis-widget {
    position: relative;
    overflow: hidden;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4caf50;
    box-shadow: 0 0 10px #4caf50;
    animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { top: 0%; }
    50% { top: 100%; }
}

.diagnosis-result {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(18, 27, 20, 0.8);
    border: 1px solid var(--glass-border);
}

.dot-warning {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ff9800;
    box-shadow: 0 0 6px #ff9800;
}

.result-text {
    font-weight: 600;
    color: var(--text-primary);
}

/* Mascot widget */
.mascot-widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.water-drops-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    font-weight: 700;
    color: #2196f3;
}

.drop-icon {
    width: 20px;
    height: 20px;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.mascot-accessories {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.accessory-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Policies Section in Landing */
.policies-section {
    padding-bottom: 100px;
}

.policies-box {
    padding: 60px;
    text-align: center;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.policies-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(46, 125, 50, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.policies-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.policies-desc {
    max-width: 600px;
    margin: 0 auto 36px auto;
}

.policies-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer styling */
.main-footer {
    border-top: 1px solid var(--glass-border);
    background-color: #080b09;
    padding: 60px 0 30px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 320px;
}

.footer-tagline {
    margin-top: 16px;
    font-size: 0.9rem;
}

.footer-links-group {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

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

.support-email {
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-email svg {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Legal Dedicated Pages styling overrides */
.legal-page {
    background-color: var(--bg-primary);
}

.legal-main {
    padding-top: 140px;
    padding-bottom: 80px;
}

.legal-box {
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.last-update {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 16px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #4caf50;
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.legal-content li strong {
    color: var(--text-primary);
}

.support-footer-text {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.email-link {
    color: #4caf50 !important;
    text-decoration: underline !important;
    font-weight: 600;
}

/* Scroll reveal animations (Baseline Widely Supported standard) */
@media (prefers-reduced-motion: no-preference) {
    @supports ((animation-timeline: view()) and (animation-range: entry)) {
        @keyframes reveal {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.96);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .scroll-reveal {
            animation: reveal auto linear both;
            animation-timeline: view();
            animation-range: entry 10% cover 30%;
        }
    }
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid > :last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11, 15, 12, 0.98);
        backdrop-filter: blur(20px);
        padding: 40px 24px;
        display: none;
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-menu.open {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    
    .badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid > :last-child {
        grid-column: span 1;
    }
    
    .policies-box, .legal-box {
        padding: 40px 20px;
    }
    
    .legal-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 425px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .cta-group .btn {
        width: 100%;
    }
    
    .policies-title {
        font-size: 1.7rem;
    }
}
