/* ============================================================
   INNOWAVE SYSTEMS — SHARED STYLESHEET
   innowavesystems.co.uk
   ============================================================ */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary:        #0495f3;
  --primary-dark:   #0378cc;
  --primary-light:  #e8f4fe;
  --green:          #14b981;
  --green-light:    #e5f6ee;
  --purple:         #7b1fa2;
  --purple-light:   #f3e5f5;
  --orange:         #f57c00;
  --orange-light:   #fff8e1;
  --red:            #dc3545;
  --red-light:      #ffebee;
  --blue-soft:      #1976d2;
  --blue-soft-light:#e3f2fd;
  --dark:           #0f1117;
  --dark-2:         #1a1d27;
  --dark-3:         #252836;
  --text-muted:     #6b7280;
  --text-body:      #374151;
  --border:         #e5e7eb;
  --white:          #ffffff;
  --radius:         12px;
  --radius-lg:      20px;
  --shadow:         0 4px 24px rgba(4,149,243,0.08);
  --shadow-lg:      0 12px 48px rgba(4,149,243,0.15);
  --font-body:      'Plus Jakarta Sans', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Transparent state (over hero) */
.navbar.transparent {
  background: transparent;
  box-shadow: none;
}

/* Scrolled state */
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* ---- Desktop Layout ---- */
.navbar-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1240px;
  margin: 0 auto;
}

/* Logo */
.navbar-logo { display: flex; align-items: center; }
.navbar-logo img { height: 36px; transition: all 0.3s ease; }
.logo-white { display: block; }
.logo-color { display: none; }
.navbar.scrolled .logo-white { display: none; }
.navbar.scrolled .logo-color { display: block; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links > li > a {
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  color: rgba(255,255,255,0.9);
  display: block;
}
.navbar.scrolled .nav-links > li > a { color: var(--text-body); }
.nav-links > li > a:hover { background: rgba(255,255,255,0.15); color: white; }
.navbar.scrolled .nav-links > li > a:hover { background: var(--primary-light); color: var(--primary); }

/* ---- Dropdown ---- */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,0.9);
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.navbar.scrolled .nav-dropdown-trigger { color: var(--text-body); }
.nav-dropdown-trigger:hover { background: rgba(255,255,255,0.15); color: white; }
.navbar.scrolled .nav-dropdown-trigger:hover { background: var(--primary-light); color: var(--primary); }
.nav-dropdown-trigger i { font-size: 12px; transition: transform 0.2s; }

/* Keep dropdown open while hovering trigger or menu */
.nav-dropdown-trigger i.open { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  border: 1px solid var(--border);
  padding: 8px;
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  pointer-events: none;
}

/* A padding bridge so mouse can travel from trigger to menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.15s;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.dropdown-item:hover { background: var(--primary-light); color: var(--primary); }

.dropdown-item-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* Navbar actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.country-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  /*border: 1px solid rgba(255,255,255,0.3);*/
}
.navbar.scrolled .country-badge { color: var(--text-body); border-color: var(--border); }
.country-badge img { width: 20px; height: 20px; border-radius: 50%; }

.btn-nav-login {
  font-size: 15px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  transition: all 0.2s;
}
.btn-nav-login:hover { background: rgba(255,255,255,0.15); border-color: white; }
.navbar.scrolled .btn-nav-login { border-color: var(--primary); color: var(--primary); }
.navbar.scrolled .btn-nav-login:hover { background: var(--primary-light); }

.btn-nav-cta {
  font-size: 15px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  background: var(--green);
  color: white;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.btn-nav-cta:hover { background: #0fa06e; transform: translateY(-1px); }

/* ---- Mobile bar ---- */
.navbar-mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.mobile-logo img { height: 26px; }
.mobile-logo .logo-color { display: none; }
.navbar.scrolled .mobile-logo .logo-white { display: none; }
.navbar.scrolled .mobile-logo .logo-color { display: block; }

.mobile-actions { display: flex; align-items: center; gap: 10px; }

.mobile-call-btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--green);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.mobile-call-btn:hover { background: #0fa06e; }

.mobile-menu-btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.2);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.navbar.scrolled .mobile-menu-btn { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }

/* ---- Mobile Drawer ---- */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; }

.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  background: white;
  z-index: 9999;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { right: 0; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-header img { height: 30px; }
.drawer-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #f3f4f6;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text-body);
}
.drawer-close:hover { background: var(--border); }

.drawer-nav { padding: 12px; flex: 1; }
.drawer-nav a, .drawer-nav > button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-body);
  text-align: left;
  transition: background 0.15s;
}
.drawer-nav a:hover, .drawer-nav > button:hover { background: var(--primary-light); color: var(--primary); }

