/* Full base.css - Deep Sea Gradient Background Theme */
* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0A2540;
    background-image: linear-gradient(135deg, #0A2540 50%, #1e3a8a 50%, #0A2540 100%);
    background-attachment: fixed;
    color: #e2e8f0;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.03) 0%, rgba(10,37,64,0) 60%);
  pointer-events: none;
  z-index: -1;
}
a { color: inherit; text-decoration: none; }

/* Color Palette - Dark Slate Theme */
:root {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #1e293b;
    --border: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --success: #10b981;
    --warning: #f59e0b;
    --gold: #fbbf24;
    --orange: #FF6A00;
    --orange-hover: #E65F00;
}

/* Typography */
h1 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); font-weight: 600; margin-bottom: 1rem; }
p { font-size: 1.125rem; margin-bottom: 1.5rem; }

/* Spacing Scale */
.section { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }
.section-label { color: var(--accent); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #334155;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-links a:hover {
    background: rgba(59,130,246,0.1);
    color: var(--accent);
}

/* Hero - Clean dark bg with sea gradient behind */
.hero {
    padding: 120px 20px 80px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.hero::before {
    content: '';
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 384px;
    height: 816px;
    background-image: url('/pepe-phone-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    opacity: 0.85;
    z-index: -1;
    pointer-events: none;
}
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-hover));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255,106,0,0.3);
}
.hero h1 {
    background: linear-gradient(135deg, white, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}
.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--orange-hover));
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(255,106,0,0.3);
    position: relative;
    z-index: 20;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,106,0,0.4);
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.2s;
    position: relative;
    z-index: 20;
}
.card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(59,130,246,0.15);
}

/* Tables */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    position: relative;
    z-index: 20;
}
.comparison-table th {
    background: rgba(30, 41, 59, 0.9);
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
}
.comparison-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
}
.comparison-table .price {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.125rem;
}
.stars {
    display: inline-flex;
    gap: 0.25rem;
}

/* Comparison Title Forward */
#comparison .section-label,
#comparison h2 {
    position: relative;
    z-index: 30;
}

/* Reviews Title Forward */
#reviews .section-label,
#reviews h2 {
    position: relative;
    z-index: 30;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.review-card {
    max-width: 400px;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.review-author {
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}
.review-pros, .review-cons {
    list-style: none;
    padding: 0;
}
.pro { color: var(--success); }
.cons { color: #ef4444; }

/* Grid Layouts */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 4rem auto;
    width: 200px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3rem 20px 2rem;
    text-align: center;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.footer p {
    opacity: 0.7;
    font-size: 0.875rem;
}

/* Footer Forward - In Front of Pepe Phone */
.footer,
.footer-links,
.footer p {
    position: relative;
    z-index: 30;
}

/* Responsive */
@media (max-width: 640px) {
    .nav-inner { flex-direction: column; gap: 1rem; padding: 1rem; }
    .nav-links { gap: 1rem; }
    .hero { padding: 80px 20px 60px; }
    .hero::before {
        left: 10px;
        bottom: 20px;
        width: 312px;
        height: 660px;
    }
    .reviews-grid { grid-template-columns: 1fr; }
    .comparison-table { font-size: 0.875rem; }
    .comparison-table th, .comparison-table td { padding: 1rem 0.75rem; }
}