/* ==========================================================================
   NA1 Digital — shared styles
   ========================================================================== */

:root {
  --bg: #0a0e16;
  --bg-alt: #0e1420;
  --bg-alt-2: #10182a;
  --card: #131b2c;
  --card-border: rgba(244, 239, 230, 0.09);
  --cream: #f4efe6;
  --cream-dim: #a9a6a0;
  --cream-dimmer: #78766f;
  --cobalt: #3763ff;
  --cobalt-light: #6f8dff;
  --cobalt-dim: rgba(55, 99, 255, 0.14);
  --amber: #d9a94e;
  --amber-dim: rgba(217, 169, 78, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --max-width: 1180px;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cobalt-light);
  margin-bottom: 18px;
  font-weight: 600;
}

section {
  position: relative;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cobalt);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(55, 99, 255, 0.55);
}

.btn-primary:hover {
  background: #4d74ff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -10px rgba(55, 99, 255, 0.65);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 239, 230, 0.28);
}

.btn-secondary:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
  background: rgba(244, 239, 230, 0.05);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 20px 36px;
  font-size: 1.1rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 22, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.seal {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a:not(.btn) {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--cream);
}

.nav-links a.active:not(.btn) {
  color: var(--cream);
}

.nav-links a.active:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cobalt);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-cta .btn {
  padding: 12px 22px;
  font-size: 0.92rem;
}

.nav-cta-mobile {
  display: none;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(55, 99, 255, 0.20), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(217, 169, 78, 0.08), transparent 60%),
    linear-gradient(180deg, #0a0e16 0%, #0b101c 100%);
}

.hero-inner {
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--cream);
  margin-bottom: 26px;
}

.hero h1 span {
  color: var(--cobalt-light);
}

.hero p.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--cream-dim);
  max-width: 640px;
  margin-bottom: 42px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Section headers
   ========================================================================== */

.section {
  padding: 130px 0;
}

.section-header {
  max-width: 680px;
  margin-bottom: 70px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
}

.section-header p {
  color: var(--cream-dim);
  font-size: 1.1rem;
  margin-top: 18px;
}

.section-alt {
  background: var(--bg-alt);
}

/* ==========================================================================
   How it works
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 44px 34px;
  position: relative;
  overflow: hidden;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--cobalt);
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 14px;
}

.step-card p {
  color: var(--cream-dim);
  font-size: 1rem;
}

/* ==========================================================================
   Why NA1 grid
   ========================================================================== */

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.value-card {
  background: var(--bg);
  padding: 46px 40px;
}

.value-card .value-index {
  font-family: var(--font-display);
  color: var(--cobalt-light);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.value-card h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--cream-dim);
}

/* ==========================================================================
   Trust / stats
   ========================================================================== */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stat-card {
  text-align: center;
  padding: 50px 24px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), var(--bg-alt-2));
}

.stat-card p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
  font-weight: 600;
}

.stat-card .stat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cobalt);
  margin: 0 auto 22px;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final-cta {
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(55, 99, 255, 0.18), transparent 65%),
    var(--bg-alt);
  padding: 140px 0;
  text-align: center;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--cream);
  margin-bottom: 18px;
}

.final-cta p.lead {
  color: var(--cream-dim);
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.phone-link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 700;
  color: var(--cobalt-light);
  display: inline-block;
  margin-bottom: 28px;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

.phone-link:hover {
  color: var(--cream);
}

.final-cta .secondary-line {
  color: var(--cream-dim);
  font-size: 1rem;
}

.final-cta .secondary-line a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(244, 239, 230, 0.35);
}

.final-cta .secondary-line a:hover {
  color: var(--cobalt-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 70px 0 40px;
  background: var(--bg);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--card-border);
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--cream-dim);
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dimmer);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: var(--cream-dim);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--cobalt-light);
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--cream-dimmer);
  font-size: 0.88rem;
}

/* ==========================================================================
   Fade-in on scroll
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Pricing page
   ========================================================================== */

.pricing-hero {
  padding: 150px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(55, 99, 255, 0.16), transparent 60%),
    var(--bg);
}

.pricing-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}

.pricing-hero p {
  color: var(--cream-dim);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.premium {
  border: 1px solid rgba(217, 169, 78, 0.55);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(217, 169, 78, 0.12) inset;
  background: linear-gradient(180deg, #151d2e, #12192a);
}

.price-badge {
  position: absolute;
  top: -14px;
  right: 40px;
  background: var(--amber);
  color: #1a1305;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 20px;
}

.price-card h3 {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  margin: 18px 0 6px;
}

.price-card .price span {
  font-size: 1rem;
  color: var(--cream-dim);
  font-weight: 500;
  font-family: var(--font-body);
}

.price-card .price-note {
  color: var(--cream-dimmer);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.price-features {
  flex-grow: 1;
  margin-bottom: 36px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--cream-dim);
  border-top: 1px solid var(--card-border);
  font-size: 0.98rem;
}

.price-features li:first-child {
  border-top: none;
}

.price-features li .check {
  color: var(--cobalt-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.price-card.premium .price-features li .check {
  color: var(--amber);
}

.price-features li.included-note {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  padding-top: 16px;
  padding-bottom: 6px;
  border-top: none;
}

/* ==========================================================================
   Hosting add-on strip
   ========================================================================== */

.hosting-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 90px 0;
}

.hosting-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.hosting-text {
  max-width: 560px;
}

.hosting-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  margin: 10px 0 16px;
}

.hosting-text p {
  color: var(--cream-dim);
}

.hosting-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cobalt-light);
  white-space: nowrap;
}

.hosting-price span {
  font-size: 1rem;
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-weight: 400;
}

.hosting-note {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--card-border);
  color: var(--cream-dimmer);
  font-size: 0.92rem;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--card-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--cobalt-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  color: var(--cream-dim);
  padding-bottom: 26px;
  max-width: 640px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-hero {
  padding: 150px 0 70px;
  text-align: center;
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(55, 99, 255, 0.18), transparent 60%),
    var(--bg);
}

.contact-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}

.contact-hero p {
  color: var(--cream-dim);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
}

.contact-card .value-index {
  display: block;
  font-family: var(--font-display);
  color: var(--cobalt-light);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-card-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 18px;
  transition: color 0.2s ease;
  word-break: break-word;
}

.contact-card-value:hover {
  color: var(--cobalt-light);
}

.contact-card p {
  color: var(--cream-dim);
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--bg-alt);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid var(--card-border);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-cta > .btn {
    display: none;
  }

  .nav-cta-mobile {
    display: block;
    margin-top: 10px;
  }

  .hamburger {
    display: flex;
  }

  .steps,
  .value-grid,
  .stats-row,
  .pricing-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 90px 0;
  }

  .hero {
    padding: 120px 0 70px;
  }

  .footer-top {
    flex-direction: column;
  }

  .hosting-inner {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 36px 26px;
  }

  .price-card {
    padding: 36px 26px;
  }
}
