/* ================================================================
   OverTech Corporate — site.css v4.0
   Dark Premium · Inter · MacBook Mockup · GSAP-ready
   ================================================================ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:           #050816;
  --bg-soft:      #0a1020;
  --bg-card:      #101a2d;
  --bg-elevated:  #16243d;
  --bg-dark:      #03050d;

  /* Brand */
  --primary:        #5b7cff;
  --primary-hover:  #4567ef;
  --primary-light:  rgba(91,124,255,0.13);
  --primary-glow:   rgba(91,124,255,0.24);
  --accent:         #c9a227;
  --accent-light:   rgba(201,162,39,0.14);
  --success:        #34d399;
  --success-light:  rgba(52,211,153,0.14);
  --warning:        #f4c95d;
  --danger:         #ef4444;
  --danger-light:   rgba(239,68,68,0.15);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #5b7cff 0%, #4567ef 60%, #8ea2ff 100%);
  --grad-hero:    radial-gradient(ellipse at 70% 30%, rgba(91,124,255,0.18) 0%, transparent 60%),
                  radial-gradient(ellipse at 20% 80%, rgba(201,162,39,0.12) 0%, transparent 50%),
                  #050816;

  /* Text */
  --text:       #f1f5f9;
  --text-soft:  #d9e3f0;
  --text-muted: #9fb1c7;
  --text-faint: #5d708a;

  /* Border */
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --border-focus: #4cc9f0;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.45);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.6);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.7);
  --shadow-primary: 0 8px 32px rgba(91,124,255,0.3);

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 32px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.4s;

  /* Font */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ── Scrollbar ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ── Utilities ────────────────────────────────────────────────── */
.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-gap    { padding: 6rem 0; }
.section-gap-sm { padding: 4rem 0; }

/* ── Section Header ───────────────────────────────────────────── */
.section-header { max-width: 920px; margin-inline: auto; }

.hero-section .container,
#how-it-works .container,
.services-section .container,
#benefits .container,
#showcase .container,
#cta-banner .container,
#contact .container {
  max-width: 1380px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: var(--r-xl);
  padding: 0.35rem 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-top: 0.875rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-top: 0.75rem;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.85rem;
  background: var(--grad-primary);
  color: #fff;
  border: none;
  border-radius: var(--r-xl);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              filter var(--dur);
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(99,102,241,0.5);
  filter: brightness(1.08);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.85rem;
  background: transparent;
  color: var(--text-soft);
  border: 1.5px solid var(--border-hover);
  border-radius: var(--r-xl);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
}
.btn-outline:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: transparent;
  color: var(--primary);
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur);
}
.btn-ghost:hover { background: var(--primary-light); color: var(--primary); }

/* ── Card ─────────────────────────────────────────────────────── */
.card-ot {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--dur) var(--ease),
              border-color var(--dur),
              transform var(--dur) var(--ease);
}
.card-ot:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(99,102,241,0.2);
  border-color: rgba(99,102,241,0.25);
  transform: translateY(-3px);
}

/* ── Navbar ───────────────────────────────────────────────────── */
.ot-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,9,26,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  padding: 1rem 0;
  transition: all 0.35s var(--ease);
}
.ot-navbar.scrolled {
  padding: 0.65rem 0;
  background: rgba(7,9,26,0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.ot-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ot-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  text-decoration: none;
}
.ot-brand--light { color: rgba(255,255,255,0.9); }
.ot-brand--light .brand-tech { color: rgba(255,255,255,0.5); }

.brand-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-primary);
  margin-right: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--primary);
}
.brand-tech { color: var(--text-muted); font-weight: 600; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0; padding: 0;
  align-items: center;
}
.nav-link {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--r-xs);
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav-cta { margin-left: 1rem; font-size: 0.875rem; padding: 0.6rem 1.4rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-hover);
  border-radius: var(--r-xs);
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero-section {
  background: var(--bg);
  padding: 8rem 0 5rem;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.2), transparent 70%);
  top: -200px; right: -100px;
  animation: orbDrift 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 70%);
  bottom: -100px; left: -100px;
  animation: orbDrift 15s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(99,102,241,0.1), transparent 70%);
  top: 40%; left: 40%;
  animation: orbDrift 10s ease-in-out infinite 3s;
}
@keyframes orbDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(30px,-20px) scale(1.05); }
  66%     { transform: translate(-20px,15px) scale(0.95); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 700px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 580px;
  margin-top: 1.5rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.hero-proofstrip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.7rem;
  max-width: 620px;
}

