/* ================================================================
   SECWIZTECH — Global Design System v2.0
   Premium Cybersecurity + Software Development Brand
   Color Direction: Deep Navy / Electric Blue / Signal Teal / Carbon
   Typography: Barlow Condensed (display) + Nunito Sans (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Brand Colors */
  --navy:        #071425;
  --navy-2:      #0C1E35;
  --navy-3:      #112845;
  --navy-4:      #1A3A5C;
  --blue:        #0066FF;
  --blue-h:      #0050CC;
  --blue-lt:     #3385FF;
  --blue-glow:   rgba(0,102,255,0.2);
  --teal:        #00D4AA;
  --teal-h:      #00B891;
  --teal-lt:     rgba(0,212,170,0.12);
  --orange:      #FF6030;
  --white:       #FFFFFF;
  --off-white:   #F4F7FC;
  --gray-50:     #EEF2F9;
  --gray-100:    #DDE4F0;
  --gray-200:    #B8C4D8;
  --gray-400:    #7A8DA8;
  --gray-600:    #4A5870;
  --text:        #0D1E33;
  --text-mid:    #3A4F6A;
  --text-soft:   #637B97;
  --text-xsoft:  #8A9DB8;

  /* Gradients */
  --grad-hero:    linear-gradient(155deg, #071425 0%, #0C2140 45%, #0D2855 100%);
  --grad-card:    linear-gradient(135deg, #0C1E35 0%, #112845 100%);
  --grad-blue:    linear-gradient(135deg, #0066FF, #0050CC);
  --grad-teal:    linear-gradient(135deg, #00D4AA, #00B891);
  --grad-accent:  linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(7,20,37,0.08);
  --shadow-md:    0 8px 28px rgba(7,20,37,0.12);
  --shadow-lg:    0 20px 56px rgba(7,20,37,0.16);
  --shadow-xl:    0 32px 80px rgba(7,20,37,0.22);
  --shadow-blue:  0 8px 32px rgba(0,102,255,0.25);
  --shadow-teal:  0 8px 32px rgba(0,212,170,0.2);
  --glow-blue:    0 0 60px rgba(0,102,255,0.15);
  --glow-teal:    0 0 60px rgba(0,212,170,0.12);

  /* Borders */
  --border-light: 1px solid rgba(255,255,255,0.07);
  --border-card:  1px solid #E4EBF5;
  --border-blue:  1px solid rgba(0,102,255,0.2);

  /* Radii */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   30px;
  --r-pill: 100px;

  /* Fonts */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;

  /* Easing */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  /* Spacing */
  --section-pad: 100px 6%;
  --section-pad-sm: 72px 6%;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); }
::selection { background: var(--blue); color: var(--white); }

/* ── Typography Scale ───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--navy);
}
.display-1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800; line-height: 1.0; letter-spacing: -0.02em; }
.display-2 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
.display-3 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; }
.display-4 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 600; }
.body-lg   { font-size: 1.1rem; line-height: 1.75; font-weight: 400; }
.body-md   { font-size: 1rem;   line-height: 1.75; }
.body-sm   { font-size: 0.88rem; line-height: 1.65; }
.caption   { font-size: 0.78rem; letter-spacing: 0.06em; }

/* ── Layout Utilities ───────────────────────────────────────── */
.container    { max-width: 1240px; margin: 0 auto; padding: 0 6%; }
.section      { padding: var(--section-pad); }
.section-sm   { padding: var(--section-pad-sm); }
.section-dark { background: var(--navy); }
.section-navy2{ background: var(--navy-2); }
.section-alt  { background: var(--off-white); }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex    { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.align-center { align-items: center; }
.text-center  { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--r-sm);
  padding: 14px 28px;
  transition: all 0.26s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--blue-h); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,102,255,0.38); }

