/* ============================================
   CTRLWEB DESIGN SYSTEM - Inspired by Letterly.app
   ============================================ */

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

/* ============================================
   COLOR SYSTEM
   ============================================
   
   Primary Brand: #4F46E5 (Indigo-600) - CTAs, key links, icons
   Secondary Accent: #06B6D4 (Cyan-500) - Gradients, badges, highlights
   
   Backgrounds:
   - Default: #FAFBFC (soft off-white)
   - Alternate sections: #F0F4F8 (pale blue-gray)
   - Hero: Gradient with soft curves
   
   Neutrals:
   - Text Primary: #1E293B (almost-black)
   - Text Secondary: #64748B (mid gray)
   - Borders: #E2E8F0 (light gray)
   
   States:
   - Hover: darken + shadow
   - Focus: clear outlines
   ============================================ */

:root {
    /* Primary Colors */
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #6366F1;
    
    /* Secondary/Accent */
    --accent: #06B6D4;
    --accent-dark: #0891B2;
    --accent-light: #22D3EE;
    
    /* Backgrounds */
    --bg-default: #FAFBFC;
    --bg-alt: #F0F4F8;
    --bg-white: #FFFFFF;
    --bg-dark: #1E293B;
    
    /* Text Colors */
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;
    
    /* Borders */
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(0, 0, 0, 0.08);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%);
    --gradient-hero: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #06B6D4 100%);
    --gradient-subtle: linear-gradient(180deg, #F0F4F8 0%, #FAFBFC 100%);
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}

/* ============================================
   TYPOGRAPHY
   ============================================
   
   Font Family: Inter (modern sans-serif)
   
   Scale:
   - H1: 56px / 700 (hero title)
   - H2: 40px / 600 (section titles)
   - H3: 24px / 600 (feature titles)
   - H4: 20px / 600
   - Body: 17px / 400, line-height 1.6
   - Small: 14px / 400
   - Button: 15px / 500
   ============================================ */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-default);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* ============================================
   LAYOUT
   ============================================ */

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg), 0 4px 14px rgba(79, 70, 229, 0.4);
    color: var(--text-white);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-primary);
    border: 1.5px solid var(--border-medium);
}

.btn-secondary:hover {
    background: var(--bg-alt);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 10px 16px;
}

.btn-ghost:hover {
    background: var(--bg-alt);
    color: var(--text-primary);
}

/* ============================================
   PILLS / TAGS
   ============================================ */

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-full);
    background: var(--bg-alt);
    color: var(--text-secondary);
}

.pill-primary {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}

.pill-accent {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-dark);
}

.pill-white {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
}

/* ============================================
   BADGES
   ============================================ */

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    color: var(--text-secondary);
}

.badge-primary {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}

/* ============================================
   CARDS
   ============================================ */

.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 28px;
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.card-elevated {
    box-shadow: var(--shadow-card);
    border: none;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 251, 252, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--border-light);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* Navigation */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-alt);
}

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

.nav-link i {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    list-style: none;
    padding: 8px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    color: var(--text-secondary);
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--bg-alt);
    color: var(--text-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    border-color: var(--border-medium);
    color: var(--text-primary);
}

.lang-btn i {
    font-size: 10px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    list-style: none;
    padding: 6px;
    z-index: 1000;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
}

.lang-dropdown li a {
    display: block;
    padding: 8px 12px;
    color: var(--text-secondary);
    font-size: 13px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.lang-dropdown li a:hover,
.lang-dropdown li a.active {
    background: var(--bg-alt);
    color: var(--text-primary);
}

.header-actions .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--gradient-hero);
    overflow: hidden;
}