.proof-item {
  padding: 1rem 1.05rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.proof-item strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.proof-item span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.74rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.hero-visual { position: relative; z-index: 2; }

.hero-image-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
  padding: 1rem 0 2rem;
}

.hero-image-stage::before {
  content: "";
  position: absolute;
  inset: 9% 7% 18%;
  background: radial-gradient(circle, rgba(91,124,255,0.2) 0%, rgba(91,124,255,0.05) 45%, transparent 72%);
  filter: blur(30px);
  z-index: 0;
}

.hero-device-image {
  position: relative;
  z-index: 1;
  width: min(100%, 900px);
  object-fit: contain;
  filter: drop-shadow(0 48px 90px rgba(0,0,0,0.55));
  transform: perspective(1600px) rotateY(-7deg) rotateX(5deg) rotate(-1deg);
  animation: heroMockupFloat 5.6s var(--ease-in-out) infinite;
  transition: transform 0.55s var(--ease), filter 0.55s var(--ease);
  will-change: transform;
}

@keyframes heroMockupFloat {
  0%, 100% {
    transform: perspective(1600px) rotateY(-7deg) rotateX(5deg) rotate(-1deg) translateY(0);
    filter: drop-shadow(0 48px 90px rgba(0,0,0,0.55));
  }
  50% {
    transform: perspective(1600px) rotateY(-5.6deg) rotateX(4.2deg) rotate(-0.2deg) translateY(-12px);
    filter: drop-shadow(0 56px 105px rgba(0,0,0,0.62));
  }
}

.macbook-wrap {
  position: relative;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.55));
}

.macbook {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  transform: perspective(1400px) rotateY(-8deg) rotateX(4deg) rotate(-1deg);
  transition: transform 0.8s var(--ease);
  will-change: transform;
}
.macbook:hover {
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) rotate(0deg);
}

