/* CloudTik Network-Inspired Landing (FreeMile-style layout, CloudTik theme) */

:root {
  --ct-navy: #0a1628;
  --ct-navy-mid: #132238;
  --ct-navy-light: #1a3050;
  --ct-gold: #d4af37;
  --ct-gold-bright: #e8c547;
  --ct-gold-dark: #b8942e;
  --ct-surface: #f4f6f9;
  --ct-border: rgba(10, 22, 40, 0.08);
  --ct-text: #1e293b;
  --ct-muted: #64748b;
  --ct-radius: 4px;
  --ct-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
}

body {
  font-family: 'Plus Jakarta Sans', 'Dosis', sans-serif !important;
  background: #fff !important;
  color: var(--ct-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Dosis', sans-serif !important;
}

/* Header */
header {
  background: rgba(10, 22, 40, 0.92) !important;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
}

header.scrolled {
  background: rgba(10, 22, 40, 0.98) !important;
}

.logo-text {
  font-weight: 800 !important;
  letter-spacing: -0.02em;
}

.nav-links a {
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-button {
  background: var(--ct-gold) !important;
  color: var(--ct-navy) !important;
  border-radius: var(--ct-radius) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px !important;
  padding: 14px 28px !important;
  border: none;
  transition: all 0.25s ease;
}

.cta-button:hover {
  background: var(--ct-gold-bright) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* Shared */
.net-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ct-gold-dark);
  margin-bottom: 12px;
}

.net-eyebrow.light {
  color: var(--ct-gold-bright);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem) !important;
  font-weight: 800 !important;
  color: var(--ct-navy) !important;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--ct-muted);
  font-size: 16px;
  line-height: 1.7;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--ct-radius);
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  border-color: var(--ct-gold);
  color: var(--ct-gold);
}

.btn-ghost.light {
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost.light:hover {
  border-color: #fff;
  color: #fff;
}

.net-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.net-actions.center {
  justify-content: center;
}

/* Demo dropdown */
.demo-dropdown {
  position: relative;
  display: inline-block;
}

.demo-dropdown-toggle {
  cursor: pointer;
  background: transparent;
  font-family: inherit;
}

.demo-dropdown-chevron {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.demo-dropdown.open .demo-dropdown-chevron {
  transform: rotate(180deg);
}

.demo-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.25);
  border: 1px solid rgba(10, 22, 40, 0.08);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 100;
}

.demo-dropdown.open .demo-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.demo-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--ct-text);
  transition: background 0.15s ease;
}

.demo-dropdown-item:hover {
  background: rgba(212, 175, 55, 0.1);
}

.demo-dropdown-item i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ct-navy);
  color: var(--ct-gold);
  border-radius: 8px;
  font-size: 15px;
  flex-shrink: 0;
}

.demo-dropdown-item span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.demo-dropdown-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ct-navy);
  text-transform: none;
  letter-spacing: 0;
}

.demo-dropdown-item small {
  font-size: 12px;
  color: var(--ct-muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.demo-dropdown.center .demo-dropdown-menu {
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
}

.demo-dropdown.center.open .demo-dropdown-menu {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
  .demo-dropdown-menu {
    left: auto;
    right: 0;
  }

  .demo-dropdown.center .demo-dropdown-menu {
    left: 50%;
    right: auto;
  }
}

/* Hero */
.net-hero {
  position: relative;
  padding: 130px 0 90px;
  background: var(--ct-navy);
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.net-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}

.net-hero-bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
}

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

.net-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 48px;
  max-width: 720px;
}

.net-spec {
  padding: 16px 12px;
  background: rgba(10, 22, 40, 0.6);
  text-align: center;
}

.net-spec strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ct-gold);
  line-height: 1.2;
}

.net-spec span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}

.net-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.net-hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.net-hero-copy h1 span {
  color: var(--ct-gold);
}

.net-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 520px;
}

.net-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.net-trust span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.net-trust i {
  color: var(--ct-gold);
  font-size: 11px;
}

/* Network Topology Visual */
.net-topology {
  position: relative;
  padding: 40px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.topo-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 22, 40, 0.8);
  min-width: 100px;
}

.topo-node.core {
  margin: 0 auto 0;
  border-color: var(--ct-gold);
  background: rgba(212, 175, 55, 0.1);
}

.topo-node i {
  font-size: 22px;
  color: var(--ct-gold);
}

