/* NOCServers — Blue + Charcoal */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --bg-sky: #eff6ff;
  --bg-sky-deep: #dbeafe;
  --bg-white: #ffffff;
  --border: #e5e5e5;
  --border-sky: #bfdbfe;
  --text: #0f172a;
  --text-body: #333333;
  --text-muted: #666666;
  --sky: #2563eb;
  --sky-dark: #1d4ed8;
  --sky-light: #38bdf8;
  --sky-pale: #93c5fd;
  --gold: #ffc107;
  --accent-glow: rgba(37, 99, 235, 0.22);
  --gradient-hero: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  --gradient-btn: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --gradient-text: linear-gradient(120deg, #2563eb 0%, #38bdf8 100%);
  --success: #10b981;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(37, 99, 235, 0.06);
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 14px 40px rgba(37, 99, 235, 0.14);
  --max: 1180px;
  --header-h: 90px;
  --ease: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle 420px at 100% 0%, rgba(37, 99, 235, 0.05), transparent 52%),
    radial-gradient(circle 320px at 0% 100%, rgba(56, 189, 248, 0.05), transparent 46%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 { color: var(--text); font-weight: 700; letter-spacing: -0.02em; }
strong { color: var(--text); }

img { max-width: 100%; display: block; }
a { color: var(--sky-dark); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--sky); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.35rem;
  position: relative;
  z-index: 1;
}

.glass {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-sky);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo img { height: 70px; width: auto; }

.nav-main { display: flex; align-items: center; gap: 0.15rem; }

.nav-main > a,
.nav-drop > .nav-drop-btn {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--ease);
}

.nav-main > a:hover,
.nav-main > a.active,
.nav-drop:hover > .nav-drop-btn,
.nav-drop.open > .nav-drop-btn {
  color: var(--sky-dark);
  background: var(--bg-sky);
}

.nav-drop { position: relative; }

.nav-drop-btn::after {
  content: "";
  border: 4px solid transparent;
  border-top-color: currentColor;
  margin-top: 3px;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(0.98);
  transition: all var(--ease);
  box-shadow: var(--shadow-lg);
}

.nav-drop:hover .nav-drop-menu,
.nav-drop.open .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nav-drop-menu a {
  display: block;
  padding: 0.7rem 0.9rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  border-radius: 10px;
}

.nav-drop-menu a:hover {
  background: var(--bg-sky);
  color: var(--sky-dark);
}

.nav-drop-menu a strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.nav-toggle {
  display: none;
  background: var(--bg-white);
  border: 1px solid var(--border-sky);
  border-radius: 10px;
  color: var(--sky-dark);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.4rem 0.65rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.82rem 1.55rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow var(--ease);
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 6px 24px var(--accent-glow);
}

.btn-primary:hover { color: #fff; box-shadow: 0 8px 28px var(--accent-glow); }

.btn-outline {
  background: var(--bg-white);
  color: var(--sky-dark);
  border: 2px solid var(--sky-light);
}

.btn-outline:hover {
  border-color: var(--sky-dark);
  background: var(--bg-sky);
  color: var(--sky-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid transparent;
  padding: 0.82rem 1.2rem;
}

.btn-ghost:hover {
  color: var(--sky-dark);
  background: var(--bg-sky);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }
.btn-lg { padding: 0.9rem 1.75rem; font-size: 1rem; }

/* Hero — compact */
.hero {
  padding: 1.35rem 0 1rem;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border-sky);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: stretch;
}

.hero-main {
  background: var(--bg-white);
  border: 1px solid var(--border-sky);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem 1.15rem;
  box-shadow: var(--shadow-sm);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky-dark);
  background: var(--bg-sky);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--sky);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 0.55rem;
}

.hero h1 span {
  color: var(--sky-dark);
  background: none;
  -webkit-text-fill-color: var(--sky-dark);
}

.hero-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.hero-actions .btn { padding: 0.65rem 1.2rem; font-size: 0.85rem; }

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-sky);
}