/* Hero Background Pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Curved bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bg-default);
    border-radius: 100% 100% 0 0;
}

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

.hero-text {
    color: var(--text-white);
}

.hero-overline {
    display: inline-block;
    margin-bottom: 20px;
}

.hero-overline .pill {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    line-height: 1.1;
    max-width: 540px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--bg-white);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.hero-buttons .btn-primary:hover {
    background: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hero-pills .pill {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
}

.ratings {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

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

.rating-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.rating-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

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

.banner-container {
    position: relative;
    max-width: 420px;
    width: 100%;
}

.hero-banner {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.banner-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.banner-decoration::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 100px;
    height: 100px;
    background: rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    filter: blur(40px);
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-header .badge {
    margin-bottom: 16px;
}

.section-header h2 {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.section-header a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.section-header a:hover {
    color: var(--primary-dark);
}

/* ============================================
   BROWSER FEATURES SECTION
   ============================================ */

.browser-features {
    padding: var(--section-padding) 0;
    background: var(--bg-alt);
}

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

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    text-align: left;
}

.feature-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-white);
    font-size: 1.5rem;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   VPN SECTION
   ============================================ */

.vpn-section {
    padding: var(--section-padding) 0;
    background: var(--bg-default);
}

.vpn-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vpn-visual {
    position: relative;
}

.vpn-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.vpn-visual::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: var(--gradient-subtle);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.vpn-text {
    max-width: 480px;
}

.vpn-text h2 {
    margin-bottom: 16px;
}

.vpn-text > p {
    font-size: 1.0625rem;
    margin-bottom: 24px;
}

.vpn-links {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.vpn-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vpn-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.vpn-feature .feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin-bottom: 0;
    font-size: 1.25rem;
}

.vpn-feature .feature-content h3 {
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 1.125rem;
}

.vpn-feature .feature-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 15px;
}

/* ============================================
   CONTENT & PERSONALIZATION SECTION
   ============================================ */

.content-section {
    padding: var(--section-padding) 0;
    background: var(--bg-alt);
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    order: 1;
}

.content-visual {
    order: 2;
    display: flex;
    justify-content: center;
}

.content-visual img {
    max-width: 100%;
    border-radius: var(--radius-xl);
}

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

.content-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: left;
    transition: all var(--transition-base);
}

.content-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
    transform: translateY(-4px);
}

.content-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--text-white);
    font-size: 1.375rem;
}

.content-card h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.125rem;
}

.content-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 15px;
}

/* ============================================
   PRIVACY FEATURES SECTION
   ============================================ */

.privacy-features {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    position: relative;
}

.privacy-features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.privacy-features .section-header h2 {
    color: var(--text-white);
}

.privacy-features .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.privacy-features .section-header a {
    color: var(--accent-light);
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    transition: all var(--transition-base);
}

.privacy-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.privacy-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-light);
    font-size: 1.375rem;
}

.privacy-card h3 {
    color: var(--text-white);
    margin-bottom: 10px;
    font-size: 1.125rem;
}

.privacy-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 15px;
}

/* ============================================
   PREMIUM FEATURES SECTION
   ============================================ */

.premium-features {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-default) 0%, var(--bg-alt) 100%);
    position: relative;
}

.premium-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(79, 70, 229, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.premium-features .section-header {
    max-width: 540px;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.premium-category {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.premium-category:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.premium-category h3 {
    color: var(--text-primary);
    margin-bottom: 24px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-category h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.premium-features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.premium-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.premium-feature:hover {
    background: var(--bg-default);
}

.premium-feature i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.premium-feature span {
    color: var(--text-secondary);
    font-size: 14px;
}

.premium-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.premium-note {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */

.download-section {
    padding: var(--section-padding) 0;
    background: var(--bg-default);
}

.download-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.download-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-base);
}

.download-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
    transform: translateY(-4px);
}

.platform-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--text-white);
    font-size: 2rem;
}

.download-card h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.375rem;
}

.download-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 15px;
}

.download-card .btn {
    width: 100%;
    margin-bottom: 16px;
}

.download-card .rating {
    justify-content: center;
}

.download-card .rating span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--text-white);
}

.trust-links a::before,
.legal-links a::before {
    display: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

/* ============================================
   MODAL STYLES
   ============================================ */

.download-modal,
.premium-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

.modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--bg-alt);
    color: var(--text-primary);
}

