/* ============================================
   FOCUS ON WEB — Redesign Design System
   ============================================ */

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

:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --card: #16161f;
  --border: rgba(255,255,255,0.07);
  --accent: #f4495a;
  --accent2: #b4232c;
  --text: #e8e8f0;
  --muted: #7a7a9a;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ─── NAV ─── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 4rem;
  border-bottom: 1px solid var(--border);
}
/* Blur lives on its own pseudo-element layer, not on nav.site-nav itself —
   backdrop-filter/filter/transform on an element makes it the containing
   block for any position:fixed descendants, which was trapping the mobile
   .nav-links panel inside the nav bar's own (tiny) height instead of the
   full viewport. */
nav.site-nav::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,10,15,0.9);
  backdrop-filter: blur(14px);
  z-index: -1;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.logo img { display: block; height: 60px; width: auto; }

.nav-right { display: flex; align-items: center; gap: 1.8rem; }

.nav-links {
  display: flex; align-items: center; gap: 2.2rem; list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.6rem;
}
.nav-links > li > a:hover, .nav-links > li.active > a { color: var(--white); }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  font-weight: 500 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; color: var(--white) !important; }

/* Header quick-access icons (account, cart, support) */
.nav-icons { display: flex; align-items: center; gap: 0.5rem; }
.nav-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  color: var(--muted); border: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-icon svg { width: 17px; height: 17px; }
.nav-icon:hover { color: var(--white); border-color: var(--accent); background: rgba(244,73,90,0.12); }

/* Dropdown */
.has-dropdown { padding-bottom: 14px; margin-bottom: -14px; }
.has-dropdown .caret { font-size: 0.65rem; transition: transform 0.2s; }
.has-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% - 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.6rem;
  min-width: 240px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px); }
.dropdown a {
  display: block; padding: 0.6rem 0.8rem; border-radius: 8px;
  color: var(--text); text-decoration: none; font-size: 0.88rem;
  transition: background 0.15s;
}
.dropdown a:hover { background: rgba(244,73,90,0.12); color: var(--white); }

