/* ═══════════════════════════════════════════════════════════════════
   Hawkswave — Design System & Application CSS
   PHP MVC Edition — matches the original Next.js design faithfully
═══════════════════════════════════════════════════════════════════ */

/* ── Google Fonts ──────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties (Light Mode) ────────────────────────── */
:root {
  --background:       #ffffff;
  --foreground:       #0f172a;
  --surface:          #f8fafc;
  --surface-alt:      #f1f5f9;
  --border:           #e2e8f0;
  --border-subtle:    #f1f5f9;
  --muted:            #64748b;
  --muted-foreground: #94a3b8;
  --brand:            #4f46e5;
  --brand-hover:      #4338ca;
  --brand-light:      #eef2ff;
  --gradient-brand:   linear-gradient(135deg, #4f46e5 0%, #0ea5e9 100%);
  --shadow-sm:        0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:        0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:        0 10px 40px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl:        0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-brand:     0 8px 32px rgba(79,70,229,0.25);
}

/* ── Dark Mode ──────────────────────────────────────────────────── */
[data-theme="dark"] {
  --background:       #04040f;
  --foreground:       #f1f5f9;
  --surface:          #0d0d1f;
  --surface-alt:      #131326;
  --border:           #1e1b4b;
  --border-subtle:    #131326;
  --muted:            #94a3b8;
  --muted-foreground: #64748b;
  --brand:            #6366f1;
  --brand-hover:      #818cf8;
  --brand-light:      #1e1b4b;
  --gradient-brand:   linear-gradient(135deg, #6366f1 0%, #38bdf8 100%);
  --shadow-sm:        0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md:        0 4px 12px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg:        0 10px 40px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
  --shadow-xl:        0 20px 60px rgba(0,0,0,0.7), 0 8px 24px rgba(0,0,0,0.5);
  --shadow-brand:     0 8px 32px rgba(99,102,241,0.35);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Typography ──────────────────────────────────────────────────  */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

/* ── Scrollbar ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted-foreground); }

/* ── Selection ──────────────────────────────────────────────────── */
::selection { background: rgba(99,102,241,0.2); color: var(--foreground); }

/* ── Focus ──────────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .container { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.section-pad { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .section-pad { padding-top: 7rem; padding-bottom: 7rem; } }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2,1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ═══════════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════════ */
@keyframes fadeInUp   { from { opacity:0; transform:translateY(24px);  } to { opacity:1; transform:translateY(0);  } }
@keyframes fadeIn     { from { opacity:0; }                              to { opacity:1; } }
@keyframes float      { 0%,100% { transform:translateY(0); }     50%  { transform:translateY(-12px); } }
@keyframes shimmer    { 0% { background-position:-200% 0; }      100% { background-position:200% 0; } }
@keyframes spinSlow   { from { transform:rotate(0deg); }          to   { transform:rotate(360deg); } }
@keyframes gradShift  { 0%,100% { background-position:0% 50%; }  50%  { background-position:100% 50%; } }
@keyframes pulse      { 0%,100% { opacity:.6; }                   50%  { opacity:1; } }
@keyframes slideRight { from { transform:translateX(-100%); }     to   { transform:translateX(0); } }
@keyframes countUp    { from { opacity:0; transform:scale(.8); }  to   { opacity:1; transform:scale(1); } }

.animate-fade-up   { animation: fadeInUp .6s ease both; }
.animate-fade-in   { animation: fadeIn .4s ease both; }
.animate-float     { animation: float 3s ease-in-out infinite; }
.animate-float-slow{ animation: float 5s ease-in-out infinite; }
.animate-shimmer   { background: linear-gradient(90deg, var(--surface) 25%, var(--surface-alt) 50%, var(--surface) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
.animate-pulse     { animation: pulse 2s ease-in-out infinite; }
.animate-spin-slow { animation: spinSlow 8s linear infinite; }

/* Intersection Observer–driven reveals */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-24px); transition: opacity .6s ease, transform .6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(24px);  transition: opacity .6s ease, transform .6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ═══════════════════════════════════════════════════════════════════
   DESIGN TOKENS / UTILITY CLASSES
═══════════════════════════════════════════════════════════════════ */

/* Gradient text */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-animated {
  background: linear-gradient(135deg, #4f46e5, #0ea5e9, #6366f1, #38bdf8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 4s ease infinite;
}

/* Dot grid background */
.dot-grid {
  background-image: radial-gradient(circle, rgba(99,102,241,.12) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Glass morphism */
.glass {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
}
[data-theme="dark"] .glass { background: rgba(13,13,31,.7); border-color: rgba(99,102,241,.15); }

/* Cards */
.card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card:hover { border-color: rgba(79,70,229,.4); box-shadow: var(--shadow-xl); }
.card-hover:hover { transform: translateY(-4px); }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  padding: .25rem .75rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-brand {
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid rgba(99,102,241,.2);
}

/* Link underline animation */
.link-underline { position: relative; }
.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-brand);
  transition: width .3s ease;
  border-radius: 1px;
}
.link-underline:hover::after { width: 100%; }

/* Blob */
.blob {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: float 6s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1;
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { background: var(--brand-hover); box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn-secondary {
  background: var(--surface);
  color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: rgba(79,70,229,.5); box-shadow: var(--shadow-md); }
.btn-white {
  background: #fff;
  color: var(--brand);
  font-weight: 700;
}
.btn-white:hover { background: rgba(255,255,255,.9); }
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { background: #20bd5a; box-shadow: 0 6px 20px rgba(37,211,102,.45); transform: translateY(-1px); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; border-radius: .875rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .8125rem; border-radius: .625rem; }

.btn svg, .btn .icon { width: 1rem; height: 1rem; flex-shrink: 0; transition: transform .2s; }
.btn:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-label { font-size: .75rem; font-weight: 600; color: var(--foreground); }
.form-label .req { color: #ef4444; margin-left: .125rem; }
.form-control {
  width: 100%;
  padding: .625rem 1rem;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--foreground);
  font-size: .875rem;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(79,70,229,.15); }
.form-control:invalid:not(:placeholder-shown) { border-color: #ef4444; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; background-size: 1rem; padding-right: 2.5rem; }
textarea.form-control { resize: vertical; min-height: 120px; }

.alert {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: .75rem;
  font-size: .875rem;
  line-height: 1.5;
}
.alert-success { background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.3); color: #059669; }
.alert-error   { background: rgba(239,68,68,.08);   border: 1px solid rgba(239,68,68,.3);   color: #dc2626; }
.alert-icon { flex-shrink: 0; width: 1.25rem; height: 1.25rem; margin-top: .1rem; }
[data-theme="dark"] .alert-success { color: #34d399; }
[data-theme="dark"] .alert-error   { color: #f87171; }

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .3s, border-color .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(var(--background-rgb, 255,255,255), .9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .navbar.scrolled { background: rgba(4,4,15,.9); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 1024px) { .navbar-inner { height: 4.5rem; } }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.nav-logo-icon {
  width: 2rem; height: 2rem;
  border-radius: .5rem;
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.nav-logo-text { font-size: 1rem; font-weight: 700; color: var(--foreground); letter-spacing: -.025em; }
.nav-logo-text span { color: var(--brand); }

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  padding: .5rem .75rem;
  border-radius: .5rem;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--foreground); background: var(--surface); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  padding: .5rem .75rem;
  border-radius: .5rem;
  transition: color .2s, background .2s;
  cursor: pointer;
}
.nav-dropdown-btn:hover, .nav-dropdown.open .nav-dropdown-btn { color: var(--foreground); }
.nav-dropdown-btn svg { width: .875rem; height: .875rem; transition: transform .2s; }
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-xl);
  min-width: 340px;
  display: none;
  z-index: 200;
  grid-template-columns: 1fr;
  gap: .25rem;
}
.nav-dropdown-menu.wide { min-width: 480px; grid-template-columns: 1fr 1fr; }
.nav-dropdown.open .nav-dropdown-menu { display: grid; }

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem;
  border-radius: .75rem;
  transition: background .2s;
}
.nav-dropdown-item:hover { background: var(--surface); }
.nav-dropdown-item-icon {
  flex-shrink: 0;
  width: 2rem; height: 2rem;
  border-radius: .5rem;
  background: var(--brand-light);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background .2s, color .2s;
}
.nav-dropdown-item:hover .nav-dropdown-item-icon { background: var(--brand); color: #fff; }
.nav-dropdown-item-title { font-size: .875rem; font-weight: 600; color: var(--foreground); }
.nav-dropdown-item:hover .nav-dropdown-item-title { color: var(--brand); }
.nav-dropdown-item-desc { font-size: .75rem; color: var(--muted); margin-top: .125rem; }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: .75rem; }

/* Theme toggle */
.theme-toggle {
  width: 2.25rem; height: 2.25rem;
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all .2s;
  cursor: pointer;
}
.theme-toggle:hover { color: var(--foreground); background: var(--surface-alt); }
.theme-toggle svg { width: 1rem; height: 1rem; }

/* Mobile toggle */
.mobile-toggle {
  display: flex;
  align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: .5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
}
.mobile-toggle svg { width: 1.25rem; height: 1.25rem; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile menu */
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 210;
  width: 320px;
  background: var(--background);
  border-left: 1px solid var(--border);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.25,.46,.45,.94);
  flex-direction: column;
}
.mobile-backdrop.active, .mobile-menu.active { display: flex; }
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.mobile-close {
  width: 2.25rem; height: 2.25rem;
  border-radius: .5rem;
  background: var(--surface);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mobile-close svg { width: 1.25rem; height: 1.25rem; }
.mobile-nav { flex: 1; padding: 1.25rem; display: flex; flex-direction: column; gap: .25rem; }

.mobile-nav-link {
  display: block;
  padding: .75rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background .2s;
}
.mobile-nav-link:hover { background: var(--surface); }

.mobile-nav-group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .75rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--foreground);
  cursor: pointer;
  transition: background .2s;
}
.mobile-nav-group-btn:hover { background: var(--surface); }
.mobile-nav-group-btn svg { width: 1rem; height: 1rem; transition: transform .2s; }
.mobile-nav-group.open .mobile-nav-group-btn svg { transform: rotate(180deg); }

.mobile-nav-sub { display: none; margin-left: 1rem; margin-top: .25rem; }
.mobile-nav-group.open .mobile-nav-sub { display: flex; flex-direction: column; gap: .125rem; }
.mobile-nav-sub-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem .75rem;
  border-radius: .625rem;
  font-size: .875rem;
  color: var(--muted);
  transition: color .2s, background .2s;
}
.mobile-nav-sub-link:hover { color: var(--foreground); background: var(--surface); }

.mobile-nav-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer-main { padding: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .tagline { font-size: .875rem; color: var(--muted); line-height: 1.7; max-width: 20rem; margin-top: 1rem; }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.25rem; }
.footer-contact a, .footer-contact-item {
  display: flex; align-items: center; gap: .625rem;
  font-size: .875rem; color: var(--muted);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--brand); }
.footer-contact svg, .footer-contact-item svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 2.25rem; height: 2.25rem;
  border-radius: .5rem;
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.footer-social a:hover { color: var(--brand); border-color: var(--brand); }
.footer-social svg { width: 1rem; height: 1rem; }

.footer-col h4 {
  font-size: .6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col a { font-size: .875rem; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--foreground); }

.footer-newsletter {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(79,70,229,.08), rgba(14,165,233,.08));
  border: 1px solid rgba(79,70,229,.15);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) { .footer-newsletter { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-newsletter h3 { font-size: 1rem; font-weight: 600; }
.footer-newsletter p { font-size: .875rem; color: var(--muted); margin-top: .25rem; }
.newsletter-form { display: flex; gap: .5rem; min-width: 300px; }
.newsletter-input {
  flex: 1;
  padding: .625rem 1rem;
  border-radius: .75rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  font-size: .875rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.newsletter-input:focus { border-color: var(--brand); }
.newsletter-input::placeholder { color: var(--muted); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: .75rem;
  color: var(--muted);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: var(--muted); transition: color .2s; }
.footer-legal a:hover { color: var(--foreground); }

/* ═══════════════════════════════════════════════════════════════════
   PAGE LAYOUTS
═══════════════════════════════════════════════════════════════════ */
.page-top { padding-top: 4rem; }
@media (min-width: 1024px) { .page-top { padding-top: 4.5rem; } }

/* Hero section */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: var(--background);
}
.page-hero .dot-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(99,102,241,.1) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .4;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero.center { text-align: center; }
.page-hero.center .hero-inner { max-width: 48rem; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.125rem; color: var(--muted); line-height: 1.7; }

/* Stats bar */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; text-align: center; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-val { font-size: 2.5rem; font-weight: 900; line-height: 1; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: .875rem; color: var(--muted); margin-top: .25rem; }

/* ═══════════════════════════════════════════════════════════════════
   HOME PAGE SECTIONS
═══════════════════════════════════════════════════════════════════ */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4.5rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background: var(--background);
}
.hero-blob-1 {
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,.15), transparent 70%);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute; bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,.12), transparent 70%);
  pointer-events: none;
}
.hero-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-badge { margin-bottom: 1.5rem; }
.hero-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; line-height: 1.08; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.125rem; color: var(--muted); line-height: 1.7; max-width: 36rem; margin-bottom: 1.5rem; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; margin-bottom: 2rem; }
.hero-highlight { display: flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 500; }
.hero-highlight-dot { width: .75rem; height: .75rem; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-tech { margin-top: .5rem; }
.hero-tech-label { font-size: .6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .75rem; }
.hero-tech-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tech-tag {
  padding: .25rem .75rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all .2s;
  cursor: default;
}
.tech-tag:hover { border-color: rgba(79,70,229,.4); color: var(--foreground); }

/* Code window visual */
.code-window {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-xl);
}
.code-window-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface-alt);
}
.code-window-dot { width: .75rem; height: .75rem; border-radius: 50%; }
.code-window-url { flex: 1; height: 1.25rem; border-radius: .375rem; background: var(--border); margin-left: .75rem; }
.code-body { padding: 1.5rem; font-family: 'Courier New', monospace; font-size: .875rem; line-height: 1.8; }
.code-purple { color: #a78bfa; }
.code-blue   { color: #60a5fa; }
.code-green  { color: #34d399; }
.code-yellow { color: #fbbf24; }
.code-orange { color: #fb923c; }
.code-pink   { color: #f472b6; }
.code-muted  { color: var(--muted); }
.code-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--surface-alt);
  font-size: .75rem;
  color: var(--muted);
}
.code-status-dot { width: .5rem; height: .5rem; border-radius: 50%; background: #34d399; animation: pulse 2s infinite; }

/* Floating cards */
.floating-card {
  position: absolute;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}
.floating-card-top { top: -1.5rem; left: -1.5rem; animation: float 3s ease-in-out infinite; }
.floating-card-bottom { bottom: -1rem; right: -1rem; animation: float 4s ease-in-out infinite .5s; text-align: center; }
.floating-card-icon { width: 2.5rem; height: 2.5rem; border-radius: .75rem; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.floating-card-title { font-size: .875rem; font-weight: 700; }
.floating-card-sub { font-size: .75rem; color: var(--muted); }
.floating-card-val { font-size: 1.75rem; font-weight: 900; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Trusted By */
.trusted-section { padding: 2.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trusted-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 1.5rem; text-align: center; }
.trusted-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem 3rem; }
.trusted-logo { font-size: .9375rem; font-weight: 700; color: var(--muted-foreground); opacity: .7; transition: opacity .2s; }
.trusted-logo:hover { opacity: 1; }

/* Section headings */
.section-heading { text-align: center; max-width: 40rem; margin: 0 auto 3.5rem; }
.section-heading h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: .75rem; }
.section-heading p { color: var(--muted); font-size: 1.0625rem; line-height: 1.7; }

/* Services section */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
  display: block;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  transition: all .3s;
}
.service-card:hover { border-color: rgba(79,70,229,.4); box-shadow: var(--shadow-xl); transform: translateY(-2px); }
.service-number { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.0625rem; margin-bottom: .5rem; transition: color .2s; }
.service-card:hover h3 { color: var(--brand); }
.service-tagline { font-size: .875rem; font-weight: 500; margin-bottom: .5rem; }
.service-desc { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
.service-features { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1.5rem; }
.service-feature-item { display: flex; align-items: center; gap: .5rem; font-size: .75rem; color: var(--muted); }
.service-feature-dot { width: .375rem; height: .375rem; border-radius: 50%; flex-shrink: 0; }
.service-learn { display: flex; align-items: center; gap: .25rem; font-size: .75rem; font-weight: 600; transition: gap .2s; }
.service-card:hover .service-learn { gap: .5rem; }

/* Why Us section */
.why-us-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .why-us-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .why-us-grid { grid-template-columns: repeat(3,1fr); } }
.why-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
.why-card:hover { border-color: rgba(79,70,229,.3); box-shadow: var(--shadow-md); }
.why-icon { font-size: 1.5rem; margin-bottom: 1rem; display: inline-block; transition: transform .2s; }
.why-card:hover .why-icon { transform: scale(1.1); }
.why-card h3 { font-size: .9375rem; font-weight: 700; margin-bottom: .5rem; }
.why-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px)  { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }
.testimonial-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-quote-icon { font-size: 2rem; color: var(--brand); opacity: .3; line-height: 1; margin-bottom: 1rem; }
.testimonial-stars { color: #f59e0b; font-size: .875rem; margin-bottom: .75rem; letter-spacing: .125rem; }
.testimonial-text { font-size: .9375rem; color: var(--foreground); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: .625rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem; color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-size: .9375rem; font-weight: 700; }
.testimonial-role { font-size: .75rem; color: var(--muted); }

/* Industries */
.industries-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px)  { .industries-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .industries-grid { grid-template-columns: repeat(3,1fr); } }
.industry-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: .875rem;
  background: var(--background);
  border: 1px solid var(--border);
  transition: all .2s;
}
.industry-card:hover { border-color: rgba(79,70,229,.4); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.industry-icon { font-size: 1.75rem; flex-shrink: 0; }
.industry-title { font-size: 1rem; font-weight: 700; }
.industry-desc { font-size: .8125rem; color: var(--muted); margin-top: .125rem; }

/* FAQ section */
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: .875rem;
  background: var(--surface);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: rgba(79,70,229,.25); }
.faq-item[open] { border-color: rgba(79,70,229,.4); }
.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  cursor: pointer;
  list-style: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary-q { font-size: .9375rem; font-weight: 700; }
.faq-toggle {
  flex-shrink: 0;
  width: 1.5rem; height: 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 1.125rem;
  transition: transform .2s, background .2s;
  line-height: 1;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--brand); border-color: var(--brand); color: #fff; }
.faq-body { padding: 0 1.25rem 1.25rem; font-size: .9375rem; color: var(--muted); line-height: 1.7; }

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, #4f46e5, #6366f1, #0ea5e9);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section .dot-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.0625rem; max-width: 32rem; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Products section */
.products-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3,1fr); gap: 2rem; } }