.modal-body {
    padding: 28px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

.premium-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
}

.benefit-item i {
    color: var(--primary);
    font-size: 1.125rem;
    width: 24px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ============================================
   BREADCRUMBS
   ============================================ */

.breadcrumbs {
    background: var(--bg-alt);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    margin-top: 68px;
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--text-secondary);
}

/* ============================================
   BLOG / ARTICLE STYLES
   ============================================ */

.blog-hero, .article-hero, .feature-hero, .guides-hero, .resources-hero, .control-web-hero {
    padding: 80px 0 60px;
    background: var(--gradient-hero);
    color: var(--text-white);
    text-align: center;
    margin-top: 68px;
}

.blog-hero-content h1, .article-header h1, .feature-hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 16px;
    color: var(--text-white);
}

.article-header {
    text-align: center;
}

.article-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-meta {
    font-size: 1.0625rem;
    opacity: 0.85;
    margin-top: 12px;
}

/* Blog Categories */
.blog-categories {
    padding: 24px 0;
    background: var(--bg-default);
    border-bottom: 1px solid var(--border-light);
}

.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-btn {
    padding: 10px 20px;
    border: 1.5px solid var(--border-medium);
    background: var(--bg-white);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 14px;
    font-weight: 500;
}

.category-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

/* Blog Listing */
.blog-listing {
    padding: 60px 0;
    background: var(--bg-default);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.article-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.article-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
    transform: translateY(-4px);
}

.article-card .article-image {
    height: 180px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2.5rem;
}

.article-card .article-content {
    padding: 24px;
}

.article-card .article-category {
    padding: 4px 10px;
    background: var(--bg-alt);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 11px;
    margin-bottom: 12px;
    font-weight: 600;
}

.article-card h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card h2 a {
    color: var(--text-primary);
    text-decoration: none;
}

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

.article-card h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.article-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
}

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

.article-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

/* Article Content */
.article-content {
    padding: 60px 0;
    background: var(--bg-default);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    max-width: 1140px;
    margin: 0 auto;
}

.main-article {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.main-article h2 {
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.main-article h2:first-child {
    margin-top: 0;
}

.main-article h3 {
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.main-article ul, .main-article ol {
    margin: 16px 0;
    padding-left: 24px;
}

.main-article li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.main-article a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.main-article a:hover {
    color: var(--primary-dark);
}

/* Article Sidebar */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.sidebar-widget h3 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.related-links {
    list-style: none;
    padding: 0;
}

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

.related-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

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

.cta-widget {
    background: var(--gradient-primary);
    border: none;
}

.cta-widget h3, .cta-widget p {
    color: var(--text-white);
}

.cta-widget p {
    opacity: 0.9;
    font-size: 14px;
}

.cta-widget .btn {
    margin-top: 16px;
    background: var(--bg-white);
    color: var(--primary);
}

.cta-widget .btn:hover {
    background: var(--bg-alt);
}

/* Continue Reading Section */
.continue-reading {
    padding: 48px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border-light);
}

.continue-reading-content {
    text-align: center;
}

.continue-reading-content p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Related Articles Section */
.related-articles {
    padding: 60px 0;
    background: var(--bg-alt);
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

/* CTA Sections */
.blog-cta, .article-cta, .feature-cta, .control-web-cta {
    padding: 80px 0;
    background: var(--gradient-hero);
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--text-white);
    margin-bottom: 16px;
    font-size: 2rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    font-size: 1.0625rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn-primary {
    background: var(--bg-white);
    color: var(--primary);
}

.cta-buttons .btn-primary:hover {
    background: var(--bg-alt);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-hero {
    background: var(--gradient-hero);
    color: var(--text-white);
    padding: 100px 0 80px;
    text-align: center;
    margin-top: 68px;
}

.about-hero-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.about-hero-content p {
    font-size: 1.125rem;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-white);
}

/* Policy Links Section */
.policy-links {
    padding: 80px 0;
    background: var(--bg-alt);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.policy-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all var(--transition-base);
}

.policy-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
    transform: translateY(-4px);
}

.policy-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-white);
    font-size: 1.5rem;
}