.mobile-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ─── HERO (home) ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background-image: url('../images/hero-bg.webp');
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(10,10,15,0.55) 0%, rgba(10,10,15,0.72) 60%, rgba(10,10,15,0.88) 100%),
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(91,110,245,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(167,139,250,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 20% 70%, rgba(91,110,245,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; animation: float 8s ease-in-out infinite; }
.orb1 { width: 400px; height: 400px; background: rgba(91,110,245,0.12); top: -100px; left: -100px; }
.orb2 { width: 300px; height: 300px; background: rgba(167,139,250,0.1); bottom: 0; right: -80px; animation-delay: 3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(244,73,90,0.15);
  border: 1px solid rgba(244,73,90,0.3);
  color: var(--accent2);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}
.hero .hero-badge { background: rgba(91,110,245,0.15); border-color: rgba(91,110,245,0.3); color: #c4b5fd; }
.hero .badge-dot { background: #a78bfa; }
.badge-dot { width: 6px; height: 6px; background: var(--accent2); border-radius: 50%; }

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -2px;
  color: var(--white); margin-bottom: 1.5rem; max-width: 860px;
  animation: fadeUp 0.8s ease 0.1s both;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #5b6ef5, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
  font-size: 1.15rem; font-weight: 300; color: var(--muted);
  max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.75;
  animation: fadeUp 0.8s ease 0.2s both;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.3s both; }

.btn-primary {
  background: var(--accent); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 10px;
  font-size: 0.95rem; font-weight: 500; text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(244,73,90,0.35);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(244,73,90,0.5); }

.btn-secondary {
  background: transparent; color: var(--text);
  padding: 0.85rem 2rem; border-radius: 10px;
  font-size: 0.95rem; font-weight: 500; text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

/* Stats strip */
.stats {
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin: 4rem 4rem 0;
}
.stat h3 { font-family: 'Inter', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--white); letter-spacing: -1px; }
.stat p { color: var(--muted); font-size: 0.88rem; margin-top: 0.25rem; }
.stat h3 span { color: var(--accent); }

/* ─── SUB-HERO (interior pages) ─── */
.sub-hero {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 11rem 2rem 5rem;
  background: radial-gradient(circle at top right, rgba(244,73,90,0.14), transparent 60%);
  text-align: center;
}
.breadcrumbs { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.2rem; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--white); }
.sub-hero h1 { font-family: 'Inter', sans-serif; font-size: clamp(2.3rem, 5vw, 3.6rem); color: var(--white); margin-bottom: 1.2rem; letter-spacing: -1px; }
.sub-hero p { max-width: 700px; margin: 0 auto 2rem; color: var(--muted); font-size: 1.1rem; }

/* ─── SECTION COMMONS ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
section { padding: 6rem 4rem; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 6rem 0; }

.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -1px; color: var(--white); line-height: 1.15; margin-bottom: 1rem;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; line-height: 1.7; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ─── CARDS / GRID ─── use .cols-3 for card counts divisible by 3, .cols-4 for counts divisible by 4 */
.services-header { margin-bottom: 3.5rem; }
.services-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.services-grid.cols-3 .service-card { flex: 0 1 320px; }
.services-grid.cols-4 .service-card { flex: 0 1 270px; }

.service-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden; min-width: 0;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(244,73,90,0.25); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }

.service-card h3 { font-family: 'Inter', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.service-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem; color: var(--accent);
  font-size: 0.88rem; font-weight: 500; text-decoration: none; margin-top: 1.2rem; transition: gap 0.2s;
}
.service-link:hover { gap: 0.7rem; }

.product-badge {
  display: inline-block; background: rgba(244,73,90,0.12); color: var(--accent);
  font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: 100px;
  margin-bottom: 0.9rem; letter-spacing: 0.02em;
}

.product-spotlight {
  background: var(--card); border: 1px solid var(--border); border-radius: 20px;
  padding: 2.75rem; display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center;
  max-width: 980px; margin: 0 auto;
}
.product-spotlight-intro h3 { font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin: 0 0 0.75rem; }
.product-spotlight-intro p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.2rem; }
.product-spotlight-features { list-style: none; margin: 0; padding-left: 2.5rem; border-left: 1px solid var(--border); }
.product-spotlight-features li { display: flex; align-items: center; gap: 0.6rem; color: var(--text); font-size: 0.92rem; padding: 0.55rem 0; }

@media (max-width: 860px) {
  .product-spotlight { grid-template-columns: 1fr; padding: 2rem; }
  .product-spotlight-features { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 1.2rem; }
}

/* Feature items (used on hosting sub-pages) — use .cols-3 for item counts divisible by 3, .cols-4 for counts divisible by 4 */
.features-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.features-grid.cols-3 .feature-item { flex: 0 1 320px; }
.features-grid.cols-4 .feature-item { flex: 0 1 240px; }
/* .success-panel caps at 640px regardless of viewport, so the desktop 240px
   card width leaves only 2 per row with dead centered space either side —
   stretch to fill instead, at any viewport. */
.success-panel .features-grid.cols-4 .feature-item { flex: 1 1 calc(50% - 0.75rem); max-width: calc(50% - 0.75rem); }
.feature-item { padding: 2rem; background: var(--card); border: 1px solid var(--border); border-radius: 16px; min-width: 0; }
.feature-item h3 { color: var(--white); margin-bottom: 0.75rem; font-family: 'Inter', sans-serif; font-size: 1.1rem; display: flex; align-items: center; gap: 0.6rem; min-width: 0; overflow-wrap: break-word; }
.feature-item p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; overflow-wrap: break-word; }