/* Lid */
.macbook-lid {
  background: linear-gradient(165deg, #3e3e42 0%, #2d2d30 40%, #242428 100%);
  border-radius: 14px 14px 0 0;
  padding: 6px 6px 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  position: relative;
}
.macbook-lid::after {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

/* Bezel (black inner frame around screen) */
.macbook-bezel {
  background: #0a0a0c;
  border-radius: 10px 10px 0 0;
  padding: 10px 6px 0;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.macbook-camera-area {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}
.macbook-camera {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1a1a1e;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.macbook-camera::after {
  content: '';
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(26,107,60,0.8);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 3px rgba(26,107,60,0.6);
}

/* The actual screen display */
.macbook-display {
  background: radial-gradient(circle at top right, rgba(76,201,240,0.08), transparent 26%), #060b16;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  position: relative;
  /* Reflection overlay */
}
.macbook-display::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, transparent 100%);
  pointer-events: none;
  z-index: 20;
  border-radius: 4px 4px 0 0;
}

/* Hinge */
.macbook-hinge {
  height: 5px;
  background: linear-gradient(180deg, #1a1a1e 0%, #2d2d30 100%);
  position: relative;
}
.macbook-hinge::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

/* Base / keyboard chassis */
.macbook-base {
  background: linear-gradient(180deg, #2d2d30 0%, #242428 50%, #1e1e21 100%);
  border-radius: 0 0 8px 8px;
  padding: 8px 16px 12px;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  position: relative;
}

.macbook-keyboard {
  width: 85%;
  height: 52px;
  margin: 0 auto;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.3) 0px, rgba(0,0,0,0.3) 2px,
      transparent 2px, transparent 6px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(0,0,0,0.3) 0px, rgba(0,0,0,0.3) 1px,
      transparent 1px, transparent 5px
    ),
    rgba(30,30,34,0.8);
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.macbook-trackpad {
  width: 28%;
  height: 22px;
  margin: 6px auto 0;
  background: rgba(26,26,30,0.9);
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

/* ── Dashboard inside MacBook ─────────────────────────────────── */
.mac-dash {
  display: grid;
  grid-template-columns: 44px 1fr;
  height: 260px;
  overflow: hidden;
}

/* Sidebar */
.mac-sidebar {
  background: #0a0f1e;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
  gap: 4px;
}
.mac-brand-icon {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--grad-primary);
  display: grid; place-items: center;
  font-size: 0.55rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(99,102,241,0.4);
}
.mac-nav-item {
  width: 28px; height: 28px;
  border-radius: 6px;
  display: grid; place-items: center;
  cursor: default;
  transition: background 0.2s;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}
.mac-nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: 0 0 8px rgba(99,102,241,0.25);
}

/* Main area */
.mac-main {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mac-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: #0a0f1e;
}
.mac-page-title {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.mac-page-subtitle {
  margin-top: 2px;
  font-size: 0.48rem;
  color: var(--text-muted);
}
.mac-user {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mac-avatar-sm {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: grid; place-items: center;
  font-size: 0.38rem;
  font-weight: 700;
  color: #fff;
}
.mac-username {
  font-size: 0.52rem;
  color: var(--text-muted);
  font-weight: 500;
}

.mac-content {
  flex: 1;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  background: #080e1c;
}

/* Balance card */
.mac-balance-card {
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.15));
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 8px;
  padding: 7px 10px;
}
.mac-balance-label {
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.mac-balance-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 1px 0;
}
.mac-balance-change {
  font-size: 0.5rem;
  color: rgba(255,255,255,0.45);
}
.mac-balance-change .up {
  color: #34d399;
  font-weight: 700;
}

/* Stats row */
.mac-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 5px;
}
.mac-stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 5px 6px;
}
.mac-stat-ico {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: grid; place-items: center;
  font-size: 0.5rem;
  flex-shrink: 0;
}
.mac-stat-ico.green { background: rgba(16,185,129,0.15); color: #34d399; }
.mac-stat-ico.red   { background: rgba(239,68,68,0.15);  color: #f87171; }
.mac-stat-ico.blue  { background: rgba(99,102,241,0.15); color: #818cf8; }
.mac-stat-lbl { font-size: 0.42rem; color: rgba(255,255,255,0.35); }
.mac-stat-v   { font-size: 0.58rem; font-weight: 700; color: var(--text); }

/* Chart */
.mac-chart-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 7px;
  padding: 6px 8px;
}
.mac-chart-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.mac-chart-hdr > span:first-child {
  font-size: 0.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.mac-chart-badge {
  font-size: 0.44rem;
  font-weight: 700;
  background: rgba(201,162,39,0.16);
  color: #f4d06f;
  padding: 1px 5px;
  border-radius: 10px;
}

.mac-svg-chart { width: 100%; height: 40px; display: block; }

.mac-chart-area {
  opacity: 0;
  animation: macAreaFade 0.6s ease forwards 1.8s;
}
@keyframes macAreaFade { to { opacity: 1; } }

.mac-chart-line {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: macDrawLine 2s ease forwards 0.6s;
}
@keyframes macDrawLine { to { stroke-dashoffset: 0; } }

/* Transactions */
.mac-tx-list {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 7px;
  overflow: hidden;
  flex: 1;
}
.mac-tx-hdr {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 5px 8px 3px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mac-tx-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.mac-tx-item:last-child { border-bottom: none; }
.mac-tx-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.45rem;
  flex-shrink: 0;
}
.mac-tx-icon.green { background: rgba(16,185,129,0.15); color: #34d399; }
.mac-tx-icon.red   { background: rgba(239,68,68,0.15);  color: #f87171; }
.mac-tx-icon.blue  { background: rgba(99,102,241,0.15); color: #818cf8; }
.mac-tx-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mac-tx-info span:first-child {
  font-size: 0.52rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}
.mac-tx-date {
  font-size: 0.42rem;
  color: rgba(255,255,255,0.25);
}
.mac-tx-val {
  font-size: 0.55rem;
  font-weight: 700;
}
.mac-tx-val.green { color: #34d399; }
.mac-tx-val.red   { color: #f87171; }

/* Floating badges */
.mockup-float-1, .mockup-float-2 {
  position: absolute;
  background: rgba(8,14,28,0.8);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-sm);
  padding: 0.6rem 0.875rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  z-index: 3;
}
.mockup-float-1 { left: -1.5rem; bottom: 2rem; }
.mockup-float-2 { right: -1rem; top: 3rem; }
.float-icon { font-size: 1rem; }
.float-icon-accent { color: var(--accent); }
.float-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
}
.float-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* ── How it Works ─────────────────────────────────────────────── */
.steps-grid {
  --timeline-progress: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
  align-items: start;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 24px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0 20 C 50 7, 100 33, 150 20 S 250 7, 300 20 S 400 33, 450 20 S 550 7, 600 20 S 700 33, 750 20 S 850 7, 900 20 S 1000 33, 1050 20 S 1150 7, 1200 20' fill='none' stroke='%235b7cff' stroke-opacity='0.18' stroke-width='1.35' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 24px no-repeat;
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}
.steps-grid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(12.5% + 1rem);
  transform: translateY(-50%);
  width: var(--timeline-progress);
  max-width: calc(75% - 2rem);
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0 20 C 50 7, 100 33, 150 20 S 250 7, 300 20 S 400 33, 450 20 S 550 7, 600 20 S 700 33, 750 20 S 850 7, 900 20 S 1000 33, 1050 20 S 1150 7, 1200 20' fill='none' stroke='%234cc9f0' stroke-opacity='0.95' stroke-width='1.55' stroke-linecap='round'/%3E%3C/svg%3E") left center / 240px 24px repeat-x;
  filter: drop-shadow(0 0 6px rgba(76,201,240,0.35));
  animation: timelineFlow 4s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.step-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-align: left;
  padding: 1.35rem 1.2rem 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(76,201,240,0.14), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  opacity: 1;
  visibility: visible;
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.step-card:hover {
  border-color: rgba(99,102,241,0.3);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(76,201,240,0.14);
  transform: translateY(-4px);
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  transform: translateX(-110%);
  transition: transform 0.8s var(--ease);
}
.step-card:hover::before {
  transform: translateX(110%);
}
.timeline-node {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}
.timeline-node::before,
.timeline-node::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.timeline-node::before {
  inset: -7px;
  border: 1px solid rgba(76,201,240,0.26);
  box-shadow: 0 0 20px rgba(76,201,240,0.16);
  animation: pulseRing 2.8s ease-in-out infinite;
}
.timeline-node::after {
  inset: -15px;
  border: 1px solid rgba(91,124,255,0.12);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  box-shadow: var(--shadow-primary);
  position: relative;
  z-index: 1;
}
.step-copy {
  margin-top: 0.25rem;
}
.step-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 0.6rem;
}
.step-label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(125,211,252,0), rgba(125,211,252,1));
}
.step-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.7rem; letter-spacing: -0.02em; }
.step-desc  { font-size: 0.89rem; color: var(--text-soft); line-height: 1.8; margin-bottom: 0; }

/* ── Services ─────────────────────────────────────────────────── */
.service-card {
  height: 100%;
  padding: 1.85rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              border-color var(--dur);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0), transparent);
  transition: background 0.4s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg), 0 0 30px rgba(99,102,241,0.1);
  transform: translateY(-5px);
  border-color: rgba(99,102,241,0.25);
}
.service-card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.5), transparent);
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--primary-light);
  display: grid; place-items: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: all var(--dur) var(--ease);
  border: 1px solid rgba(99,102,241,0.2);
}
.service-card:hover .service-icon {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
  border-color: transparent;
}
.service-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.service-desc  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: 1.25rem;
  transition: gap 0.25s;
}
.service-link:hover { gap: 0.65rem; }
.service-link i { font-size: 0.75rem; }