.btn-teal {
  background: var(--teal);
  color: var(--navy);
  box-shadow: var(--shadow-teal);
}
.btn-teal:hover { background: var(--teal-h); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,212,170,0.3); }

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { border-color: var(--teal); color: var(--teal); background: rgba(0,212,170,0.06); }

.btn-outline {
  border: 1.5px solid var(--gray-100);
  color: var(--text-mid);
  background: var(--white);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,102,255,0.04); }

.btn-ghost {
  color: var(--blue);
  background: transparent;
  padding-left: 0; padding-right: 0;
  gap: 8px;
}
.btn-ghost:hover { gap: 14px; color: var(--blue-h); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }

.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.84rem; }

/* ── Tags / Badges ──────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: var(--r-pill);
}
.tag-blue   { background: rgba(0,102,255,0.1);  color: var(--blue);  border: 1px solid rgba(0,102,255,0.18); }
.tag-teal   { background: rgba(0,212,170,0.1);  color: #00A888;      border: 1px solid rgba(0,212,170,0.2); }
.tag-orange { background: rgba(255,96,48,0.1);  color: var(--orange); border: 1px solid rgba(255,96,48,0.18); }
.tag-white  { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 2px; background: var(--teal); border-radius: 2px; }
.eyebrow.dark    { color: var(--blue); }
.eyebrow.dark::before { background: var(--blue); }

/* ── Section Headers ────────────────────────────────────────── */
.section-head        { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.section-title  { margin-bottom: 16px; }
.section-sub    { max-width: 580px; color: var(--text-soft); font-size: 1.03rem; line-height: 1.8; }
.section-dark .section-title { color: var(--white); }
.section-dark .section-sub   { color: rgba(255,255,255,0.55); }
.section-dark .eyebrow        { color: var(--teal); }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 74px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: rgba(7,20,37,0.0);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), height 0.3s;
}
.nav.scrolled {
  background: rgba(7,20,37,0.97);
  backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(7,20,37,0.4);
  height: 66px;
}
.nav.light-page {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-50);
}
.nav.light-page.scrolled { box-shadow: var(--shadow-md); }

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 44px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-item  { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 15px; border-radius: var(--r-xs);
  font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85);
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.08); }
.light-page .nav-link { color: var(--text-mid); }
.light-page .nav-link:hover, .light-page .nav-link.active { color: var(--blue); background: rgba(0,102,255,0.06); }
.nav-chevron { font-size: 0.6rem; transition: transform 0.2s; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Mega Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: var(--border-card); border-radius: var(--r-lg);
  padding: 14px;
  min-width: 240px;
  box-shadow: var(--shadow-xl);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.26s var(--ease);
  z-index: 200;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  top: calc(100% + 8px);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: var(--r-xs);
  font-size: 0.87rem; font-weight: 600; color: var(--text-mid);
  transition: all 0.15s;
}
.nav-dropdown a:hover { background: var(--off-white); color: var(--blue); }
.nav-dropdown .dd-icon { font-size: 1.1rem; width: 26px; text-align: center; flex-shrink: 0; }
.nav-dropdown .dd-desc { font-size: 0.75rem; color: var(--text-soft); font-weight: 400; display: block; margin-top: 2px; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.light-page .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none; position: fixed;
  top: 66px; left: 0; right: 0;
  background: var(--navy);
  border-top: var(--border-light);
  padding: 20px 6% 32px;
  z-index: 999;
  overflow-y: auto; max-height: calc(100dvh - 66px);
  box-shadow: var(--shadow-xl);
}
.mobile-nav.open { display: block; animation: slideDown 0.28s var(--ease); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
.mobile-nav-section { margin-bottom: 20px; }
.mobile-nav-section h5 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.mobile-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 0; font-size: 0.97rem; font-weight: 600; color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-cta-row { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

/* ── Page Hero (shared inner pages) ────────────────────────── */
.page-hero {
  background: var(--grad-hero);
  padding: 140px 6% 90px;
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,102,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,255,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 50%, black, transparent);
}
.page-hero-orb {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
}
.orb-tr { width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,102,255,0.18), transparent 70%); top: -200px; right: -150px; }
.orb-bl { width: 450px; height: 450px; background: radial-gradient(circle, rgba(0,212,170,0.12), transparent 70%); bottom: -150px; left: -80px; }
.page-hero-content { position: relative; z-index: 2; max-width: 900px; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.breadcrumb a { color: var(--teal); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 8px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p  { color: rgba(255,255,255,0.68); max-width: 640px; margin-bottom: 36px; font-size: 1.1rem; line-height: 1.8; }
.page-hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Hero (Homepage) ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 0 6%;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,102,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 75% 80% at 50% 40%, black, transparent);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.hero-orb-1 { width: 800px; height: 800px; background: radial-gradient(circle, rgba(0,102,255,0.16), transparent 70%); top: -250px; right: -200px; }
.hero-orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,212,170,0.12), transparent 70%); bottom: -150px; left: -50px; }
.hero-orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,212,170,0.08), transparent 70%); top: 40%; right: 20%; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1240px; margin: 0 auto; width: 100%;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,170,0.1);
  border: 1px solid rgba(0,212,170,0.25);
  color: var(--teal); border-radius: var(--r-pill);
  padding: 7px 18px; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 26px;
}
.pulse { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: pulse 1.8s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.35;transform:scale(0.75)} }