.topo-node span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.topo-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, var(--ct-gold), transparent);
  margin: 0 auto;
}

.topo-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.topo-row-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

.topo-row-services .topo-node {
  min-width: 0;
  padding: 16px 10px;
}

.topo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: topoPulse 3s ease-out infinite;
  pointer-events: none;
}

@keyframes topoPulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Pillars */
.net-pillars {
  padding: 0;
  margin-top: -1px;
  background: var(--ct-navy-mid);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.pillar {
  padding: 36px 28px;
  background: var(--ct-navy-mid);
  transition: background 0.25s ease;
}

.pillar:hover {
  background: var(--ct-navy-light);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 16px;
  font-size: 18px;
  color: var(--ct-gold);
}

.pillar h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pillar p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

/* Solutions */
.net-solutions {
  padding: 100px 0;
  background: #fff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ct-border);
  border: 1px solid var(--ct-border);
}

.solution-card {
  padding: 40px 36px;
  background: #fff;
  transition: all 0.25s ease;
  position: relative;
}

.solution-card:hover {
  background: var(--ct-surface);
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--ct-gold);
  transition: height 0.3s ease;
}

.solution-card:hover::before {
  height: 100%;
}

.solution-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.solution-card h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--ct-navy);
  margin-bottom: 10px;
}

.solution-card p {
  font-size: 14px;
  color: var(--ct-muted);
  line-height: 1.7;
  margin: 0;
}

/* Trial Band */
.net-trial {
  padding: 80px 0;
  background: var(--ct-surface);
}

.trial-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 56px;
  background: var(--ct-navy);
  border-left: 4px solid var(--ct-gold);
}

.trial-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin-bottom: 8px;
}

.trial-band p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  margin: 0;
  max-width: 480px;
}

.trial-band-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.trial-count {
  text-align: center;
}

.trial-num {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: var(--ct-gold);
  line-height: 1;
}

.trial-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* Self-Hosted Licensed Software */
.net-licensed {
  background: linear-gradient(180deg, var(--ct-surface) 0%, #fff 100%);
}

.licensed-emphasis {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--ct-border);
}

.licensed-emphasis h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem) !important;
  font-weight: 800 !important;
  color: var(--ct-navy) !important;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15 !important;
}

.licensed-emphasis h2 span {
  color: var(--ct-gold-dark);
}

.licensed-lead {
  font-size: 16px;
  color: var(--ct-muted);
  line-height: 1.8;
  margin: 0;
}

.licensed-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.licensed-pillar {
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--ct-border);
  border-top: 3px solid var(--ct-gold);
  transition: all 0.3s ease;
}

.licensed-pillar:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--ct-shadow);
  transform: translateY(-4px);
}

.licensed-pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ct-navy);
  color: var(--ct-gold);
  font-size: 18px;
  margin-bottom: 14px;
}

.licensed-pillar h3 {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--ct-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.licensed-pillar p {
  font-size: 13px;
  color: var(--ct-muted);
  line-height: 1.65;
  margin: 0;
}

.licensed-products-head {
  text-align: center;
  margin-bottom: 28px;
}

.licensed-products-head h3 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--ct-navy);
  margin-bottom: 6px;
}

.licensed-products-head p {
  font-size: 14px;
  color: var(--ct-muted);
  margin: 0;
}

.licensed-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 640px;
  margin: 40px auto 0;
  padding: 16px 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-left: 3px solid var(--ct-gold);
  font-size: 14px;
  color: var(--ct-navy);
  line-height: 1.6;
}

.licensed-note i {
  color: var(--ct-gold-dark);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Product Models */
.net-models {
  padding: 100px 0;
  background: #fff;
}

.licensing-currency {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.currency-toggle {
  background: var(--ct-surface) !important;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius) !important;
  padding: 4px !important;
}

.currency-btn {
  border-radius: var(--ct-radius) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.currency-btn.active {
  background: var(--ct-navy) !important;
}

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

.model-card {
  border: 1px solid var(--ct-border);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.model-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--ct-shadow);
}

.model-card.featured {
  border-color: var(--ct-gold);
  border-width: 2px;
}

.model-header {
  display: flex;
  gap: 16px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--ct-border);
  background: var(--ct-surface);
}

.model-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ct-navy);
  color: var(--ct-gold);
  font-size: 20px;
}

.model-header h3 {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--ct-navy);
  margin-bottom: 4px;
}

.model-header p {
  font-size: 13px;
  color: var(--ct-muted);
  margin: 0;
  line-height: 1.5;
}