.policy-card h3 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.policy-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 15px;
}

.policy-card .btn {
    width: 100%;
}

/* Policy Page Styles */
.policy-hero {
    background: var(--gradient-hero);
    color: var(--text-white);
    padding: 100px 0 80px;
    text-align: center;
    margin-top: 68px;
}

.policy-hero-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.policy-hero-content p {
    font-size: 1.0625rem;
    opacity: 0.85;
    color: var(--text-white);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 24px;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.policy-content {
    padding: 60px 0;
    background: var(--bg-alt);
}

.policy-text {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    max-width: 800px;
    margin: 0 auto;
}

.policy-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.policy-text h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin: 40px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.policy-text h2:first-of-type {
    margin-top: 0;
}

.policy-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.policy-text li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    padding-left: 24px;
}

.policy-text li:last-child {
    border-bottom: none;
}

.policy-text li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 14px;
}

/* ============================================
   FEATURE PAGES
   ============================================ */

.feature-details {
    padding: 60px 0;
    background: var(--bg-default);
}

.feature-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    max-width: 1140px;
    margin: 0 auto;
}

.feature-main {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.feature-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Feature Cards Large */
.feature-card-large {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
    transition: all var(--transition-base);
}

.feature-card-large:hover {
    box-shadow: var(--shadow-card);
}

.feature-icon-large {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.feature-card-large h2 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: 1.375rem;
}

.feature-card-large h2 a {
    color: var(--text-primary);
    text-decoration: none;
}

.feature-card-large h2 a:hover {
    color: var(--primary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 15px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Hub Pages */
.features-overview, .guides-listing, .resources-listing {
    padding: 60px 0;
    background: var(--bg-default);
}

.guides-grid, .resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.guide-card, .resource-card, .link-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.guide-card:hover, .resource-card:hover, .link-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
    transform: translateY(-4px);
}

.guide-icon, .resource-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.coming-soon {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 12px;
    font-size: 14px;
}

.quick-links {
    padding: 60px 0;
    background: var(--bg-alt);
}

.quick-links h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.link-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
}

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

/* FAQ Preview */
.faq-preview {
    margin: 20px 0;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Resource Card Large */
.resource-card-large {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
}

.resource-card-large .resource-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}

/* Technical Features Section */
.technical-features {
    padding: 80px 0;
    background: var(--bg-alt);
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.technical-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.technical-card h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.technical-card ul {
    list-style: none;
    padding: 0;
}

.technical-card li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 14px;
}

.technical-card li:last-child {
    border-bottom: none;
}

.technical-card strong {
    color: var(--text-primary);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    h1 {
        font-size: 2.75rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-pills {
        justify-content: center;
    }
    
    .ratings {
        justify-content: center;
    }
    
    .vpn-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .vpn-visual {
        order: 2;
    }
    
    .vpn-text {
        order: 1;
        max-width: 100%;
    }
    
    .content-wrapper, .feature-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .nav {
        display: flex !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions .btn-primary {
        display: none;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .download-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .main-article {
        padding: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .blog-hero-content h1, .article-header h1, .feature-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content h1, .policy-hero-content h1 {
        font-size: 2rem;
    }
    
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        flex-wrap: nowrap;
    }
    
    .category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .ratings {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .policy-text {
        padding: 28px;
    }
}

/* ============================================
   NAV ACTIVE STATE
   ============================================ */

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   MOBILE MENU (when active)
   ============================================ */

@media (max-width: 768px) {
    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-top: 1px solid var(--border-light);
        box-shadow: var(--shadow-lg);
        padding: 16px;
    }
    
    .nav.active .nav-list {
        flex-direction: column;
        gap: 4px;
    }
    
    .nav.active .nav-link {
        padding: 14px 16px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .nav.active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-alt);
        margin-top: 4px;
        border-radius: var(--radius-md);
    }
}