.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 14px;
}
.drawer-submenu.open { max-height: 300px; }
.drawer-submenu a { font-size: 14px; font-weight: 600; padding: 9px 14px; }

.drawer-divider { height: 1px; background: var(--border); margin: 8px 14px; }

.drawer-footer {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.btn-login-drawer, .btn-contact-drawer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-login-drawer { background: var(--primary-light); color: var(--primary); }
.btn-login-drawer:hover { background: var(--primary); color: white; }
.btn-contact-drawer { background: var(--green); color: white; }
.btn-contact-drawer:hover { background: #0fa06e; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(135deg, #0a1628, #0a2150);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  transition: all 0.2s;
}
.footer-social:hover { background: var(--primary); border-color: var(--primary); color: white; }

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
.section { padding: 96px 0; }
.section-sm { padding: 72px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 24px;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(4,149,243,0.35); }
.btn-green { background: var(--green); color: white; }
.btn-green:hover { background: #0fa06e; transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--border); color: var(--text-body); background: white; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 12px; }

/* ============================================================
   STATUS PILLS
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.pill-green  { background: var(--green-light); color: #065f46; }
.pill-orange { background: var(--orange-light); color: #92400e; }
.pill-red    { background: var(--red-light);    color: #991b1b; }
.pill-blue   { background: var(--blue-soft-light); color: var(--blue-soft); }
.pill-purple { background: var(--purple-light); color: var(--purple); }
.pill-grey   { background: #f3f4f6; color: var(--text-muted); }

.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  transition: all 0.3s ease;
}
.card:hover { box-shadow: var(--shadow); border-color: var(--primary); transform: translateY(-2px); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--dark); }
.form-input, .form-select, .form-textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4,149,243,0.1);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background: var(--primary);
  color: white;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(4,149,243,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s;
  z-index: 500;
  cursor: pointer;
  border: none;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ============================================================
   HERO (shared base — pages can extend)
   ============================================================ */
.hero-page {
  background: linear-gradient(135deg, #0a1628 0%, #0a2a60 50%, #0a1628 100%);
  padding: 140px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-page::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,149,243,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero-page::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,185,129,0.1) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  pointer-events: none;
}

.hero-page-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-page-title span { color: var(--primary); }

.hero-page-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 36px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb i { font-size: 10px; }

/* Feature pill tags */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}
.hero-pill i { color: var(--primary); font-size: 14px; }

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.prose-section { background: white; }

.prose h2 { font-size: 26px; font-weight: 800; color: var(--dark); margin: 36px 0 14px; }
.prose h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin: 28px 0 10px; }
.prose p  { font-size: 15px; line-height: 1.8; color: var(--text-body); margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { font-size: 15px; line-height: 1.8; color: var(--text-body); margin-bottom: 8px; }
.prose a  { color: var(--primary); text-decoration: underline; }
.prose a:hover { color: var(--primary-dark); }

/* Two-column prose layout */
.prose-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

.prose-sidebar-nav {
  position: sticky;
  top: 100px;
  background: #f8f9fb;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
}
.prose-sidebar-nav h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.prose-sidebar-nav a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.prose-sidebar-nav a:last-child { border-bottom: none; }
.prose-sidebar-nav a:hover { color: var(--primary); }

/* ============================================================
   CONTACT SECTION (shared)
   ============================================================ */
.contact-section {
  background: #f8f9fb;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-body);
  transition: all 0.2s;
}
.contact-method:hover { border-color: var(--primary); color: var(--primary); }
.contact-method-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-btn i { font-size: 14px; color: var(--text-muted); transition: transform 0.25s; flex-shrink: 0; }
.faq-btn.open i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: #f8f9fb;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}
.testimonial-card.featured {
  background: linear-gradient(135deg, #0a1628, #0d2040);
  border-color: transparent;
  color: white;
}
.testimonial-card:hover:not(.featured) { box-shadow: var(--shadow); border-color: var(--primary); transform: translateY(-2px); }
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.stars i { font-size: 15px; color: #f59e0b; }
.testimonial-card.featured .stars i { color: #fbbf24; }
.testimonial-text { font-size: 15px; line-height: 1.75; color: var(--text-body); margin-bottom: 24px; }
.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,0.85); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-card.featured .testimonial-avatar { background: rgba(255,255,255,0.2); }
.testimonial-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.testimonial-card.featured .testimonial-name { color: white; }
.testimonial-company { font-size: 13px; color: var(--text-muted); }
.testimonial-card.featured .testimonial-company { color: rgba(255,255,255,0.6); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.plan-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  position: relative;
}
.plan-card.featured {
  background: linear-gradient(145deg, #0a1628, #1a3a6e);
  border-color: var(--primary);
  color: white;
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(4,149,243,0.25);
}
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.plan-card.featured .plan-name { color: white; }
.plan-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 6px; }
.plan-price-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.plan-card.featured .plan-price-num { color: white; }
.plan-price-suffix { font-size: 16px; color: var(--text-muted); margin-bottom: 6px; }
.plan-card.featured .plan-price-suffix { color: rgba(255,255,255,0.6); }
.plan-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.65); }
.plan-divider { height: 1px; background: var(--border); margin: 0 0 20px; }
.plan-card.featured .plan-divider { background: rgba(255,255,255,0.12); }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
}
.plan-card.featured .plan-feature { color: rgba(255,255,255,0.85); }
.plan-feature i { color: var(--green); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.plan-card.featured .plan-feature i { color: #6ee7b7; }
.btn-plan {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
}
.btn-plan-primary { background: var(--primary); color: white; }
.btn-plan-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-plan-outline { border: 2px solid var(--border); color: var(--text-body); background: white; }
.btn-plan-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-plan-white { background: white; color: var(--primary); }
.btn-plan-white:hover { background: rgba(255,255,255,0.9); }

/* ============================================================
   PARTNERS BAR
   ============================================================ */
.partners-section { background: #f8f9fb; padding: 72px 0; }
.partners-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.partner-logo { opacity: 0.5; transition: opacity 0.2s; filter: grayscale(100%); }
.partner-logo:hover { opacity: 1; filter: none; }
.partner-logo img { height: 34px; object-fit: contain; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.trust-item i { color: var(--green); font-size: 16px; }

/* ============================================================
   FEATURE GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.feature-card {
  background: #f8f9fb;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature-card:hover {
  background: white;
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   STATUS PAGE SPECIFIC
   ============================================================ */
.status-hero {
  background: linear-gradient(135deg, #0a1628, #0a2a60);
  padding: 100px 0 60px;
  text-align: center;
}
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(20,185,129,0.12);
  border: 1px solid rgba(20,185,129,0.3);
  border-radius: 100px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  margin-top: 24px;
}
.status-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(20,185,129,0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(20,185,129,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(20,185,129,0.1); }
}

.status-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.status-service-row:last-child { border-bottom: none; }
.status-service-name { font-weight: 600; color: var(--dark); font-size: 15px; }
.status-service-desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1628, #0a2a60);
  text-align: center;
  padding: 40px 24px;
}
.error-code {
  font-size: clamp(80px, 18vw, 160px);
  font-weight: 800;
  color: white;
  line-height: 1;
  opacity: 0.12;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  margin-top: -100px;
  white-space: nowrap;
}
.error-content {
  position: relative;
  z-index: 2;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #0a1628, #0d2a60);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,149,243,0.15) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.cta-banner-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: white; margin-bottom: 16px; }
.cta-banner-sub { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   MOCK UI COMPONENTS
   ============================================================ */
.mock-window {
  background: white;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.mock-titlebar {
  background: #f0f0f0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #ddd;
}
.mock-dot { width: 12px; height: 12px; border-radius: 50%; }
.mock-dot-red { background: #ff5f57; }
.mock-dot-yellow { background: #febc2e; }
.mock-dot-green { background: #28c840; }
.mock-titlebar-label { font-size: 12px; font-weight: 600; color: #666; margin-left: 8px; }
.mock-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.mock-table th {
  background: #f8f9fb;
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}
.mock-table td {
  padding: 11px 14px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-body);
  font-weight: 500;
}
.mock-table tr:last-child td { border-bottom: none; }
.mock-table tr:hover td { background: #fafafa; }

/* App screenshot frame */
.app-screenshot {
  border-radius: 16px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  overflow: hidden;
  width: 100%;
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.divider { height: 1px; background: var(--border); margin: 0; }
.divider-dark { height: 1px; background: rgba(255,255,255,0.08); }

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: white;
  transition: all 0.3s;
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 28px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.team-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.team-bio { font-size: 14px; color: var(--text-body); line-height: 1.7; }

.value-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #f8f9fb;
  transition: all 0.3s;
}
.value-card:hover { background: white; box-shadow: var(--shadow); border-color: var(--primary); }
.value-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

/* ============================================================
   DOCUMENTS PAGE
   ============================================================ */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.doc-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: white;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
}
.doc-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.doc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.doc-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.doc-sub { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-white { color: white; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-green { color: var(--green); }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.gap-4 { gap: 16px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .doc-grid { grid-template-columns: repeat(2, 1fr); }
  .prose-grid { grid-template-columns: 1fr; }
  .prose-sidebar-nav { position: relative; top: 0; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-desktop { display: none !important; }
  .navbar-mobile { display: flex !important; }

  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }

  .hero-page { padding: 110px 0 64px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }

  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 20px; justify-content: flex-start; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}