.model-specs {
  padding: 20px 28px;
  border-bottom: 1px solid var(--ct-border);
}

.model-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--ct-border);
  font-size: 13px;
}

.model-spec-row:last-child {
  border-bottom: none;
}

.model-spec-row span {
  color: var(--ct-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
  font-weight: 600;
}

.model-spec-row strong {
  color: var(--ct-navy);
  font-weight: 700;
}

.model-card.featured .model-spec-row strong.license-price-display {
  color: var(--ct-gold-dark);
  font-size: 1.1rem;
}

.model-features {
  list-style: none;
  padding: 20px 28px;
  margin: 0;
  flex-grow: 1;
}

.model-features li {
  padding: 6px 0 6px 16px;
  font-size: 13px;
  color: var(--ct-text);
  position: relative;
  border-bottom: 1px solid var(--ct-border);
}

.model-features li:last-child {
  border-bottom: none;
}

.model-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ct-gold);
  font-weight: 700;
}

.model-cta {
  margin: 0 !important;
  width: 100% !important;
  text-align: center;
}

.model-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 28px 28px;
}

.model-demo {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 12px 20px !important;
  font-size: 12px !important;
}

/* Global */
.net-global {
  padding: 80px 0;
  background: var(--ct-surface);
}

.global-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--ct-navy);
  overflow: hidden;
}

.global-copy {
  padding: 56px 48px;
}

.global-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin-bottom: 12px;
}

.global-copy p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 15px;
}

.global-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  min-height: 280px;
}

.global-map > i {
  font-size: 120px;
  color: rgba(212, 175, 55, 0.15);
}

.map-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--ct-gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--ct-gold);
  animation: mapBlink 2s ease-in-out infinite;
}

.map-dot:nth-child(2) { animation-delay: 0.4s; }
.map-dot:nth-child(3) { animation-delay: 0.8s; }
.map-dot:nth-child(4) { animation-delay: 1.2s; }
.map-dot:nth-child(5) { animation-delay: 1.6s; }

@keyframes mapBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Integrations */
.net-integrations {
  padding: 80px 0;
  background: #fff;
}

.integrations-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 20px;
  border: 1px solid var(--ct-border);
  min-width: 120px;
  transition: all 0.25s ease;
}

.integration-item:hover {
  border-color: var(--ct-gold);
  background: var(--ct-surface);
}

.integration-item img {
  height: 32px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}

.integration-item span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ct-muted);
}

/* Final CTA */
.net-cta {
  padding: 80px 0 100px;
  background: var(--ct-surface);
}

.cta-panel {
  text-align: center;
  padding: 64px 48px;
  background: var(--ct-navy);
  border-top: 3px solid var(--ct-gold);
}

.cta-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin-bottom: 12px;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  margin-bottom: 8px;
}

/* Contact form */
.net-contact {
  padding: 80px 0;
  background: var(--ct-bg);
}

.net-contact .section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.net-contact .section-head p {
  color: var(--ct-muted);
  margin-top: 12px;
}

.contact-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
}

.contact-alert.success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #6ee7b7;
}

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
  background: var(--ct-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--ct-gold);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ct-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(2, 12, 27, 0.6);
  color: #fff;
  font: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ct-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.field-error {
  color: #f87171;
  font-size: 13px;
}

.contact-submit {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 20px;
  }
}

/* Footer overrides */
footer {
  background: var(--ct-navy) !important;
}

/* Hide old sections if any remain */
.hero-premium,
.stats-bar,
.features-section,
.setup-section,
.licensing-section,
.global,
.payment-gateways,
.cta-section,
.pricing-section {
  display: none !important;
}

/* Mobile */
@media (max-width: 992px) {
  .net-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .models-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .global-panel {
    grid-template-columns: 1fr;
  }

  .trial-band {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .trial-band p {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ct-navy);
    flex-direction: column !important;
    padding: 16px;
    gap: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links li a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  header .navbar {
    position: relative;
    flex-wrap: wrap;
  }

  header .cta-button.nav-cta {
    display: none;
  }

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

  .net-specs {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .net-spec {
    padding: 14px 10px;
  }

  .net-spec strong {
    font-size: 1.1rem;
  }

  .net-hero {
    min-height: auto;
    padding: 110px 0 70px;
  }

  .topo-row-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .licensed-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .licensed-pillars {
    grid-template-columns: 1fr;
  }
}