.product-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--background);
  transition: all .3s;
  display: block;
}
.product-card:hover { border-color: rgba(79,70,229,.35); box-shadow: var(--shadow-xl); transform: translateY(-2px); }
.product-icon { font-size: 2rem; margin-bottom: 1rem; }
.product-title { font-size: 1.125rem; font-weight: 700; margin-bottom: .5rem; }
.product-desc { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
.product-from { font-size: .75rem; color: var(--muted); }
.product-from strong { font-size: 1.25rem; font-weight: 900; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.product-features { display: flex; flex-direction: column; gap: .5rem; margin: 1rem 0; }
.product-feature { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--muted); }
.product-feature-check { width: .875rem; height: .875rem; color: #10b981; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════
   PORTFOLIO / CASE STUDIES
═══════════════════════════════════════════════════════════════════ */
.case-study {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  transition: border-color .2s, box-shadow .2s;
}
@media (min-width: 1024px) { .case-study { grid-template-columns: 3fr 2fr; } }
.case-study:hover { border-color: rgba(79,70,229,.25); box-shadow: var(--shadow-lg); }
.case-study.reverse { }
@media (min-width: 1024px) { .case-study.reverse { grid-template-columns: 2fr 3fr; } .case-study.reverse .case-visual { order: -1; } }

.case-tag { display: inline-block; padding: .25rem .75rem; border-radius: 9999px; font-size: .75rem; font-weight: 600; margin-bottom: 1rem; }
.case-title { font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem; }
.case-client { font-size: .875rem; color: var(--muted); margin-bottom: 1rem; }
.case-problem-label { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.case-problem { font-size: .9375rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }
.case-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.case-metric { text-align: center; padding: 1rem; border-radius: .75rem; background: var(--surface); border: 1px solid var(--border); }
.case-metric-val { font-size: 1.5rem; font-weight: 900; }
.case-metric-label { font-size: .75rem; color: var(--muted); margin-top: .25rem; }

.case-visual {
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  font-size: 4rem;
}

.tech-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.tech-pill { padding: .25rem .625rem; border-radius: .5rem; font-size: .75rem; font-weight: 500; background: var(--surface); border: 1px solid var(--border); color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--background);
  transition: all .2s;
}
.blog-card:hover { border-color: rgba(79,70,229,.3); box-shadow: var(--shadow-xl); transform: translateY(-2px); }
.blog-cat { display: inline-flex; align-items: center; padding: .25rem .625rem; border-radius: 9999px; font-size: .6875rem; font-weight: 600; margin-bottom: .875rem; }
.blog-title { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: .75rem; transition: color .2s; }
.blog-card:hover .blog-title { color: var(--brand); }
.blog-excerpt { font-size: .875rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-meta { display: flex; align-items: center; gap: .75rem; font-size: .75rem; color: var(--muted); margin-top: auto; }
.blog-meta svg { width: .875rem; height: .875rem; }

.featured-post {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  transition: all .2s;
}
@media (min-width: 1024px) { .featured-post { grid-template-columns: 1fr 1fr; } }
.featured-post:hover { border-color: rgba(79,70,229,.3); box-shadow: var(--shadow-xl); }

/* Blog post content */
.blog-content { max-width: 48rem; margin: 0 auto; }
.blog-content h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }
.blog-content h3 { font-size: 1.1875rem; margin: 1.5rem 0 .5rem; }
.blog-content p  { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.blog-content ul, .blog-content ol { margin: 1rem 0; padding-left: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.blog-content li { color: var(--muted); line-height: 1.7; }
.blog-content ul li { list-style: disc; }
.blog-content ol li { list-style: decimal; }
.blog-content strong { color: var(--foreground); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════
   SERVICES / PRODUCTS DETAIL
═══════════════════════════════════════════════════════════════════ */
.detail-hero-inner { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .detail-hero-inner { grid-template-columns: 3fr 2fr; } }
.detail-features-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .detail-features-grid { grid-template-columns: repeat(2,1fr); } }
.detail-feature { padding: 1.5rem; border-radius: .875rem; background: var(--surface); border: 1px solid var(--border); }
.detail-feature h4 { font-size: .9375rem; font-weight: 700; margin-bottom: .375rem; }
.detail-feature p { font-size: .875rem; color: var(--muted); line-height: 1.6; }

.process-steps { display: flex; flex-direction: column; gap: 1.5rem; max-width: 48rem; }
.process-step { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: flex-start; }
.process-step-num {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.process-step-title { font-size: 1rem; font-weight: 700; margin-bottom: .375rem; }
.process-step-desc { font-size: .875rem; color: var(--muted); line-height: 1.6; }

.benefits-list { display: flex; flex-direction: column; gap: .75rem; }
.benefit-item { display: flex; align-items: center; gap: .75rem; }
.benefit-check { width: 1.25rem; height: 1.25rem; border-radius: 50%; background: rgba(16,185,129,.15); color: #10b981; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .75rem; }
.benefit-item span { font-size: .9375rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════════
   PRICING PAGE
═══════════════════════════════════════════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }

.pricing-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--background);
  transition: all .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--brand); box-shadow: var(--shadow-xl); }
.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%; transform: translateX(-50%);
  padding: .375rem 1rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 700;
  background: var(--brand);
  color: #fff;
  white-space: nowrap;
}
.pricing-name { font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.pricing-desc { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
.pricing-price { font-size: 2rem; font-weight: 900; margin-bottom: .25rem; }
.pricing-period { font-size: .875rem; color: var(--muted); }
.pricing-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.pricing-features { display: flex; flex-direction: column; gap: .625rem; margin-bottom: 2rem; }
.pricing-feature { display: flex; align-items: center; gap: .625rem; font-size: .875rem; color: var(--muted); }
.pricing-feature svg { width: 1rem; height: 1rem; color: #10b981; flex-shrink: 0; }

/* Product pricing table */
.pricing-table { width: 100%; border-collapse: collapse; border-radius: 1rem; overflow: hidden; }
.pricing-table th, .pricing-table td { text-align: left; padding: 1rem 1.5rem; font-size: .875rem; border-bottom: 1px solid var(--border); }
.pricing-table th { background: var(--surface); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--surface); }
.pricing-product { font-weight: 700; }
.pricing-product-sub { font-size: .75rem; color: var(--muted); }
.pricing-from { font-size: 1.25rem; font-weight: 900; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Comparison table */
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: .875rem 1.5rem; font-size: .875rem; border-bottom: 1px solid var(--border); }
.comparison-table th { background: var(--background); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); text-align: center; }
.comparison-table th:first-child { text-align: left; }
.comparison-table td:first-child { color: var(--muted); }
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table tr:nth-child(even) td { background: rgba(248,250,252,.5); }
[data-theme="dark"] .comparison-table tr:nth-child(even) td { background: rgba(13,13,31,.5); }
.check-yes { color: #10b981; font-size: 1.125rem; }
.check-no  { color: var(--muted); opacity: .3; font-size: 1.125rem; }
.check-partial { font-size: .8125rem; font-weight: 600; color: var(--brand); }

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 2fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
}
.contact-card h2 { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.contact-detail { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: .75rem;
  background: rgba(79,70,229,.08);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 1rem; height: 1rem; }
.contact-detail-label { font-size: .75rem; color: var(--muted); margin-bottom: .125rem; }
.contact-detail-value { font-size: .9375rem; font-weight: 500; transition: color .2s; }
a .contact-detail-value:hover { color: var(--brand); }

.contact-trust {
  padding: 1.75rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(79,70,229,.08), rgba(14,165,233,.08));
  border: 1px solid rgba(79,70,229,.15);
}
.contact-trust h3 { font-size: .9375rem; font-weight: 700; margin-bottom: 1rem; }
.trust-item { display: flex; align-items: center; gap: .625rem; font-size: .875rem; color: var(--muted); margin-bottom: .75rem; }
.trust-item:last-child { margin-bottom: 0; }
.trust-check { width: 1rem; height: 1rem; color: var(--brand); flex-shrink: 0; }

.contact-form-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
}
.contact-form-title { font-size: 1.125rem; font-weight: 700; margin-bottom: .375rem; }
.contact-form-sub { font-size: .875rem; color: var(--muted); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2,1fr); } }
.form-submit { margin-top: .5rem; }
.form-note { text-align: center; font-size: .75rem; color: var(--muted); margin-top: .75rem; }