.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero-highlight { color: var(--teal); }
.hero-sub { color: rgba(255,255,255,0.62); font-size: 1.1rem; max-width: 520px; margin-bottom: 42px; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust { padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-trust-lbl { font-size: 0.74rem; color: rgba(255,255,255,0.38); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.hero-trust-flags { display: flex; gap: 20px; flex-wrap: wrap; }
.flag-item { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.flag-item:hover { color: rgba(255,255,255,0.85); }

/* Hero Visual Panel */
.hero-visual { position: relative; }
.hero-panel {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: var(--border-light);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative; overflow: hidden;
}
.hero-panel::before {
  content: ''; position: absolute; top: -2px; left: 24px; right: 24px; height: 2px;
  background: var(--grad-accent); border-radius: 2px;
}
.hero-panel-title { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.hero-service-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 10px; transition: all 0.25s;
}
.hero-service-row:hover { background: rgba(255,255,255,0.08); border-color: rgba(0,212,170,0.2); }
.hero-service-row:last-child { margin-bottom: 0; }
.hsr-icon { font-size: 1.3rem; flex-shrink: 0; }
.hsr-text h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: var(--white); }
.hsr-text p  { font-size: 0.76rem; color: rgba(255,255,255,0.45); margin-top: 2px; }
.hsr-arrow   { margin-left: auto; font-size: 0.8rem; color: var(--teal); opacity: 0; transition: opacity 0.2s; }
.hero-service-row:hover .hsr-arrow { opacity: 1; }

/* Floating stat cards */
.hero-stat-card {
  position: absolute; background: rgba(255,255,255,0.06); backdrop-filter: blur(16px);
  border: var(--border-light); border-radius: var(--r-md);
  padding: 16px 20px; text-align: center;
}
.hero-stat-card .stat-n { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--teal); line-height: 1; }
.hero-stat-card .stat-l { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hsc-1 { bottom: -30px; right: -20px; width: 140px; }
.hsc-2 { top: -20px; left: -30px; width: 140px; }

/* ── Ticker / Marquee ───────────────────────────────────────── */
.ticker {
  background: var(--navy-2);
  border-top: var(--border-light); border-bottom: var(--border-light);
  padding: 20px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 60px; align-items: center;
  animation: ticker 35s linear infinite; width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.32); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
.ticker-sep  { color: var(--teal); font-size: 0.6rem; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: var(--border-card);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,102,255,0.15); }
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-accent); transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.card:hover::after { transform: scaleX(1); }

.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-sm); font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: all 0.3s;
}
.ci-blue   { background: rgba(0,102,255,0.1); }
.ci-teal   { background: rgba(0,212,170,0.1); }
.ci-orange { background: rgba(255,96,48,0.1); }
.ci-navy   { background: rgba(12,30,53,0.08); }
.card:hover .card-icon { transform: scale(1.08); }
.card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.card p  { font-size: 0.9rem; color: var(--text-soft); line-height: 1.72; }