/* ── Benefits ─────────────────────────────────────────────────── */
.benefit-block { display: flex; flex-direction: column; gap: 1.1rem; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur) var(--ease);
}
.benefit-item:hover {
  border-color: rgba(99,102,241,0.3);
  box-shadow: var(--shadow-md), 0 0 20px rgba(99,102,241,0.08);
  transform: translateX(4px);
}
.benefit-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: var(--r-sm);
  background: var(--primary-light);
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--primary);
  border: 1px solid rgba(99,102,241,0.2);
}
.benefit-title { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.benefit-desc  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ── Showcase ─────────────────────────────────────────────────── */
.showcase-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur);
  position: relative;
  height: 100%;
}
.showcase-card:hover {
  box-shadow: var(--shadow-lg), 0 0 30px rgba(99,102,241,0.12);
  transform: translateY(-5px);
  border-color: rgba(99,102,241,0.25);
}
.showcase-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(99,102,241,0.1) 0%, rgba(139,92,246,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  isolation: isolate;
}
.showcase-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.08), transparent 70%);
}
.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}
.showcase-card:hover .showcase-image {
  transform: scale(1.06);
  filter: saturate(1.08);
}
.showcase-glow {
  position: absolute;
  inset: auto -20% -24% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,201,240,0.24), transparent 68%);
  filter: blur(12px);
  z-index: 0;
  animation: showcasePulse 4.2s ease-in-out infinite;
}
.showcase-body {
  padding: 1.25rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 1px);
}
.showcase-tag-pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--r-xl);
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(99,102,241,0.2);
}
.showcase-name { font-size: 1rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; line-height: 1.35; }
.showcase-sub  { font-size: 0.83rem; color: var(--text-muted); margin-top: 0.35rem; line-height: 1.75; }
.showcase-link { margin-top: auto; padding-top: 1rem; }

