/*
Theme Name: ForisHQ
Theme URI: https://forishq.com
Author: ForisHQ Team
Description: ForisHQ — The performance affiliate network platform. CPA, CPS, CPL, RevShare.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: forishq
*/

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============ VARIABLES ============ */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --accent: #f59e0b;
  --dark: #0a0f1e;
  --dark2: #0f172a;
  --text: #334155;
  --text-light: #64748b;
  --bg-light: #f0f9ff;
  --white: #ffffff;
  --border: #e0f2fe;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(14,165,233,0.10);
  --shadow-lg: 0 12px 48px rgba(14,165,233,0.16);
  --transition: 0.3s ease;
  --container: 1200px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark2);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: 1.4rem; }
p { color: var(--text); margin-bottom: 1rem; }

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(108,71,255,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108,71,255,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn-accent:hover {
  background: #e55a28;
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 48px; font-size: 1.1rem; }

/* ============ BADGE ============ */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-primary { background: rgba(108,71,255,0.12); color: var(--primary); }
.badge-accent { background: rgba(255,107,53,0.12); color: var(--accent); }
.badge-green { background: rgba(34,197,94,0.12); color: #16a34a; }

/* ============ HEADER / NAVBAR ============ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
  background: transparent;
}
#site-header.scrolled {
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(14,165,233,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
/* White text/logo — homepage only, when hero visible (body.home added by WordPress) */
.home #site-header:not(.scrolled) .navbar-brand,
.home #site-header:not(.scrolled) .navbar-menu a,
.home #site-header:not(.scrolled) .nav-toggle span {
  color: rgba(255,255,255,0.92);
}
.home #site-header:not(.scrolled) .brand-icon {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25);
}
.home #site-header:not(.scrolled) .navbar-menu a:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
}
.home #site-header:not(.scrolled) .btn-outline {
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.40);
  background: rgba(255,255,255,0.08);
}
.home #site-header:not(.scrolled) .btn-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.70);
}
/* Inner pages — solid bright navbar from the start */
body:not(.home) #site-header {
  background: linear-gradient(135deg, #1d4ed8 0%, #0ea5e9 100%);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(14,165,233,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
/* Light text when scrolled (or on inner pages) — dark navbar */
#site-header.scrolled .navbar-brand,
body:not(.home) #site-header .navbar-brand { color: #fff; }
#site-header.scrolled .navbar-menu a,
body:not(.home) #site-header .navbar-menu a { color: rgba(255,255,255,0.85); }
#site-header.scrolled .navbar-menu a:hover,
body:not(.home) #site-header .navbar-menu a:hover { color: #fff; background: rgba(255,255,255,0.08); }
#site-header.scrolled .nav-toggle span,
body:not(.home) #site-header .nav-toggle span { background: #fff; }
#site-header.scrolled .btn-outline,
body:not(.home) #site-header .btn-outline { color: rgba(255,255,255,0.90); border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.06); }
#site-header.scrolled .btn-outline:hover,
body:not(.home) #site-header .btn-outline:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.65); }
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark2);
}
.brand-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
}
.navbar-brand span { color: var(--primary); }
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-menu a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.navbar-menu a:hover,
.navbar-menu a.active { color: var(--primary); background: rgba(108,71,255,0.06); }
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark2); margin: 5px 0;
  transition: var(--transition); border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0f1e 0%, #0c1a3a 50%, #071425 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 80%; height: 160%;
  background: radial-gradient(ellipse, rgba(14,165,233,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,0.15);
  border: 1px solid rgba(14,165,233,0.35);
  color: #7dd3fc;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #a78bfa, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}
.hero-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.dashboard-mockup {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 480px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-title { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-left: 8px; }
.mockup-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.metric-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
}
.metric-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.metric-value { font-size: 1.4rem; font-weight: 800; color: white; }
.metric-value.green { color: #4ade80; }
.metric-value.purple { color: #a78bfa; }
.metric-change {
  font-size: 0.75rem;
  color: #4ade80;
  margin-top: 4px;
}
.mockup-chart { height: 80px; position: relative; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 100%;
}
.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(108,71,255,0.4);
  transition: var(--transition);
  min-height: 10px;
}
.chart-bar.active { background: var(--primary); }
.mockup-offers {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px 14px;
}
.offer-name { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.offer-payout {
  font-size: 0.85rem;
  font-weight: 700;
  color: #4ade80;
}

/* ============ SECTION HEADER ============ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); }

/* ============ FEATURES ============ */
.features { background: var(--bg-light); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* ============ HOW IT WORKS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.3;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(108,71,255,0.35);
}
.step-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ============ VERTICALS / OFFER CATEGORIES ============ */
.verticals { background: var(--bg-light); }
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.vertical-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.vertical-card:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.vertical-card:hover h3,
.vertical-card:hover p { color: white; }
.vertical-card:hover .vertical-icon { background: rgba(255,255,255,0.2); }
.vertical-icon {
  width: 60px; height: 60px;
  background: var(--bg-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.vertical-card h3 { font-size: 1rem; margin-bottom: 6px; transition: var(--transition); }
.vertical-card p { font-size: 0.85rem; color: var(--text-light); margin: 0; transition: var(--transition); }

/* ============ STATS BANNER ============ */
.stats-banner {
  background: linear-gradient(135deg, #0a0f1e 0%, #0c1a3a 100%);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.6); }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.95rem; color: var(--dark2); }
.author-role { font-size: 0.8rem; color: var(--text-light); }
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 4px; }

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1), transparent 70%);
}
.cta-section h2 { color: white; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.15rem; max-width: 560px; margin: 0 auto 40px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--bg-light); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ============ FOOTER ============ */
#site-footer {
  background: #0a0f1e;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .navbar-brand { color: white; margin-bottom: 16px; display: inline-flex; }
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}
.social-link:hover { background: var(--primary); border-color: var(--primary); }
.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

/* ============ CONTACT FORM 7 STYLES ============ */
.wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wpcf7 p {
  margin: 0 0 18px;
}
.wpcf7 label,
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid #d0e8f8;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.12);
}
.wpcf7 textarea {
  min-height: 130px;
  resize: vertical;
}
.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"],
.wpcf7 .wpcf7-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
  margin-top: 4px;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}
.wpcf7 .wpcf7-response-output {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 16px;
  border: none !important;
}
.wpcf7 .wpcf7-mail-sent-ok {
  background: #dcfce7;
  color: #166534;
}
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-acceptance-missing {
  background: #fef2f2;
  color: #991b1b;
}
.wpcf7 .wpcf7-spam-blocked {
  background: #fef9c3;
  color: #713f12;
}
/* Spinner */
.wpcf7 .wpcf7-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-left: 8px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .features-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid,
  .verticals-grid,
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .navbar-menu,
  .navbar-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .features-grid,
  .testimonials-grid,
  .steps-grid,
  .verticals-grid,
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
