@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #f8faff;
    --bg-card: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --accent-red: #ef4444;
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(59, 130, 246, 0.15);
    --shadow-xl: 0 30px 80px rgba(59, 130, 246, 0.2);
    --border: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; width: 100%; position: relative; }

/* ─── UTILS ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-gradient { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-center { text-align: center; }
.section-label { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.1)); color: var(--accent-blue); font-size: 0.8rem; font-weight: 700; padding: 6px 16px; border-radius: 50px; border: 1px solid rgba(59,130,246,0.2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }
.section-title { font-size: 2.8rem; font-weight: 800; color: var(--text-primary); line-height: 1.2; margin-bottom: 1rem; }
.section-desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 4rem; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; font-family: var(--font); white-space: nowrap; }
.btn-primary { background: var(--gradient-primary); color: white; box-shadow: 0 8px 25px rgba(59,130,246,0.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(59,130,246,0.45); }
.btn-outline { background: white; color: var(--accent-blue); border: 2px solid var(--accent-blue); }
.btn-outline:hover { background: var(--accent-blue); color: white; transform: translateY(-2px); }
.btn-white { background: white; color: var(--accent-blue); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ─── NAV ─── */
.nav { background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; transition: box-shadow 0.3s; }
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.8rem; font-weight: 800; text-decoration: none; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -1px; }
.nav-logo-img { height: 32px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 8px 16px; border-radius: 50px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-blue); background: rgba(59,130,246,0.08); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }

.mobile-nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: #f1f5f9; border: none; cursor: pointer; width: 40px; height: 40px; border-radius: 10px; z-index: 1100; transition: 0.3s; }
.mobile-nav-toggle span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: 0.3s; }
.mobile-nav-toggle.active { background: var(--accent-red); }
.mobile-nav-toggle.active span { background: white; }
.mobile-nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero { padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(59,130,246,0.12) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 80% 50%, rgba(139,92,246,0.1) 0%, transparent 50%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(59,130,246,0.1)); border: 1px solid rgba(16,185,129,0.25); color: var(--accent-green); font-size: 0.8rem; font-weight: 700; padding: 6px 14px; border-radius: 50px; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.hero h1 { font-size: 3.8rem; font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; align-items: center; gap: 12px; }
.trust-avatars { display: flex; }
.trust-avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid white; margin-left: -10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.7rem; font-weight: 700; }
.trust-text { font-size: 0.85rem; color: var(--text-secondary); }
.trust-text strong { color: var(--text-primary); }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-card { background: white; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-xl); border: 1px solid var(--border); width: 100%; max-width: 420px; }
.hero-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.hc-dot { width: 12px; height: 12px; border-radius: 50%; }
.hc-dot.red { background: #ef4444; }
.hc-dot.yellow { background: #f59e0b; }
.hc-dot.green { background: #10b981; }
.proxy-row { display: flex; align-items: center; justify-content: space-between; padding: 12px; border-radius: 10px; background: var(--bg); margin-bottom: 8px; font-size: 0.85rem; }
.proxy-row .ip { font-family: monospace; font-weight: 600; color: var(--text-primary); }
.proxy-row .country-info { display: flex; align-items: center; gap: 6px; color: var(--text-secondary); }
.country-info .flag-img { width: 20px; height: 15px; border-radius: 2px; object-fit: cover; }
.pstatus { font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.pstatus.live { background: rgba(16,185,129,0.1); color: var(--accent-green); }
.pstatus.fast { background: rgba(59,130,246,0.1); color: var(--accent-blue); }
.floating-badge { position: absolute; background: white; border-radius: 12px; padding: 12px 16px; box-shadow: var(--shadow-md); font-size: 0.8rem; font-weight: 700; border: 1px solid var(--border); }
.floating-badge.top-left { top: -20px; left: -30px; color: var(--accent-green); }
.floating-badge.bottom-right { bottom: -20px; right: -30px; color: var(--accent-purple); }

/* ─── STATS BAR ─── */
.stats-bar { background: var(--gradient-primary); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: white; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ─── FEATURES ─── */
.features-section { padding: 100px 0; background: white; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2.5rem 2rem; transition: all 0.4s cubic-bezier(.25,.46,.45,.94); position: relative; overflow: hidden; cursor: pointer; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); transform: scaleX(0); transition: transform 0.3s; }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 60px; height: 60px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.5rem; }
.fi-blue { background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(59,130,246,0.05)); color: var(--accent-blue); }
.fi-purple { background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(139,92,246,0.05)); color: var(--accent-purple); }
.fi-green { background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05)); color: var(--accent-green); }
.fi-orange { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05)); color: var(--accent-orange); }
.fi-red { background: linear-gradient(135deg, rgba(239,68,68,0.15), rgba(239,68,68,0.05)); color: var(--accent-red); }
.fi-teal { background: linear-gradient(135deg, rgba(20,184,166,0.15), rgba(20,184,166,0.05)); color: #14b8a6; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }

/* ─── COUNTRIES (with image flags) ─── */
.locations-section { padding: 100px 0; background: linear-gradient(180deg, #f8faff 0%, #eef2ff 100%); }
.countries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.country-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem 1rem; display: flex; align-items: center; gap: 14px; transition: all 0.3s; cursor: pointer; }
.country-card:hover { border-color: var(--accent-blue); box-shadow: 0 8px 25px rgba(59,130,246,0.15); transform: translateY(-4px); }
.country-flag-img { width: 40px; height: 30px; border-radius: 4px; object-fit: cover; box-shadow: 0 1px 4px rgba(0,0,0,0.15); flex-shrink: 0; }
.country-name { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.country-count { font-size: 0.75rem; color: var(--accent-blue); margin-top: 2px; font-weight: 600; }

/* ─── INTEGRATIONS (Tabbed OwlProxy Style) ─── */
.integrations-section { padding: 100px 0; background: linear-gradient(180deg, white, #f0f4ff); overflow: hidden; }
.int-layout { display: grid; grid-template-columns: 240px 1fr; gap: 0; background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 0; overflow: hidden; box-shadow: var(--shadow-lg); max-width: 1050px; margin: 0 auto; }
.int-tabs { padding: 1.5rem 0; border-right: 1px solid var(--border); background: #fcfdfe; }
.int-tab { display: block; padding: 16px 24px; font-weight: 600; font-size: 0.95rem; color: var(--text-secondary); cursor: pointer; transition: all 0.3s; border: none; background: none; width: 100%; text-align: left; font-family: var(--font); position: relative; }
.int-tab::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent-blue); transform: scaleY(0); transition: 0.3s; }
.int-tab:hover { color: var(--accent-blue); background: rgba(59,130,246,0.04); }
.int-tab.active { color: var(--accent-blue); background: white; font-weight: 700; }
.int-tab.active::after { transform: scaleY(1); }
.int-panels { padding: 3rem; background: white; }
.int-panel { display: none; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; animation: fadeIn 0.4s ease; }
.int-panel.active { display: grid; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.int-item { background: white; border: 1px solid var(--border); border-radius: 18px; padding: 2.25rem 1.5rem; text-align: center; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.int-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1); border-color: var(--accent-blue); }
.int-item img { height: 48px; width: auto; max-width: 60px; object-fit: contain; margin-bottom: 1.5rem; transition: transform 0.3s; }
.int-item:hover img { transform: scale(1.15); }
.int-item-name { font-weight: 800; font-size: 1.05rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.int-item-link { font-size: 0.85rem; font-weight: 700; color: var(--accent-blue); opacity: 0; transform: translateY(5px); transition: all 0.3s; }
.int-item:hover .int-item-link { opacity: 1; transform: translateY(0); }

/* ─── PROXY TABLE ─── */
.proxy-section { padding: 100px 0; background: linear-gradient(180deg, white 0%, #f8faff 100%); }
.proxy-panel { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.proxy-panel-header { padding: 1.5rem 2rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; background: linear-gradient(135deg, #f8faff, white); }
.panel-title { font-weight: 700; font-size: 1.1rem; color: var(--text-primary); display: flex; align-items: center; gap: 10px; }
.live-dot { width: 8px; height: 8px; background: var(--accent-green); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.8); } }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead tr { background: #f8faff; }
th { padding: 14px 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); text-align: left; border-bottom: 1px solid var(--border); }
td { padding: 16px 20px; border-bottom: 1px solid #f1f5f9; color: var(--text-primary); font-size: 0.9rem; }
tbody tr:hover { background: #f8faff; }
tbody tr:last-child td { border-bottom: none; }
.td-ip { font-family: 'Courier New', monospace; font-weight: 600; font-size: 0.85rem; }
.status-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.status-badge.working { background: rgba(16,185,129,0.1); color: var(--accent-green); }
.status-badge.working::before { content: ''; width: 6px; height: 6px; background: var(--accent-green); border-radius: 50%; }
.proxy-blur td { filter: blur(4px); user-select: none; opacity: 0.7; }
.proxy-demo-row td { color: var(--text-secondary); }

/* ─── REVIEWS PREMIUM SLIDER ─── */
.reviews-section { padding: 100px 0; background: linear-gradient(180deg, #fff 0%, #f8faff 100%); }
.reviews-slider-wrap { position: relative; margin-top: 4rem; max-width: 1200px; margin-left: auto; margin-right: auto; }
.reviews-slider { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; gap: 1.5rem; padding: 20px 0 40px; -ms-overflow-style: none; scrollbar-width: none; }
.reviews-slider::-webkit-scrollbar { display: none; }
.review-slide { flex: 0 0 calc(33.333% - 1rem); scroll-snap-align: center; }
.review-card-premium { background: white; border: 1px solid var(--border); border-radius: 32px; padding: 3rem 2.5rem; height: 100%; display: flex; flex-direction: column; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 10px 30px rgba(0,0,0,0.03); position: relative; }
.review-card-premium:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(59,130,246,0.12); border-color: var(--accent-blue); }

.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.verified-badge { font-size: 0.75rem; font-weight: 700; color: var(--accent-green); background: rgba(16,185,129,0.08); padding: 5px 12px; border-radius: 50px; display: inline-flex; align-items: center; gap: 5px; border: 1px solid rgba(16,185,129,0.15); }
.stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; }

.review-card-premium h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); margin-bottom: 1.25rem; }
.review-text { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; margin-bottom: 2.5rem; flex-grow: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 15px; border-top: 1px solid #f1f5f9; padding-top: 1.5rem; }
.author-photo { width: 50px; height: 50px; border-radius: 15px; object-fit: cover; }
.review-name { font-weight: 800; font-size: 1.1rem; color: var(--text-primary); }
.review-role { font-size: 0.85rem; color: var(--text-muted); }

.slider-controls-wrap { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-top: 1rem; }
.slider-btn { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--border); background: white; color: var(--text-primary); cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.slider-btn:hover { background: var(--accent-blue); color: white; border-color: var(--accent-blue); transform: scale(1.1); }
.slider-dots { display: flex; gap: 10px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); cursor: pointer; transition: 0.3s; border: none; }
.slider-dot.active { background: var(--accent-blue); width: 30px; border-radius: 5px; }


/* ─── PRICING ─── */
.pricing-section { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.pricing-card { background: white; border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem 2rem; transition: all 0.3s; }
.pricing-card.popular { border-color: var(--accent-blue); position: relative; transform: scale(1.05); box-shadow: var(--shadow-xl); }
.popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient-primary); color: white; font-size: 0.75rem; font-weight: 700; padding: 4px 16px; border-radius: 50px; white-space: nowrap; }
.plan-name { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.plan-price { font-size: 3rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.5rem; }
.plan-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.plan-desc { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 2rem; }
.plan-features { list-style: none; margin-bottom: 2.5rem; }
.plan-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.9rem; color: var(--text-secondary); border-bottom: 1px solid #f1f5f9; }
.plan-features li i { color: var(--accent-green); font-size: 0.8rem; }

/* ─── USE CASES ─── */
.usecases-section { padding: 100px 0; }
.usecase-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.usecase-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2.5rem; display: flex; gap: 2rem; align-items: flex-start; transition: all 0.3s; }
.usecase-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.uc-icon { width: 70px; height: 70px; border-radius: var(--radius-sm); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.uc-content h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.uc-content p { color: var(--text-secondary); line-height: 1.7; }

/* ─── FAQ ─── */
.faq-section { padding: 100px 0; background: #f8faff; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 1rem; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; cursor: pointer; font-weight: 700; color: var(--text-primary); gap: 1rem; transition: color 0.2s; }
.faq-q:hover { color: var(--accent-blue); }
.faq-q i { color: var(--accent-blue); transition: transform 0.3s; flex-shrink: 0; }
.faq-a { padding: 0 2rem 1.5rem; color: var(--text-secondary); line-height: 1.7; font-size: 0.95rem; display: none; }

/* ─── CTA ─── */
.cta-section { padding: 100px 0; }
.cta-box { background: var(--gradient-primary); border-radius: var(--radius-xl); padding: 6rem 4rem; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: rgba(255,255,255,0.05); border-radius: 50%; pointer-events: none; }
.cta-box h2 { font-size: 3rem; font-weight: 800; color: white; margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ─── FOOTER ─── */
footer { background: #0f172a; color: white; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand .logo { color: white; font-size: 1.5rem; -webkit-text-fill-color: white; background: none; }
.footer-brand p { color: #94a3b8; font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-col h5 { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #64748b; margin-bottom: 1.5rem; }
.footer-col a { display: block; color: #94a3b8; text-decoration: none; font-size: 0.9rem; margin-bottom: 0.75rem; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: #475569; font-size: 0.85rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: #1e293b; display: flex; align-items: center; justify-content: center; color: #64748b; text-decoration: none; transition: all 0.2s; font-size: 0.85rem; }
.social-btn:hover { background: var(--accent-blue); color: white; }

/* ─── AUTH ─── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%); padding: 2rem; }
.auth-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 3rem; width: 100%; max-width: 440px; box-shadow: var(--shadow-xl); }
.auth-card h2 { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 0.5rem; }
.auth-card .sub { text-align: center; color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 6px; }
.form-control { width: 100%; padding: 12px 16px; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-sm); color: var(--text-primary); font-family: var(--font); font-size: 0.95rem; transition: border-color 0.2s; }
.form-control:focus { outline: none; border-color: var(--accent-blue); background: white; }
.auth-card .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.alert { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 1.25rem; font-size: 0.9rem; font-weight: 500; }
.alert-error { background: rgba(239,68,68,0.08); color: var(--accent-red); border: 1px solid rgba(239,68,68,0.2); }
.alert-success { background: rgba(16,185,129,0.08); color: var(--accent-green); border: 1px solid rgba(16,185,129,0.2); }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; color: var(--text-muted); font-size: 0.85rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.btn-google { width: 100%; justify-content: center; background: white; border: 1.5px solid var(--border); color: var(--text-primary); font-weight: 600; padding: 12px; border-radius: var(--radius-sm); }
.btn-google:hover { background: #f8faff; border-color: var(--accent-blue); }
.btn-google img { width: 20px; height: 20px; }
.auth-footer { text-align: center; margin-top: 1.5rem; font-size: 0.9rem; color: var(--text-secondary); }
.auth-footer a { color: var(--accent-blue); text-decoration: none; font-weight: 600; }

/* ─── PAGE HERO ─── */
.page-hero { padding: 80px 0 60px; background: linear-gradient(135deg, #f8faff, #eef2ff); border-bottom: 1px solid var(--border); text-align: center; }
.page-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 1rem; }
.page-hero p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ─── FEATURE MODAL ─── */
.feature-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 15px; overflow: hidden; }
.feature-modal.active { display: flex; }
.modal-backdrop { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 5; }
.modal-content { background: white; border-radius: 32px; width: 100%; max-width: 800px; max-height: 90vh; overflow-y: auto; position: relative; z-index: 10; padding: 4rem; box-shadow: 0 40px 100px rgba(15, 23, 42, 0.2); animation: modalOpen 0.4s cubic-bezier(0.17, 0.67, 0.24, 0.99); margin: auto; }
@keyframes modalOpen { from { opacity: 0; transform: scale(0.9) translateY(30px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close { position: absolute; top: 2rem; right: 2rem; width: 44px; height: 44px; border-radius: 50%; border: none; background: #f1f5f9; color: var(--text-primary); cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.modal-close:hover { background: var(--accent-red); color: white; transform: rotate(90deg); }
#modalBody h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--text-primary); }
#modalBody h3 { font-size: 1.4rem; font-weight: 700; margin: 2rem 0 1rem; color: var(--text-secondary); }
#modalBody p { font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 1.5rem; }
#modalBody b { color: var(--text-primary); }
#modalBody ul { margin: 1.5rem 0; padding-left: 1.5rem; }
#modalBody li { margin-bottom: 1rem; font-size: 1.1rem; color: var(--text-secondary); }

@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .review-slide { flex: 0 0 calc(50% - 1rem); }
}

@media (max-width: 768px) {
    .mobile-nav-toggle { display: flex; }
    .nav-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); flex-direction: column; justify-content: center; padding: 4rem 2rem; transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1); z-index: 1000; transform: translateX(100%); visibility: hidden; }
    .nav-menu.active { transform: translateX(0); visibility: visible; }
    .nav-links { flex-direction: column; width: 100%; gap: 1rem; }
    .nav-links a { font-size: 1.4rem; width: 100%; text-align: center; padding: 15px; border-radius: 12px; }
    .nav-cta { flex-direction: column; width: 100%; gap: 1.25rem; margin-top: 3rem; }
    .nav-cta .btn { width: 100%; justify-content: center; padding: 18px; font-size: 1.1rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .footer-brand p { margin: 1rem auto 0; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }

    .int-layout { grid-template-columns: 1fr; border-radius: 20px; }
    .int-tabs { display: flex; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--border); padding: 1rem; gap: 10px; -ms-overflow-style: none; scrollbar-width: none; }
    .int-tabs::-webkit-scrollbar { display: none; }
    .int-tab { padding: 10px 20px; white-space: nowrap; border-radius: 50px; border: 1px solid var(--border); }
    .int-tab::after { display: none; }
    .int-tab.active { background: var(--accent-blue); color: white; border-color: var(--accent-blue); }
    .int-panels { padding: 1.5rem; }
    .int-panel { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    .section-title { font-size: 2.2rem; }
    .hero h1 { font-size: 2.8rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .review-slide { flex: 0 0 100%; }
    
    .modal-content { width: 92vw; padding: 3.5rem 1.25rem 2rem; border-radius: 20px; max-height: 90vh; }
    .modal-close { top: 1rem; right: 1rem; width: 44px; height: 44px; background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.1); border-radius: 50%; }
    #modalBody h2 { font-size: 1.5rem; line-height: 1.2; font-weight: 800; }
    #modalBody h3 { font-size: 1.1rem; margin: 1.25rem 0 0.5rem; }
    #modalBody p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; }
    #modalBody ul { padding-left: 1rem; margin: 1rem 0; }
    #modalBody li { font-size: 0.95rem; line-height: 1.5; margin-bottom: 0.75rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.4rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .countries-grid { grid-template-columns: 1fr; }
    .int-panel { grid-template-columns: 1fr; }
    .int-item { padding: 1.5rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
