/* ============================================================
   CyberKrits Technologies — Global Stylesheet
   Brand Colors:
     Primary Deep Indigo  : #1E2A78
     Secondary Royal Blue : #3A6FF8
     Accent Soft Cyan     : #4FD1C5
     Background Off White : #F8FAFC
     Text Charcoal        : #1A202C
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:      #1E2A78;
  --secondary:    #3A6FF8;
  --accent:       #4FD1C5;
  --bg:           #F8FAFC;
  --text:         #1A202C;
  --white:        #ffffff;
  --gray-light:   #e8edf5;
  --gray-mid:     #94a3b8;
  --shadow-sm:    0 2px 8px rgba(30,42,120,.08);
  --shadow-md:    0 8px 30px rgba(30,42,120,.14);
  --shadow-lg:    0 20px 60px rgba(30,42,120,.18);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all .3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: #4a5568; }

/* ---------- Utility Classes ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }

.badge {
  display: inline-block;
  background: rgba(79,209,197,.15);
  color: var(--accent);
  border: 1px solid rgba(79,209,197,.4);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  color: var(--primary);
  margin-bottom: 14px;
}
.section-sub {
  color: var(--gray-mid);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 50px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: #38b2ac;
  border-color: #38b2ac;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: #162060;
  border-color: #162060;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(30,42,120,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.02em;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  font-weight: 900;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.nav-links a.nav-contact {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 6px;
}
.nav-links a.nav-contact:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--primary);
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.85);
  padding: 12px 24px;
  font-size: .95rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(255,255,255,.05);
}

/* ---------- Hero Sections ---------- */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #162a8a 50%, #1a3a9f 100%);
  color: var(--white);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(58,111,248,.35) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(79,209,197,.25) 0%, transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero Stats Strip */
.stats-strip {
  background: var(--white);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-md);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid var(--gray-light);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}
.stat-label {
  color: var(--gray-mid);
  font-size: .85rem;
  margin-top: 6px;
  font-weight: 500;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(58,111,248,.25);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--white);
}
.card h3 { color: var(--primary); margin-bottom: 10px; }
.card p  { font-size: .93rem; line-height: 1.65; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-weight: 600;
  font-size: .9rem;
  margin-top: 16px;
  transition: var(--transition);
}
.card-link:hover { color: var(--accent); gap: 10px; }

/* Service Cards - Homepage */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card .card-icon { margin-bottom: 22px; }
.service-card h3 { color: var(--primary); margin-bottom: 12px; }
.service-card p { font-size: .95rem; }

/* ---------- Feature Boxes ---------- */
.feature-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.feature-box:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(79,209,197,.4);
}
.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(58,111,248,.12), rgba(79,209,197,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.feature-box h4 { color: var(--primary); margin-bottom: 6px; font-size: 1rem; }
.feature-box p  { font-size: .9rem; }

/* ---------- Why Choose Section ---------- */
.why-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3280 100%);
  color: var(--white);
}
.why-section .section-title { color: var(--white); }
.why-section .section-sub { color: rgba(255,255,255,.7); }
.why-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.why-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-5px);
  border-color: rgba(79,209,197,.5);
}
.why-card .card-icon {
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(79,209,197,.3), rgba(58,111,248,.3));
  border: 1px solid rgba(79,209,197,.4);
}
.why-card h3 { color: var(--white); margin-bottom: 10px; }
.why-card p  { color: rgba(255,255,255,.72); font-size: .92rem; }

/* ---------- CTA Sections ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 36px; }

/* ---------- Number Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-card h4 { color: var(--primary); margin-bottom: 10px; }
.step-card p  { font-size: .9rem; }

/* ---------- Check List ---------- */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  color: #4a5568;
}
.check-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.5;
  flex-shrink: 0;
}

