/* ================================================
   FORTKNOX MARKETING WEBSITE — STYLES
   Theme: Dark Navy + Gold
   © Digiwize (Pty) Ltd — fortknox.tech
================================================ */

/* ---------- Variables ---------- */
:root {
  --bg:            #06101f;
  --bg2:           #091528;
  --bg-card:       #0d1e36;
  --bg-card-hover: #122444;
  --gold:          #d4a537;
  --gold-light:    #edc760;
  --gold-dim:      rgba(212,165,55,0.10);
  --gold-border:   rgba(212,165,55,0.28);
  --gold-glow:     rgba(212,165,55,0.25);
  --text:          #dce8f8;
  --text2:         #a8bcd8;
  --text-muted:    #6a85aa;
  --border:        rgba(255,255,255,0.07);
  --green:         #22c55e;
  --red:           #ef4444;
  --blue:          #3b82f6;
  --amber:         #f59e0b;
  --radius:        14px;
  --radius-sm:     8px;
  --nav-h:         70px;
  --shadow:        0 8px 32px rgba(0,0,0,0.45);
  --shadow-gold:   0 0 40px rgba(212,165,55,0.14);
  --transition:    0.27s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }

/* ---------- Typography ---------- */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.22; color: var(--text); }
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gold { color: var(--gold); }

/* ---------- Navbar ---------- */
.navbar-fk {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 2rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}
.navbar-fk.scrolled {
  background: rgba(6,16,31,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.navbar-fk.always-solid {
  background: rgba(6,16,31,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon { width: 36px; height: 43px; flex-shrink: 0; }
.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: var(--text2);
  font-size: 0.875rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--gold); }
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--gold);
  color: #060e1a !important;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 14px var(--gold-glow);
  transition: var(--transition);
}
.btn-nav:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 22px rgba(212,165,55,0.45);
  color: #060e1a !important;
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
  padding: 6px;
}
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(6,16,31,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: var(--text2);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu .btn-nav { margin-top: 1rem; justify-content: center; }

/* ---------- Buttons ---------- */
.btn-primary-fk {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  background: var(--gold);
  color: #060e1a;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--gold-glow);
  text-decoration: none;
}
.btn-primary-fk:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #060e1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,165,55,0.42);
}
.btn-outline-fk {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 30px;
  background: transparent;
  color: var(--text);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-fk:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) 2rem 5rem;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(212,165,55,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(59,130,246,0.06) 0%, transparent 60%),
    var(--bg);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, black 20%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 920px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-shield {
  width: 90px; height: 108px;
  margin: 0 auto 2.25rem;
  filter: drop-shadow(0 0 28px rgba(212,165,55,0.45));
  animation: float 4s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text2);
  max-width: 660px;
  margin: 0 auto 2.75rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce-down 2s ease-in-out infinite;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item .stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
  font-variant-numeric: tabular-nums;
}
.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- Sections ---------- */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--text2);
  max-width: 580px;
  font-size: 1.05rem;
  margin-bottom: 3rem;
  line-height: 1.65;
}

