/* TFixer Tool — light/cyan public-site theme (ported from legacy index.php). */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --secondary: #f97316;
  --accent: #10b981;
  --dark: #1e293b;
  --light: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --bg-soft: #f8fafc;
  --radius: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: #ffffff;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { text-decoration: none; color: var(--primary); }

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

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.site-header nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 44px; width: auto; }
.logo-text {
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #10b981 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 0.95rem; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-buttons { display: flex; gap: 12px; }
.btn-header {
  padding: 10px 22px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px; transition: all .2s; border: 2px solid transparent;
}
.btn-header-outline { color: var(--primary); border-color: var(--primary); background: transparent; }
.btn-header-outline:hover { background: var(--primary); color: #fff; }
.btn-header-fill { background: var(--primary); color: #fff; }
.btn-header-fill:hover { background: var(--primary-dark); color: #fff; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; width: 44px; height: 44px; }
.menu-toggle span { width: 25px; height: 3px; background: var(--dark); border-radius: 3px; }

/* ===== Buttons ===== */
.btn {
  min-height: 50px; padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 0.98rem; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary, .btn-gold { background: var(--primary); color: #fff; box-shadow: 0 14px 30px rgba(14,165,233,.22); }
.btn-primary:hover, .btn-gold:hover { background: var(--primary-dark); color: #fff; }
.btn-outline { color: var(--primary); background: #fff; border-color: rgba(14,165,233,.35); }
.btn-outline:hover { border-color: var(--primary); box-shadow: 0 12px 28px rgba(14,165,233,.12); }
.btn-danger { color: #ef4444; border-color: #ef4444; background:#fff; }
.btn-sm { min-height: 0; padding: 8px 16px; font-size: .85rem; }

/* ===== Hero ===== */
.hero {
  min-height: calc(100vh - 72px);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 20px; text-align: center;
  background: var(--bg-soft);
  background-image:
    radial-gradient(at 0% 0%, rgba(14,165,233,.06) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(249,115,22,.06) 0px, transparent 50%);
}
.hero-content { max-width: 900px; width: 100%; }
.hero-logo {
  width: 200px; height: auto; margin-bottom: 30px;
  animation: logoFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(14,165,233,.2));
}
@keyframes logoFloat { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-15px);} }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; margin: 0 0 20px; min-height: 1.1em; line-height: 1.1; }
.typing-text {
  display: inline-block; border-right: 3px solid var(--primary); white-space: nowrap;
  animation: blink .75s step-end infinite;
}
.gradient-text {
  background: linear-gradient(90deg, #0ea5e9, #f97316, #10b981, #8b5cf6, #0ea5e9);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: gradientMove 4s ease infinite;
}
@keyframes gradientMove { 0%{background-position:0% 50%;} 50%{background-position:100% 50%;} 100%{background-position:0% 50%;} }
@keyframes blink { 50% { border-color: transparent; } }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.35rem); color: var(--text-muted); margin: 0 auto 40px; max-width: 620px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ===== Sections / feature cards ===== */
.section { padding: 70px 0; }
.section-title { text-align: center; font-size: clamp(1.8rem,4vw,2.5rem); font-weight: 800; margin: 0 0 12px; }
.section-sub { text-align: center; color: var(--text-muted); max-width: 640px; margin: 0 auto 44px; }

.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: 0 4px 20px rgba(15,23,42,.04); }
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 900px){ .grid-3,.grid-4 { grid-template-columns: 1fr; } }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(16,185,129,.12)); color: var(--primary); margin-bottom: 16px; }
.feature-icon svg { width: 28px; height: 28px; }

/* ===== Page head + CMS content ===== */
.page-head { margin: 40px 0 22px; }
.page-head h1 { font-size: 2.2rem; margin: 0 0 6px; }
.page-head .sub { color: var(--text-muted); font-size: 1.05rem; }
.cms-body { color: var(--text-main); line-height: 1.8; }
.cms-body h2 { color: var(--primary); font-size: 1.4rem; margin: 26px 0 10px; }
.cms-body h3 { font-size: 1.15rem; margin: 20px 0 8px; }
.cms-body p { margin: 0 0 14px; color: #475569; }
.cms-body ul, .cms-body ol { margin: 0 0 14px; padding-left: 22px; color:#475569; }
.cms-body li { margin: 6px 0; }
.cms-body a { color: var(--primary); }
.cms-body strong { color: var(--text-main); }
.cms-body .muted { color: var(--text-muted); font-size: .85rem; }

/* ===== Pricing ===== */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; text-align: center; box-shadow: 0 4px 20px rgba(15,23,42,.04); }
.price-card.featured { border-color: var(--primary); box-shadow: 0 12px 34px rgba(14,165,233,.16); }
.price-card .plan { font-size: .9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.price-card .amount { font-size: 2.4rem; font-weight: 800; color: var(--primary); margin: 10px 0 4px; }
.price-card .meta { color: var(--text-muted); margin: 0 0 18px; }

/* ===== Badges / alerts / forms / tables ===== */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: .78rem; font-weight: 700; }
.badge-green, .badge-gold { background: rgba(14,165,233,.12); color: var(--primary); }
.badge-red { background: rgba(239,68,68,.12); color:#ef4444; }
.alert { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; border: 1px solid; }
.alert-success { border-color: var(--accent); color: #047857; background: rgba(16,185,129,.08); }
.alert-error { border-color: #ef4444; color:#b91c1c; background: rgba(239,68,68,.08); }
label { display:block; margin: 14px 0 6px; font-weight: 600; font-size: .9rem; color: #334155; }
input, textarea, select { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font-family: var(--font); font-size: .95rem; background:#fff; color: var(--text-main); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,.12); }
textarea { min-height: 140px; resize: vertical; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 12px; border-bottom: 1px solid var(--border); font-size: .92rem; }
th { color: var(--text-muted); text-transform: uppercase; font-size: .75rem; letter-spacing: .04em; }

/* device model cards */
.brand-tabs { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:22px; }
.model-card { background:#fff; }
.stat .num { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat .label { color: var(--text-muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }

/* ===== Feature cards ===== */
.feature-card { transition: transform .2s, box-shadow .2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(14,165,233,.12); }
.feature-list { list-style: none; padding: 0; margin: 6px 0 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; color: #475569; font-size: .92rem; }
.feature-list li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ===== Brands grid ===== */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap: 14px; max-width: 900px; margin: 0 auto; }
.brand-card { background:#fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px; text-align:center; font-weight: 700; color: var(--dark); box-shadow: 0 4px 16px rgba(15,23,42,.04); }
.brand-card:hover { border-color: var(--primary); color: var(--primary); }

/* ===== CTA box ===== */
.cta-box { background: linear-gradient(135deg, rgba(14,165,233,.08), rgba(16,185,129,.08)); border: 1px solid var(--border); border-radius: 20px; padding: 48px 24px; text-align:center; margin: 20px 0 40px; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); background: var(--bg-soft); color: var(--text-muted); padding: 40px 0; margin-top: 60px; font-size: .92rem; }
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--primary); }

/* ===== WhatsApp float ===== */
.wa-float { position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(37,211,102,.4); z-index: 900; }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float:hover { transform: scale(1.06); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 20px 24px; border-bottom: 1px solid var(--border); gap: 16px; }
  .nav-links.open .nav-buttons { flex-direction: column; width: 100%; }
  .menu-toggle { display: flex; }
}

/* Breadcrumbs (SEO component) */
.breadcrumbs { margin: 18px 0; font-size: 14px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; padding: 0; margin: 0; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumbs a { color: var(--primary); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { color: var(--text-muted); }
.breadcrumbs [aria-current="page"] { color: var(--text-muted); }

/* Blog */
.blog-cats { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 26px; }
.blog-cats .chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--border); background: var(--card); color: var(--text-main); font-size: 14px; font-weight: 500; }
.blog-cats .chip:hover { border-color: var(--primary); }
.blog-cats .chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.blog-cats .chip span { font-size: 12px; opacity: .7; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .15s ease, box-shadow .15s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(15,23,42,.1); }
.blog-thumb { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-soft); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-thumb-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 46px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.blog-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-badge { align-self: flex-start; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--primary-dark); background: rgba(14,165,233,.1); padding: 4px 10px; border-radius: 999px; }
.blog-card-body h2 { font-size: 19px; line-height: 1.35; margin: 0; }
.blog-card-body h2 a { color: var(--text-main); }
.blog-card-body h2 a:hover { color: var(--primary); }
.blog-card-body p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin: 0; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; font-size: 13px; color: var(--text-muted); }
.blog-meta .read-more { color: var(--primary); font-weight: 600; }
.blog-post { max-width: 820px; margin: 0 auto; }
.blog-post-head h1 { font-size: clamp(28px, 5vw, 40px); line-height: 1.15; margin: 12px 0 10px; }
.blog-lead { font-size: 18px; color: var(--text-muted); line-height: 1.6; }
.blog-cover { width: 100%; border-radius: var(--radius); margin: 18px 0 24px; }
.blog-related { max-width: 1100px; margin: 48px auto 0; }
.blog-related h2 { font-size: 22px; margin-bottom: 18px; }

/* ===== Marketing redesign additions ===== */
:root {
  --text-secondary: #64748b;
  --gold: #0ea5e9;
  --muted: #94a3b8;
  --shadow-sm: 0 4px 16px rgba(15,23,42,.06);
  --shadow-md: 0 12px 32px rgba(14,165,233,.12);
  --shadow-lg: 0 24px 48px rgba(15,23,42,.12);
}

html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

/* Trust chips under hero */
.trust-row { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin:28px 0 0; }
.trust-chip {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 14px; border-radius:999px; font-size:.85rem; font-weight:600;
  background:#fff; border:1px solid var(--border); color:var(--text-muted);
  box-shadow: var(--shadow-sm);
}
.trust-chip svg { color: var(--accent); flex-shrink:0; }

/* Stats bar */
.stats-bar {
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
  margin:-40px auto 0; max-width:1000px; position:relative; z-index:2;
  padding:0 24px;
}
.stat-card {
  background:#fff; border:1px solid var(--border); border-radius:16px;
  padding:22px 16px; text-align:center; box-shadow:var(--shadow-md);
}
.stat-card .num { font-size:1.85rem; font-weight:800; color:var(--primary); line-height:1.1; }
.stat-card .label { color:var(--text-muted); font-size:.82rem; margin-top:6px; text-transform:uppercase; letter-spacing:.04em; font-weight:600; }

/* Screenshot slider */
.slider-section { padding:60px 0 40px; background:var(--bg-soft); }
.slider-shell { max-width:1100px; margin:0 auto; position:relative; }
.slider-viewport {
  overflow:hidden; border-radius:20px; border:1px solid var(--border);
  background:#0f172a; box-shadow:var(--shadow-lg); aspect-ratio:16/9;
}
.slider-track { display:flex; transition:transform .45s ease; height:100%; }
.slider-slide { min-width:100%; position:relative; }
.slider-slide img { width:100%; height:100%; object-fit:cover; display:block; }
.slider-caption {
  position:absolute; left:0; right:0; bottom:0; padding:28px 24px 20px;
  background:linear-gradient(transparent, rgba(15,23,42,.88)); color:#fff;
}
.slider-caption h3 { margin:0 0 4px; font-size:1.15rem; }
.slider-caption p { margin:0; font-size:.9rem; opacity:.9; }
.slider-nav {
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:50%; border:0; cursor:pointer;
  background:rgba(255,255,255,.95); color:var(--dark); box-shadow:var(--shadow-sm);
  display:flex; align-items:center; justify-content:center; z-index:3;
  transition:background .2s, transform .2s;
}
.slider-nav:hover { background:#fff; transform:translateY(-50%) scale(1.05); }
.slider-nav.prev { left:12px; }
.slider-nav.next { right:12px; }
.slider-dots { display:flex; justify-content:center; gap:8px; margin-top:16px; flex-wrap:wrap; }
.slider-dot {
  width:10px; height:10px; border-radius:50%; border:0; padding:0; cursor:pointer;
  background:#cbd5e1; transition:background .2s, transform .2s;
}
.slider-dot.active { background:var(--primary); transform:scale(1.2); }

/* How it works */
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.step-card {
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  padding:26px 20px; text-align:center; position:relative; box-shadow:var(--shadow-sm);
  transition:transform .2s, box-shadow .2s;
}
.step-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.step-num {
  width:40px; height:40px; border-radius:12px; margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, rgba(14,165,233,.15), rgba(16,185,129,.15));
  color:var(--primary); font-weight:800; font-size:1rem;
}
.step-card h3 { margin:0 0 8px; font-size:1.05rem; }
.step-card p { margin:0; color:var(--text-muted); font-size:.92rem; }

/* FAQ accordion */
.faq-list { max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item {
  background:#fff; border:1px solid var(--border); border-radius:14px; overflow:hidden;
  box-shadow:var(--shadow-sm);
}
.faq-item summary {
  list-style:none; cursor:pointer; padding:18px 20px; font-weight:700;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  color:var(--dark);
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after {
  content:'+'; font-size:1.4rem; color:var(--primary); font-weight:400; line-height:1;
}
.faq-item[open] summary::after { content:'-'; }
.faq-item .faq-body {
  padding:0 20px 18px; color:var(--text-muted); line-height:1.7; border-top:1px solid var(--border);
  margin-top:0; padding-top:14px;
}

/* Testimonials */
.testi-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; }
.testi-card {
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  padding:24px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; gap:12px;
}
.testi-stars { color:#f59e0b; letter-spacing:2px; font-size:.95rem; }
.testi-card blockquote { margin:0; color:#475569; font-size:.95rem; line-height:1.65; flex:1; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800;
}
.testi-author strong { display:block; font-size:.95rem; }
.testi-author span { color:var(--text-muted); font-size:.82rem; }

/* Multi-column footer */
.footer { padding:0; margin-top:80px; }
.footer-grid {
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px;
  padding:56px 0 40px;
}
.footer-brand img { height:48px; width:auto; margin-bottom:14px; }
.footer-brand p { color:var(--text-muted); font-size:.9rem; line-height:1.65; margin:0 0 16px; max-width:320px; }
.social-links { display:flex; flex-wrap:wrap; gap:10px; }
.social-links a {
  width:38px; height:38px; border-radius:10px; border:1px solid var(--border);
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--text-muted); background:#fff; transition:all .2s;
}
.social-links a:hover { color:var(--primary); border-color:var(--primary); transform:translateY(-2px); }
.footer-col h4 {
  margin:0 0 14px; font-size:.85rem; text-transform:uppercase; letter-spacing:.06em;
  color:var(--dark); font-weight:800;
}
.footer-col a {
  display:block; color:var(--text-muted); padding:5px 0; font-size:.92rem; transition:color .15s;
}
.footer-col a:hover { color:var(--primary); }
.footer-bottom {
  border-top:1px solid var(--border); padding:18px 0; text-align:center;
  font-size:.85rem; color:var(--text-muted);
}

/* Cookie banner */
.cookie-banner {
  position:fixed; left:16px; right:16px; bottom:16px; z-index:950;
  max-width:720px; margin:0 auto; padding:16px 18px;
  background:#0f172a; color:#e2e8f0; border-radius:16px;
  box-shadow:0 16px 40px rgba(0,0,0,.28);
  display:none; align-items:center; gap:16px; flex-wrap:wrap;
}
.cookie-banner.show { display:flex; }
.cookie-banner p { margin:0; flex:1; font-size:.9rem; line-height:1.5; min-width:200px; }
.cookie-banner a { color:#38bdf8; text-decoration:underline; }
.cookie-banner .btn { min-height:0; padding:10px 18px; font-size:.88rem; }

/* Back to top */
.back-top {
  position:fixed; right:22px; bottom:90px; width:46px; height:46px; border-radius:50%;
  border:1px solid var(--border); background:#fff; color:var(--primary);
  box-shadow:var(--shadow-sm); cursor:pointer; z-index:890;
  display:none; align-items:center; justify-content:center;
  transition:transform .2s, opacity .2s;
}
.back-top.show { display:flex; }
.back-top:hover { transform:translateY(-3px); }

/* Site announcement banner */
.site-banner {
  background:linear-gradient(90deg, #0ea5e9, #10b981); color:#fff;
  text-align:center; padding:10px 16px; font-size:.9rem; font-weight:600;
}
.site-banner a { color:#fff; text-decoration:underline; }

/* Auth forms polish */
.auth-wrap { max-width:440px; margin:48px auto; }
.auth-card { padding:32px 28px; }
.auth-card h1 { font-size:1.45rem; margin:0 0 6px; text-align:center; }
.auth-sub { text-align:center; color:var(--text-muted); margin:0 0 22px; font-size:.92rem; }
.auth-links { text-align:center; color:var(--text-muted); margin-top:18px; font-size:.92rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-hint { font-size:.8rem; color:var(--text-muted); margin-top:4px; }

/* Contact / two-col responsive */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.contact-info-list { list-style:none; padding:0; margin:16px 0 0; }
.contact-info-list li { display:flex; gap:12px; padding:10px 0; border-bottom:1px solid var(--border); color:#475569; }
.contact-info-list li:last-child { border-bottom:0; }
.contact-info-list strong { display:block; color:var(--dark); font-size:.88rem; }

/* Reseller cards */
.reseller-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:20px; }
.reseller-card { text-align:center; }
.reseller-card .avatar {
  width:72px; height:72px; border-radius:50%; margin:0 auto 12px;
  background:linear-gradient(135deg, rgba(14,165,233,.2), rgba(16,185,129,.2));
  display:flex; align-items:center; justify-content:center; font-weight:800; font-size:1.4rem; color:var(--primary);
}
.reseller-card img.avatar { object-fit:cover; padding:0; }
.reseller-links { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-top:14px; }

/* Status page */
.status-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:16px; }
.status-ok { color:#047857; }
.status-bad { color:#b91c1c; }
.pulse-dot {
  width:10px; height:10px; border-radius:50%; background:var(--accent);
  display:inline-block; box-shadow:0 0 0 0 rgba(16,185,129,.5);
  animation:pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow:0 0 0 0 rgba(16,185,129,.45); }
  70% { box-shadow:0 0 0 10px rgba(16,185,129,0); }
  100% { box-shadow:0 0 0 0 rgba(16,185,129,0); }
}

/* Pricing polish */
.price-card.featured { position:relative; }
.price-card .ribbon {
  position:absolute; top:14px; right:14px; background:var(--primary); color:#fff;
  font-size:.72rem; font-weight:700; padding:4px 10px; border-radius:999px; text-transform:uppercase;
}
.price-features { list-style:none; padding:0; margin:0 0 18px; text-align:left; }
.price-features li {
  display:flex; gap:8px; padding:6px 0; font-size:.9rem; color:#475569;
  border-bottom:1px solid rgba(226,232,240,.7);
}
.price-features li:last-child { border-bottom:0; }

/* Hero enhancements */
.hero { position:relative; overflow:hidden; }
.hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(14,165,233,.1), transparent 45%),
    radial-gradient(ellipse at 80% 80%, rgba(16,185,129,.08), transparent 40%);
}
.hero-content { position:relative; z-index:1; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 14px; border-radius:999px; margin-bottom:18px;
  background:rgba(14,165,233,.1); color:var(--primary-dark);
  font-size:.82rem; font-weight:700; border:1px solid rgba(14,165,233,.2);
}

/* Nav active fix for named routes */
.nav-links a.active { color:var(--primary); font-weight:600; }

/* Section alt */
.section-alt { background:var(--bg-soft); }

/* Mobile */
@media (max-width: 960px) {
  .stats-bar { grid-template-columns:repeat(2,1fr); margin-top:-24px; }
  .steps { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
  .contact-grid, .form-row { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .stats-bar { grid-template-columns:1fr 1fr; }
  .steps { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .slider-nav { width:36px; height:36px; }
  .cookie-banner { flex-direction:column; align-items:stretch; text-align:center; }
  .back-top { bottom:80px; right:16px; }
  .wa-float { right:16px; bottom:16px; width:52px; height:52px; }
}