/* ---------- Alternating two-col layout ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-visual {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.split-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(79,209,197,.3) 0%, transparent 60%);
}
.split-visual-icon {
  font-size: 6rem;
  position: relative;
  z-index: 1;
}

/* ---------- Accordion / Service Numbers ---------- */
.service-num-grid { display: flex; flex-direction: column; gap: 24px; }
.service-num-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 28px 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--secondary);
  transition: var(--transition);
}
.service-num-item:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent);
}
.service-num-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.service-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--white);
  font-size: .9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-num-header h4 { color: var(--primary); font-size: 1.05rem; }
.service-num-item .check-list li { font-size: .88rem; }

/* ---------- Tech Tags ---------- */
.tech-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.tech-tag {
  background: rgba(58,111,248,.1);
  color: var(--secondary);
  border: 1px solid rgba(58,111,248,.25);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: .82rem;
  font-weight: 600;
}

/* ---------- Info Boxes (colored) ---------- */
.info-box {
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid;
}
.info-box.indigo {
  background: rgba(30,42,120,.06);
  border-color: rgba(30,42,120,.2);
}
.info-box.cyan {
  background: rgba(79,209,197,.08);
  border-color: rgba(79,209,197,.3);
}
.info-box.blue {
  background: rgba(58,111,248,.08);
  border-color: rgba(58,111,248,.25);
}
.info-box h4 { color: var(--primary); margin-bottom: 12px; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 22px;
  font-size: 5rem;
  color: var(--accent);
  opacity: .3;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-style: italic;
  color: #4a5568;
  margin-bottom: 20px;
  font-size: .95rem;
}
.testimonial-author { font-weight: 700; color: var(--primary); }
.testimonial-role { font-size: .85rem; color: var(--gray-mid); }
.stars { color: #f6ad55; letter-spacing: 2px; margin-bottom: 14px; }

/* ---------- Pain Points Section ---------- */
.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  border-top: 4px solid var(--secondary);
  transition: var(--transition);
}
.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--accent);
}
.pain-card h3 { color: var(--primary); margin-bottom: 12px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p { font-size: .92rem; line-height: 1.8; color: rgba(255,255,255,.65); }
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  margin-bottom: 12px;
}
.footer-contact-item .ic { color: var(--accent); flex-shrink: 0; font-size: 1rem; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: .85rem; color: rgba(255,255,255,.5); }

/* ---------- Industries Served ---------- */
.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.industry-pill:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: translateY(-3px);
}
.industry-pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Breadcrumb Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3280 60%, #1e3d9f 100%);
  color: var(--white);
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 60%, rgba(58,111,248,.4) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(79,209,197,.3) 0%, transparent 45%);
  pointer-events: none;
}
.page-hero .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 32px;
}
.page-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Highlight Banner ---------- */
.highlight-banner {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: var(--white);
  padding: 20px 0;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}
.highlight-banner a {
  color: var(--white);
  text-decoration: underline;
  opacity: .85;
}

/* ---------- Engagement Models ---------- */
.engagement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.engagement-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary);
}
.engagement-card .icon { font-size: 2rem; margin-bottom: 12px; }
.engagement-card h4 { color: var(--primary); font-size: .95rem; }

/* ---------- Data Security ---------- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.security-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}
.security-item::before {
  content: '🔒';
  font-size: 1.2rem;
}

/* ---------- Who We Serve ---------- */
.serve-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.serve-tag {
  background: rgba(30,42,120,.07);
  border: 1px solid rgba(30,42,120,.18);
  color: var(--primary);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 600;
  transition: var(--transition);
}
.serve-tag:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Contact Form ---------- */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(58,111,248,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---------- Background Variations ---------- */
.bg-light { background: var(--bg); }
.bg-white { background: var(--white); }
.bg-primary { background: var(--primary); }
.bg-gradient-subtle {
  background: linear-gradient(180deg, #f0f4ff 0%, var(--bg) 100%);
}

/* ---------- Divider ---------- */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
  margin: 0 auto 24px;
}
.divider-left {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .engagement-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 36px; }
  .split-section.reverse { direction: ltr; }
  .steps-grid { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .page-hero { padding: 70px 0 60px; }
  .hero { padding: 80px 0 70px; }
  .section-pad { padding: 60px 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-light); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .engagement-grid { grid-template-columns: 1fr; }
}
