@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  /* Light backgrounds */
  --bg:       #FFFFFF;
  --bg-alt:   #F4F7FA;
  --bg-card:  #FFFFFF;

  /* Teal primary — netcraft */
  --primary:       #3BA5BE;
  --primary-light: #5BC4D8;
  --primary-dark:  #2A8FAA;

  /* Orange accent */
  --accent:       #F16625;
  --accent-dark:  #D4521A;
  --accent-light: #FCA46A;

  /* Dark anchors — hero, footer, CTA, dark panels */
  --navy:     #0E1C35;
  --navy-mid: #152848;
  --dark:     #111827;
  --teal:     #3BA5BE;

  /* Text */
  --text:       #374151;
  --text-light: #6B7280;
  --white:      #FFFFFF;

  /* Borders */
  --border:      #E5E7EB;
  --border-navy: rgba(255,255,255,.1);

  /* Shadows */
  --shadow:    0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 24px rgba(0,0,0,.09), 0 4px 8px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 44px -8px rgba(59,165,190,.18);

  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition: all 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', 'DM Sans', sans-serif; color: var(--dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.75); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white) !important; }
.text-navy { color: var(--navy); }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.font-bold { font-weight: 700; }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 56px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .73rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--primary);
  background: rgba(59,165,190,.08); border: 1px solid rgba(59,165,190,.2);
  padding: 5px 16px; border-radius: 6px; margin-bottom: 16px;
}
.eyebrow-accent {
  background: rgba(241,102,37,.08); border-color: rgba(241,102,37,.22);
  color: var(--accent-dark);
}
.eyebrow-white {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-light); max-width: 580px; margin: 0 auto; }

/* LOGO */
.nav-logo-img { height: 40px; width: auto; display: block; }
.footer-logo-img { height: 36px; width: auto; display: block; margin-bottom: 14px; opacity: .9; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(7,21,32,.55);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46,196,204,.1);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  background: rgba(7,21,32,.94);
  border-bottom-color: rgba(46,196,204,.18);
  box-shadow: 0 4px 32px rgba(0,0,0,.35);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px; padding: 7px 13px;
  border-radius: 6px; font-size: .875rem; font-weight: 500;
  color: rgba(255,255,255,.72); transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,.07); color: var(--white); }
.nav-link.active { color: var(--primary); }
.nav-link .chevron { font-size: .65rem; transition: var(--transition); }
.nav-item:hover .chevron { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #0a1e2e; border: 1px solid rgba(46,196,204,.18);
  border-radius: var(--radius); box-shadow: 0 12px 40px rgba(0,0,0,.5);
  min-width: 195px; opacity: 0; visibility: hidden;
  transform: translateY(-8px); transition: var(--transition); overflow: hidden;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 16px; font-size: .855rem; font-weight: 500;
  color: rgba(255,255,255,.68); border-bottom: 1px solid rgba(255,255,255,.06); transition: var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: rgba(46,196,204,.08); color: var(--primary); padding-left: 22px; }
.nav-cta {
  background: var(--accent); color: var(--white) !important;
  border-radius: 6px; padding: 9px 20px !important;
  font-weight: 600 !important; margin-left: 8px;
}
.nav-cta:hover { background: var(--accent-dark) !important; color: var(--white) !important; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; transition: var(--transition); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 6px;
  font-size: .92rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid transparent;
  transition: var(--transition); white-space: nowrap; font-family: inherit;
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 14px rgba(59,165,190,.25); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(59,165,190,.35); }
.btn-accent { background: var(--accent); color: var(--white); box-shadow: 0 4px 14px rgba(241,102,37,.22); }
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(241,102,37,.32); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: var(--white); }
.btn-lg { padding: 15px 38px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: .83rem; }

