/* Secure Hub Safety — Shared Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1b40;
  --navy-dark: #060f2a;
  --navy-mid: #0f2460;
  --blue: #1e40af;
  --blue-light: #3b82f6;
  --cyan: #06b6d4;
  --cyan-light: #22d3ee;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --green: #22c55e;
  --amber: #f59e0b;
  --font: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;
  --shadow: 0 4px 24px rgba(30,64,175,0.13);
  --shadow-lg: 0 16px 48px rgba(30,64,175,0.18);
}

body { font-family: var(--font); color: var(--gray-900); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gradient { background: linear-gradient(135deg, #1e40af, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient-light { background: linear-gradient(135deg, #60a5fa, #22d3ee); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gradient-hero { background: linear-gradient(135deg, #0d1b40 0%, #0f2460 40%, #0a3d7a 70%, #0e5fa8 100%); }
.gradient-cta { background: linear-gradient(135deg, #1e40af 0%, #06b6d4 100%); }
.gradient-dark { background: linear-gradient(135deg, #0d1827 0%, #0f2050 50%, #0d1827 100%); }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; padding: 14px 28px; border-radius: var(--radius-sm); cursor: pointer; border: none; font-family: var(--font); font-size: 15px; transition: all 0.2s; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, #06b6d4, #1e40af); color: #fff; box-shadow: 0 8px 24px rgba(6,182,212,0.3); }
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 12px 32px rgba(6,182,212,0.45); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.3); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: #eff6ff; transform: scale(1.05); }
.btn-blue-outline { border: 2px solid var(--blue); color: var(--blue); background: transparent; }
.btn-blue-outline:hover { background: var(--blue); color: #fff; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(6,182,212,0.12); border: 1px solid rgba(6,182,212,0.3); border-radius: var(--radius-full); padding: 6px 16px; color: #67e8f9; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.badge-blue { background: rgba(30,64,175,0.08); border: 1px solid rgba(30,64,175,0.15); color: var(--blue); }
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-gray { background: var(--gray-50); }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.section-subtitle { color: var(--gray-500); font-size: 18px; max-width: 600px; }
.section-header { margin-bottom: 56px; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; transition: all 0.3s; }
.card:hover { border-color: #bfdbfe; box-shadow: var(--shadow); transform: translateY(-4px); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, #1e40af, #06b6d4); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { width: 24px; height: 24px; color: #fff; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.card p { color: var(--gray-500); font-size: 14px; line-height: 1.7; }
.check-list { list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: var(--gray-600); }
.check-list li::before { content: ""; width: 18px; height: 18px; min-width: 18px; border-radius: 50%; background: #dcfce7; border: 2px solid var(--green); display: inline-block; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; margin-top: 2px; }
.divider { height: 1px; background: var(--gray-200); margin: 24px 0; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all 0.3s; }
.header.scrolled { background: rgba(13,27,64,0.97); backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, #3b82f6, #06b6d4); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(6,182,212,0.4); }
.logo-icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; }
.logo-text .brand { color: #fff; font-weight: 800; font-size: 18px; line-height: 1; display: block; }
.logo-text .tagline { color: #06b6d4; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; padding: 8px 16px; border-radius: 8px; transition: all 0.2s; }
.nav a:hover, .nav a.active { color: #fff; background: rgba(255,255,255,0.1); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 10px 20px; font-size: 14px; }
.mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 8px; color: #fff; transition: background 0.2s; }
.mobile-btn:hover { background: rgba(255,255,255,0.1); }
.mobile-btn svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.mobile-nav { display: none; background: rgba(13,27,64,0.98); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 24px 20px; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 500; padding: 12px 16px; border-radius: 8px; transition: all 0.2s; }
.mobile-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.mobile-nav .mobile-cta { margin-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 12px; }
.mobile-nav .btn { width: 100%; justify-content: center; }

/* ===== PAGE HERO ===== */
.page-hero { padding: 120px 0 64px; text-align: center; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 18px; max-width: 600px; margin: 0 auto; }
.page-hero .meta { color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 8px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: var(--white); }
.footer-main { padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 48px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.8; margin: 16px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 16px; transition: all 0.2s; }
.footer-social a:hover { background: rgba(6,182,212,0.3); color: #fff; }
.footer-col h4 { color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: #06b6d4; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-icon { width: 34px; height: 34px; min-width: 34px; border-radius: 8px; background: rgba(6,182,212,0.15); display: flex; align-items: center; justify-content: center; }
.footer-contact-icon svg { width: 16px; height: 16px; fill: none; stroke: #06b6d4; stroke-width: 2; }
.footer-contact-label { font-size: 11px; color: rgba(255,255,255,0.35); display: block; margin-bottom: 2px; }
.footer-contact-value { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; }
.footer-contact-value a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact-value a:hover { color: #06b6d4; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; }

/* ===== HERO (HOME) ===== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.hero-blob-1 { width: 500px; height: 500px; background: rgba(59,130,246,0.1); top: 20%; right: 10%; }
.hero-blob-2 { width: 400px; height: 400px; background: rgba(6,182,212,0.08); bottom: 20%; left: 10%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 100px 0 60px; }
.hero-badge { margin-bottom: 24px; }
.hero h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 24px; }
.hero p { color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.55); font-size: 13px; }
.hero-trust-item::before { content: ""; width: 16px; height: 16px; min-width: 16px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.shield-visual { position: relative; width: 340px; height: 340px; }
.shield-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid; animation: spin linear infinite; }
.shield-ring-1 { border-color: rgba(6,182,212,0.2); animation-duration: 20s; }
.shield-ring-2 { inset: 20px; border-color: rgba(59,130,246,0.15); animation-duration: 15s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.shield-center { position: absolute; inset: 40px; border-radius: 50%; background: rgba(30,64,175,0.3); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
.shield-center svg { width: 120px; height: 120px; fill: none; stroke: rgba(6,182,212,0.5); stroke-width: 1.5; }
.shield-badge { position: absolute; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); border-radius: 14px; padding: 8px 16px; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #fff; }
.shield-badge-protected { top: 0; right: -20px; }
.shield-badge-active { bottom: 0; left: -20px; }
.shield-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.shield-badge svg { width: 16px; height: 16px; fill: none; stroke: #06b6d4; stroke-width: 2; }

/* ===== STATS BANNER ===== */
.stats-banner { background: linear-gradient(135deg, #1e3a8a, #1e40af); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-value { font-size: clamp(36px, 5vw, 52px); font-weight: 900; color: #fff; line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(6,182,212,0.8); font-size: 13px; font-weight: 600; }

/* ===== FEATURES SECTION ===== */
.features-section { background: var(--white); }

/* ===== WHY US ===== */
.why-us { position: relative; overflow: hidden; }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-us-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-us-item { display: flex; align-items: flex-start; gap: 16px; }
.why-us-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: rgba(6,182,212,0.15); border: 1px solid rgba(6,182,212,0.25); display: flex; align-items: center; justify-content: center; }
.why-us-icon svg { width: 20px; height: 20px; fill: none; stroke: #06b6d4; stroke-width: 2; }
.why-us-title { font-weight: 700; color: #fff; margin-bottom: 2px; }
.why-us-desc { font-size: 13px; color: rgba(255,255,255,0.5); }
.why-us-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat-card { border-radius: 16px; padding: 24px; }
.why-stat-card .value { font-size: 36px; font-weight: 900; color: #fff; line-height: 1; }
.why-stat-card .label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
.testimonial-card { background: linear-gradient(135deg, #f8fafc, rgba(239,246,255,0.5)); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; transition: all 0.3s; }
.testimonial-card:hover { border-color: #bfdbfe; box-shadow: var(--shadow); }
.stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--amber); font-size: 16px; }
.testimonial-text { color: var(--gray-600); font-size: 14px; line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #1e40af, #06b6d4); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; }
.author-name { font-weight: 700; color: var(--gray-900); font-size: 14px; }
.author-location { color: var(--gray-400); font-size: 12px; }

/* ===== PRICING ===== */
.plan-card { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 0; overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.plan-card:hover { box-shadow: var(--shadow-lg); }
.plan-card.popular { border-color: #1e40af; transform: scale(1.03); box-shadow: var(--shadow-lg); }
.plan-header { padding: 28px 28px 24px; }
.plan-card.popular .plan-header { background: linear-gradient(135deg, #1e3a8a, #1e40af); color: #fff; }
.popular-badge { display: inline-block; background: linear-gradient(135deg, #06b6d4, #1e40af); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: var(--radius-full); margin-bottom: 14px; }
.plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 4px; }
.plan-card.popular .plan-name { color: #67e8f9; }
.plan-price { font-size: 48px; font-weight: 900; line-height: 1; color: var(--gray-900); }
.plan-card.popular .plan-price { color: #fff; }
.plan-price span { font-size: 15px; font-weight: 500; color: var(--gray-400); }
.plan-card.popular .plan-price span { color: rgba(255,255,255,0.6); }
.plan-devices { font-size: 14px; font-weight: 600; color: var(--blue); margin-top: 4px; }
.plan-card.popular .plan-devices { color: #67e8f9; }
.plan-tagline { font-size: 13px; color: var(--gray-500); margin-top: 6px; }
.plan-card.popular .plan-tagline { color: rgba(255,255,255,0.6); }
.plan-body { padding: 24px 28px; flex: 1; }
.plan-body ul { display: flex; flex-direction: column; gap: 10px; }
.plan-body ul li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-700); }
.plan-body ul li::before { content: "✓"; width: 18px; height: 18px; min-width: 18px; background: #dcfce7; color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.plan-body ul li.not-included { color: var(--gray-400); text-decoration: line-through; }
.plan-body ul li.not-included::before { content: "—"; background: var(--gray-100); color: var(--gray-400); }
.plan-footer { padding: 0 28px 28px; }
.plan-footer a { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; border-radius: 10px; font-weight: 700; font-size: 14px; transition: all 0.2s; }
.plan-card.popular .plan-footer a { background: linear-gradient(135deg, #06b6d4, #1e40af); color: #fff; box-shadow: 0 6px 20px rgba(6,182,212,0.3); }
.plan-card.popular .plan-footer a:hover { transform: scale(1.03); }
.plan-card:not(.popular) .plan-footer a { border: 2px solid #1e40af; color: #1e40af; }
.plan-card:not(.popular) .plan-footer a:hover { background: #1e40af; color: #fff; }
.plan-note { text-align: center; font-size: 12px; color: var(--gray-400); margin-top: 8px; }

/* ===== GUARANTEE PILLS ===== */
.guarantee-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 48px; }
.guarantee-pill { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-full); padding: 10px 20px; font-size: 13px; font-weight: 600; color: var(--gray-700); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.guarantee-pill svg { width: 16px; height: 16px; fill: none; stroke: var(--blue); stroke-width: 2; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 72px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 36px; }
.cta-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 24px; }
.cta-trust-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); font-size: 13px; }
.cta-trust-item::before { content: "✓"; color: rgba(255,255,255,0.8); font-weight: 700; }

/* ===== ABOUT PAGE ===== */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-stats { display: grid; gap: 16px; }
.about-stat { border-radius: 16px; padding: 28px; color: #fff; }
.about-stat .value { font-size: 40px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.about-stat .label { font-size: 13px; color: rgba(255,255,255,0.65); }
.bg-blue-700 { background: #1d4ed8; }
.bg-cyan-600 { background: #0891b2; }
.bg-blue-800 { background: #1e3a8a; }
.bg-indigo-700 { background: #4338ca; }
.bg-blue-900 { background: #1e3065; }
.bg-teal-600 { background: #0d9488; }

/* ===== CONTACT PAGE ===== */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.contact-card { border-radius: var(--radius); padding: 24px; color: #fff; transition: transform 0.2s; }
.contact-card:hover { transform: scale(1.04); }
.contact-card-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.contact-card-icon svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; }
.contact-card-label { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-card-value { font-size: 14px; font-weight: 600; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); box-shadow: var(--shadow); padding: 36px; }
.contact-form-wrap h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--gray-500); font-size: 14px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: 10px; font-family: var(--font); font-size: 14px; color: var(--gray-900); outline: none; transition: border-color 0.2s, box-shadow 0.2s; background: var(--white); }
.form-group input:focus, .form-group textarea:focus { border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 15px; background: linear-gradient(135deg, #1e40af, #06b6d4); color: #fff; border: none; border-radius: 10px; font-family: var(--font); font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.2s; }
.form-submit:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(6,182,212,0.3); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); height: 260px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.quick-help { background: linear-gradient(135deg, #0f172a, #0f2460); border-radius: var(--radius); padding: 28px; color: #fff; margin-top: 16px; }
.quick-help h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.quick-help p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 20px; }
.quick-help .btn { width: 100%; justify-content: center; }
.quick-help .note { text-align: center; font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 10px; }

/* ===== SERVICES PAGE ===== */
.service-section { padding: 60px 0; border-bottom: 1px solid var(--gray-100); }
.service-section:last-child { border-bottom: none; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.service-grid.reverse .service-content { order: 2; }
.service-grid.reverse .service-visual { order: 1; }
.service-tag { display: inline-flex; align-items: center; gap: 8px; border-radius: 10px; padding: 8px 16px; color: #fff; font-weight: 700; font-size: 13px; margin-bottom: 16px; }
.service-tag svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; }
.service-content h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.service-tagline { color: var(--gray-500); font-size: 15px; margin-bottom: 20px; }
.service-visual { border-radius: 24px; min-height: 260px; display: flex; align-items: center; justify-content: center; }
.service-visual svg { width: 100px; height: 100px; fill: none; stroke: rgba(255,255,255,0.3); stroke-width: 1; }

/* ===== FEATURES PAGE ===== */
.features-category { margin-bottom: 60px; }
.features-category-title { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.features-category-bar { height: 4px; width: 32px; border-radius: 2px; }
.features-category-title h2 { font-size: 24px; font-weight: 800; }
.feature-mini-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; transition: all 0.3s; }
.feature-mini-card:hover { border-color: #bfdbfe; background: rgba(239,246,255,0.3); box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-mini-icon { width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
.feature-mini-icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; }
.feature-mini-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-mini-card p { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.legal-notice { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 14px; padding: 20px 24px; margin-bottom: 36px; font-size: 14px; color: #1e40af; font-weight: 500; line-height: 1.7; }
.legal-notice.amber { background: #fffbeb; border-color: #fcd34d; color: #92400e; }
.legal-section { margin-bottom: 32px; }
.legal-section h2 { font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-100); }
.legal-section h3 { font-size: 16px; font-weight: 700; color: var(--gray-800); margin: 16px 0 8px; }
.legal-section p { font-size: 14px; color: var(--gray-600); line-height: 1.8; margin-bottom: 12px; }
.legal-section ul { margin: 8px 0 12px 0; }
.legal-section ul li { font-size: 14px; color: var(--gray-600); line-height: 1.7; padding: 4px 0 4px 20px; position: relative; }
.legal-section ul li::before { content: "•"; position: absolute; left: 6px; color: var(--blue); font-weight: 700; }
.refund-highlight { background: linear-gradient(135deg, #1e3a8a, #1e40af); border-radius: 20px; padding: 40px; text-align: center; color: #fff; margin-bottom: 36px; }
.refund-highlight .days { font-size: 64px; font-weight: 900; line-height: 1; }
.refund-highlight .guarantee { font-size: 24px; font-weight: 700; color: #67e8f9; margin-bottom: 12px; }
.refund-highlight p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 20px; font-size: 15px; }
.refund-pills { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-bottom: 36px; }
.refund-pill { background: var(--gray-50); border-radius: 12px; padding: 16px 18px; display: flex; align-items: flex-start; gap: 12px; }
.refund-pill::before { content: "✓"; width: 20px; height: 20px; min-width: 20px; background: #dcfce7; color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; margin-top: 2px; }
.refund-pill-title { font-weight: 700; font-size: 14px; color: var(--gray-900); margin-bottom: 2px; }
.refund-pill-desc { font-size: 12px; color: var(--gray-500); }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--gray-200); border-radius: 14px; padding: 22px 24px; margin-bottom: 12px; transition: all 0.2s; }
.faq-item:hover { border-color: #bfdbfe; background: rgba(239,246,255,0.2); }
.faq-item h3 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ===== SUCCESS MSG ===== */
.success-msg { text-align: center; padding: 40px 20px; display: none; }
.success-msg .icon { width: 64px; height: 64px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 28px; }
.success-msg h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.success-msg p { color: var(--gray-500); font-size: 14px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-stats { margin-top: 32px; }
  .about-story-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid.reverse .service-content { order: 1; }
  .service-grid.reverse .service-visual { order: 2; }
}
@media (max-width: 768px) {
  .nav, .header-cta { display: none; }
  .mobile-btn { display: flex; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  
  .why-us-stats { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
 
}
