/* ============================================================
   SECWIZ TECHNOLOGIES — Global Design System
   Clean Professional Light Theme with Deep Navy Accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Colors */
  --navy:      #0B1F3A;
  --navy-mid:  #12305C;
  --blue:      #1A5FFF;
  --blue-lt:   #3D7FFF;
  --teal:      #00C9B1;
  --teal-lt:   #00E5CE;
  --orange:    #FF6B35;
  --white:     #FFFFFF;
  --off-white: #F7F9FC;
  --gray-50:   #F0F4FA;
  --gray-100:  #E4EAF4;
  --gray-200:  #C8D3E8;
  --gray-400:  #8A9BBE;
  --gray-600:  #506080;
  --gray-800:  #2A3A54;
  --text:      #1A2640;
  --text-mid:  #405070;
  --text-soft: #6B7FA0;

  /* Typography */
  --font-display: 'Clash Display', 'Georgia', serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(11,31,58,0.06);
  --shadow-md:  0 8px 30px rgba(11,31,58,0.10);
  --shadow-lg:  0 20px 60px rgba(11,31,58,0.14);
  --shadow-xl:  0 30px 80px rgba(11,31,58,0.18);
  --glow-blue:  0 0 40px rgba(26,95,255,0.2);
  --glow-teal:  0 0 40px rgba(0,201,177,0.25);

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill:100px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 96px 5%; }
.section--alt { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
  font-weight: 400;
  line-height: 1.75;
}
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* Gradient text */
.text-gradient {
  background: linear-gradient(130deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--r-sm);
  padding: 13px 26px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,95,255,0.28);
}
.btn-primary:hover { background: #0A4FE0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,95,255,0.36); }

.btn-teal {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,201,177,0.3);
}
.btn-teal:hover { background: var(--teal-lt); transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid var(--gray-200);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: rgba(26,95,255,0.04); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-ghost {
  color: var(--blue);
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { gap: 14px; }

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

.btn-arrow::after { content: '→'; font-size: 1em; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  height: 64px;
  box-shadow: var(--shadow-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text { color: var(--navy); }
.nav-logo-text span { color: var(--blue); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: var(--r-sm);
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: rgba(26,95,255,0.06); }

.nav-link .chevron {
  font-size: 0.65rem;
  margin-left: 1px;
  transition: transform 0.2s;
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 12px;
  min-width: 220px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s var(--ease);
  z-index: 100;
}
.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: 10px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--r-sm);
  transition: all 0.15s;
}
.nav-dropdown a:hover { background: var(--gray-50); color: var(--blue); }
.nav-dropdown a .icon { font-size: 1rem; width: 24px; text-align: center; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* 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(--navy); border-radius: 2px; transition: all 0.3s; }
.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 menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  padding: 20px 5% 32px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  overflow-y: auto;
  max-height: calc(100vh - 72px);
}
.nav-mobile.open { display: block; }
.nav-mobile-section { margin-bottom: 20px; }
.nav-mobile-section h4 { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
.nav-mobile a { display: flex; align-items: center; gap: 10px; padding: 12px 0; font-size: 0.95rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--gray-50); }
.nav-mobile a:hover { color: var(--blue); }
.nav-mobile .cta-row { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 80px 5% 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img { height: 36px; filter: brightness(10); }
.footer-logo-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.footer-logo-text span { color: var(--teal); }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 300px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.social-icon:hover { background: var(--blue); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links 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.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--teal); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.26s; }
.reveal-delay-4 { transition-delay: 0.34s; }
.reveal-delay-5 { transition-delay: 0.42s; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: all 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,95,255,0.15);
}
.card-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: all 0.3s;
}
.card:hover .card-icon { background: rgba(26,95,255,0.08); }
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; }

/* ============================================================
   FLOATING CTA BAR
   ============================================================ */
.cta-bar {
  background: linear-gradient(130deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-xl);
  padding: 60px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin: 0 5%;
  position: relative;
  overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute;
  top: -60px; right: -40px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,201,177,0.15), transparent 70%);
  border-radius: 50%;
}
.cta-bar h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); color: var(--white); margin-bottom: 10px; }
.cta-bar p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.cta-bar-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   BADGES & TAGS
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26,95,255,0.08);
  color: var(--blue);
  border: 1px solid rgba(26,95,255,0.15);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.badge--teal { background: rgba(0,201,177,0.08); color: #00A896; border-color: rgba(0,201,177,0.2); }
.badge--orange { background: rgba(255,107,53,0.08); color: var(--orange); border-color: rgba(255,107,53,0.2); }

/* ============================================================
   PAGE HERO (shared base)
   ============================================================ */
.page-hero {
  padding: 140px 5% 80px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,201,177,0.12), transparent 70%);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(26,95,255,0.15), transparent 70%);
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.page-hero h1 { font-size: clamp(2.4rem, 4.5vw, 4rem); color: var(--white); margin-bottom: 18px; }
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 600px; margin-bottom: 36px; font-weight: 400; }
.page-hero .breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.page-hero .breadcrumb a { color: var(--teal); }

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-box {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}
.section--dark .stats-row { background: rgba(255,255,255,0.06); }
.section--dark .stat-box { background: rgba(255,255,255,0.03); }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.section--dark .stat-num { color: var(--teal); }
.stat-label { font-size: 0.82rem; color: var(--text-soft); margin-top: 8px; line-height: 1.4; }
.section--dark .stat-label { color: rgba(255,255,255,0.55); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-list { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 56px; height: 56px;
  background: var(--blue);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.step-content h3 { font-size: 1.1rem; margin-bottom: 8px; margin-top: 12px; }
.step-content p { font-size: 0.9rem; color: var(--text-soft); }

/* ============================================================
   TESTIMONIAL CARD
   ============================================================ */
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  transition: all 0.3s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { color: #FFB800; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 18px; }
.testi-text { font-size: 0.96rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  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); }

/* ============================================================
   INDUSTRY TAG CLOUD
   ============================================================ */
.industry-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-tag {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-pill);
  padding: 10px 20px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all 0.2s;
}
.industry-tag:hover { border-color: var(--blue); color: var(--blue); background: rgba(26,95,255,0.04); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all 0.25s;
  text-decoration: none;
  animation: pulse-wa 2.5s infinite;
}
.float-wa:hover { transform: scale(1.12); }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,0.7); }
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-mid); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-control {
  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-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,95,255,0.1); background: var(--white); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { 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: 1rem;
  padding: 16px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  box-shadow: 0 4px 16px rgba(26,95,255,0.28);
}
.form-submit:hover { background: #0A4FE0; transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-bar { flex-direction: column; text-align: center; padding: 48px 36px; }
  .cta-bar-actions { justify-content: center; }
}
@media (max-width: 768px) {
  .section { padding: 72px 5%; }
  .nav-menu, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-bar { margin: 0; border-radius: 0; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .cta-bar { padding: 36px 5%; }
}