/* ============================================================
   AMC.CSS — RocketPro Tech Solutions
   Theme: Navy #0a1628 | Cyan #00d4ff | Gold #c9a84c | Green #00e676
   Fonts: Times New Roman (headings) | sans-serif (body)
   Matches: service.html / product.html
============================================================ */

:root {
  --navy: #0a1628;
  --navy-mid: #0f2744;
  --navy-light: #1a3a5c;
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.10);
  --gold: #c9a84c;
  --gold-dim: rgba(201, 168, 76, 0.12);
  --green: #00e676;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.60);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

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

/* ── TOPBAR ── */
.topbar {
  background: linear-gradient(90deg, var(--navy-mid), #0d2035);
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-left .dot {
  color: var(--cyan);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
}

.topbar-right .ph {
  color: var(--gold);
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0%;
  position: fixed;
  top: 40px;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

/* new nav */
.navbar {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: fixed;
  top: 40px;
  left: 0;
  z-index: 1000;
  transition: box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
  background: rgba(10, 16, 32, 0.97);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(99, 102, 241, 0.2);
  top: 0 !important;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 50px;
}

.logo h2 {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.3px;
}

nav#main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav#main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 14px;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.1px;
}

nav#main-nav a:hover,
nav#main-nav a.nav-active {
  color: var(--white);
  background: rgba(99, 102, 241, 0.15);
}

nav#main-nav a.nav-cta {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: var(--white);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px var(--indigo-glow);
}

nav#main-nav a.nav-cta:hover {
  background: linear-gradient(135deg, var(--indigo-dark), var(--indigo));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--indigo-glow);
}

.navbar {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--cyan), #0077ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  line-height: 1.1;
}

.logo-text span {
  color: var(--cyan);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s;
  display: block;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--white);
  background: rgba(0, 212, 255, 0.09);
}

nav ul li a.active {
  color: var(--cyan);
}

.nav-cta {
  background: linear-gradient(135deg, #00aaff, #0055dd) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 25px !important;
  padding: 8px 20px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 150, 255, 0.4);
}

.navbar.scrolled {
  background: rgba(10, 16, 32, 0.97);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(99, 102, 241, 0.2);
  top: 0 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 5% 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(0, 80, 180, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.09) 0%, transparent 50%),
    var(--navy);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridScroll 28s linear infinite;
}

@keyframes gridScroll {
  to {
    background-position: 60px 60px;
  }
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 100, 255, 0.1), transparent 70%);
  top: -140px;
  right: -100px;
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 118, 0.10);
  border: 1px solid rgba(0, 230, 118, 0.28);
  color: var(--green);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '●';
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

.hero h1 {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 18px;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero h1 .hl {
  background: linear-gradient(135deg, var(--cyan), #4d9fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
  animation: fadeUp 1s 0.22s ease both;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.35s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--cyan), #0077ff);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 4px 25px rgba(0, 180, 255, 0.30);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 180, 255, 0.50);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-3px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Status strip */
.status-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  animation: fadeUp 1s 0.5s ease both;
}

.status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 16px 22px;
  backdrop-filter: blur(12px);
  transition: all 0.3s;
  min-width: 180px;
}

.status-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-4px);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

.status-dot.green {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.status-dot.cyan {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.status-info {
  display: flex;
  flex-direction: column;
}

.status-val {
  font-family: 'Times New Roman', Times, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.status-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── SECTION COMMONS ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  background: rgba(0, 212, 255, 0.09);
  border: 1px solid rgba(0, 212, 255, 0.22);
  color: var(--cyan);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── INFRASTRUCTURE SECTION ── */
.infra-section {
  padding: 100px 5%;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), #4d9fff, var(--cyan));
  opacity: 0;
  transition: opacity 0.4s;
}

.dashboard-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 55px rgba(0, 80, 180, 0.25);
}

.dashboard-card:hover::before {
  opacity: 1;
}

.dash-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.dashboard-card h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.dashboard-card:hover h3 {
  color: var(--cyan);
}

.dashboard-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.dash-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}

.dash-fill {
  height: 100%;
  border-radius: 5px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.dashboard-card.visible .dash-fill {
  /* triggered by JS */
}

.dash-stat {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

/* ── RISK SECTION ── */
.risk-section {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.risk-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s;
}

.risk-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.risk-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 122, 24, 0.10);
  border: 1px solid rgba(255, 122, 24, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ff7a18;
  margin: 0 auto 16px;
}

.risk-card h4 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.risk-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── PROTOCOL ── */
.protocol-section {
  padding: 100px 5%;
}

.protocol-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.protocol-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  width: 190px;
  flex-shrink: 0;
  transition: all 0.35s;
  position: relative;
}