/* ─── PROCESS ─── */
.process-section { background: var(--surface); padding: 6rem 0; }
.process-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3.5rem; }
.step { position: relative; min-width: 0; }
.step-num { font-family: 'Inter', sans-serif; font-size: 3.5rem; font-weight: 800; color: rgba(244,73,90,0.12); line-height: 1; margin-bottom: 1rem; }
.step h4 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* ─── PLANS / PRICING ─── */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.plan-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem 2rem;
  transition: transform 0.3s, box-shadow 0.3s; position: relative; display: flex; flex-direction: column; min-width: 0;
}
.plan-card.featured { border-color: rgba(244,73,90,0.4); background: linear-gradient(145deg, #1a1a2e, #16161f); }
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white); font-size: 0.75rem; font-weight: 600;
  padding: 0.3rem 1rem; border-radius: 100px; white-space: nowrap;
}
.plan-name { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.plan-price { font-family: 'Inter', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 0.25rem; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.plan-desc { color: var(--muted); font-size: 0.88rem; margin-bottom: 1.5rem; }
.plan-features { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.plan-features li { display: flex; align-items: center; gap: 0.6rem; color: var(--text); font-size: 0.9rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li.no { color: var(--muted); }
.plan-features li.no .check { color: var(--muted); }
.check { color: var(--accent); font-size: 0.9rem; }
.plan-btn { display: block; text-align: center; padding: 0.8rem; border-radius: 10px; font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: 0.2s; }
.plan-btn.outline { border: 1px solid var(--border); color: var(--text); }
.plan-btn.outline:hover { border-color: var(--accent); color: var(--accent); }
.plan-btn.filled { background: var(--accent); color: var(--white); }
.plan-btn.filled:hover { opacity: 0.85; }
.plan-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 2rem; }

/* ─── COMPARISON TABLE ─── */
.comparison-section { background: var(--surface); border-radius: 24px; padding: 3rem 2rem; border: 1px solid var(--border); margin-top: 3rem; }
.table-wrapper { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 700px; }
th { padding: 1.5rem 1rem; text-align: center; color: var(--white); font-size: 1.05rem; border-bottom: 1px solid var(--border); font-family: 'Inter', sans-serif; }
td { padding: 1.2rem 1rem; text-align: center; color: var(--text); border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.feature-name, th.feature-name { text-align: left; color: var(--muted); font-weight: 500; }
.check-icon { color: var(--success); font-weight: bold; }
.highlight-col { background: rgba(244,73,90,0.05); }
th.highlight-col, td.highlight-col { border-left: 1px solid var(--border); border-right: 1px solid var(--border); }

/* Plain price table (domain pricing etc.) */
.price-table-wrap { overflow-x: auto; background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 0.5rem; margin-top: 2rem; }
.price-table-wrap table { min-width: 600px; }
.price-table-wrap td, .price-table-wrap th { border-color: var(--border); }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.testimonial { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; min-width: 0; }
.stars { color: var(--warning); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 0.85rem; color: var(--white); flex-shrink: 0;
}
.testi-info strong { display: block; color: var(--white); font-size: 0.9rem; }
.testi-info span { color: var(--muted); font-size: 0.82rem; }

/* ─── ARTICLES / BLOG TEASERS ─── */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.article-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; display: block; min-width: 0; }
.article-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.article-thumb { height: 150px; background: linear-gradient(135deg, rgba(244,73,90,0.25), rgba(180,35,44,0.15)); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.article-card .article-body { padding: 1.5rem; }
.article-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.6rem; font-family: 'Inter', sans-serif; }
.article-card p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* ─── SEO CONTENT ─── */
.seo-content { max-width: 800px; margin: 0 auto; color: var(--muted); }
.seo-content h2 { color: var(--white); margin: 2rem 0 1rem; font-family: 'Inter', sans-serif; }
.seo-content h2:first-child { margin-top: 0; }
.seo-content p { margin-bottom: 1rem; line-height: 1.8; }
.seo-content strong { color: var(--text); }

/* ─── FAQ ACCORDION ─── */
.faq-list { max-width: 800px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; color: var(--white);
  padding: 1.3rem 1.6rem; font-size: 0.98rem; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-question .faq-icon { color: var(--accent); font-size: 1.2rem; transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 1.6rem; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.6rem 1.4rem; }
.faq-answer p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ─── FORMS ─── */
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 0.85rem 1rem; color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.92rem;
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { color: var(--muted); font-size: 0.8rem; margin-top: 1rem; text-align: center; }
.form-success { display: none; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.35); color: var(--success); padding: 1rem 1.3rem; border-radius: 10px; margin-bottom: 1.5rem; font-size: 0.9rem; }
.form-success.visible { display: block; }

/* ─── INFO / CONTACT BLOCKS ─── */
.info-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: start; }
.info-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.6rem; margin-bottom: 1.2rem; }
.info-card h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.3rem; font-family: 'Inter', sans-serif; }
.info-card p, .info-card a { color: var(--muted); font-size: 0.88rem; text-decoration: none; line-height: 1.6; }
.info-card a:hover { color: var(--accent2); }

