/* --- Reolink Official Style (Dark Theme) --- */
:root {
    --bg-dark: #07080a;        /* Pure dark background */
    --bg-gray: #0b0d12;        /* Subtle dark gray */
    --bg-card: #12151d;        /* Refined card background */
    --brand-blue: #2f65f6;     /* Reolink Blue */
    --brand-blue-hover: #1e52db;
    --brand-orange: #ff6b00;   /* Reolink Orange */
    
    --text-primary: #ffffff;   /* Pure White */
    --text-secondary: #cbd5e1; /* Soft Slate (better than plain gray) */
    --text-dim: #94a3b8;      /* Muted Slate */
    --text-accent: #38bdf8;    /* Sky Blue accent */
    
    --border-color: rgba(255,255,255,0.08);
    --header-gradient: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 99px;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.gray-bg { background-color: var(--bg-gray); }

/* Typography */
h1 { font-size: 54px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.03em; }
h2 { font-size: 44px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em; }
h3 { font-size: 26px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
p { font-size: 19px; color: var(--text-secondary); font-weight: 400; margin-bottom: 20px; line-height: 1.7; }

.section-title {
    background: var(--header-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(255,255,255,0.05);
    display: inline-block;
    width: 100%;
}

/* Buttons */
.btn-reo-primary {
    display: inline-flex; align-items: center; justify-content: center;
    background-color: var(--brand-blue); color: #fff;
    padding: 14px 28px; border-radius: var(--radius-pill);
    font-size: 16px; font-weight: 700; text-decoration: none;
    transition: all 0.3s ease; border: 2px solid var(--brand-blue);
    cursor: pointer;
}
.btn-reo-primary:hover {
    background-color: var(--brand-blue-hover); border-color: var(--brand-blue-hover);
    transform: translateY(-2px); box-shadow: 0 8px 20px rgba(47, 101, 246, 0.3);
}
.btn-reo-secondary {
    display: inline-flex; align-items: center; justify-content: center;
    background-color: transparent; color: var(--text-primary);
    padding: 14px 28px; border-radius: var(--radius-pill);
    font-size: 16px; font-weight: 700; text-decoration: none;
    transition: all 0.3s ease; border: 2px solid var(--border-color);
}
.btn-reo-secondary:hover {
    background-color: rgba(255,255,255,0.05); border-color: #fff;
    transform: translateY(-2px);
}

/* Badges */
.reo-badge {
    display: inline-block; padding: 4px 12px; border-radius: var(--radius-pill);
    font-size: 15px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.reo-badge.orange { background-color: var(--brand-orange); color: #fff; }
.reo-badge.green { background-color: #25d366; color: #fff; }
.reo-badge.green-glow { background-color: rgba(37, 211, 102, 0.15); color: #25d366; border: 1px solid rgba(37,211,102,0.5); box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); }
.reo-badge.blue-outline { background-color: rgba(47, 101, 246, 0.1); color: var(--brand-blue); border: 1px solid var(--brand-blue); }
.badge-group { display: flex; gap: 10px; margin-top: 18px; margin-bottom: 20px; }

/* Topbar */
.reo-topbar { background-color: var(--bg-card); border-bottom: 1px solid var(--border-color); padding: 2px 0; font-size: 12px; color: var(--brand-orange); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.topbar-inner { max-width: 1400px; margin: 0 auto; padding: 0 30px; display: flex; justify-content: space-between; align-items: center; }
.flash-text { animation: textFlash 1s infinite alternate ease-in-out; display: inline-block; }
@keyframes textFlash { 
    0% { transform: scale(1); color: var(--brand-orange); text-shadow: none; } 
    100% { transform: scale(1.03); color: #fff; text-shadow: 0 0 12px var(--brand-orange); } 
}
.topbar-links { display: flex; flex-shrink: 0; }
.topbar-links a { color: var(--text-secondary); text-decoration: none; margin-left: 20px; transition: color 0.2s; font-weight: 600; text-transform: none; letter-spacing: 0;}
.topbar-links a:hover { color: var(--brand-blue); }

/* Custom Brand Logo */
.sm-brand-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.sm-brand-logo:hover { transform: translateY(-1px) scale(1.03); }

.brand-svg-container {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    background: rgba(47, 101, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(47, 101, 246, 0.2);
    padding: 6px;
    transition: all 0.4s ease;
}

.main-logo-svg { width: 100%; height: 100%; color: var(--brand-blue); overflow: visible; }
.logo-shield { color: var(--brand-blue); filter: drop-shadow(0 0 8px rgba(47, 101, 246, 0.5)); transition: all 0.4s ease; }
.logo-letters { color: #fff; filter: drop-shadow(0 0 5px rgba(255,255,255,0.3)); }
.logo-ring { color: rgba(255,255,255,0.2); animation: rotateRing 20s linear infinite; transform-origin: center; }

@keyframes rotateRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.sm-brand-logo:hover .brand-svg-container {
    background: rgba(47, 101, 246, 0.2);
    border-color: var(--brand-blue);
    box-shadow: 0 0 25px rgba(47, 101, 246, 0.4);
}

.sm-brand-logo:hover .logo-shield { color: #00f3ff; filter: drop-shadow(0 0 12px rgba(0, 243, 255, 0.8)); }
.sm-brand-logo:hover .logo-letters { filter: drop-shadow(0 0 10px #fff); }

.brand-text { display: flex; flex-direction: column; justify-content: center; }
.brand-title { 
    font-size: 20px; font-weight: 800; 
    background: linear-gradient(135deg, #ffffff 0%, #b8cde6 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em; line-height: 1.1; margin-bottom: 2px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
}
.brand-subtitle { 
    font-size: 10.5px; font-weight: 700; color: var(--brand-blue); 
    text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.2; 
    opacity: 0.9;
}
.footer-logo-variant .brand-title { font-size: 21px; }

/* Header */
.reo-header { position: sticky; top: 0; background-color: rgba(7, 8, 10, 0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); z-index: 1000; padding: 4px 0; }
.header-inner { max-width: 1400px; margin: 0 auto; padding: 0 30px; display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 16px; font-weight: 600; color: var(--text-primary); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--brand-blue); }
.nav-btn { padding: 10px 24px; font-size: 15px; }

/* Hero */
.reo-hero { padding: 0px 30px 15px; max-width: 1400px; margin: 0 auto; display: flex; align-items: center; min-height: 40vh; }
.hero-container { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 15px; }
.hero-content { flex: 1; max-width: 600px; }
.hero-title-glow { font-size: 68px; font-weight: 800; line-height: 1.1; margin-bottom: 2px; background: linear-gradient(135deg, #ffffff 0%, #b8cde6 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 50px rgba(255,255,255,0.15); letter-spacing: -0.02em; }
.hero-subtitle { font-size: 19px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 8px; max-width: 95%; font-weight: 500; }

.hero-feature-list { list-style: none; padding: 0; margin: 0 0 5px 0; display: flex; flex-direction: column; gap: 8px; }
.hero-feature-list li { display: flex; align-items: center; gap: 12px; font-size: 17px; font-weight: 600; color: #f8fafc; }
.hero-feature-list ion-icon { font-size: 24px; color: var(--brand-blue); filter: drop-shadow(0 0 10px rgba(47, 101, 246, 0.6)); }

.hero-actions { display: flex; gap: 15px; margin-top: 8px; flex-wrap: wrap; }
.hero-visual { flex: 1; position: relative; display: flex; justify-content: center; }
.product-glow { position: absolute; width: 650px; height: 650px; background: radial-gradient(circle, rgba(47, 101, 246, 0.3) 0%, rgba(255, 107, 0, 0.1) 40%, rgba(0,0,0,0) 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; filter: blur(40px); animation: pulseGlow 4s ease-in-out infinite alternate; }
@keyframes pulseGlow { 0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); } 100% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); } }

.cam-wrapper { position: relative; width: 100%; max-width: 550px; display: flex; justify-content: center; align-items: center; transform-style: preserve-3d; perspective: 1200px; transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94); z-index: 1; }
.main-cam { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(40px 40px 60px rgba(0,0,0,0.8)); transform: translateZ(20px); }

/* Camera Variant Crossfade Animation — Base Selectors */
.main-cam { display: grid; place-items: center; position: relative; width: 100%; min-height: 380px; transform-style: preserve-3d; } /* Added preserve-3d */
.variant-img { grid-area: 1/1; width: 100%; height: auto; object-fit: contain; pointer-events: none; transition: transform 0.5s ease; }
.variant-img.v1 { 
    position: relative; 
    animation: fadeVariant1 10s cubic-bezier(0.4, 0, 0.2, 1) infinite; 
    z-index: 2; 
    will-change: opacity, transform, filter;
}
.variant-img.v2 { 
    position: absolute !important; top: 0; left: 0;
    animation: fadeVariant2 10s cubic-bezier(0.4, 0, 0.2, 1) infinite; 
    z-index: 1; 
    filter: brightness(1.1); 
    will-change: opacity, transform, filter;
}

@keyframes fadeVariant1 {
    0%, 45% { opacity: 1; transform: scale(1); filter: blur(0px); }
    55%, 95% { opacity: 0; transform: scale(1.05); filter: blur(8px); }
    100% { opacity: 1; transform: scale(1); filter: blur(0px); }
}
@keyframes fadeVariant2 {
    0%, 45% { opacity: 0; transform: scale(0.95); filter: blur(8px); }
    55%, 95% { opacity: 1; transform: scale(1); filter: blur(0px); }
    100% { opacity: 0; transform: scale(0.95); filter: blur(8px); }
}

/* Floating Badge Features */
.float-tag { position: absolute; background: linear-gradient(145deg, rgba(16, 20, 27, 0.9) 0%, rgba(7, 9, 13, 0.95) 100%); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 12px 20px; border-radius: 30px; color: #fff; font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); z-index: 20; white-space: nowrap; transform-style: preserve-3d; }
/* Float tags are converted to inline pills on mobile via responsive section */
.float-tag ion-icon { font-size: 22px; color: var(--brand-blue); filter: drop-shadow(0 0 8px rgba(47, 101, 246, 0.6)); }

.ft-1 { top: 3%; right: -50px; animation: floatBadge 4s ease-in-out infinite alternate; border-color: rgba(47, 101, 246, 0.3); }
.ft-2 { top: 35%; left: -60px; animation: floatBadge 5s ease-in-out infinite alternate-reverse; color: #25d366; border-color: rgba(37, 211, 102, 0.3); transform: rotate(-5deg) translateZ(60px); }
.ft-2 ion-icon { color: #25d366; filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.6)); }
.ft-2 span { color: #fff; }
.ft-3 { bottom: 12%; left: -75px; animation: floatBadge 6s ease-in-out infinite alternate; }
.ft-3 ion-icon { color: var(--brand-orange); filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.6)); }
.ft-4 { bottom: -2%; right: -30px; animation: floatBadge 4.5s ease-in-out infinite alternate-reverse; }

.ft-5 { top: 5%; left: -70px; animation: floatBadge 5.5s ease-in-out infinite alternate; }
.ft-5 ion-icon { color: #a855f7; filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.6)); }

.ft-6 { top: 52%; right: -65px; animation: floatBadge 3.5s ease-in-out infinite alternate-reverse; }
.ft-6 ion-icon { color: #00f3ff; filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.6)); }

@keyframes floatBadge {
    0% { transform: translateY(0px) translateZ(120px); }
    100% { transform: translateY(-20px) translateZ(120px); }
}

/* Promotional Price Block */
.promo-price-block { display: flex; align-items: center; gap: 18px; margin: 30px 0; padding: 20px 25px; background: linear-gradient(145deg, rgba(22, 26, 36, 0.9) 0%, rgba(13, 15, 20, 0.95) 100%); border: 1px solid rgba(255, 107, 0, 0.3); border-radius: var(--radius-lg); width: fit-content; box-shadow: 0 10px 30px rgba(255, 107, 0, 0.6), 0 0 30px rgba(255, 107, 0, 0.15); position: relative; overflow: hidden; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.promo-price-block::before { content: ''; position: absolute; top:0; left:-100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); animation: sweep 3s infinite; z-index: 0; }
@keyframes sweep { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
.price-original { position: relative; z-index: 1; font-size: 28px; color: var(--text-secondary); text-decoration: line-through; font-weight: 600; opacity: 0.7; }
.price-current { position: relative; z-index: 1; font-size: 32px; font-weight: 800; color: #fff; line-height: 1; text-shadow: 0 0 30px rgba(255, 107, 0, 0.4); display: flex; align-items: baseline; gap: 6px; }
.price-current .currency { font-size: 28px; color: var(--brand-orange); filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5)); }
.price-badge { position: relative; z-index: 1; background-color: var(--brand-orange); color: #fff; padding: 6px 14px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; display: flex; align-items: center; box-shadow: 0 0 15px rgba(255, 107, 0, 0.5); }
.pulse-ring { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: inherit; border: 2px solid var(--brand-orange); animation: pulseRing 1.5s infinite; }
@keyframes pulseRing { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.3); opacity: 0; } }

/* Split Features */
.reo-feature-split { padding: 90px 30px; }
.split-container { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; gap: 80px; }
.split-container.inverted { flex-direction: row-reverse; }
.split-visual { flex: 1; border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.3); line-height: 0; }
.split-text { flex: 1; max-width: 500px; }
.eyebrow { font-size: 16px; font-weight: 700; color: var(--brand-blue); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 16px; }
.rounded-video { width: 100%; border-radius: var(--radius-lg); display: block; }

/* High-Res Comparison Graphic */
.reo-comparison { padding: 90px 30px; max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
.comparison-header { text-align: center; margin-bottom: 70px; }

.pricing-graphic-container { display: flex; justify-content: center; align-items: stretch; gap: 40px; position: relative; max-width: 1050px; margin: 0 auto; }
.graphic-card { flex: 1; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; position: relative; border: 2px solid rgba(255,255,255,0.15); transition: transform 0.3s; }
.graphic-card:hover { transform: translateY(-5px); }
.graphic-card.smart-way { background: linear-gradient(160deg, #184e5a 0%, #0d2a30 100%); box-shadow: 0 20px 50px rgba(24, 78, 90, 0.4); }
.graphic-card.complex-way { background: linear-gradient(160deg, #8b3a1a 0%, #4a1c0d 100%); box-shadow: 0 20px 50px rgba(139, 58, 26, 0.4); }

.card-top-label { text-align: center; padding: 14px; font-weight: 800; font-size: 16px; letter-spacing: 1px; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); border-bottom: 2px solid rgba(255,255,255,0.2); }
.card-top-label.complex { background: rgba(0,0,0,0.2); }
.card-top-label:not(.complex) { background: rgba(255,255,255,0.1); }

.graphic-body { padding: 35px 35px 15px; flex: 1; display: flex; flex-direction: column; }
.graphic-body h3 { font-size: 34px; color: #fff; text-align: center; margin-bottom: 5px; text-shadow: 0 4px 12px rgba(0,0,0,0.5); line-height: 1.1; font-weight: 800; }
.sub-h { display: block; text-align: center; font-size: 18px; color: #fbbf24; font-weight: 700; margin-bottom: 30px; letter-spacing: 0.02em; }

.feature-row-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.check-list { list-style: none; padding: 0; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.check-list li ion-icon { color: #fff; font-size: 24px; }

.pta-badge { background: linear-gradient(135deg, #004d00, #00cc00); padding: 12px 18px; border-radius: 50%; color: #fff; text-align: center; font-weight: 800; font-size: 20px; line-height: 1.1; border: 3px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transform: rotate(10deg); flex-shrink: 0; }
.pta-badge span { font-size: 11px; opacity: 0.9; }

.monthly-package { background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.2); padding: 12px; border-radius: 12px; text-align: center; font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 30px; }
.monthly-package span { color: #ffd700; font-weight: 800; }

.cost-list { list-style: none; margin-bottom: 30px; margin-top: 10px; flex: 1; }
.cost-list li { display: flex; justify-content: space-between; font-size: 19px; font-weight: 600; color: #fff; margin-bottom: 15px; padding-bottom: 8px; border-bottom: 1px dashed rgba(255,255,255,0.2); }
.item-cost { color: #ffd700; }

.graphic-visual { position: relative; display: flex; justify-content: center; margin-top: auto; }
.main-cam-img { width: 100%; max-width: 320px; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6)); z-index: 2; position: relative; }
.messy-setup-img { width: 100%; height: 260px; object-fit: cover; border-radius: 15px; border: 2px solid rgba(255,255,255,0.1); box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.battery-badge { position: absolute; bottom: -10px; right: -20px; background: rgba(0,0,0,0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 12px 18px; border-radius: 12px; display: flex; align-items: center; gap: 10px; color: #fff; border: 1px solid rgba(13, 255, 100, 0.4); z-index: 3;}
.battery-badge ion-icon { font-size: 34px; color: #0dff64; }
.battery-badge strong { font-size: 15px; }
.battery-badge span { font-size: 12px; opacity: 0.8; }

.total-bar { padding: 20px; text-align: center; font-size: 24px; font-weight: 800; color: #fff; }
.total-bar.smart { background: rgba(0,0,0,0.4); border-top: 2px solid #00f3ff; }
.total-bar.complex { background: rgba(0,0,0,0.4); border-top: 2px solid #ff6b00; }
.total-bar span { color: #ffd700; font-size: 34px; }

.graphic-vs { position: absolute; top: 0; left: 50%; width: 70px; height: 70px; background: linear-gradient(135deg, #ff4040, #990000); border: 4px solid #fff; border-radius: 12px; transform: translate(-50%, -35px) rotate(45deg); display: flex; justify-content: center; align-items: center; z-index: 4; box-shadow: 0 10px 20px rgba(0,0,0,0.4); }
.graphic-vs ion-icon { color: #fff; font-size: 36px; transform: rotate(-45deg); }

@media (max-width: 1024px) {
    .pricing-graphic-container { flex-direction: column; }
    .graphic-vs { margin-left: 0; transform: translate(-50%, -35px) rotate(45deg); }
}

/* Savings Summary Bar */
.savings-summary {
    max-width: 1050px;
    margin: 50px auto 0;
    text-align: center;
    background: linear-gradient(145deg, rgba(13, 255, 100, 0.08) 0%, rgba(47, 101, 246, 0.08) 100%);
    border: 1px solid rgba(13, 255, 100, 0.25);
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(13, 255, 100, 0.1);
}
.savings-text {
    font-size: 20px !important;
    color: #fff !important;
    margin: 0 !important;
    line-height: 1.6;
}
.savings-text strong {
    color: #0dff64;
    font-size: 22px;
}
@media (max-width: 768px) {
    .savings-summary { padding: 20px 18px; margin-top: 30px; }
    .savings-text { font-size: 16px !important; }
    .savings-text strong { font-size: 17px; }
}

/* Cards Grid */
.reo-cards-section { padding: 90px 30px; max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.reo-card {
    background-color: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.reo-card:hover {
    transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); border-color: rgba(47, 101, 246, 0.3);
}
.reo-card img { width: 100%; height: 350px; object-fit: cover; border-bottom: 1px solid var(--border-color); }
.card-img-wrapper { position: relative; cursor: pointer; overflow: hidden; border-radius: 20px 20px 0 0; }
.card-img-wrapper img { width: 100%; display: block; transition: transform 0.5s ease; }
.card-img-wrapper:hover img { transform: scale(1.05); }
.play-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; justify-content: center; align-items: center; opacity: 0; transition: all 0.3s ease; }
.card-img-wrapper:hover .play-overlay { opacity: 1; backdrop-filter: blur(2px); }
.play-overlay ion-icon { font-size: 64px; color: #fff; text-shadow: 0 4px 15px rgba(0,0,0,0.5); }

.card-body {
    padding: 30px;
}
.card-body h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}
.card-body p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 16px;
}

.video-modal-content { max-width: 900px !important; padding: 25px; text-align: center; background: rgba(17, 19, 26, 0.95); }
.video-container { display: flex; flex-direction: column; gap: 15px; }
.modal-video { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.6); max-height: 75vh; background: #000; }
.farm-video { max-height: 40vh; object-fit: cover; }

/* Contact Section */
.reo-specs-section { padding: 80px 30px; background: rgba(0,0,0,0.2); }
.specs-inner { max-width: 1200px; margin: 0 auto; }
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.spec-card:hover { border-color: var(--reolink-blue); transform: translateY(-5px); background: rgba(255, 255, 255, 0.05); }
.spec-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; color: var(--reolink-blue); }
.spec-header h3 { font-size: 1.1rem; color: #fff; margin: 0; }
.spec-card ul { list-style: none; padding: 0; margin: 0; }
.spec-card ul li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: var(--text-muted); }
.spec-card ul li strong { color: #fff; font-weight: 600; }

/* Footer */
/* Premium Footer Redesign */
.reo-footer { 
    background: linear-gradient(to bottom, rgba(13, 15, 20, 0.8), rgba(7, 8, 10, 0.95)); 
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    padding: 100px 30px 40px; 
    border-top: 1px solid rgba(47, 101, 246, 0.2); 
    position: relative; overflow: hidden;
}
.reo-footer::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 200px; height: 1px; background: linear-gradient(90deg, transparent, var(--brand-blue), transparent);
    box-shadow: 0 0 20px var(--brand-blue);
}

.footer-container { 
    max-width: 1200px; margin: 0 auto; 
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; 
    padding-bottom: 60px; margin-bottom: 40px; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
}

.footer-brand-section .footer-bio { 
    font-size: 16px; color: var(--text-dim); line-height: 1.7; 
    margin: 25px 0; max-width: 480px; 
}

.footer-contact-strip { display: flex; gap: 15px; flex-wrap: wrap; }
.contact-pill { 
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); 
    padding: 10px 20px; border-radius: 50px; color: #fff; text-decoration: none; 
    font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-pill ion-icon { font-size: 18px; color: var(--brand-blue); }
.contact-pill:hover { 
    background: rgba(47, 101, 246, 0.1); border-color: var(--brand-blue); 
    transform: translateY(-3px); box-shadow: 0 10px 20px rgba(47, 101, 246, 0.2); 
}
.contact-pill.wa { border-color: rgba(37, 211, 102, 0.2); }
.contact-pill.wa ion-icon { color: #25d366; }
.contact-pill.wa:hover { background: rgba(37, 211, 102, 0.1); border-color: #25d366; }

.footer-nav-section { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-nav-col h4 { 
    font-size: 13px; text-transform: uppercase; letter-spacing: 2px; 
    color: var(--brand-blue); margin-bottom: 25px; font-weight: 800; 
}
.footer-nav-col a { 
    display: block; color: var(--text-dim); text-decoration: none; 
    font-size: 15px; margin-bottom: 14px; transition: all 0.2s; 
}
.footer-nav-col a:hover { color: #fff; transform: translateX(5px); }

.footer-copyright { text-align: center; color: rgba(255,255,255,0.3); font-size: 13px; font-weight: 500; }

/* Float WhatsApp */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 62px; height: 62px; border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 8px 25px rgba(0,0,0,0.6); z-index: 999; transition: all 0.3s ease; border: 2px solid var(--brand-blue); background-color: #07080a; cursor: pointer; }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 12px 30px rgba(47, 101, 246, 0.5); }
.seller-pic { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 50%; }

.flash-popup { position: absolute; bottom: 75px; right: -10px; background: linear-gradient(145deg, #1a1e29 0%, #0d0f14 100%); color: #fff; border: 1px solid rgba(47, 101, 246, 0.4); font-size: 13px; font-weight: 700; letter-spacing: 0.5px; padding: 10px 18px; border-radius: 12px; white-space: nowrap; box-shadow: 0 10px 30px rgba(0,0,0,0.7), 0 0 15px rgba(47, 101, 246, 0.3); pointer-events: none; animation: flashPulse 2s ease-in-out infinite; z-index: 1000; display: flex; align-items: center; gap: 4px; }
.flash-popup::after { content: ''; position: absolute; bottom: -6px; right: 28px; border-width: 6px 6px 0; border-style: solid; border-color: #1a1e29 transparent transparent; display: block; width: 0; }

@keyframes flashPulse { 0% { opacity: 0; transform: translateY(5px) scale(0.95); } 20% { opacity: 1; transform: translateY(-5px) scale(1); } 80% { opacity: 1; transform: translateY(-5px) scale(1); } 100% { opacity: 0; transform: translateY(5px) scale(0.95); } }

/* Reveal Animation */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Galaxy Nebula Background */
.galaxy-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 0; overflow: hidden; }
.galaxy-core { position: absolute; width: 90vw; height: 90vw; border-radius: 50%; filter: blur(120px); animation: galaxyRotate 40s infinite linear, galaxyPulse 8s infinite alternate ease-in-out; mix-blend-mode: screen; opacity: 0; }
.galaxy-core.blue { top: -30vh; left: -20vw; background: radial-gradient(circle, rgba(47, 101, 246, 0.4) 0%, transparent 60%); }
.galaxy-core.purple { bottom: -30vh; right: -20vw; background: radial-gradient(circle, rgba(123, 44, 191, 0.3) 0%, transparent 50%); animation-duration: 50s; animation-direction: reverse; }
.galaxy-core.orange { top: 20vh; left: 30vw; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, transparent 60%); animation-duration: 35s; }
@keyframes galaxyRotate { 0% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(180deg) scale(1.1); } 100% { transform: rotate(360deg) scale(1); } }
@keyframes galaxyPulse { 0% { opacity: 0.4; } 100% { opacity: 0.9; } }

/* Star Field Animation */
#star-field { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 0; overflow: hidden; mix-blend-mode: screen; }
.star { position: absolute; background-color: #fff; border-radius: 50%; opacity: 0; animation: floatStar linear infinite; box-shadow: 0 0 8px rgba(255, 255, 255, 0.8); }
@keyframes floatStar {
    0% { transform: translateY(50px); opacity: 0; }
    20% { opacity: 0.6; box-shadow: 0 0 15px var(--brand-blue); }
    80% { opacity: 0.4; box-shadow: 0 0 5px #fff; }
    100% { transform: translateY(-200px); opacity: 0; }
}

/* About Us Section */
.reo-about-section { padding: 100px 30px 0; max-width: 1400px; margin: 0 auto; background: rgba(10, 12, 16, 0.4); border-radius: 40px; border: 1px solid rgba(255,255,255,0.03); margin-bottom: 40px; }
.about-container { display: flex; align-items: center; justify-content: space-between; gap: 80px; }
.about-content { flex: 1.2; }
.about-text { font-size: 18px; color: var(--text-secondary); line-height: 1.8; font-weight: 400; max-width: 800px; }
.about-visual { flex: 0.8; display: flex; justify-content: center; align-items: center; position: relative; }
.about-visual ion-icon { font-size: 180px; color: var(--brand-blue); filter: drop-shadow(0 0 30px rgba(47, 101, 246, 0.4)); z-index: 1; }
.about-card-glow { position: absolute; width: 300px; height: 300px; background: radial-gradient(circle, rgba(47, 101, 246, 0.15) 0%, transparent 70%); border-radius: 50%; filter: blur(40px); }

@media (max-width: 992px) {
    .about-container { flex-direction: column; text-align: center; gap: 40px; }
    .about-text { margin: 0 auto; }
}

/* About Us Section Expansion */
.about-container { display: block; max-width: 1000px; margin: 0 auto; }
.about-header { text-align: center; margin-bottom: 60px; }
.about-header .section-title { font-size: 42px; margin-bottom: 25px; }
.about-intro { font-size: 21px; line-height: 1.8; color: var(--text-primary); margin-bottom: 25px; font-weight: 500; }
.about-featured { font-size: 19px; color: var(--text-secondary); line-height: 1.8; }

.sub-title { display: flex; align-items: center; gap: 12px; font-size: 24px; color: #fff; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; }
.sub-title ion-icon { color: var(--brand-blue); font-size: 28px; }

.expertise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 60px; }
.expert-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 25px; border-radius: 20px; text-align: center; transition: all 0.3s ease; }
.expert-card:hover { transform: translateY(-5px); border-color: var(--brand-blue); background: rgba(47, 101, 246, 0.05); }
.expert-card ion-icon { font-size: 40px; color: var(--brand-blue); margin-bottom: 15px; }
.expert-card span { display: block; font-size: 16px; font-weight: 700; color: #fff; }

.about-partners { margin-bottom: 60px; }
.partners-list { display: flex; flex-wrap: wrap; gap: 15px; }
.partner-tag { background: rgba(0,0,0,0.4); border: 1px solid var(--border-color); padding: 12px 25px; border-radius: 12px; font-size: 17px; font-weight: 700; color: var(--text-secondary); transition: all 0.3s; }
.partner-tag:hover { border-color: #25d366; color: #25d366; background: rgba(37, 211, 102, 0.05); }

.about-why { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
.why-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 17px; color: var(--text-secondary); font-weight: 500; }
.why-list li ion-icon { color: #25d366; font-size: 22px; margin-top: 2px; }
.why-list li span { color: var(--brand-orange); font-weight: 800; font-family: 'Outfit', sans-serif; }

.vision-block { background: linear-gradient(135deg, rgba(47, 101, 246, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%); border: 1px solid rgba(255,255,255,0.05); padding: 35px; border-radius: 24px; }
.vision-block p { font-size: 18px; color: var(--text-secondary); line-height: 1.8; margin: 0; }

@media (max-width: 768px) {
    .about-why { grid-template-columns: 1fr; }
    .about-header .section-title { font-size: 32px; }
}

/* Self Collect Modal Styles */
.self-collect-content { max-width: 550px; text-align: left; }
.collect-info-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 25px; margin: 25px 0; display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; gap: 18px; align-items: flex-start; }
.info-item ion-icon { font-size: 26px; color: var(--brand-blue); margin-top: 4px; }
.info-item label { display: block; font-size: 13px; font-weight: 700; color: var(--brand-blue); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.info-item p { font-size: 17px; color: #fff; margin: 0; font-weight: 500; }
.collect-notice { background: rgba(255, 107, 0, 0.1); border-left: 4px solid var(--brand-orange); padding: 18px; border-radius: 12px; display: flex; gap: 15px; align-items: flex-start; margin-bottom: 30px; }
.collect-notice ion-icon { font-size: 26px; color: var(--brand-orange); flex-shrink: 0; }
.collect-notice p { font-size: 15px; color: #fff; line-height: 1.5; margin: 0; }
.collect-actions { display: flex; flex-direction: column; gap: 12px; }
.call-btn, .maps-btn { width: 100%; gap: 12px; font-size: 18px; padding: 16px 28px; }
.maps-btn { border-color: rgba(255,255,255,0.15); color: #fff; }
.maps-btn:hover { background: rgba(255,255,255,0.05); border-color: #fff; }

@media (max-width: 500px) {
    .collect-info-card { padding: 15px; }
    .info-item p { font-size: 15px; }
}

/* Seller Selection Modal Styles */
.seller-selection-content { max-width: 450px; padding: 40px; }
.large-seller-face { width: 100px; height: 100px; border-radius: 50%; border: 3px solid var(--brand-blue); margin: 0 auto 20px; position: relative; }
.large-seller-face img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.online-glow { position: absolute; bottom: 5px; right: 5px; width: 18px; height: 18px; background: #00ff00; border: 3px solid #1a1a1a; border-radius: 50%; box-shadow: 0 0 10px rgba(0,255,0,0.5); }

.partners-list { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 15px; }
.partner-tag { background: rgba(255,255,255,0.05); padding: 6px 14px; border-radius: 8px; font-size: 13px; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.1); }
.partner-item { display: flex; align-items: center; justify-content: center; }
.partner-logo { height: 75px; filter: grayscale(1) brightness(1.2); opacity: 0.7; transition: all 0.3s ease; cursor: pointer; }
.partner-logo:hover { filter: grayscale(0) brightness(2.0); opacity: 1; transform: translateY(-6px) scale(1.15); }

@media (max-width: 768px) {
    .partners-list { justify-content: center; gap: 30px; }
    .partner-logo { height: 55px; }
}
/* Reviews Section */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 40px; }
.review-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px; padding: 25px; backdrop-filter: blur(10px); transition: all 0.3s ease; display: flex; flex-direction: column; gap: 15px; }
.review-card:hover { border-color: var(--brand-blue); background: rgba(47, 101, 246, 0.05); transform: translateY(-5px); }
.review-header { display: flex; align-items: center; gap: 15px; }
.customer-avatar { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 255, 255, 0.1); }
.customer-avatar.initials { background: linear-gradient(135deg, var(--brand-blue), #1a1a1a); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.customer-info h4 { margin: 0; font-size: 18px; color: white; }
.verified { font-size: 12px; color: #4cd137; display: flex; align-items: center; gap: 4px; }
.rating { color: #f1c40f; font-size: 14px; display: flex; gap: 2px; }
.review-text { font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.8); font-style: italic; }

@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; gap: 20px; }
    .review-card { padding: 20px; }
}

.contact-options-grid { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.contact-option-card { display: flex; align-items: center; gap: 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 20px 25px; text-decoration: none; transition: all 0.3s ease; }
.contact-option-card:hover { border-color: var(--brand-blue); background: rgba(47, 101, 246, 0.05); transform: translateX(5px); }
.contact-option-card.wa-option:hover { border-color: #25D366; background: rgba(37, 211, 102, 0.05); }

.option-icon { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.wa-icon { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.call-icon { background: rgba(47, 101, 246, 0.1); color: var(--brand-blue); }

.contact-option-card span { font-size: 17px; font-weight: 600; color: #fff; }

/* Selection Modal Styles */
.selection-modal-content { max-width: 700px; padding: 50px 40px; }
.selection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 40px; }
.selection-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 40px 30px; text-align: center; cursor: pointer; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; }
.selection-card:hover { border-color: var(--brand-blue); transform: translateY(-10px); background: rgba(47, 101, 246, 0.05); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
.selection-card.select-self-collect:hover { border-color: var(--brand-orange); background: rgba(255, 107, 0, 0.05); }

.selection-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; font-size: 36px; transition: all 0.3s ease; }
.delivery-icon { background: rgba(47, 101, 246, 0.1); color: var(--brand-blue); }
.collect-icon { background: rgba(255, 107, 0, 0.1); color: var(--brand-orange); }

.selection-card:hover .selection-icon { transform: scale(1.1); box-shadow: 0 0 30px rgba(47, 101, 246, 0.3); }
.selection-card.select-self-collect:hover .selection-icon { box-shadow: 0 0 30px rgba(255, 107, 0, 0.3); }

.selection-card h3 { font-size: 22px; margin-bottom: 12px; }
.selection-card p { font-size: 15px; line-height: 1.5; color: #a0aec0; margin-bottom: 0; }
.selection-tag { position: absolute; top: 15px; right: 15px; font-size: 11px; font-weight: 800; text-transform: uppercase; background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 20px; color: #fff; letter-spacing: 0.05em; opacity: 0.6; }

@media (max-width: 600px) {
    .selection-grid { grid-template-columns: 1fr; }
    .selection-modal-content { padding: 40px 20px; }
}

/* Modal Checkout Form Styles */
.reo-modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); justify-content: center; align-items: center; }
.reo-modal.show { display: flex; animation: fadeInModal 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.modal-content { background-color: var(--bg-card); color: var(--text-primary); padding: 35px 30px; border-radius: var(--radius-lg); width: 90%; max-width: 480px; border: 1px solid var(--border-color); box-shadow: 0 25px 60px rgba(0,0,0,0.6); position: relative; max-height: 90vh; overflow-y: auto; }
.close-modal { position: absolute; right: 25px; top: 25px; font-size: 32px; font-weight: bold; color: var(--text-secondary); cursor: pointer; line-height: 1; transition: color 0.2s; }
.close-modal:hover { color: #ff4d4d; }
.modal-content h2 { font-size: 26px; margin-bottom: 8px; color: #fff; letter-spacing: -0.01em; font-weight: 800; }
.modal-content p { font-size: 16px; margin-bottom: 25px; color: var(--text-secondary); line-height: 1.6; }

.form-group { margin-bottom: 18px; }
.form-group label, .form-options label { display: block; font-weight: 800; margin-bottom: 8px; font-size: 13px; color: var(--text-accent); text-transform: uppercase; letter-spacing: 0.1em; }
.form-group input, .form-group textarea, .form-options select { width: 100%; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--border-color); background-color: rgba(0,0,0,0.3); color: #fff; font-family: inherit; font-size: 16px; outline: none; transition: all 0.25s; }
.form-group input:focus, .form-group textarea:focus, .form-options select:focus { border-color: var(--brand-blue); background-color: rgba(47, 101, 246, 0.05); box-shadow: 0 0 0 3px rgba(47, 101, 246, 0.15); }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-options { margin-bottom: 25px; }
.radio-card { display: flex; align-items: center; background: rgba(0,0,0,0.3); border: 2px solid var(--border-color); border-radius: 12px; padding: 14px 18px; margin-bottom: 12px; cursor: pointer; transition: all 0.25s; }
.radio-card:hover { border-color: rgba(47, 101, 246, 0.5); background-color: rgba(47, 101, 246, 0.05); }
.radio-card:has(input:checked) { border-color: var(--brand-blue); background-color: rgba(47, 101, 246, 0.1); }
.radio-card input[type="radio"] { margin-right: 15px; transform: scale(1.4); cursor: pointer; accent-color: var(--brand-blue); }
.radio-card label { cursor: pointer; display: flex; justify-content: space-between; width: 100%; align-items: center; font-size: 16px; color: #fff; margin: 0; letter-spacing: 0; text-transform: none;}
.radio-card label strong { font-weight: 700; }
.radio-card label span { font-weight: 800; color: var(--brand-orange); }
.form-options select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 15px center; background-size: 16px; padding-right: 40px; }
.form-options select option { background-color: #1a1a24; }

.order-summary { background-color: rgba(47, 101, 246, 0.05); border: 1px solid rgba(47, 101, 246, 0.2); padding: 20px; border-radius: 12px; margin-bottom: 25px; }
.summary-line { display: flex; justify-content: space-between; font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text-secondary); }
.summary-line span { color: #fff; }
.summary-line.total { margin-top: 12px; padding-top: 15px; border-top: 1px dashed rgba(255,255,255,0.2); color: #fff; font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.summary-line.total span { color: #0dff64; font-size: 24px; text-shadow: 0 0 10px rgba(13, 255, 100, 0.3); }

/* Payment Details Section */
.payment-section { margin-bottom: 25px; border-top: 1px dashed rgba(255,255,255,0.2); padding-top: 20px; }
.payment-alert { display: flex; align-items: center; gap: 12px; background: rgba(255, 107, 0, 0.1); border-left: 4px solid var(--brand-orange); padding: 14px; border-radius: 8px; margin-bottom: 15px; }
.payment-alert ion-icon { font-size: 28px; color: var(--brand-orange); flex-shrink: 0; }
.payment-alert p { margin: 0 !important; color: #fff; font-size: 14px !important; }
.payment-alert p strong { color: var(--brand-orange); }

.account-details { display: flex; gap: 10px; margin-bottom: 15px; }
.account-card { flex: 1; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); padding: 15px 10px; border-radius: 10px; text-align: center; }
.acc-title { display: block; font-size: 12px; color: var(--brand-blue); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 5px; font-weight: 800; }
.acc-number { display: block; font-size: 16px; color: #0dff64; font-weight: 800; margin-bottom: 3px; letter-spacing: 0.5px; }
.acc-name { display: block; font-size: 11px; color: var(--text-secondary); text-transform: uppercase; }

.payment-instruction { font-size: 13px; color: var(--text-secondary); text-align: center; line-height: 1.5; padding: 0 10px; }
.payment-instruction strong { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.submit-order-btn { width: 100%; font-size: 18px; padding: 18px; border-radius: 12px; margin-top: 5px; }

/* Redesigned Order Summary (Invoice Style) */
.order-summary.alternate {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 25px;
}

.order-summary.alternate .summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 10px;
}

.order-summary.alternate .delivery-row {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.free-text {
    color: #0dff64;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(13, 255, 100, 0.4);
    letter-spacing: 0.5px;
}

.order-summary.alternate .total {
    font-size: 22px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 0;
}

.order-summary.alternate .total span {
    color: var(--brand-blue);
    text-shadow: 0 0 20px rgba(0, 177, 255, 0.4);
}

/* Savings-First Invoice Style */
.invoice-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.invoice-row.highlight {
    color: #fff;
    font-weight: 600;
}

.invoice-row.savings {
    color: #0dff64;
    font-size: 13px;
    background: rgba(13, 255, 100, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px dashed rgba(13, 255, 100, 0.2);
}

.strikethrough {
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 8px;
}

.invoice-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.invoice-total label {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.invoice-total .total-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-blue);
    text-shadow: 0 0 20px rgba(0, 177, 255, 0.3);
}

/* Floating Shipping Seal */
.floating-shipping-seal {
    position: absolute;
    top: 52%;
    left: -190px; /* Shift slightly left for better gap centering */
    width: 135px; /* Increased from 110px to accommodate larger fonts */
    height: 135px; /* Increased from 110px */
    background: linear-gradient(135deg, #1a1e2e, #0f121a);
    border: 2px solid var(--brand-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 25px rgba(0, 177, 255, 0.3);
    z-index: 100;
    animation: floatingSeal 6s ease-in-out infinite;
    text-align: center;
    padding: 12px;
}

@media (max-width: 1200px) {
    .floating-shipping-seal { left: -150px; }
}

@media (max-width: 1024px) {
    .floating-shipping-seal { 
        position: relative;
        left: 0;
        top: 0;
        margin: 40px auto 20px;
        transform: scale(1.1);
        animation: pulseGlow 3s infinite alternate;
        z-index: 50;
    }
}
@media (max-width: 480px) {
    .floating-shipping-seal {
        width: 100px;
        height: 100px;
        transform: scale(0.9);
        margin: 20px auto;
    }
}

.seal-icon {
    width: 80px; /* Scaled proportionally */
    height: 55px; /* Scaled proportionally */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px; /* Reduce gap to pull text back into the box */
}

.truck-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(13, 255, 100, 0.5)); /* Match the theme's green glow */
}

.seal-text {
    font-size: 11px;
    font-weight: 850; /* Slightly bolder for premium look */
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    line-height: 1.1; /* Tighten line height to stay within the box */
    letter-spacing: 0.3px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seal-text span {
    font-size: 15px; /* Larger 'FREE' while keeping it in the circle */
    color: #0dff64;
    display: block;
    margin: 3px 0;
}


@keyframes floatingSeal {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes fadeInModal { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* =============================================
   MOBILE RESPONSIVENESS — COMPLETE OVERHAUL
   ============================================= */

/* --- Tablet & Small Desktop (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .container { width: 92%; }
    
    /* Hero stacks vertically */
    .hero-container { flex-direction: column-reverse; text-align: center; padding-top: 20px; gap: 40px; height: auto !important; }
    .hero-visual { margin-bottom: 40px !important; }
    .hero-content { margin-bottom: 0; }
    .hero-actions, .badge-group { justify-content: center; flex-wrap: wrap; }
    .hero-subtitle { text-align: center; }
    .hero-feature-list { align-items: center; }
    .promo-price-block { margin: 30px auto; }
    
    /* Split sections stack */
    .split-container { flex-direction: column !important; text-align: center; gap: 40px; }
    .split-text { max-width: 100%; margin-top: 20px; }
    
    /* Cards single column */
    .cards-grid { grid-template-columns: 1fr; }
    .comparison-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {

    /* ===== TOPBAR ===== */
    .reo-topbar { padding: 8px 0; }
    .topbar-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0 15px;
    }
    .flash-text {
        font-size: 11px;
        line-height: 1.4;
        display: block;
        padding: 0 5px;
    }
    .topbar-links { display: none; } /* Hide on small mobile to reduce clutter */

    /* ===== HEADER / NAV ===== */
    .nav-links { display: none; }
    .reo-header { padding: 12px 0; }
    .header-inner {
        padding: 0 15px;
        justify-content: space-between; /* Ensure logo and button are balanced */
    }
    .sm-brand-logo { margin-right: auto; } /* Push button to the right */
    .nav-btn { padding: 8px 16px; font-size: 12px; min-height: 40px; }
    
    /* ===== GLOBAL TYPOGRAPHY (Mobile) ===== */
    h1 { font-size: 32px; margin-bottom: 15px; line-height: 1.15; letter-spacing: -0.01em; }
    h2 { font-size: 26px; text-align: center; line-height: 1.25; margin-bottom: 16px; }
    h3 { font-size: 20px; }
    p { font-size: 15px; text-align: center; line-height: 1.6; }
    
    .reo-hero { padding: 10px 15px 40px; min-height: auto; }
    .hero-container { 
        display: flex;
        flex-direction: column; /* Normal direction, use ORDER to manage hierarchy */
        gap: 35px; 
    }
    .hero-content { 
        order: 2; 
        width: 100%; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        text-align: center;
        background: rgba(255, 255, 255, 0.02);
        padding: 30px 20px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        margin-top: -10px; /* Slight overlap with image space for depth */
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        z-index: 2;
    }
    .hero-visual { 
        order: 1; /* Main Image appears FIRST at the TOP */
        width: 100%; 
        margin: 0 auto !important; 
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title-glow { font-size: 38px; margin: 5px auto 5px; text-align: center; } /* Reduced from 10px margin */
    .hero-subtitle { font-size: 15px; text-align: center; margin-bottom: 20px; line-height: 1.6; max-width: 100%; }
    
    /* Hero Feature List — Unified Centered Block */
    .hero-feature-list { 
        display: block;
        margin: 20px auto 30px; 
        padding: 0;
        max-width: 290px; /* Force consistent width for block centering */
        text-align: left;
    }
    .hero-feature-list li { 
        font-size: 14px; 
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        line-height: 1.4;
    }
    .hero-feature-list ion-icon { font-size: 18px; color: var(--brand-blue); flex-shrink: 0; }
    
    /* Hero Badges */
    .badge-group { 
        display: flex !important; 
        justify-content: center; 
        gap: 8px; 
        margin: 15px 0 10px; 
        order: -1; /* Badges on top of text content */
    }
    .hero-visual { 
        order: 1; 
        width: 100%; 
        margin: 0 auto !important; 
        overflow: visible; 
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    .cam-wrapper { 
        width: 100%;
        max-width: 360px; 
        margin: 0 auto; 
        display: flex;
        flex-direction: column;
        align-items: center;
        perspective: none !important;
        position: relative; /* Container for absolute seal */
        padding-top: 10px;
    }
    
    /* Centered Seal Overlaid on Image */
    .floating-shipping-seal {
        position: absolute !important;
        top: 25px !important; 
        left: 0 !important;
        margin: 0 !important;
        width: 105px !important;
        height: 105px !important;
        transform: rotate(-5deg) !important;
        z-index: 100;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
        animation: subtleFloat 4s ease-in-out infinite alternate !important;
    }
    
    @keyframes subtleFloat {
        from { transform: rotate(-5deg) translateY(0); }
        to { transform: rotate(-3deg) translateY(-8px); }
    }
    
    /* Hide specific clutter on mobile */
    .weatherproof-badge { display: none !important; }
    .mobile-tags-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
        margin-top: 15px;
        padding: 0 15px;
        z-index: 5;
    }
    .main-cam {
        display: grid;
        place-items: center;
        width: 100%;
        max-width: 340px; 
        min-height: 280px; 
        margin: 0 auto;
        position: relative;
        order: 1; 
    }
    .variant-img {
        grid-area: 1/1;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        opacity: 1; /* Fallback */
    }
    .variant-img.v1 {
        animation: fadeVariant1 10s cubic-bezier(0.4, 0, 0.2, 1) infinite, 
                   mobile3DTilt 6s ease-in-out infinite alternate;
    }
    .variant-img.v2 { 
        position: absolute !important; top: 0; left: 0; 
        animation: fadeVariant2 10s cubic-bezier(0.4, 0, 0.2, 1) infinite, 
                   mobile3DTilt 6s ease-in-out infinite alternate;
    }
    
    @keyframes mobile3DTilt {
        0% { 
            transform: perspective(800px) rotateY(-8deg) rotateX(4deg) scale(1); 
            filter: drop-shadow(15px 20px 30px rgba(0,0,0,0.5));
        }
        25% {
            transform: perspective(800px) rotateY(3deg) rotateX(-3deg) scale(1.02);
        }
        50% { 
            transform: perspective(800px) rotateY(8deg) rotateX(-5deg) scale(1.03); 
            filter: drop-shadow(-15px 20px 30px rgba(47, 101, 246, 0.3));
        }
        75% {
            transform: perspective(800px) rotateY(-3deg) rotateX(3deg) scale(1.02);
        }
        100% { 
            transform: perspective(800px) rotateY(-8deg) rotateX(4deg) scale(1); 
            filter: drop-shadow(15px 20px 30px rgba(0,0,0,0.5));
        }
    }
    
    /* Isolated Static Tags mobile behavior */
    .float-tag { 
        display: flex !important; 
        position: relative !important; 
        top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; 
        animation: none !important; 
        transform: none !important;
        padding: 8px 14px; font-size: 11px; border-radius: 20px; 
        box-shadow: 0 8px 15px rgba(0,0,0,0.25);
        margin: 0;
        flex: 0 1 auto;
        white-space: nowrap;
        background: rgba(255,255,255,0.06) !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        z-index: 10 !important;
    }
    .float-tag ion-icon { font-size: 16px; }
    
    /* Promo Price Block */
    .promo-price-block {
        flex-wrap: wrap;
        gap: 12px;
        padding: 16px 18px;
        margin: 20px auto;
        width: calc(100% - 20px);
        max-width: 340px;
        justify-content: center;
        border-radius: 18px;
    }
    .price-original { font-size: 20px; }
    .price-current { font-size: 24px; }
    .price-current .currency { font-size: 22px; }
    .price-badge { font-size: 11px; padding: 5px 12px; }
    
    /* Hero Action Buttons */
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 25px;
        padding: 0 10px;
    }
    .hero-actions .btn-reo-primary,
    .hero-actions .btn-reo-secondary {
        width: 100%;
        min-height: 50px;
        font-size: 16px;
        padding: 14px 20px;
        border-radius: 14px;
    }
    
    /* ===== FEATURE SPLIT SECTIONS ===== */
    .reo-feature-split { padding: 50px 15px; }
    .split-container { gap: 25px !important; }
    .split-visual { border-radius: 18px; order: -1; } /* Video always first on mobile */
    .split-text { order: 1; } /* Text always after video on mobile */
    .rounded-video { border-radius: 18px; }
    .split-text { margin-top: 15px !important; }
    .eyebrow { font-size: 13px; letter-spacing: 0.08em; margin-bottom: 10px; text-align: center; }
    
    /* ===== COMPARISON SECTION ===== */
    .reo-comparison { padding: 60px 15px; }
    .comparison-header { margin-bottom: 40px; }
    .pricing-graphic-container { gap: 25px; flex-direction: column; }
    .graphic-card { border-radius: 16px; }
    .card-top-label { font-size: 13px; padding: 12px; letter-spacing: 0.5px; }
    .graphic-body { padding: 20px 18px 10px; }
    .graphic-body h3 { font-size: 26px; }
    .sub-h { font-size: 15px; margin-bottom: 20px; }
    .check-list li { font-size: 14px; margin-bottom: 10px; gap: 8px; }
    .check-list li ion-icon { font-size: 20px; }
    .pta-badge { font-size: 16px; padding: 10px 14px; }
    .pta-badge span { font-size: 9px; }
    .monthly-package { font-size: 14px; padding: 10px; border-radius: 10px; }
    .cost-list li { font-size: 15px; margin-bottom: 12px; }
    .total-bar { font-size: 20px; padding: 16px; }
    .total-bar span { font-size: 28px; }
    .main-cam-img { max-width: 240px; }
    .messy-setup-img { height: 200px; border-radius: 12px; }
    .battery-badge { padding: 8px 12px; border-radius: 10px; right: -10px; bottom: -5px; }
    .battery-badge ion-icon { font-size: 26px; }
    .battery-badge strong { font-size: 13px; }
    .battery-badge span { font-size: 10px; }
    .graphic-vs { width: 55px; height: 55px; border-radius: 10px; }
    .graphic-vs ion-icon { font-size: 28px; }
    
    /* ===== CARDS GRID ===== */
    .reo-cards-section { padding: 60px 15px; }
    .section-header { margin-bottom: 35px; }
    .reo-card img { height: 220px; }
    .card-body { padding: 25px 20px; }
    .card-body h3 { font-size: 20px; text-align: left; margin-bottom: 10px; }
    .card-body p { font-size: 15px; text-align: left; line-height: 1.5; }
    .play-overlay ion-icon { font-size: 48px; }
    
    /* ===== SPECS SECTION ===== */
    .reo-specs-section { padding: 60px 15px; }
    .specs-grid { grid-template-columns: 1fr; gap: 15px; }
    .spec-card { padding: 20px; }
    .spec-header h3 { font-size: 1rem; }
    .spec-card ul li { font-size: 0.85rem; padding: 6px 0; }
    
    /* ===== ABOUT SECTION ===== */
    .reo-about-section { padding: 60px 15px; border-radius: 24px; margin-bottom: 40px; }
    .about-header { text-align: center; margin-bottom: 35px; }
    .about-header .section-title { font-size: 26px; line-height: 1.3; }
    .about-header .badge-group { justify-content: center; }
    .about-intro { font-size: 16px; line-height: 1.7; }
    .about-featured { font-size: 15px; }
    
    .sub-title { font-size: 20px; gap: 10px; justify-content: center; text-align: center; }
    .sub-title ion-icon { font-size: 24px; }
    
    .expertise-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .expert-card { padding: 18px 12px; border-radius: 16px; }
    .expert-card ion-icon { font-size: 32px; margin-bottom: 10px; }
    .expert-card span { font-size: 13px; }
    
    .partners-list { flex-wrap: wrap; gap: 10px; justify-content: center; }
    .partner-tag { padding: 10px 18px; font-size: 14px; border-radius: 10px; }
    
    .about-why { grid-template-columns: 1fr; gap: 25px; }
    .why-list li { font-size: 14px; }
    .why-list li ion-icon { font-size: 18px; }
    .vision-block { padding: 25px; border-radius: 18px; }
    .vision-block p { font-size: 15px; }
    
    /* ===== FOOTER ===== */
    .reo-footer { padding: 80px 20px 40px; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand-section .footer-bio { margin: 20px auto; }
    .footer-contact-strip { justify-content: center; }
    .footer-nav-section { gap: 20px; }
    .footer-nav-col a:hover { transform: none; }
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding-bottom: 30px;
    }
    .footer-col.brand-col { max-width: 100%; }
    .sm-brand-logo.footer-logo-variant { justify-content: center; }
    .footer-logo-variant .brand-title { font-size: 18px; }
    .footer-col h4 { font-size: 16px; margin-bottom: 14px; }
    .footer-col p { font-size: 14px; }
    .footer-col a { font-size: 14px; }
    .footer-bottom p { font-size: 13px; }
    
    /* ===== WHATSAPP FLOAT ===== */
    .whatsapp-float { bottom: 20px; right: 15px; width: 56px; height: 56px; }
    .seller-pic { width: 100%; height: 100%; }
    .flash-popup { 
        font-size: 11px; 
        padding: 8px 14px; 
        border-radius: 10px;
        right: -5px;
        bottom: 65px;
    }
    
    /* ===== MODALS ===== */
    .modal-content { width: 94%; padding: 28px 18px; border-radius: 20px; }
    .modal-content h2 { font-size: 22px; }
    .modal-content p { font-size: 14px; }
    .selection-modal-content { padding: 35px 18px; }
    .selection-grid { grid-template-columns: 1fr; gap: 15px; }
    .selection-card { padding: 28px 20px; }
    .selection-icon { width: 60px; height: 60px; font-size: 28px; }
    .selection-card h3 { font-size: 20px; }
    .selection-card p { font-size: 14px; }
    
    .seller-selection-content { padding: 30px 18px !important; }
    .large-seller-face { width: 85px; height: 85px; }
    .seller-selection-content h2 { font-size: 22px; text-align: center; }
    .seller-selection-content p { text-align: center; }
    .contact-option-card { padding: 16px 20px; }
    .option-icon { width: 40px; height: 40px; font-size: 22px; }
    .contact-option-card span { font-size: 16px; }
    
    .self-collect-content { padding: 28px 18px !important; }
    .collect-info-card { padding: 18px; }
    .info-item p { font-size: 15px; }
    
    .video-modal-content { padding: 15px !important; }
    .modal-video { border-radius: 10px; }
    
    .account-details { flex-direction: column; }
    .account-card { padding: 14px; }
    .acc-number { font-size: 15px; }
    
    .order-summary { padding: 16px; border-radius: 14px; }
    .summary-line { font-size: 14px; }
    .summary-line.total { font-size: 16px; }
    .summary-line.total span { font-size: 20px; }
    .submit-order-btn { padding: 16px; font-size: 16px; border-radius: 14px; }
}

/* --- Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
    
    /* Topbar - super compact */
    .flash-text { font-size: 10px; line-height: 1.35; }
    .topbar-links a { font-size: 11px; }
    
    /* Hero title smaller */
    .hero-title-glow { font-size: 32px; }
    
    /* Price block even more compact */
    .promo-price-block { padding: 14px 15px; gap: 10px; }
    .price-original { font-size: 18px; }
    .price-current { font-size: 22px; }
    .price-current .currency { font-size: 20px; }
    
    /* Comparison */
    .graphic-body h3 { font-size: 22px; }
    .cost-list li { font-size: 14px; }
    .total-bar { font-size: 18px; }
    .total-bar span { font-size: 24px; }
    
    /* Cards */
    .reo-card img { height: 190px; }
    
    /* Seller */
    .large-seller-face { width: 70px; height: 70px; }
    .seller-selection-content h2 { font-size: 20px; }
    
    /* WhatsApp float even smaller */
    .whatsapp-float { width: 50px; height: 50px; bottom: 15px; right: 12px; }
    .flash-popup { display: none !important; }
    
    /* Expertise grid single column on very small */
    .expertise-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .expert-card { padding: 14px 10px; }
    .expert-card ion-icon { font-size: 28px; }
    .expert-card span { font-size: 12px; }
}

/* --- Ultra small (max-width: 360px) --- */
@media (max-width: 360px) {
    .hero-title-glow { font-size: 28px; margin-bottom: 20px; }
    .hero-subtitle { font-size: 14px; margin-bottom: 25px; }
    .hero-feature-list li { font-size: 13px; }
    .hero-actions { gap: 10px; }
    .btn-reo-primary { width: 100%; text-align: center; }
}

@keyframes fadeInModal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* --- Weatherproof & Rain Effects --- */
.main-cam { position: relative; overflow: visible; }

.product-rain-mask {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    overflow: hidden; /* CRITICAL: Catch all rain inside */
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.rain-canvas {
    position: absolute;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 5; /* Above image, below badges if needed */
}

@keyframes rainFall {
    0% { transform: translateY(0) rotate(10deg); }
    100% { transform: translateY(400px) rotate(10deg); }
}

.weatherproof-badge {
    position: absolute;
    top: 5%; left: 50%;
    transform: translate(-50%, -50%) translateZ(150px);
    background: rgba(7, 8, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(47, 101, 246, 0.4);
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 25;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(47, 101, 246, 0.3);
    white-space: nowrap;
    pointer-events: none;
    animation: badgePulse 3s ease-in-out infinite;
}

.weatherproof-badge ion-icon {
    font-size: 24px;
    color: var(--brand-blue);
    filter: drop-shadow(0 0 8px var(--brand-blue));
}

.weatherproof-badge span {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

@keyframes badgePulse {
    0%, 100% { transform: translate(-50%, -50%) translateZ(150px) scale(1); box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(47, 101, 246, 0.3); }
    50% { transform: translate(-50%, -50%) translateZ(160px) scale(1.05); box-shadow: 0 15px 50px rgba(0,0,0,0.6), 0 0 40px rgba(47, 101, 246, 0.5); }
}

@media (max-width: 768px) {
    .weatherproof-badge {
        padding: 10px 20px;
        transform: translate(-50%, -50%) scale(0.8);
        top: 15%; /* Lower position to avoid antenna collision */
        left: 50%;
    }
    .weatherproof-badge span { font-size: 14px; }
    .weatherproof-badge ion-icon { font-size: 20px; }
}
/* Generic Neo Section */
.neo-section {
    padding: 80px 30px;
}

/* Smart FAQ Section */
.faq-grid { max-width: 900px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; }
.faq-question { padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 18px; color: var(--text-primary); transition: background 0.3s; }
.faq-question:hover { background: rgba(255,255,255,0.05); }
.faq-icon { transition: transform 0.3s ease; font-size: 22px; color: var(--brand-blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); background: rgba(255,255,255,0.01); }
.faq-answer p { padding: 0 25px 20px !important; margin: 0; font-size: 16px; color: var(--text-secondary); }

.faq-item.active { border-color: var(--brand-blue); background: rgba(47, 101, 246, 0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--brand-orange); }

/* Sales Notification */
.sales-notification {
    position: fixed; bottom: 30px; left: 30px; 
    background: rgba(18, 21, 29, 0.9); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; 
    padding: 15px 20px; display: flex; align-items: center; gap: 15px; 
    backdrop-filter: blur(15px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); 
    transform: translateX(-150%); transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); z-index: 1000;
    max-width: 320px;
}
.sales-notification.active { transform: translateX(0); }
.notification-icon { width: 40px; height: 40px; background: var(--brand-blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; flex-shrink: 0; }
.notification-content p { margin: 0 !important; font-size: 13px !important; font-weight: 600 !important; color: #fff !important; line-height: 1.4 !important; }
.notification-content span { font-size: 11px; color: var(--text-dim); }

/* Cinematic Hover Micro-interactions */
.reo-card, .spec-card, .review-card, .expert-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reo-card:hover, .spec-card:hover, .review-card:hover, .expert-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(47, 101, 246, 0.1);
    border-color: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .sales-notification { bottom: 20px; left: 20px; right: 20px; max-width: none; transform: translateY(200%); }
    .sales-notification.active { transform: translateY(0); }
}
/* Tier 2: Unboxing Grid */
.unboxing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.unbox-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border-color); padding: 30px 20px; border-radius: 20px; text-align: center; transition: all 0.3s; }
.unbox-item:hover { background: rgba(255,255,255,0.06); transform: translateY(-5px); border-color: var(--brand-blue); }
.unbox-icon { font-size: 40px; color: var(--brand-blue); margin-bottom: 15px; }
.unbox-item h4 { font-size: 18px; margin-bottom: 5px; color: #fff; }
.unbox-item p { font-size: 14px; color: var(--text-dim); margin-bottom: 0; }

/* Tier 2: Warranty & Service */
.warranty-container { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; margin-top: 40px; }
.warranty-card { background: linear-gradient(135deg, rgba(47,101,246,0.1) 0%, rgba(18,21,29,0.9) 100%); border: 1px solid rgba(47,101,246,0.2); padding: 30px; border-radius: 24px; display: flex; align-items: center; gap: 25px; }
.warranty-badge { width: 100px; height: 100px; background: var(--brand-blue); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; box-shadow: 0 0 30px rgba(47,101,246,0.4); }
.warranty-badge ion-icon { font-size: 30px; }
.warranty-badge span { font-size: 16px; font-weight: 800; line-height: 1; margin-top: 2px; }
.warranty-badge small { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; }
.service-card { background: var(--bg-card); border: 1px solid var(--border-color); padding: 30px; border-radius: 24px; display: flex; align-items: flex-start; gap: 20px; }
.service-card ion-icon { font-size: 32px; color: var(--brand-orange); flex-shrink: 0; }

/* Tier 2: Sticky Mobile Bar */
.sticky-mobile-bar {
    position: fixed; bottom: 0; left: 0; right: 0; 
    background: rgba(18, 21, 29, 0.95); backdrop-filter: blur(20px); 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding: 12px 20px env(safe-area-inset-bottom); 
    display: none; grid-template-columns: 1fr 1.5fr; gap: 12px; 
    z-index: 999; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sticky-mobile-bar.active { transform: translateY(0); }
.sticky-btn { display: flex; align-items: center; justify-content: center; gap: 8px; height: 50px; border-radius: 14px; font-weight: 700; font-size: 15px; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; }
.sticky-whatsapp { background: #25d366; color: #fff; }
.sticky-buy { background: var(--brand-blue); color: #fff; }

@media (max-width: 992px) {
    .unboxing-grid { grid-template-columns: repeat(2, 1fr); }
    .warranty-container { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .sticky-mobile-bar { display: grid; }
}

/* Tier 4: Authority Stats Bar */
.authority-stats-bar { 
    background: rgba(18, 21, 29, 0.6); 
    backdrop-filter: blur(20px); 
    border-top: 1px solid rgba(255,255,255,0.05); 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    padding: 30px 0; 
    margin-top: -1px; 
}
.stats-inner { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    max-width: 1200px; 
    margin: 0 auto; 
    gap: 20px; 
}
.stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.1); text-decoration: none; transition: all 0.3s; }
.stat-item.clickable-stat:hover { background: rgba(255,255,255,0.05); }
.stat-item.clickable-stat:hover .stat-value { color: #fff; }
.stat-item:last-child { border-right: none; }
.stat-value { font-size: 32px; font-weight: 800; color: var(--brand-blue); display: block; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* Tier 4: Live HUD Overlay */
.video-hud-container { position: relative; overflow: hidden; border-radius: 24px; }
.live-hud { 
    position: absolute; top: 0; left: 0; right: 0; bottom: 0; 
    pointer-events: none; padding: 20px; 
    display: flex; flex-direction: column; justify-content: space-between; 
    z-index: 10; font-family: 'Courier New', monospace; text-shadow: 0 0 10px rgba(0,0,0,0.8);
}
.hud-top { display: flex; justify-content: space-between; align-items: flex-start; }
.hud-rec { color: #ff0000; display: flex; align-items: center; gap: 8px; font-weight: 700; animation: pulse 1s infinite; }
.hud-live { background: rgba(0,0,0,0.5); padding: 4px 10px; border-radius: 6px; border: 1px solid rgba(255,0,0,0.3); font-size: 12px; }
.hud-res { color: #fff; font-size: 14px; opacity: 0.9; }
.hud-bottom { display: flex; justify-content: space-between; align-items: flex-end; color: #fff; font-size: 14px; opacity: 0.8; }
.hud-scanlines { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03)); 
    background-size: 100% 4px, 3px 100%; pointer-events: none; opacity: 0.3; 
}

/* Tier 4: Day/Night Slider */
.vision-slider-section { padding: 90px 0; background: #0a0c10; text-align: center; }
.vision-container { position: relative; max-width: 900px; margin: 50px auto; border-radius: 30px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.6); }
.vision-img-box { position: relative; width: 100%; aspect-ratio: 16/9; }
.vision-night { position: absolute; top: 0; left: 0; width: 100%; height: 100%; filter: grayscale(1) contrast(1.2) brightness(1.2); opacity: 0; transition: opacity 0.5s ease; }
.vision-night.active { opacity: 1; }
.vision-controls { display: flex; justify-content: center; gap: 15px; margin-top: 30px; }
.vision-btn { 
    padding: 12px 30px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.1); 
    background: rgba(255,255,255,0.05); color: #fff; cursor: pointer; transition: all 0.3s; 
}
.vision-btn.active { background: var(--brand-blue); border-color: var(--brand-blue); font-weight: 700; box-shadow: 0 0 20px rgba(47, 101, 246, 0.4); }

/* Tier 4: 360 Vision Preview */
.vision-360-section { padding: 100px 0; background: var(--bg-main); overflow: hidden; }
.vision-360-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.vision-360-visual { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }
.vision-orbit-ring { 
    position: absolute; width: 400px; height: 400px; 
    border: 1px dashed rgba(47, 101, 246, 0.3); border-radius: 50%; 
    animation: rotateOrbit 20s linear infinite; 
}
.vision-camera-pivot { 
    width: 280px; transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); 
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}
.vision-camera-pivot:hover { transform: rotateY(30deg) rotateX(10deg); }

@keyframes rotateOrbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

@media (max-width: 768px) {
    .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item.clickable-stat { border-right: 1px solid rgba(255,255,255,0.1); }
    .vision-360-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
}

.map-link-btn { 
    display: inline-flex; align-items: center; gap: 8px; margin-top: 15px; 
    padding: 8px 16px; background: rgba(47, 101, 246, 0.1); 
    border: 1px solid rgba(47, 101, 246, 0.3); border-radius: 8px; 
    color: var(--brand-blue); font-size: 14px; font-weight: 600; 
    text-decoration: none; transition: all 0.3s; 
}
.map-link-btn:hover { background: var(--brand-blue); color: #fff; transform: translateY(-2px); }

/* Tier 3: Regional SEO Grid */
.regional-section { padding: 80px 0 0; background: var(--bg-main); position: relative; text-align: center; }
.city-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 12px; 
    margin-top: 40px; 
    max-width: 1000px; 
    margin-left: auto; 
    margin-right: auto; 
}
.city-tag { 
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.08); 
    padding: 10px 20px; 
    border-radius: 50px; 
    text-align: center; 
    font-size: 14px; 
    color: var(--text-secondary); 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    cursor: default; 
    white-space: nowrap;
}
.city-tag:hover { 
    background: rgba(47, 101, 246, 0.15); 
    border-color: var(--brand-blue); 
    color: #fff; 
    transform: translateY(-3px) scale(1.05); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Tier 3: App Showcase */
.app-showcase-container { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
    margin-top: 50px; 
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}
/* --- iPhone Premium Frame --- */
.iphone-frame {
    position: relative;
    width: 310px;
    height: 630px;
    margin: 0 auto;
    background: #000;
    border-radius: 50px;
    padding: 12px;
    box-shadow: 
        0 0 0 4px #1a1a1a,              /* Outline */
        0 50px 100px rgba(0,0,0,0.8),   /* Deep Shadow */
        0 0 40px rgba(47, 101, 246, 0.2); /* Visual Glow */
    border: 1px solid rgba(255,255,255,0.1);
}

.iphone-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #06070a;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 50;
    box-shadow: inset 0 0 4px rgba(255,255,255,0.1);
}

.iphone-button {
    position: absolute;
    background: #1a1a1a;
    width: 3px;
    border-radius: 2px 0 0 2px;
}
.iphone-button.volume-up { top: 120px; left: -2px; height: 50px; }
.iphone-button.volume-down { top: 180px; left: -2px; height: 50px; }
.iphone-button.power { top: 160px; right: -2px; height: 80px; border-radius: 0 2px 2px 0; }

.app-screen {
    position: relative;
    z-index: 10;
    flex: 1;
}
.app-screen.simple-hud {
    background: transparent;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.app-video-mock.full-video {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    z-index: 5; /* Above background but below potential HUD artifacts */
    background: #000;
}

.app-header-mock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
    padding: 0 5px;
}
.app-status-icons {
    display: flex;
    gap: 6px;
    font-size: 14px;
}



.app-video-mock {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
    overflow: hidden;
}

.mock-video-element {
    position: absolute;
    top: 50%; left: 50%;
    width: 105%; height: 105%;
    object-fit: cover;
    object-position: 60% 40%; /* Refined position based on user feedback */
    transform: translate(-50%, -50%);
    z-index: 5;
}

.video-overlay-hud {
    position: absolute;
    bottom: 85px; /* Above controls */
    left: 15px;
    right: 15px;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-family: monospace;
    color: #fff;
    z-index: 15;
}

.hud-live-tag {
    color: #ff4b4b;
    font-weight: 800;
    text-shadow: 0 0 5px rgba(255,0,0,0.5);
}

.app-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: auto;
    padding-bottom: 30px;
}

.control-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 0.5;
    transition: all 0.2s;
}
.control-item ion-icon { font-size: 24px; }
.control-item span { font-size: 10px; font-weight: 500; }
.control-item.active { opacity: 1; color: var(--brand-blue); }

.iphone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .iphone-frame { width: 280px; height: 580px; transform: scale(0.9); }
}

/* --- Restored App Feature Styles --- */
.app-feature-list { display: flex; flex-direction: column; gap: 20px; }
.app-feature-item { 
    display: flex; align-items: flex-start; gap: 20px; padding: 24px; 
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); 
    border-radius: 20px; transition: all 0.3s; 
}
.app-feature-item:hover { 
    background: rgba(255,255,255,0.04); border-color: rgba(47, 101, 246, 0.3); 
    transform: translateX(10px); 
}
.app-feature-icon { 
    width: 50px; height: 50px; background: rgba(47, 101, 246, 0.1); 
    color: var(--brand-blue); border-radius: 14px; 
    display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; 
}

@keyframes notifSlide {
    0%, 10% { transform: translateY(-20px); opacity: 0; }
    20%, 80% { transform: translateY(0); opacity: 1; }
    90%, 100% { transform: translateY(20px); opacity: 0; }
}

@media (max-width: 992px) {
    .app-showcase-container { grid-template-columns: 1fr; gap: 40px; padding: 30px 20px; }
    .iphone-frame { order: 2; margin-top: 40px; }
    .app-feature-list { order: 1; }
    .app-feature-item { padding: 15px; }
}