.success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  min-height: 24rem;
}
.success-icon { font-size: 4rem; margin-bottom: 1.25rem; }
.success-state h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: .75rem; }
.success-state p { font-size: .9375rem; color: var(--muted); line-height: 1.7; max-width: 24rem; }

/* ═══════════════════════════════════════════════════════════════════
   CAREERS PAGE
═══════════════════════════════════════════════════════════════════ */
.jobs-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .jobs-grid { grid-template-columns: repeat(2,1fr); } }
.job-card {
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--background);
  transition: all .2s;
}
.job-card:hover { border-color: rgba(79,70,229,.35); box-shadow: var(--shadow-md); }
.job-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: .5rem; }
.job-meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .875rem; font-size: .8125rem; }
.job-tag { padding: .25rem .625rem; border-radius: .5rem; border: 1px solid var(--border); background: var(--surface); color: var(--muted); }
.job-desc { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; }
.job-skills { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: 1.25rem; }
.skill-tag { padding: .25rem .625rem; border-radius: 9999px; font-size: .75rem; font-weight: 600; background: var(--surface); border: 1px solid var(--border); color: var(--muted); }

.perks-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px)  { .perks-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .perks-grid { grid-template-columns: repeat(4,1fr); } }
.perk { padding: 1.25rem; border-radius: .875rem; background: var(--background); border: 1px solid var(--border); }
.perk-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.perk-title { font-size: .875rem; font-weight: 700; margin-bottom: .25rem; }
.perk-desc { font-size: .8125rem; color: var(--muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px)  { .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3,1fr); } }
.team-card { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: 1rem; border: 1px solid var(--border); background: var(--surface); transition: all .2s; }
.team-card:hover { border-color: rgba(79,70,229,.3); box-shadow: var(--shadow-sm); }
.team-avatar { width: 3rem; height: 3rem; border-radius: .75rem; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; flex-shrink: 0; }
.team-name { font-size: .9375rem; font-weight: 700; }
.team-role { font-size: .8125rem; color: var(--muted); }