/* ---------- Product Cards (Overview) ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.product-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  color: var(--text);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card-icon {
  width: 52px; height: 52px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.product-card:hover .product-card-icon {
  background: rgba(212,165,55,0.18);
  box-shadow: 0 0 18px var(--gold-glow);
}
.product-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text); }
.product-card p { color: var(--text2); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.1rem; }
.product-card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 1.25rem; }
.tag {
  padding: 3px 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.product-card-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-size: 0.835rem;
  font-weight: 600;
}
.product-card-link i { transition: transform var(--transition); }
.product-card:hover .product-card-link i { transform: translateX(4px); }

/* ---------- Product Feature Sections ---------- */
.product-section { padding: 5.5rem 2rem; }
.product-section.alt-bg { background: var(--bg2); }
.product-section-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-section-inner.reverse { direction: rtl; }
.product-section-inner.reverse > * { direction: ltr; }
.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-mockup {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 1.75rem;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow);
  position: relative;
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.mockup-dot.r { background: #ef4444; }
.mockup-dot.y { background: #f59e0b; }
.mockup-dot.g { background: #22c55e; }
.mockup-title { font-size: 0.75rem; color: var(--text-muted); margin-left: 6px; }
.mockup-icon-large { font-size: 4.5rem; text-align: center; padding: 1rem 0; }
.mockup-rows { display: flex; flex-direction: column; gap: 8px; }
.mockup-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 0.8rem;
  color: var(--text2);
}
.mockup-row i { color: var(--gold); width: 14px; text-align: center; flex-shrink: 0; }
.mockup-row.success { color: var(--green); }
.mockup-row.danger  { color: var(--red); }
.mockup-glow {
  position: absolute;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(212,165,55,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 0;
}
.mockup-counter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.mockup-counter {
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}
.mockup-counter .num { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.mockup-counter .lbl { font-size: 0.68rem; color: #888; margin-top: 2px; }
.mockup-stat-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.mockup-stat-badge {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Product content */
.product-content .section-label { margin-bottom: 0.4rem; }
.product-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.product-content .lead { color: var(--text2); margin-bottom: 2rem; font-size: 1.05rem; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.feature-item { display: flex; gap: 11px; align-items: flex-start; }
.feature-icon-wrap {
  width: 34px; height: 34px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--gold);
}
.feature-item h6 { font-size: 0.855rem; font-weight: 600; margin-bottom: 2px; color: var(--text); }
.feature-item p { font-size: 0.78rem; color: var(--text-muted); margin: 0; line-height: 1.45; }

/* ---------- Custom Dev ---------- */
.custom-dev {
  background: linear-gradient(140deg, #0b1829 0%, #06101f 50%, #0c1726 100%);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 2rem;
}
.custom-dev::after {
  content: '';
  position: absolute;
  top: -30%; right: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,165,55,0.055) 0%, transparent 70%);
  pointer-events: none;
}
.custom-dev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.custom-dev-items { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.custom-dev-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: var(--transition);
}
.custom-dev-item:hover { border-color: var(--gold-border); background: rgba(212,165,55,0.04); }
.custom-dev-item i { color: var(--gold); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.custom-dev-item h5 { font-size: 0.92rem; margin-bottom: 3px; }
.custom-dev-item p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.custom-dev-cta {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.custom-dev-cta .icon-xl { font-size: 3.2rem; margin-bottom: 1rem; }
.custom-dev-cta h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.custom-dev-cta p { color: var(--text2); margin-bottom: 1.5rem; font-size: 0.95rem; }
.custom-dev-cta .divider {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.custom-dev-cta .divider p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.4rem; }

/* ---------- Africa Section ---------- */
.africa-section { background: var(--bg2); padding: 5rem 2rem; }
.africa-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.africa-inner .section-label { justify-content: center; }
.africa-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.africa-inner > p { color: var(--text2); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.country-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.country-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text2);
  transition: var(--transition);
}
.country-badge:hover { border-color: var(--gold-border); background: var(--gold-dim); color: var(--text); }
.country-badge .flag { font-size: 1.3rem; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 2rem;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 85% at 50% 50%, rgba(212,165,55,0.07) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; letter-spacing: -0.02em; }
.cta-inner p { color: var(--text2); font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer {
  background: #030c1a;
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; margin: 1rem 0 1.5rem; max-width: 270px; line-height: 1.65; }
.footer-social { display: flex; gap: 9px; }
.social-btn {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { color: var(--text2); font-size: 0.875rem; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text2);
  font-size: 0.875rem;
  margin-bottom: 0.7rem;
}
.footer-contact-item i { color: var(--gold); width: 14px; text-align: center; flex-shrink: 0; }
.footer-contact-item a { color: var(--text2); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--nav-h) + 3.5rem) 2rem 3.5rem;
  text-align: center;
}
.page-hero .section-label { justify-content: center; margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.page-hero p { color: var(--text2); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ---------- Contact Info Cards ---------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--gold-border); }
.contact-info-card .ci-icon {
  width: 50px; height: 50px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--gold);
  margin: 0 auto 1rem;
}
.contact-info-card h5 {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.4rem;
}
.contact-info-card p { color: var(--text); font-size: 0.9rem; }
.contact-info-card a { color: var(--text); }
.contact-info-card a:hover { color: var(--gold); }

/* ---------- Contact Grid ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ---------- Form Styles ---------- */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
}
.form-card h3 { font-size: 1.1rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.35rem; }
.form-label-fk {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 0.45rem;
  letter-spacing: 0.015em;
}
.form-label-fk .req { color: var(--gold); }
.form-input-fk {
  width: 100%;
  background: rgba(255,255,255,0.038);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 15px;
  color: var(--text);
  font-size: 0.925rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-input-fk:focus {
  border-color: var(--gold);
  background: rgba(212,165,55,0.04);
  box-shadow: 0 0 0 3px rgba(212,165,55,0.09);
}
.form-input-fk::placeholder { color: var(--text-muted); }
textarea.form-input-fk { resize: vertical; min-height: 120px; }
select.form-input-fk option { background: #0d1e36; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.855rem;
  color: var(--text2);
  user-select: none;
}
.checkbox-item:hover { border-color: var(--gold-border); color: var(--text); }
.checkbox-item input[type="checkbox"] {
  accent-color: var(--gold);
  width: 15px; height: 15px;
  cursor: pointer;
  flex-shrink: 0;
}
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.35rem; }
.submit-btn-wrap { margin-top: 0.5rem; }

/* ---------- About Sidebar ---------- */
.about-sidebar .form-card { margin-bottom: 1.25rem; }
.about-sidebar h3 { font-size: 1.1rem; margin-bottom: 1.25rem; }
.about-sidebar p { color: var(--text2); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1rem; }
.about-sidebar p:last-child { margin-bottom: 0; }
.about-sidebar .highlight-box {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
  padding: 1.25rem;
  margin-top: 1.25rem;
}
.about-sidebar .highlight-box p { color: var(--gold); font-weight: 600; font-size: 0.88rem; margin: 0; }

/* ---------- Toast ---------- */
.toast-fk {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: #0c2814;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 0.9rem 1.4rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 9999;
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(34,197,94,0.18);
  max-width: 360px;
}
.toast-fk.show { transform: translateY(0); opacity: 1; }

/* ---------- Animations ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.75); }
}
@keyframes bounce-down {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 960px) {
  .product-section-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-section-inner.reverse { direction: ltr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .custom-dev-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-mobile-toggle { display: block; }
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: calc(var(--nav-h) + 2rem) 1.25rem 3.5rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .custom-dev { padding: 3.5rem 1.25rem; }
}
@media (max-width: 520px) {
  .products-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .toast-fk { left: 1rem; right: 1rem; bottom: 1rem; }
}