@keyframes timelineFlow {
  0% {
    background-position: 0 50%;
    opacity: 0.18;
  }
  35% {
    opacity: 0.85;
  }
  100% {
    background-position: 240px 50%;
    opacity: 0.18;
  }
}

@keyframes pulseRing {
  0%, 100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes showcasePulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

/* ── Tech Stack ───────────────────────────────────────────────── */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.tech-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--dur) var(--ease);
}
.tech-item:hover {
  border-color: rgba(99,102,241,0.4);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 15px rgba(99,102,241,0.15);
  background: var(--primary-light);
}
.tech-item i { font-size: 1rem; color: var(--primary); }

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonial-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  height: 100%;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 20px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(99,102,241,0.06);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg), 0 0 25px rgba(99,102,241,0.1);
  transform: translateY(-4px);
  border-color: rgba(99,102,241,0.2);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
  color: var(--warning);
  font-size: 0.85rem;
}
.testimonial-quote { font-size: 0.9rem; color: var(--text-soft); line-height: 1.8; font-style: italic; flex: 1; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-primary);
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(99,102,241,0.35);
}
.author-name { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.author-role { font-size: 0.75rem; color: var(--text-muted); }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: var(--r-sm);
  background: var(--primary-light);
  display: grid; place-items: center;
  font-size: 0.95rem;
  color: var(--primary);
  border: 1px solid rgba(99,102,241,0.2);
}
.ci-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); }
.ci-value { font-size: 0.9rem; font-weight: 600; color: var(--text-soft); margin-top: 0.1rem; }
.ci-value a { color: inherit; text-decoration: none; }
.ci-value a:hover { color: var(--primary); }