.milestone { display: flex; gap: 1.5rem; align-items: flex-start; position: relative; }
.milestone-year { flex-shrink: 0; width: 3rem; text-align: right; font-size: .75rem; font-weight: 700; color: var(--brand); padding-top: .125rem; }
.milestone-dot { flex-shrink: 0; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--brand); border: .25rem solid var(--surface); position: relative; z-index: 1; margin-top: .125rem; }
.milestone-content { flex: 1; padding-bottom: .5rem; }
.milestone-text { font-size: .9375rem; color: var(--foreground); font-weight: 500; }

.mission-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .mission-grid { grid-template-columns: repeat(3,1fr); } }
.mission-card { padding: 2rem; border-radius: 1rem; background: var(--surface); border: 1px solid var(--border); }
.mission-icon-wrap { width: 3rem; height: 3rem; border-radius: .875rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.mission-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: .75rem; }
.mission-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════════
   ERROR PAGES
═══════════════════════════════════════════════════════════════════ */
.error-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; text-align: center; padding: 2rem; background: var(--background); }
.error-code { font-size: 8rem; font-weight: 900; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 1rem; }
.error-title { font-size: 2rem; margin-bottom: 1rem; }
.error-desc { color: var(--muted); font-size: 1rem; max-width: 30rem; margin: 0 auto 2rem; }

/* ═══════════════════════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
═══════════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.whatsapp-float svg { width: 1.75rem; height: 1.75rem; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE UTILITIES
═══════════════════════════════════════════════════════════════════ */
.hidden     { display: none; }
.block      { display: block; }
.flex       { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap  { flex-wrap: wrap; }
.gap-2      { gap: .5rem; }
.gap-3      { gap: .75rem; }
.gap-4      { gap: 1rem; }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.font-bold   { font-weight: 700; }
.mt-4        { margin-top: 1rem; }
.mt-8        { margin-top: 2rem; }
.mb-4        { margin-bottom: 1rem; }
.mb-8        { margin-bottom: 2rem; }
.w-full      { width: 100%; }
.mx-auto     { margin-left: auto; margin-right: auto; }

@media (min-width: 768px) { .hidden-md { display: none; } .block-md { display: block; } }
@media (min-width: 1024px) { .hidden-lg { display: none !important; } .flex-lg { display: flex !important; } }

/* ═══════════════════════════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════════════════════════ */
@media print { .navbar, .footer, .whatsapp-float, .mobile-toggle { display: none !important; } }