/* Dark card (used in sections-dark) */
.card-dark {
  background: rgba(255,255,255,0.04);
  border: var(--border-light);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  transition: all 0.3s var(--ease);
}
.card-dark:hover { background: rgba(255,255,255,0.07); border-color: rgba(0,212,170,0.2); transform: translateY(-5px); }
.card-dark h3 { color: var(--white); }
.card-dark p  { color: rgba(255,255,255,0.5); }
.card-dark .card-icon { background: rgba(255,255,255,0.06); }

/* Feature row card */
.feat-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--gray-50);
}
.feat-row:last-child { border-bottom: none; }
.feat-icon { width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.feat-row h4 { font-size: 1.02rem; margin-bottom: 6px; }
.feat-row p  { font-size: 0.88rem; color: var(--text-soft); }

/* ── Stats Row ──────────────────────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(6,1fr);
  background: var(--navy-2);
  border-top: var(--border-light); border-bottom: var(--border-light);
  overflow: hidden; border-radius: 0;
}
.stat-box {
  padding: 40px 20px; text-align: center;
  border-right: var(--border-light);
}
.stat-box:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
  display: block; line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 8px; line-height: 1.4; }

/* ── Process Steps ──────────────────────────────────────────── */
.process-track { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; position: relative; }
.process-track::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px; background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0.4;
}
.proc-item { text-align: center; }
.proc-circle {
  width: 72px; height: 72px;
  border-radius: 50%; border: 2px solid var(--gray-100);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--blue);
  position: relative; z-index: 2;
  transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.proc-item:hover .proc-circle { background: var(--blue); border-color: var(--blue); color: var(--white); box-shadow: var(--shadow-blue); }
.proc-item h4 { font-size: 1rem; margin-bottom: 8px; }
.proc-item p  { font-size: 0.84rem; color: var(--text-soft); line-height: 1.65; }

/* ── Testimonials ───────────────────────────────────────────── */
.testi-card {
  background: var(--white); border: var(--border-card);
  border-radius: var(--r-xl); padding: 40px 36px;
  transition: all 0.3s var(--ease);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #FFB300; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote { font-size: 2.8rem; line-height: 1; color: var(--teal); opacity: 0.3; margin-bottom: 6px; font-family: Georgia, serif; }
.testi-body { font-size: 0.94rem; color: var(--text-mid); line-height: 1.82; font-style: italic; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white);
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.testi-role { font-size: 0.8rem; color: var(--text-soft); margin-top: 2px; }

/* ── Industry Tags ──────────────────────────────────────────── */
.industry-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.ind-tag {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: var(--border-card);
  border-radius: var(--r-pill); padding: 10px 20px;
  font-size: 0.86rem; font-weight: 600; color: var(--text-mid);
  transition: all 0.22s;
}
.ind-tag:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,102,255,0.04); }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 64px 60px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  top: -60px; right: -40px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,212,170,0.14), transparent 70%);
  border-radius: 50%;
}
.cta-band::after {
  content: ''; position: absolute;
  bottom: -40px; left: 30%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(0,102,255,0.12), transparent 70%);
  border-radius: 50%;
}
.cta-band-text { position: relative; z-index: 2; }
.cta-band-text h2 { color: var(--white); font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 10px; }
.cta-band-text p  { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; position: relative; z-index: 2; }