.form-group-ot { display: flex; flex-direction: column; gap: 0.375rem; }
.form-label-ot {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-control-ot {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border-hover);
  border-radius: var(--r-sm);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.form-control-ot::placeholder { color: var(--text-faint); }
.form-control-ot:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--primary-glow);
  background: rgba(99,102,241,0.05);
}
.form-control-ot.is-invalid { border-color: var(--danger); }
.field-error { font-size: 0.75rem; color: var(--danger); display: none; }
.field-error.visible { display: block; }

.input-wrap { position: relative; }
.toggle-pw {
  position: absolute;
  right: 0.85rem; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--text-muted);
  cursor: pointer; transition: color 0.25s;
}
.toggle-pw:hover { color: var(--text); }

.alert-glass { border-radius: var(--r-md); padding: 0.875rem 1.25rem; font-size: 0.875rem; }
.alert-success-glass { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25); color: #6ee7b7; }
.alert-error-glass   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.25);  color: #fca5a5; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
  background:
    radial-gradient(circle at top right, rgba(91,124,255,0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(201,162,39,0.08), transparent 30%),
    linear-gradient(135deg, #0d1427 0%, #121d35 45%, #182646 100%);
  border-radius: var(--r-xl);
  padding: 5rem 3.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-title { font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; max-width: 980px; }
.cta-desc  { color: rgba(255,255,255,0.78); font-size: 1.04rem; margin-top: 1rem; max-width: 1120px; line-height: 1.85; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: flex-start; margin-top: 2rem; position: relative; z-index: 1; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.85rem;
  background: var(--grad-primary);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
  box-shadow: var(--shadow-primary);
}
.btn-white:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(91,124,255,0.35); }

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.85rem;
  background: rgba(255,255,255,0.03);
  color: var(--text-soft);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: var(--r-xl);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
}
.btn-white-outline:hover { background: rgba(91,124,255,0.1); border-color: rgba(91,124,255,0.55); color: #fff; }

/* ── Footer ───────────────────────────────────────────────────── */
.ot-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.85);
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.75; margin-top: 0.75rem; max-width: 260px; }
.footer-social { display: flex; gap: 0.625rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s;
}
.footer-social a:hover { color: #fff; border-color: var(--primary); background: var(--primary-light); }

.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 1rem;
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-list a { font-size: 0.875rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.25s; }
.footer-list a:hover { color: #fff; }
.footer-contact-link {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  text-decoration: none; margin-bottom: 0.65rem; transition: color 0.25s;
}
.footer-contact-link:hover { color: #fff; }

.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-legal { font-size: 0.72rem !important; }

/* ── WhatsApp Float ───────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.wa-float:hover { color: #fff; transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-tooltip {
  position: absolute;
  right: 62px;
  white-space: nowrap;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all 0.25s;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── Admin Layout ─────────────────────────────────────────────── */
.admin-body {
  background: #080e1a;
  color: #e2e8f0;
  font-family: var(--font);
}
.admin-body * { font-family: var(--font); }

.admin-sidebar {
  width: 260px; min-height: 100vh;
  background: #0c1220;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
  padding: 1.5rem 1rem;
  position: fixed; top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: transform 0.3s var(--ease);
}
.admin-main { margin-left: 260px; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar {
  height: 60px;
  background: #0c1220;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; padding: 0 1.5rem;
  position: sticky; top: 0; z-index: 50;
}
.admin-content { padding: 2rem 1.5rem; flex: 1; }
.admin-page-header { margin-bottom: 2rem; }
.admin-page-header h2 { font-size: 1.5rem; font-weight: 700; }

.sidebar-brand { padding: 0.5rem 0.75rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-nav { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; margin-top: 1rem; }
.sidebar-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.85rem; border-radius: var(--r-xs);
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; transition: all 0.25s;
}
.sidebar-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.sidebar-link.active { color: #93c5fd; background: rgba(79,70,229,0.18); }
.sidebar-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 0.75rem 0; }
.sidebar-footer { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1rem; }

.glass-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}
.admin-metric-card { display: flex; align-items: center; gap: 1.25rem; }
.metric-icon { width: 48px; height: 48px; border-radius: var(--r-sm); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.metric-blue  { background: rgba(99,102,241,0.15); color: #818cf8; border: 1px solid rgba(99,102,241,0.2); }
.metric-green { background: rgba(16,185,129,0.1);  color: #34d399; border: 1px solid rgba(16,185,129,0.2); }

.admin-quick-btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1rem; border-radius: var(--r-xs);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.875rem; transition: all 0.25s;
}
.admin-quick-btn:hover { color: #fff; background: rgba(255,255,255,0.06); border-color: rgba(99,102,241,0.3); }

.admin-table { color: #e2e8f0; border-collapse: separate; border-spacing: 0; }
.admin-table thead th {
  background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.35); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.85rem 1rem;
}
.admin-table tbody td { border-bottom: 1px solid rgba(255,255,255,0.03); padding: 0.875rem 1rem; font-size: 0.875rem; vertical-align: middle; }
.admin-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.unread-row td:first-child { border-left: 2px solid #818cf8; }
.badge-ot { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.28rem 0.7rem; border-radius: var(--r-xl); }
.badge-new  { background: rgba(99,102,241,0.15); color: #a5b4fc; border: 1px solid rgba(99,102,241,0.25); }
.badge-read { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.06); }
.btn-icon-ot {
  width: 32px; height: 32px; border-radius: var(--r-xs);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4); display: inline-grid; place-items: center;
  cursor: pointer; transition: all 0.25s; font-size: 0.85rem; text-decoration: none;
}
.btn-icon-ot:hover { color: #fff; border-color: rgba(99,102,241,0.4); }
.btn-icon-danger:hover { color: #fca5a5; border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.08); }
.message-body-box {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-sm); padding: 1rem; font-size: 0.875rem;
  color: rgba(255,255,255,0.5); white-space: pre-wrap;
}
.admin-logo {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.25);
  display: grid; place-items: center; font-size: 1.5rem; color: #818cf8; margin: 0 auto;
}

.admin-body .form-label-ot { color: rgba(255,255,255,0.4); }
.admin-body .form-control-ot {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  color: #e2e8f0;
}
.admin-body .form-control-ot::placeholder { color: rgba(255,255,255,0.2); }
.admin-body .form-control-ot:focus {
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.18);
}
.admin-body .alert-success-glass { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.2); color: #6ee7b7; }
.admin-body .alert-error-glass   { background: rgba(239,68,68,0.1);  border-color: rgba(239,68,68,0.2);  color: #fca5a5; }

.syne-font { font-family: "Syne", var(--font); }
.brand-accent, .text-accent { color: var(--primary); }

/* ── Admin Login ──────────────────────────────────────────────── */
.admin-login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(91,124,255,0.16), transparent 42%),
    radial-gradient(circle at 85% 80%, rgba(91,124,255,0.1), transparent 38%),
    #080e1a;
}

.admin-login-wrap {
  width: 100%;
  max-width: 520px;
  padding: 1.5rem;
}

.admin-login-card {
  width: 100%;
  border-color: rgba(99,102,241,0.2);
  box-shadow: 0 22px 70px rgba(0,0,0,0.45);
}

.admin-login-card .text-muted { color: rgba(226,232,240,0.62) !important; }

.input-group-ot { position: relative; }
.input-group-ot .form-control-ot { padding-right: 2.8rem; }
.input-group-ot .toggle-pw {
  right: 0.75rem;
  color: rgba(226,232,240,0.55);
}
.input-group-ot .toggle-pw:hover { color: #fff; }

.admin-login-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-auth-btn {
  width: 100%;
  justify-content: center;
  min-height: 46px;
}

/* ── Utility ──────────────────────────────────────────────────── */
.spin { animation: spinAnim 1s linear infinite; }
@keyframes spinAnim { to { transform: rotate(360deg); } }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1199.98px) {
  .hero-image-stage { min-height: 420px; }
  .hero-device-image { width: min(100%, 760px); margin-top: 64px; }
  .macbook { transform: perspective(1400px) rotateY(-4deg) rotateX(2deg); }
  .mockup-float-1 { left: -0.5rem; }
  .mockup-float-2 { right: -0.25rem; }
}

@media (max-width: 991.98px) {
  .hero-proofstrip { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .steps-grid::before,
  .steps-grid::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); box-shadow: 4px 0 32px rgba(0,0,0,0.7); }
  .admin-main { margin-left: 0; }
  .admin-login-wrap { max-width: 480px; }
  .hero-section .row {
    flex-direction: column-reverse;
  }
  .hero-image-stage {
    overflow: hidden;
  }
  .hero-section {
    min-height: 100svh;
    padding: 5.75rem 0 2.25rem;
    align-items: flex-start;
  }
  .hero-title { font-size: clamp(1.9rem, 8.2vw, 2.6rem); }
  .hero-sub { margin-top: 1rem; line-height: 1.7; }
  .hero-actions { margin-top: 1.3rem; gap: 0.7rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .hero-proofstrip { margin-top: 1.2rem; gap: 0.65rem; }
  .hero-visual { margin: 0.85rem 0 1.15rem; }
  .hero-section .row > .col-lg-6:not(.hero-visual) { margin-top: 0.75rem; }
  .hero-image-stage { min-height: auto; padding: 0; }
  .hero-device-image { width: 100%; transform: none; animation: none; margin-top: 79px; }
  .ot-navbar .container { position: relative; }
  .macbook { transform: none; }
  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0.75rem;
    right: 0.75rem;
    background: rgba(7,9,26,0.98);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-xl);
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    z-index: 1001;
    padding: 0.9rem;
    max-height: calc(100svh - 110px);
    overflow: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0.4rem; width: 100%; }
  .nav-link {
    font-size: 1rem;
    padding: 0.75rem 0.95rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-sm);
  }
  .nav-link:hover, .nav-link.active {
    background: rgba(255,255,255,0.08);
    border-color: rgba(99,102,241,0.35);
  }
  .nav-cta { margin-left: 0; width: 100%; justify-content: center; }
  .nav-hamburger { display: flex; z-index: 1000; position: relative; }
}

@media (max-width: 767.98px) {
  .section-gap { padding: 3.5rem 0; }
  .cta-banner { padding: 3rem 1.5rem; border-radius: var(--r-lg); text-align: center; }
  .cta-title, .cta-desc { max-width: none; }
  .cta-actions { justify-content: center; }
  .ot-footer .container { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-list { align-items: center; }
  .footer-contact-link { justify-content: center; }
  .footer-tagline { margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .admin-login-wrap { padding: 1rem; }
  .hero-section { min-height: auto; padding: 5.25rem 0 2.25rem; }
  .hero-title { font-size: clamp(1.75rem, 8.6vw, 2.3rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-device-image { margin-top: 58px; }
  .proof-item { padding: 0.9rem 1rem; }
  .step-card { padding: 1rem; }
  .timeline-node { width: 68px; height: 68px; }
  .wa-float { bottom: 1.25rem; right: 1.25rem; }
  .mac-dash { height: 220px; }
  .mac-balance-val { font-size: 0.9rem; }
}

@media (max-width: 575.98px) {
  .hero-device-image { margin-top: 44px; }
}