.bank-list { display: grid; gap: 0.9rem; margin-top: 1.5rem; }
.bank-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.bank-item strong { color: var(--white); font-family: 'Inter', sans-serif; }
.bank-item span { color: var(--muted); font-size: 0.88rem; font-family: monospace; }

/* ─── CTA ─── */
.cta-section { background: var(--surface); padding: 6rem 0; }
.cta-inner { max-width: 700px; margin: 0 auto; text-align: center; padding: 0 2rem; }
.cta-inner .section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-inner p { color: var(--muted); margin-bottom: 2.5rem; font-size: 1.05rem; line-height: 1.7; }
.cta-inner .hero-actions { justify-content: center; }

/* ─── PROMO BANNER ─── */
.promo-banner {
  background: linear-gradient(135deg, rgba(244,73,90,0.15), rgba(180,35,44,0.1));
  border: 1px solid rgba(244,73,90,0.3);
  border-radius: 20px; padding: 2rem; text-align: center; margin: 2rem 4rem 0;
}
.promo-banner strong { color: var(--white); }

/* ─── FOOTER ─── */
footer.site-footer { border-top: 1px solid var(--border); padding: 5rem 4rem 2rem; background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 2.5rem; max-width: 1200px; margin: 0 auto; padding-bottom: 3rem; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 1.2rem; font-family: 'Inter', sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-about p { color: var(--muted); font-size: 0.87rem; line-height: 1.7; margin: 1rem 0 1.4rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.5rem; }
.footer-social a {
  width: 28px; height: 28px; border-radius: 7px; background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--muted); transition: 0.2s;
}
.footer-social svg { width: 13px; height: 13px; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { color: var(--muted); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--white); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ─── UTILITIES ─── */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1400px) {
  nav.site-nav { padding: 1.1rem 2.5rem; }
  section { padding: 5rem 2.5rem; }
  .container { padding: 0 2.5rem; }
  .process-inner { padding: 0 2.5rem; }
  .stats { margin: 4rem 2.5rem 0; }
  footer.site-footer { padding: 5rem 2.5rem 2rem; }
  .promo-banner { margin: 2rem 2.5rem 0; }
}

@media (max-width: 968px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}

/* Tablet / unfolded-phone range (e.g. Z Fold open, ~650-900px) — the
   fixed desktop card widths above don't leave room for 2 per row here,
   so cards were stacking one-under-another with a big empty side gap.
   Force a clean 2-column layout instead. */
@media (max-width: 900px) {
  .services-grid.cols-3 .service-card,
  .services-grid.cols-4 .service-card,
  .features-grid.cols-3 .feature-item,
  .features-grid.cols-4 .feature-item {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  nav.site-nav { padding: 1rem 1.25rem; }
  .nav-links { position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; align-items: stretch; padding: 1.5rem; gap: 0.3rem; overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li > a { padding: 0.9rem 0.5rem; border-bottom: 1px solid var(--border); }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; display: none; box-shadow: none; margin-top: 0.3rem; }
  .has-dropdown.mobile-open .dropdown { display: block; }
  .mobile-toggle { display: block; }
  .nav-cta { text-align: center; margin-top: 1rem; }
  .nav-right { gap: 0.6rem; }
  .nav-icons { gap: 0.35rem; }
  .nav-icon { width: 32px; height: 32px; }
  .nav-icon svg { width: 15px; height: 15px; }

  section { padding: 4rem 1.5rem; }
  .container { padding: 0 1.5rem; }
  .sub-hero { padding: 8rem 1.5rem 3rem; }
  .stats { margin: 2rem 1.5rem 0; gap: 2.5rem; }
  footer.site-footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-inner { padding: 0 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .promo-banner { margin: 2rem 1.5rem 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid.cols-3 .service-card,
  .services-grid.cols-4 .service-card,
  .features-grid.cols-3 .feature-item,
  .features-grid.cols-4 .feature-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .success-panel .features-grid.cols-4 .feature-item { flex: 1 1 100%; max-width: 100%; }
}