.stat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4.5rem;
  padding: 0.4rem 0.65rem;
  background: var(--bg-sky);
  border-radius: 10px;
  border: 1px solid var(--border-sky);
}

.stat-chip strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--sky-dark);
  line-height: 1.2;
}

.stat-chip span {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* Hero quick cards */
.hero-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.quick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all var(--ease);
  border-top: 3px solid var(--sky-light);
}

.quick-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--sky-light);
}

.qc-dedicated { border-top-color: var(--sky-dark); }
.qc-vps { border-top-color: var(--sky-light); }
.qc-shared { border-top-color: var(--sky-pale); }
.qc-reseller { border-top-color: var(--gold); }

.qc-icon { font-size: 1.25rem; margin-bottom: 0.35rem; }
.qc-title { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.qc-from { font-size: 0.72rem; color: var(--sky-dark); font-weight: 600; margin-top: 0.15rem; }

/* Trust bar */
.trust-bar {
  padding: 0.65rem 0;
  background: var(--bg-sky);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
}

.trust-inner span {
  color: var(--sky-dark);
  padding: 0.3rem 0.7rem;
  background: var(--bg-white);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-sky);
}

/* Service cards */
.service-banners { padding: 2.5rem 0; }

.banners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.banners-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.service-banner {
  position: relative;
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  transition: all var(--ease);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.service-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.banner-dedicated::before { background: var(--sky-dark); }
.banner-vps::before { background: var(--sky-light); }
.banner-shared::before { background: var(--sky-pale); }
.banner-reseller::before { background: var(--gold); }

.service-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--sky-light);
}

.banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
  background: var(--bg-sky);
}

.service-banner h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.service-banner p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  flex: 1;
  line-height: 1.5;
}

.service-banner .link-arrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sky-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-banner:hover .link-arrow { color: var(--sky-light); }

/* Page banners — compact */
.page-banner {
  padding: 1.5rem 0 1.25rem;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border-sky);
}

.page-banner-compact {
  padding: 1rem 0 !important;
  margin-bottom: 0 !important;
  border: none !important;
}

.page-banner .container { position: relative; z-index: 1; }

.page-banner h1,
.page-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.page-banner p {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 560px;
  line-height: 1.5;
}

.page-banner .breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.page-banner .breadcrumb a { color: var(--sky-dark); font-weight: 600; }

section { padding: 2.75rem 0; }

.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 2.75rem;
}

.section-head .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sky-dark);
  background: transparent;
  padding: 0;
  margin-bottom: 0.55rem;
}

.section-head h2 {
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--sky-dark);
}

.section-head p { color: var(--text-muted); font-size: 0.92rem; }

.section-head { margin-bottom: 2rem; }

.alt-bg {
  background: linear-gradient(180deg, var(--bg-sky) 0%, var(--bg) 100%);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
}

.feature-card {
  padding: 1.65rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--ease);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--sky-light);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-sky);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.15rem;
}

.pricing-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--ease);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--sky);
  box-shadow: var(--shadow-lg);
}

.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-btn);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
}

.pricing-card h3 { font-size: 1.12rem; margin-bottom: 0.15rem; }
.plan-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.9rem; }

.price .amt {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sky-dark);
}

.price .per { font-size: 0.85rem; color: var(--text-muted); }

.spec-list { list-style: none; flex: 1; margin: 0.9rem 0 1.15rem; }

.spec-list li {
  padding: 0.38rem 0;
  font-size: 0.86rem;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border);
}

.spec-list li::before { content: "✦ "; color: var(--sky); }
.spec-list li:last-child { border-bottom: none; }

.pricing-card .btn { width: 100%; }
.view-all { text-align: center; margin-top: 2rem; }

.compare-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.compare-item {
  text-align: center;
  padding: 1.2rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.compare-item strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--sky-dark);
}

.compare-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.plans-table { width: 100%; border-collapse: collapse; min-width: 880px; }

.plans-table th,
.plans-table td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.86rem;
}

.plans-table th {
  background: var(--bg-sky);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sky-dark);
}