/* ── Trust Badges ───────────────────────────────────────────── */
.trust-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--r-pill);
  background: rgba(0,212,170,0.08); border: 1px solid rgba(0,212,170,0.2);
  font-size: 0.78rem; font-weight: 700; color: var(--teal);
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--text-mid); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.form-ctrl {
  width: 100%; background: var(--off-white); border: 1.5px solid var(--gray-100);
  border-radius: var(--r-sm); padding: 13px 16px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-ctrl:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,102,255,0.1); background: var(--white); }
.form-ctrl::placeholder { color: var(--text-xsoft); }
textarea.form-ctrl { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; background: var(--blue); color: var(--white);
  font-family: var(--font-body); font-weight: 700; font-size: 1.02rem;
  padding: 16px; border-radius: var(--r-sm); cursor: pointer;
  transition: all 0.26s var(--ease); box-shadow: var(--shadow-blue); border: none;
}
.form-submit:hover { background: var(--blue-h); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,102,255,0.38); }

/* Form dark variant */
.form-ctrl-dark {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm); padding: 13px 16px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--white); outline: none;
  transition: border-color 0.2s;
}
.form-ctrl-dark:focus { border-color: var(--teal); background: rgba(255,255,255,0.08); }
.form-ctrl-dark::placeholder { color: rgba(255,255,255,0.3); }
.form-label-dark { color: rgba(255,255,255,0.6); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-q {
  width: 100%; background: none; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-family: var(--font-body); font-size: 1.02rem;
  font-weight: 700; color: var(--navy); cursor: pointer; text-align: left; gap: 18px;
}
.faq-q:hover { color: var(--blue); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; color: var(--blue); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s var(--ease); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 24px; font-size: 0.93rem; color: var(--text-soft); line-height: 1.82; }

/* ── Blog Cards ─────────────────────────────────────────────── */
.blog-card {
  background: var(--white); border: var(--border-card); border-radius: var(--r-lg);
  overflow: hidden; transition: all 0.3s var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-thumb {
  height: 210px; display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden;
}
.blog-body  { padding: 26px 24px; }
.blog-cat   { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.02rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p  { font-size: 0.86rem; color: var(--text-soft); margin-bottom: 14px; }
.blog-meta    { font-size: 0.76rem; color: var(--text-xsoft); }

/* ── Portfolio Cards ────────────────────────────────────────── */
.port-card {
  background: var(--white); border: var(--border-card); border-radius: var(--r-xl);
  overflow: hidden; transition: all 0.3s var(--ease);
}
.port-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.port-thumb { height: 220px; display: flex; align-items: center; justify-content: center; font-size: 4rem; position: relative; overflow: hidden; }
.port-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 30%, rgba(7,20,37,0.75)); opacity: 0; transition: opacity 0.3s; }
.port-card:hover .port-overlay { opacity: 1; }
.port-cta { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%) translateY(10px); opacity: 0; transition: all 0.3s; white-space: nowrap; }
.port-card:hover .port-cta { opacity: 1; transform: translateX(-50%) translateY(0); }
.port-body { padding: 26px; }
.port-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.port-tag { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 4px; padding: 3px 10px; font-size: 0.7rem; font-weight: 700; color: var(--text-soft); }
.port-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.port-card p  { font-size: 0.84rem; color: var(--text-soft); }

/* ── Service Big Card ───────────────────────────────────────── */
.svc-featured {
  background: var(--navy-3); border-radius: var(--r-xl);
  padding: 52px 44px; color: var(--white);
  position: relative; overflow: hidden;
  grid-row: span 2;
}
.svc-featured::before {
  content: ''; position: absolute; top: -80px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,212,170,0.18), transparent 70%);
  border-radius: 50%;
}
.svc-featured h3 { color: var(--white); font-size: 1.7rem; margin-bottom: 14px; position: relative; }
.svc-featured p  { color: rgba(255,255,255,0.6); font-size: 0.93rem; line-height: 1.82; margin-bottom: 28px; position: relative; }
.svc-feat-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; position: relative; }
.svc-feat-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.sfl-check { color: var(--teal); flex-shrink: 0; margin-top: 3px; }
.svc-ghost-num { position: absolute; bottom: 28px; right: 36px; font-family: var(--font-display); font-size: 7rem; font-weight: 800; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; }