.protocol-step:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.28);
  box-shadow: 0 16px 40px rgba(0, 80, 180, 0.22);
}

.step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), #0077ff);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
}

.step-icon {
  width: 50px;
  height: 50px;
  margin: 10px auto 14px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cyan);
}

.protocol-step h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cyan);
}

.protocol-step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.protocol-arrow {
  font-size: 22px;
  color: rgba(0, 212, 255, 0.35);
  padding: 0 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ── PLANS ── */
.plans-section {
  padding: 100px 5%;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 38px 30px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(0, 80, 180, 0.25);
  border-color: rgba(0, 212, 255, 0.25);
}

.plan-card.highlight {
  border: 1.5px solid rgba(0, 212, 255, 0.35);
  background: linear-gradient(145deg, rgba(0, 212, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.08);
}

.plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  padding: 4px 14px;
  border-radius: 50px;
  width: fit-content;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plan-badge.popular {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 120, 255, 0.15));
  border-color: rgba(0, 212, 255, 0.35);
  color: var(--cyan);
}

.plan-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--muted);
}

.plan-card h3 {
  font-family: 'Times New Roman', Times, serif;
  font-size: 22px;
  font-weight: 700;
}

.plan-card.highlight h3 {
  color: var(--cyan);
}

.plan-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.plan-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.80);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.plan-card li i {
  color: var(--green);
  font-size: 12px;
  flex-shrink: 0;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 12px 0;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: auto;
}

.plan-btn:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.plan-btn.primary {
  background: linear-gradient(135deg, var(--cyan), #0077ff);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 180, 255, 0.28);
}

.plan-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 180, 255, 0.45);
  color: var(--white);
}

/* ── CTA BAND ── */
.cta-band {
  margin: 0 5% 80px;
  background: linear-gradient(135deg, rgba(0, 100, 200, 0.28), rgba(0, 212, 255, 0.13));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 28px;
  padding: 58px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.09), transparent 70%);
  right: -80px;
  top: -80px;
  pointer-events: none;
}

.cta-text h2 {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-text p {
  color: var(--muted);
  font-size: 15px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan), #0077ff);
  color: var(--white);
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 6px 28px rgba(0, 180, 255, 0.38);
  flex-shrink: 0;
}

.cta-phone:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px rgba(0, 180, 255, 0.55);
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(135deg, #0f2027, #0a1628, #0d2540);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 80px 5% 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 16px 0 22px;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  border-left: 3px solid var(--green);
  padding-left: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: all 0.25s;
  display: block;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-text strong {
  color: var(--white);
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.hours-col h4 {
  border-left-color: var(--gold);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--muted);
}

.hours-row:last-of-type {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
  color: var(--white);
}

.hours-row .time {
  color: var(--green);
  font-weight: 700;
}

.hours-row .time.emg {
  color: var(--gold);
}

.phone-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.18), rgba(0, 100, 200, 0.18));
  border: 1px solid rgba(0, 212, 255, 0.24);
  color: var(--cyan);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 14px;
  transition: all 0.3s;
}

.phone-support-btn:hover {
  background: rgba(0, 212, 255, 0.14);
  transform: translateY(-2px);
}

.footer-map-col h4 {
  border-left-color: var(--cyan);
}

.map-embed {
  width: 100%;
  height: 155px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 25px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}

.direction-btn:hover {
  background: var(--cyan);
  color: var(--navy);
}

.footer-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--white);
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #7b6cff55, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* ── WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 95px;
  right: 23px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  animation: waPulse 2.2s ease-in-out infinite;
  transition: transform 0.3s;
}

.wa-float:hover {
  transform: scale(1.13);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 38px rgba(37, 211, 102, 0.72);
  }
}

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }

  .risk-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:900px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
  }

  .protocol-arrow {
    display: none;
  }

  .protocol-flow {
    gap: 16px;
  }

  .protocol-step {
    width: 160px;
  }
}

@media (max-width:768px) {
  .topbar-left {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    gap: 4px;
  }

  nav ul.open {
    display: flex;
  }

  .hero {
    padding: 60px 5% 50px;
    min-height: auto;
  }

  .status-strip {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .status-card {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .risk-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .protocol-step {
    width: 140px;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 6%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-trust {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width:480px) {
  .risk-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .protocol-step {
    width: 100%;
    max-width: 260px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .navbar .container .logo h2 a {
    font-size: 0.75rem;
  }
}