.plans-table tbody tr:hover { background: var(--bg-sky); }
.plans-table .price-cell { font-weight: 800; color: var(--sky-dark); white-space: nowrap; }

/* Why / locations */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.why-list { list-style: none; }

.why-list li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.why-num {
  width: 36px;
  height: 36px;
  background: var(--gradient-btn);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.why-list span { font-size: 0.88rem; color: var(--text-muted); }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.location-card {
  padding: 1.35rem;
  text-align: center;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--ease);
}

.location-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
  border-color: var(--sky-light);
}

.uptime-card {
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-sky);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.uptime-label { font-weight: 600; font-size: 0.9rem; color: var(--text); margin-bottom: 0.35rem; }
.uptime-value { font-size: 2rem; font-weight: 800; color: var(--sky-dark); line-height: 1.2; }
.uptime-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.35rem; }

.location-card h3 { font-size: 0.95rem; margin: 0.4rem 0 0.15rem; }
.location-card p { font-size: 0.78rem; color: var(--text-muted); }
.location-card .ok { color: var(--success); font-size: 0.72rem; font-weight: 700; margin-top: 0.45rem; display: block; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.15rem;
}

.testimonial-card {
  padding: 1.65rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.testimonial-card .stars { color: #fbbf24; margin-bottom: 0.75rem; letter-spacing: 0.1em; }

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-body);
  font-style: normal;
  margin-bottom: 1.15rem;
  line-height: 1.65;
}

.author-row { display: flex; align-items: center; gap: 0.75rem; }

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gradient-btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item { margin-bottom: 0.6rem; }

.faq-q {
  width: 100%;
  padding: 1.1rem 1.3rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: background var(--ease);
}

.faq-q:hover { background: var(--bg-sky); }

.faq-q::after {
  content: "+";
  width: 26px;
  height: 26px;
  background: var(--bg-sky-deep);
  color: var(--sky-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-item.open .faq-q { background: var(--bg-sky); border-color: var(--sky-light); }
.faq-item.open .faq-q::after { content: "−"; background: var(--sky); color: #fff; }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 1.3rem 1rem; color: var(--text-muted); font-size: 0.9rem; }
.faq-item.open .faq-a { max-height: 280px; }

.region-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.region-nav a {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--bg-white);
}

.region-nav a:hover,
.region-nav a.active {
  background: var(--gradient-btn);
  border-color: transparent;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2rem;
}

.dept-card {
  padding: 1.3rem;
  margin-bottom: 0.75rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.dept-card h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.dept-card p, .dept-card a { font-size: 0.88rem; color: var(--text-muted); }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text); margin-bottom: 0.35rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.88rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-body);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.form-card {
  padding: 1.75rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.form-ok {
  display: none;
  padding: 0.9rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 12px;
  color: #047857;
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.form-ok.show { display: block; }

.cta-box {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-sky);
}

.cta-box h2 { font-size: 1.45rem; margin-bottom: 0.4rem; }
.cta-box p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.92rem; }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  background: var(--bg-white);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p { color: var(--text-muted); font-size: 0.86rem; margin-top: 0.75rem; max-width: 260px; }

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky-dark);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.35rem; }
.footer-col a { color: var(--text-muted); font-size: 0.86rem; font-weight: 500; }
.footer-col a:hover { color: var(--sky-dark); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.on { opacity: 1; transform: translateY(0); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* Legal / policy pages */
.legal-wrap {
  max-width: 860px;
}

.legal-card {
  padding: 2rem;
}

.legal-card h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.legal-card h2:first-child { margin-top: 0; }

.legal-card p,
.legal-card li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0.25rem;
}

@media (max-width: 960px) {
  .hero-layout, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .banners-grid, .banners-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .compare-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-main {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-white);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
  }

  .nav-main.open { display: flex; }

  .nav-drop-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
  }

  .nav-drop.open .nav-drop-menu { display: block; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-quick { grid-template-columns: repeat(4, 1fr); }
  .banners-grid-4 { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-quick { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .compare-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