/* HERO */
.hero {
  min-height: 100dvh; display: flex; flex-direction: column;
  background: #071520;
  position: relative; overflow: hidden; padding-top: 66px;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(46,196,204,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(46,196,204,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  flex: 1; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: center;
  padding: 64px 0 48px;
}
.hero-content { padding-right: 48px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(241,102,37,.12); border: 1px solid rgba(241,102,37,.28);
  color: var(--accent-light); padding: 7px 18px; border-radius: 6px;
  font-size: .77rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-eyebrow .pulse-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero-lead { font-size: 1.1rem; color: rgba(255,255,255,.65); margin-bottom: 36px; max-width: 480px; line-height: 1.75; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat .number { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1; }
.hero-stat .label { font-size: .78rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.hero-visual {
  display: flex; align-items: center; justify-content: flex-end;
  height: 100%; overflow: visible;
}
.hero-bg-img {
  width: 115%; max-width: 820px; height: auto;
  object-fit: contain; display: block;
  transform: translateX(8%);
  -webkit-mask-image: radial-gradient(ellipse 72% 78% at 50% 50%,
    black 0%,
    black 32%,
    rgba(0,0,0,.85) 48%,
    rgba(0,0,0,.4)  62%,
    transparent     76%);
  mask-image: radial-gradient(ellipse 72% 78% at 50% 50%,
    black 0%,
    black 32%,
    rgba(0,0,0,.85) 48%,
    rgba(0,0,0,.4)  62%,
    transparent     76%);
}

/* TICKER BANNER */
.ticker-banner {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(46,196,204,.15);
  padding: 22px 0 0;
}
.ticker-banner-label {
  text-align: center; font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.4); letter-spacing: .02em;
  margin-bottom: 16px; padding: 0 24px;
}
.ticker-outer {
  overflow: hidden;
  background: rgba(46,196,204,.04);
  border-top: 1px solid rgba(46,196,204,.1);
  border-bottom: 1px solid rgba(46,196,204,.1);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex; align-items: center;
  white-space: nowrap; width: max-content;
  animation: ticker-scroll 40s linear infinite;
  padding: 20px 0;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 40px; font-size: .8rem; font-weight: 700;
  color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em;
}
.ticker-sep {
  width: 5px; height: 5px; background: var(--primary);
  border-radius: 50%; flex-shrink: 0; opacity: .6;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* PAGE HERO */
.page-hero {
  background: url('../img/background.png') center top / cover no-repeat, linear-gradient(145deg, #0A1628 0%, #0E1C35 100%);
  padding: 116px 0 72px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(10,22,40,.78) 0%, rgba(14,28,53,.72) 100%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.85); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,.65); max-width: 580px; margin-bottom: 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: .83rem; }
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb span { color: rgba(255,255,255,.25); }
.breadcrumb .current { color: rgba(255,255,255,.85); font-weight: 600; }

/* CARDS */
.card {
  background: linear-gradient(160deg, #0C3442 0%, #051B26 100%);
  border: 1px solid rgba(46,196,204,.14);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(4,24,38,.35);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 36px rgba(4,24,38,.5); border-color: rgba(46,196,204,.32); }
.card-icon { width: 52px; height: 52px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card-icon svg { width: 24px; height: 24px; }
.card-icon.blue { background: rgba(59,165,190,.2); color: var(--primary); }
.card-icon.orange { background: rgba(241,102,37,.2); color: var(--accent); }
.card-icon.teal { background: rgba(59,165,190,.2); color: var(--teal); }
.card-icon.green { background: rgba(16,185,129,.2); color: #34D399; }
.card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.card h4 { color: var(--white); margin-bottom: 8px; }
.card p { color: rgba(255,255,255,.58); font-size: .9rem; margin-bottom: 0; }
.card-grid { display: grid; gap: 22px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* SERVICE CARDS */
.service-card {
  background: linear-gradient(160deg, #0C3442 0%, #051B26 100%);
  border: 1px solid rgba(46,196,204,.14);
  border-radius: var(--radius-xl); padding: 36px 32px;
  position: relative; overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column;
  box-shadow: 0 4px 24px rgba(4,24,38,.35);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(4,24,38,.5); border-color: rgba(46,196,204,.32); }
.service-card.featured { border-color: rgba(46,196,204,.4); box-shadow: 0 0 0 1px rgba(59,165,190,.2), 0 8px 36px rgba(4,24,38,.5); }
.service-card.featured::before { transform: scaleX(1); }
.service-card h3 { color: var(--white); }
.featured-badge { position: absolute; top: 20px; right: 20px; background: var(--primary); color: white; font-size: .7rem; font-weight: 700; padding: 4px 12px; border-radius: 4px; letter-spacing: .06em; }
.service-num { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 800; color: rgba(255,255,255,.07); line-height: 1; margin-bottom: 12px; }
.service-price { font-family: 'Space Grotesk', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--primary); margin: 16px 0 8px; }
.service-price-note { font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.service-feature { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.65); }
.service-feature svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* COMPARISON TABLE */
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: .9rem; }
.compare-table th { background: var(--navy); color: var(--white); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; }
.compare-table th:first-child { border-radius: 10px 0 0 0; }
.compare-table th:last-child { border-radius: 0 10px 0 0; }
.compare-table tr:hover td { background: var(--bg-alt); }
.compare-table .metric-col { font-weight: 600; color: var(--dark); }
.compare-table .us-col { color: var(--primary); font-weight: 600; }
.compare-table .them-col { color: var(--text-light); }
.compare-table .check { color: #10B981; font-weight: 700; }
.compare-table .hl-col { background: rgba(59,165,190,.04) !important; }
.compare-table th.hl-col { background: rgba(59,165,190,.75) !important; }

/* STAT BOXES */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-box { background: linear-gradient(160deg, #0C3442 0%, #051B26 100%); border: 1px solid rgba(46,196,204,.14); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; transition: var(--transition); box-shadow: 0 4px 24px rgba(4,24,38,.35); }
.stat-box:hover { transform: translateY(-4px); box-shadow: 0 8px 36px rgba(4,24,38,.5); border-color: rgba(46,196,204,.32); }
.stat-box .number { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.stat-box .number.accent { color: var(--accent); }
.stat-box .label { font-size: .83rem; color: rgba(255,255,255,.5); font-weight: 500; }

/* TWO-COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-content h2 { margin-bottom: 18px; }
.two-col-content p { color: var(--text-light); margin-bottom: 14px; }

/* CHECKLIST */
.checklist { display: flex; flex-direction: column; gap: 11px; }
.checklist-item { display: flex; align-items: flex-start; gap: 11px; font-size: .92rem; color: rgba(255,255,255,.72); }
.ci-icon { width: 20px; height: 20px; border-radius: 4px; background: rgba(59,165,190,.2); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ci-icon svg { width: 10px; height: 10px; }
.ci-icon.accent { background: rgba(241,102,37,.2); color: var(--accent); }

/* PROCESS STEPS */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 16px; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: white; font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--primary), var(--shadow); }
.step-num.accent { background: var(--accent); box-shadow: 0 0 0 2px var(--accent), var(--shadow); }
.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p { font-size: .855rem; color: var(--text-light); margin: 0; }

/* REVENUE CARDS */
.revenue-timeline { display: flex; flex-direction: column; gap: 16px; }
.revenue-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 20px; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 24px; transition: var(--transition); box-shadow: var(--shadow); }
.revenue-item:hover { box-shadow: var(--shadow-md); border-color: rgba(59,165,190,.2); }
.revenue-month { font-family: 'Space Grotesk', sans-serif; font-size: .8rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .06em; }
.revenue-bar-wrap { height: 8px; background: var(--bg-alt); border-radius: 100px; overflow: hidden; }
.revenue-bar { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 100px; transition: width 1s cubic-bezier(0.4, 0, 0.2, 1); }
.revenue-amount { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); white-space: nowrap; min-width: 90px; text-align: right; }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(145deg, #0A1628 0%, #0E1C35 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(59,165,190,.08) 0%, transparent 60%); }
.cta-section > .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 520px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { background: var(--navy); color: rgba(255,255,255,.55); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand p { font-size: .875rem; line-height: 1.75; margin-top: 4px; }
.footer-col h5 { color: var(--white); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .86rem; color: rgba(255,255,255,.45); transition: var(--transition); }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .78rem; }
.footer-tagline { font-size: .78rem; color: rgba(255,255,255,.28); font-style: italic; }

/* TECH STACK */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tech-group { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.tech-group h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); margin-bottom: 14px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag { background: rgba(59,165,190,.08); border: 1px solid rgba(59,165,190,.18); color: var(--primary); font-size: .8rem; font-weight: 600; padding: 4px 12px; border-radius: 4px; }

/* NOTICE / INFO */
.info-box { background: rgba(59,165,190,.06); border: 1px solid rgba(59,165,190,.18); border-left: 3px solid var(--primary); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 24px; }
.info-box h4 { color: var(--primary); margin-bottom: 6px; }
.info-box p { font-size: .9rem; color: var(--text); margin-bottom: 0; }

/* CONTACT FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--bg-alt); border-radius: var(--radius); font-size: .88rem; margin-bottom: 12px; }
.contact-detail .cd-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(59,165,190,.1); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail .cd-icon svg { width: 18px; height: 18px; }
.contact-detail .cd-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 2px; }
.contact-detail .cd-value { color: var(--dark); font-weight: 500; }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px 36px; box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: .9rem; font-family: inherit; color: var(--dark);
  background: var(--white); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59,165,190,.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* STRATEGY GRID */
.strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.strategy-col { border-radius: var(--radius-lg); padding: 28px; }
.strategy-col.no { background: rgba(239,68,68,.05); border: 1px solid rgba(239,68,68,.15); }
.strategy-col.yes { background: rgba(59,165,190,.05); border: 1px solid rgba(59,165,190,.15); }
.strategy-col h4 { font-size: 1rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.strategy-col h4.no-title { color: #DC2626; }
.strategy-col h4.yes-title { color: var(--primary); }
.strategy-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.05); font-size: .9rem; color: var(--text); }
.strategy-item:last-child { border-bottom: none; }
.strategy-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }

/* ANIMATIONS */
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.6; transform:scale(.85); } }
@keyframes fade-up { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fade-in { from { opacity:0; } to { opacity:1; } }

.animate-fade-up { animation: fade-up .6s ease forwards; opacity: 0; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }
.reveal { opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns: 1fr; align-items: start; padding: 52px 0 36px; }
  .hero-visual { display: none; }
  .hero-content { padding-right: 0; max-width: 680px; }
  .ticker-banner { padding: 16px 0 0; }
  .card-grid-4, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:768px) {
  .nav-menu { display:none; position:fixed; top:66px; left:0; right:0; background:rgba(7,21,32,.97); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom:1px solid rgba(46,196,204,.15); flex-direction:column; padding:14px; gap:4px; box-shadow:0 12px 40px rgba(0,0,0,.5); }
  .nav-menu.open { display:flex; }
  .nav-toggle { display:flex; }
  .nav-cta { margin-left: 0; }
  .dropdown { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; background:rgba(255,255,255,.04); border-radius:var(--radius); margin-top:4px; display:none; }
  .nav-item.open .dropdown { display:block; }
  .section { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: 1rem; }
  .page-hero { padding: 88px 0 52px; }
  .hero-inner { padding: 32px 0 24px; }
  .hero-eyebrow { font-size: .7rem; padding: 6px 14px; }
  .hero-lead { font-size: 1rem; max-width: 100%; margin-bottom: 24px; }
  .hero-cta { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .cta-section { padding: 64px 0; }
  .contact-form-wrap { padding: 28px 20px; }
  .service-card { padding: 28px 22px; }
  .stat-box { padding: 22px 16px; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns:1fr; gap:28px; }
  .two-col.reverse { direction:ltr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .cta-buttons { flex-direction:column; align-items:center; }
  .compare-wrap { overflow-x: auto; }
  .tech-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .revenue-item { grid-template-columns: 60px 1fr; }
  .revenue-amount { display: none; }
}
@media (max-width:480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .section-header { margin-bottom: 24px; }
  .page-hero { padding: 78px 0 40px; }
  .hero-inner { padding: 20px 0 16px; }
  .hero-eyebrow { font-size: .65rem; padding: 5px 10px; letter-spacing: .1em; }
  .hero-lead { font-size: .95rem; margin-bottom: 20px; }
  .hero-cta { margin-bottom: 20px; gap: 8px; }
  .hero-stats { gap: 12px; }
  .hero-stat .number { font-size: 1.5rem; }
  .hero-stat .label { font-size: .7rem; }
  .contact-form-wrap { padding: 20px 14px; }
  .card { padding: 22px 18px; }
  .service-card { padding: 24px 18px; }
  .stat-box { padding: 18px 12px; }
  .stat-box .number { font-size: 2rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 48px 0; }
  .ticker-banner-label { font-size: .76rem; }
}
