/* ===== TutelasyPeticiones — LIGHT THEME v3 ===== */
@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');

:root {
    --bg: #FFFFFF;
    --bg-soft: #F8FAFC;
    --bg-muted: #F1F5F9;
    --bg-accent: #EFF6FF;
    --card: #FFFFFF;
    --border: #E2E8F0;
    --border-hover: #CBD5E1;
    --text: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --primary-light: #DBEAFE;
    --primary-glow: rgba(37,99,235,0.15);
    --accent: #F59E0B;
    --accent-hover: #D97706;
    --accent-light: #FEF3C7;
    --green: #059669;
    --green-light: #D1FAE5;
    --red: #DC2626;
    --red-light: #FEE2E2;
    --purple: #7C3AED;
    --purple-light: #EDE9FE;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; }
h1,h2,h3,h4 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-weight: 800; line-height: 1.15; color: var(--text); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section p { text-align: justify; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; transition: all 0.3s var(--ease); }
.nav.scrolled { padding: 10px 0; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-brand img { width: 38px; height: 38px; border-radius: 10px; }
.nav-brand-text { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 18px; color: var(--text); letter-spacing: -0.5px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: var(--text-secondary); padding: 8px 14px; border-radius: 10px; transition: all 0.2s; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.nav-links a i { font-size: 13px; opacity: 0.6; }
.nav-links a:not(.nav-cta):hover { color: var(--primary); background: var(--primary-light); }
.nav-links .nav-cta, .nav-cta { background: var(--primary) !important; color: #fff !important; font-weight: 700; font-size: 13.5px; padding: 11px 24px; border-radius: var(--radius-full); border: 2px solid var(--primary); cursor: pointer; transition: all 0.3s var(--ease); white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; text-decoration: none; box-shadow: 0 4px 16px var(--primary-glow); }
.nav-links .nav-cta:hover, .nav-cta:hover { background: var(--primary-hover) !important; border-color: var(--primary-hover); color: #fff !important; transform: translateY(-1px); box-shadow: 0 8px 30px var(--primary-glow); }
.nav-toggle { display: none; background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; width: 42px; height: 42px; border-radius: 12px; cursor: pointer; font-size: 18px; align-items: center; justify-content: center; }

/* Nav transparent state (on dark hero) — white text */
.nav:not(.scrolled):not(.nav-light-theme) .nav-brand-text { color: #ffffff !important; font-weight: 800; }
.nav:not(.scrolled):not(.nav-light-theme) .nav-links a:not(.nav-cta) { color: #ffffff !important; font-weight: 600; opacity: 0.95; }
.nav:not(.scrolled):not(.nav-light-theme) .nav-links a:not(.nav-cta):hover { color: #ffffff !important; opacity: 1; background: rgba(255,255,255,0.18); }
.nav:not(.scrolled):not(.nav-light-theme) .nav-links a i { opacity: 0.9; color: #93c5fd; }
.nav:not(.scrolled):not(.nav-light-theme) .nav-toggle { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }

/* Nav light theme transparent state — dark text on transparent bg */
.nav.nav-light-theme:not(.scrolled) .nav-brand-text { color: var(--text); }
.nav.nav-light-theme:not(.scrolled) .nav-links a:not(.nav-cta) { color: #334155; font-weight: 600; }
.nav.nav-light-theme:not(.scrolled) .nav-links a:not(.nav-cta):hover { color: var(--primary); background: var(--primary-light); }
.nav.nav-light-theme:not(.scrolled) .nav-links a i { opacity: 0.6; }
.nav.nav-light-theme:not(.scrolled) .nav-toggle { background: var(--bg); border-color: var(--border); color: var(--text); }

/* Nav scrolled state — dark text on white bg */
.nav.scrolled .nav-brand-text { color: var(--text); }
.nav.scrolled .nav-links a:not(.nav-cta) { color: var(--text-secondary); }
.nav.scrolled .nav-links a:not(.nav-cta):hover { color: var(--primary); background: var(--primary-light); }
.nav.scrolled .nav-toggle { background: var(--bg); border-color: var(--border); color: var(--text); }

/* Mobile Nav */
.mobile-nav { position: fixed; inset: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(24px); z-index: 200; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a { font-size: 17px; font-weight: 600; padding: 16px 32px; color: var(--text-secondary); border-radius: var(--radius); transition: all 0.2s; width: 85%; text-align: center; display: flex; align-items: center; justify-content: center; gap: 10px; }
.mobile-nav a:not(.nav-cta):hover { color: var(--primary); background: var(--primary-light); }
.mobile-nav .nav-cta { background: var(--primary) !important; color: #fff !important; border: 2px solid var(--primary); box-shadow: 0 4px 16px var(--primary-glow); }
.mobile-nav .nav-cta:hover { background: var(--primary-hover) !important; color: #fff !important; }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--text); font-size: 28px; cursor: pointer; padding: 8px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px; border-radius: var(--radius); padding: 14px 28px; border: none; cursor: pointer; transition: all 0.3s var(--ease); text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 16px var(--primary-glow); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 32px var(--primary-glow); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(245,158,11,0.2); }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.btn-white { background: #fff; color: var(--primary); border: 2px solid rgba(255,255,255,0.3); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-lg { font-size: 16px; padding: 18px 36px; border-radius: 16px; }
.btn-sm { font-size: 13px; padding: 9px 18px; border-radius: 10px; }
.btn-success { background: var(--green); color: #fff; }
.btn-danger { background: var(--red); color: #fff; }
.btn-block { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 160px 24px 100px; background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 35%, #FEF3C7 65%, #DBEAFE 100%); }
.hero-bg-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; will-change: transform; }
.hero-bg-video video { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }
.hero-bg-video canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg-img { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-text { max-width: 580px; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; background: var(--primary-light); border-radius: var(--radius-full); padding: 10px 22px; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 32px; }
.hero-tag i { font-size: 14px; }
.hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: -2px; margin-bottom: 28px; }
.hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--primary), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 17px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image img { max-width: 480px; width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 24px 48px rgba(37,99,235,0.14)); animation: heroFloat 7s ease-in-out infinite; will-change: transform; border-radius: 24px; }
@keyframes heroFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-14px) scale(1.01); } }
.hero-metrics { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.hero-metric { text-align: center; padding: 20px 28px; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); border-radius: var(--radius-lg); border: 1px solid var(--border); flex: 1; min-width: 140px; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.hero-metric:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hero-metric-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 800; color: var(--primary); }
.hero-metric-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); font-weight: 500; }
.hero-trust-item i { color: var(--green); font-size: 16px; }

/* ===== SECTIONS ===== */
.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-soft); }
.section-accent { background: linear-gradient(135deg, #EFF6FF 0%, #E0E7FF 50%, #DBEAFE 100%); }
.section-dark { background: var(--text); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p, .section-dark li { color: rgba(255,255,255,0.7); }
.section-dark .section-label { background: rgba(37,99,235,0.2); }
.section-gradient { background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #1e1b4b 100%); color: #fff; position: relative; overflow: hidden; }
.section-gradient::before { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, rgba(37,99,235,0.1), transparent, rgba(124,58,237,0.08), transparent, rgba(245,158,11,0.06)); background-size: 400% 400%; animation: gradientShift 12s ease infinite; pointer-events: none; }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.section-gradient h2, .section-gradient h3 { color: #fff; }
.section-gradient p { color: rgba(255,255,255,0.75); }
.section-gradient .section-label { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 64px; padding: 0 24px; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 14px; background: var(--primary-light); padding: 7px 18px; border-radius: var(--radius-full); }
.section-label i { font-size: 13px; }
.section-head h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); letter-spacing: -1px; margin-bottom: 16px; }
.section-head p { color: var(--text-secondary); font-size: 16px; line-height: 1.75; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 24px; }
.svc-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px 24px; transition: all 0.4s var(--ease); position: relative; overflow: hidden; }
.svc-card:hover { border-color: var(--primary); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-card.featured { border-color: var(--primary); box-shadow: 0 8px 40px var(--primary-glow); }
.svc-featured-tag { position: absolute; top: 16px; right: 16px; background: var(--primary); color: #fff; font-size: 10px; font-weight: 700; padding: 5px 14px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.3px; display: flex; align-items: center; gap: 5px; }
.svc-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; background: var(--primary-light); color: var(--primary); }
.svc-card h3 { font-size: 15px; margin-bottom: 10px; font-weight: 700; }
.svc-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.svc-price small { font-size: 14px; color: var(--text-muted); font-weight: 400; }
.svc-desc { font-size: 13.5px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.svc-features { list-style: none; margin-bottom: 24px; }
.svc-features li { font-size: 13.5px; color: var(--text-secondary); padding: 6px 0; display: flex; align-items: center; gap: 10px; }
.svc-features li i { color: var(--green); font-size: 13px; }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 0 24px; }
.steps-image img { max-width: 480px; width: 100%; height: auto; object-fit: contain; border-radius: 24px; display: block; }
.steps-list { display: flex; flex-direction: column; gap: 24px; }
.step-item { display: flex; gap: 16px; padding: 20px; border-radius: var(--radius-lg); transition: all 0.3s var(--ease); cursor: default; }
.step-item:hover { background: var(--bg-accent); }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 800; color: var(--primary); flex-shrink: 0; }
.step-item:hover .step-num { background: var(--primary); color: #fff; }
.step-item h3 { font-size: 16px; margin-bottom: 4px; }
.step-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== COMPARISON ===== */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 0 24px; }
.compare-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px 32px; transition: all 0.4s var(--ease); }
.compare-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.compare-card h3 { font-size: 22px; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.compare-card h3 i { font-size: 24px; }
.compare-card p { font-size: 15px; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.8; }
.compare-card strong { color: var(--text); }
.compare-examples { background: var(--bg-soft); border-radius: var(--radius); padding: 24px; margin-top: 20px; }
.compare-examples h4 { font-size: 14px; margin-bottom: 12px; color: var(--primary); display: flex; align-items: center; gap: 8px; font-weight: 700; }
.compare-examples ul { list-style: none; }
.compare-examples li { font-size: 14px; color: var(--text-secondary); padding: 5px 0; display: flex; align-items: center; gap: 10px; }
.compare-examples li i { color: var(--primary); font-size: 6px; }

/* ===== TESTIMONIALS ===== */
.testimonials-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 0 24px; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; transition: all 0.4s var(--ease); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { color: var(--accent); font-size: 15px; margin-bottom: 16px; display: flex; gap: 3px; }
.review-text { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: var(--primary); }
.review-name { font-size: 14px; font-weight: 700; }
.review-detail { font-size: 12px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 22px 0; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text); transition: color 0.2s; }
.faq-q:hover { color: var(--primary); }
.faq-q i { font-size: 12px; color: var(--text-muted); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q i { transform: rotate(180deg); color: var(--primary); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-bottom: 20px; font-size: 14.5px; color: var(--text-secondary); line-height: 1.8; }

/* ===== LOOKUP ===== */
.lookup-wrap { max-width: 480px; margin: 0 auto; padding: 0 24px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-group label i { font-size: 15px; color: var(--primary); }
.form-input { width: 100%; padding: 14px 18px; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 14.5px; font-family: 'Inter', sans-serif; transition: all 0.2s; outline: none; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); background: #fff; }
.form-input::placeholder { color: var(--text-muted); }
.form-select { width: 100%; padding: 14px 18px; background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius); color: var(--text); font-size: 14.5px; font-family: 'Inter', sans-serif; outline: none; appearance: none; transition: all 0.2s; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23475569' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); }
.form-textarea { min-height: 120px; resize: vertical; line-height: 1.7; }
.upload-zone { border: 2px dashed var(--border); border-radius: var(--radius); padding: 40px; text-align: center; cursor: pointer; transition: all 0.2s; background: var(--bg-soft); }
.upload-zone:hover { border-color: var(--primary); background: var(--primary-light); }
.upload-zone i { font-size: 36px; color: var(--primary); margin-bottom: 12px; display: block; }

/* ===== ALERTS ===== */
.alert { display: flex; gap: 12px; padding: 16px 20px; border-radius: var(--radius); font-size: 14px; margin-bottom: 16px; align-items: flex-start; box-shadow: var(--shadow); }
.alert-success { background: #fff; border: 1px solid var(--green); color: var(--green); }
.alert-error { background: #fff; border: 1px solid var(--red); color: var(--red); }
.alert-info { background: #fff; border: 1px solid var(--primary); color: var(--primary); }

/* ===== BADGES ===== */
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-full); }
.badge-info { background: var(--primary-light); color: var(--primary); }
.badge-warn { background: var(--accent-light); color: var(--accent); }
.badge-ok { background: var(--green-light); color: var(--green); }
.badge-err { background: var(--red-light); color: var(--red); }

/* ===== DATA TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; padding: 12px 16px; font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid var(--border); background: var(--bg-soft); }
.data-table td { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--border); }
.data-table tr:hover td { background: var(--bg-accent); }

/* ===== SPINNER ===== */
.spinner { width: 48px; height: 48px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.7s linear infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ===== ADMIN ===== */
.admin-wrap { display: flex; min-height: 100vh; padding-top: 68px; }
.admin-side { width: 250px; background: var(--bg-soft); border-right: 1px solid var(--border); padding: 24px 14px; position: sticky; top: 68px; height: calc(100vh - 68px); overflow-y: auto; }
.admin-side a { display: flex; align-items: center; gap: 10px; padding: 11px 16px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: all 0.2s; margin-bottom: 3px; }
.admin-side a:hover { color: var(--primary); background: var(--primary-light); }
.admin-side a.active { color: var(--primary); background: var(--primary-light); font-weight: 700; }
.admin-body { flex: 1; padding: 28px; background: var(--bg); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.stat-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.stat-box .lbl { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.stat-box .val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 800; color: var(--primary); }

/* ===== SOCIAL PROOF BAR ===== */
.social-bar { padding: 20px 24px; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.social-items { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.social-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.social-item i { font-size: 18px; color: var(--primary); }
.social-item strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 800; color: var(--text); }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--primary), var(--purple)); padding: 80px 24px; text-align: center; }
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 460px; margin: 0 auto 36px; font-size: 16px; line-height: 1.7; }

/* ===== FOOTER ===== */
.foot { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 56px 24px 24px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.foot h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.foot p, .foot a { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
.foot a { display: block; padding: 4px 0; transition: color 0.2s; }
.foot a:hover { color: var(--primary); }
.foot-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.foot-bottom p { font-size: 12px; color: var(--text-muted); }
.foot-legal { font-size: 11px; color: var(--text-muted); max-width: 700px; margin: 14px auto 0; text-align: center; line-height: 1.6; }

/* ===== PAGE CONTENT ===== */
.page-content { padding-top: 90px; min-height: 100vh; }
.document-editor { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }

/* ===== SECTION IMAGES — rounded corners ===== */
.section img[loading="lazy"], .section-gradient img[loading="lazy"],
.security-grid img, .hero-image img, .steps-image img { border-radius: 24px; }

/* ===== LAZY IMAGES ===== */
img[loading="lazy"] { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero { padding: 140px 24px 80px; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .hero-text { max-width: 600px; margin: 0 auto; }
    .hero-actions { justify-content: center; }
    .hero-metrics { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-image { margin-top: 16px; }
    .hero-image img { max-width: 380px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 48px; }
    .steps-image { order: 2; text-align: center; }
    .steps-image img { max-width: 400px; margin: 0 auto; }
    .testimonials-row { grid-template-columns: 1fr 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .security-grid { grid-template-columns: 1fr !important; text-align: center; }
    .security-grid img { max-width: 380px !important; margin: 24px auto 0 !important; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero { padding: 120px 20px 64px; min-height: auto; }
    .hero h1 { font-size: 2.1rem; letter-spacing: -1px; margin-bottom: 20px; }
    .hero-sub { font-size: 15px; margin-bottom: 32px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-metrics { gap: 10px; margin-top: 16px; }
    .hero-metric { padding: 14px 10px; min-width: 0; }
    .hero-metric-val { font-size: 18px; }
    .hero-metric-label { font-size: 11px; }
    .hero-trust { gap: 16px; }
    .hero-image img { max-width: 320px; margin: 0 auto; }
    .steps-image img { max-width: 320px !important; margin: 0 auto; }
    .section { padding: 72px 0; }
    .section-head { margin-bottom: 44px; }
    .section-head h2 { font-size: 1.6rem; }
    .services-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; padding: 0 16px; }
    .compare-grid { grid-template-columns: 1fr; padding: 0 16px; }
    .compare-card { padding: 28px 22px; }
    .testimonials-row { grid-template-columns: 1fr; padding: 0 16px; }
    .social-items { gap: 16px; }
    .social-item { font-size: 12px; gap: 6px; }
    .social-item strong { font-size: 15px; }
    .social-item i { font-size: 15px; }
    .foot-grid { grid-template-columns: 1fr; gap: 24px; }
    .foot-bottom { flex-direction: column; text-align: center; }
    .admin-side { display: none; }
    .admin-body { padding: 16px; }
    .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-box .val { font-size: 24px; }
    .container { padding: 0 16px; }
    .cta-section { padding: 64px 20px; }
    .faq-list { padding: 0 16px; }
    .lookup-wrap { padding: 0 16px; }
    .steps-grid { padding: 0 16px; }
    .page-content { padding-top: 80px; }
    .page-content .card { padding: 24px 18px; }
    .page-content [style*="grid-template-columns: 1fr 1fr"],
    .page-content [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
    .section-gradient [style*="grid-template-columns: 1fr 1fr"],
    .section-gradient [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 24px !important; text-align: center; }
    .section-gradient [style*="grid-template-columns"] img { max-width: 320px !important; margin: 0 auto !important; display: block; }
    .section [style*="grid-template-columns: 1fr 1fr"],
    .section [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 24px !important; }
    .section [style*="grid-template-columns"] img { max-width: 320px !important; margin: 0 auto !important; display: block; }
}
@media (max-width: 480px) {
    .hero { padding: 110px 16px 56px; }
    .hero h1 { font-size: 1.75rem; letter-spacing: -0.5px; margin-bottom: 16px; }
    .hero-tag { font-size: 11px; padding: 8px 14px; margin-bottom: 24px; }
    .hero-sub { font-size: 14px; margin-bottom: 28px; line-height: 1.7; }
    .hero-metrics { flex-direction: row; flex-wrap: wrap; }
    .hero-metric { flex: 1 1 45%; }
    .hero-trust { flex-direction: column; gap: 10px; align-items: center; }
    .svc-price { font-size: 26px; }
    .stats-row { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .section-head { margin-bottom: 36px; }
    .section-head h2 { font-size: 1.45rem; }
    .hero-image img { max-width: 280px !important; }
    .steps-image img { max-width: 280px !important; }
    .section-gradient [style*="grid-template-columns"] img { max-width: 280px !important; }
    .section [style*="grid-template-columns"] img { max-width: 280px !important; }
}

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
    background: var(--card); border-radius: 16px; overflow: hidden; text-decoration: none;
    border: 1px solid var(--border); transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    display: flex; flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-light);
}
.blog-card-img { height: 200px; overflow: hidden; position: relative; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-placeholder {
    width: 100%; height: 100%; background: linear-gradient(135deg, #ede9fe, #dbeafe);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--primary); opacity: 0.4;
}
.blog-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; flex-wrap: wrap; }
.blog-card-cat {
    background: var(--primary-light); color: var(--primary); padding: 3px 10px;
    border-radius: 12px; font-weight: 600; font-size: 11px;
}
.blog-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700;
    color: var(--text); line-height: 1.3; margin-bottom: 8px;
}
.blog-card-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.5; flex: 1; }
.blog-card-cta {
    display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
    color: var(--primary); margin-top: 14px; transition: gap 0.3s;
}
.blog-card:hover .blog-card-cta { gap: 10px; }

.blog-cat-pill {
    padding: 8px 18px; border-radius: 20px; font-size: 13px; font-weight: 600;
    text-decoration: none; color: var(--text-secondary); background: var(--card);
    border: 1px solid var(--border); transition: all 0.2s;
}
.blog-cat-pill:hover { border-color: var(--primary); color: var(--primary); }
.blog-cat-pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Blog Post Hero */
.blog-post-hero {
    position: relative; padding: 160px 0 60px; min-height: 380px;
    display: flex; align-items: flex-end;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}
.blog-post-hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0.25;
}
.blog-post-hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(30,27,75,0.95) 0%, rgba(30,27,75,0.4) 100%);
}

/* Blog Content */
.blog-content { font-size: 16px; line-height: 1.8; color: var(--text); }
.blog-content h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 700; margin: 36px 0 14px; color: var(--text); }
.blog-content h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 21px; font-weight: 600; margin: 28px 0 12px; color: var(--text); }
.blog-content h4 { font-size: 18px; font-weight: 600; margin: 24px 0 10px; color: var(--text); }
.blog-content p { margin-bottom: 16px; }
.blog-content ul, .blog-content ol { padding-left: 24px; margin-bottom: 16px; }
.blog-content li { margin-bottom: 6px; }
.blog-content blockquote { border-left: 4px solid var(--primary); padding: 12px 20px; background: var(--bg-accent); border-radius: 0 10px 10px 0; margin: 20px 0; font-style: italic; color: var(--text-secondary); }
.blog-content img { max-width: 100%; border-radius: 12px; margin: 20px 0; }
.blog-content a { color: var(--primary); text-decoration: underline; }
.blog-content pre { background: #1e293b; color: #e2e8f0; padding: 16px 20px; border-radius: 10px; overflow-x: auto; margin: 16px 0; font-size: 14px; }
.blog-content code { background: var(--bg-muted); padding: 2px 6px; border-radius: 4px; font-size: 14px; }
.blog-content pre code { background: none; padding: 0; }

/* Blog Sidebar */
.blog-sidebar {}
@media (max-width: 768px) {
    #blog-layout { grid-template-columns: 1fr !important; }
    .blog-sidebar { display: none; }
}

/* Admin blog badges */
.badge { display: inline-flex; padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.badge-success { background: #dcfce7; color: #15803d; }
.badge-warning { background: #fef9c3; color: #a16207; }
.badge-info { background: var(--primary-light); color: var(--primary); }

/* ===== VIDEO TESTIMONIALS SLIDER ===== */
.videos-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 10px 20px;
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #f1f5f9;
    -webkit-overflow-scrolling: touch;
}
.videos-slider::-webkit-scrollbar {
    height: 8px;
}
.videos-slider::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}
.videos-slider::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 10px;
}
.video-testimonial-item {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 248px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    transition: transform 0.3s ease;
}
.video-testimonial-item:hover {
    transform: translateY(-5px);
}
.video-phone-frame {
    position: relative;
    width: 248px;
    height: 440px;
    border-radius: 20px;
    border: 6px solid #0f172a;
    background: #000;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 18px;
    background: #0f172a;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 10;
}
.video-phone-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Legal table rows */
.legal-table-row {
    transition: background-color 0.2s ease;
}
.legal-table-row:hover {
    background-color: #f1f5f9 !important;
}
@media (max-width: 640px) {
    .legal-table-row {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }
}