/* ── Timeline ───────────────────────────────────────────────── */
.timeline { padding-left: 40px; border-left: 2px solid linear-gradient(var(--blue),var(--teal)); position: relative; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue), var(--teal)); }
.tl-item { position: relative; padding-bottom: 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -49px; top: 5px; width: 18px; height: 18px; background: var(--blue); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 3px rgba(0,102,255,0.2); }
.tl-year { font-size: 0.74rem; font-weight: 700; color: var(--blue); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 7px; }
.tl-item h4 { font-size: 1.05rem; margin-bottom: 8px; }
.tl-item p  { font-size: 0.88rem; color: var(--text-soft); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 80px 6% 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; border-bottom: var(--border-light); }
.footer-brand-text { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 320px; margin: 14px 0 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: var(--r-xs);
  background: rgba(255,255,255,0.07); border: var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: all 0.2s;
}
.social-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-item span { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p  { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-contact-item a  { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--teal); }
.footer-bottom {
  padding: 24px 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--teal); }

/* ── Floating WhatsApp ──────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 8000;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 6px 28px rgba(37,211,102,0.4);
  transition: transform 0.25s; animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes waFloat { 0%,100%{box-shadow:0 6px 28px rgba(37,211,102,0.4)} 50%{box-shadow:0 6px 40px rgba(37,211,102,0.65)} }

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.72s var(--ease), transform 0.72s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ── Highlight Bar ──────────────────────────────────────────── */
.top-bar {
  background: var(--navy-2); border-bottom: var(--border-light);
  padding: 9px 6%; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
}
.top-bar a { color: var(--teal); font-weight: 600; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-strip { grid-template-columns: repeat(3,1fr); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 48px 36px; }
  .cta-band-actions { justify-content: center; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .process-track::before { display: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  :root { --section-pad: 72px 5%; --section-pad-sm: 52px 5%; }
  .hero { padding-left: 5%; padding-right: 5%; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { margin: 0; border-radius: 0; padding: 40px 5%; }
  .page-hero { padding: 110px 5% 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav { padding: 0 5%; }
}


/* ── Sticky Bottom CTA Strip ────────────────────────────────── */
.sticky-cta-strip {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 7000;
  background: var(--navy);
  border-top: 2px solid var(--teal);
  padding: 12px 6%;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -8px 40px rgba(7,20,37,0.4);
}
.sticky-cta-strip.visible { transform: translateY(0); }
.sticky-lbl { font-size: 0.84rem; color: rgba(255,255,255,0.65); }
.sticky-lbl strong { color: var(--white); }
.sticky-cta-btns { display: flex; gap: 10px; flex-shrink: 0; align-items: center; }
.sticky-dismiss {
  background: none; border: none; color: rgba(255,255,255,0.3);
  cursor: pointer; font-size: 1.1rem; padding: 4px 8px;
  transition: color 0.2s; margin-left: 4px;
}
.sticky-dismiss:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 640px) {
  .sticky-lbl { display: none; }
  .sticky-cta-strip { justify-content: center; padding: 12px 5%; }
  .sticky-dismiss { position: absolute; right: 12px; }
}

/* ── Uniform dark nav on ALL pages ──────────────────────────── */
/* Inner page heroes already have dark gradient backgrounds,
   so the dark nav blends perfectly. Ensure consistent padding. */
.page-hero { padding-top: 130px; }

/* Logo text — adjusted for "SecWiz Technologies" (longer name) */
.nav-logo .logo-text { color: var(--white); letter-spacing: 0.01em; }
.nav-logo .logo-accent { color: var(--teal); }
.nav-logo { gap: 10px; }

/* Scrolled state on inner pages — same as homepage */
.nav.scrolled {
  background: rgba(7,20,37,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(7,20,37,0.4);
}
