/* ==========================================================================
   BuildHive — Design System
   Theme: "Modern Hive" — honeycomb geometry, honey/amber + deep ink,
   warm cream backgrounds, a hit of coral for action.
   ========================================================================== */

:root {
  /* Color palette */
  --ink: #20201c;
  --ink-soft: #4a463e;
  --cream: #fbf2e3;
  --cream-deep: #f3e6d2;
  --paper: #fffaf0;
  --honey: #f3a712;
  --honey-deep: #d6890a;
  --honey-light: #ffd874;
  --coral: #ff5a3c;
  --coral-deep: #e1431f;
  --teal: #1f8a70;
  --line: rgba(32, 32, 28, 0.12);
  --line-soft: rgba(32, 32, 28, 0.07);
  --shadow-color: rgba(32, 24, 8, 0.14);

  /* Typography */
  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Karla", "Segoe UI", system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5.5rem;

  /* Radii & shapes */
  --radius: 14px;
  --radius-sm: 8px;

  /* Container */
  --container: 1180px;

  /* Shadows */
  --shadow-sm: 0 2px 10px var(--shadow-color);
  --shadow-md: 0 12px 32px -8px var(--shadow-color);
  --shadow-lg: 0 24px 60px -16px rgba(32, 24, 8, 0.28);

  /* Hexagon clip path (flat-top hexagon) */
  --hex: polygon(25% 2%, 75% 2%, 100% 50%, 75% 98%, 25% 98%, 0% 50%);
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 1.0625rem;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

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

p {
  margin: 0;
}

/* Reveal-on-scroll: hidden until .is-visible is added by JS.
   If JS doesn't run, content stays visible (progressive enhancement). */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section--tight {
  padding: var(--space-lg) 0;
}

.section--cream-deep {
  background: var(--cream-deep);
}

.section--ink {
  background: var(--ink);
  color: var(--cream);
}

.section--ink h2,
.section--ink h3 {
  color: var(--paper);
}

.section-head {
  max-width: 680px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.section-head.align-left {
  margin: 0 0 var(--space-lg);
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey-deep);
  margin-bottom: 0.85rem;
}

.section--ink .eyebrow {
  color: var(--honey-light);
}

.eyebrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--coral);
  clip-path: var(--hex);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-top: 0.85rem;
}

.section--ink .lede {
  color: rgba(251, 242, 227, 0.78);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.btn-dark:hover {
  background: #38352c;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.section--ink .btn-outline {
  border-color: var(--cream);
  color: var(--cream);
}

.section--ink .btn-outline:hover {
  background: var(--cream);
  color: var(--ink);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background: var(--honey-light);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 242, 227, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(32, 24, 8, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 34px;
  height: auto;
  flex-shrink: 0;
}

.logo-accent {
  color: var(--teal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
  margin: 0 auto;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink-soft);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-links a.is-active {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0 var(--space-xl);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, var(--honey) 12%, transparent 12.5%, transparent 87%, var(--honey) 87.5%, var(--honey)),
    linear-gradient(150deg, var(--honey) 12%, transparent 12.5%, transparent 87%, var(--honey) 87.5%, var(--honey)),
    linear-gradient(30deg, var(--honey) 12%, transparent 12.5%, transparent 87%, var(--honey) 87.5%, var(--honey)),
    linear-gradient(150deg, var(--honey) 12%, transparent 12.5%, transparent 87%, var(--honey) 87.5%, var(--honey)),
    linear-gradient(60deg, var(--coral) 25%, transparent 25.5%, transparent 75%, var(--coral) 75%, var(--coral)),
    linear-gradient(60deg, var(--coral) 25%, transparent 25.5%, transparent 75%, var(--coral) 75%, var(--coral));
  background-size: 64px 112px;
  background-position: 0 0, 0 0, 32px 56px, 32px 56px, 0 0, 32px 56px;
  opacity: 0.05;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 0%, #000 0%, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1rem 0.4rem 0.55rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.hero-kicker .dot {
  width: 22px;
  height: 22px;
  background: var(--teal);
  clip-path: var(--hex);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
}

.hero h1 .hl {
  position: relative;
  display: inline-block;
  color: var(--coral-deep);
}

.hero h1 .hl svg {
  position: absolute;
  left: -4%;
  bottom: -0.18em;
  width: 108%;
  height: 0.35em;
  z-index: -1;
}

.hero-lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin: 1.4rem 0 2rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.2rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.hero-trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  flex-shrink: 0;
}

/* Hero visual: honeycomb cluster */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hex-cluster {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
}

.hex-cell {
  position: absolute;
  clip-path: var(--hex);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow-md);
  text-align: center;
  padding: 0.5rem;
}

.hex-cell svg {
  width: 38%;
  height: 38%;
}

.hex-cell strong {
  display: block;
  font-size: 1.5rem;
}

.hex-cell span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.75;
}

.hex-cell--1 {
  width: 46%;
  height: 46%;
  top: 2%;
  left: 27%;
  background: var(--ink);
  color: var(--paper);
  animation: floaty 7s ease-in-out infinite;
}

.hex-cell--2 {
  width: 38%;
  height: 38%;
  top: 32%;
  left: 0%;
  background: var(--honey);
  color: var(--ink);
  animation: floaty 8s ease-in-out infinite 0.6s;
}

.hex-cell--3 {
  width: 38%;
  height: 38%;
  top: 32%;
  left: 62%;
  background: var(--coral);
  color: var(--paper);
  animation: floaty 6.5s ease-in-out infinite 1.1s;
}

.hex-cell--4 {
  width: 34%;
  height: 34%;
  top: 64%;
  left: 16%;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  animation: floaty 7.5s ease-in-out infinite 0.3s;
}

.hex-cell--5 {
  width: 34%;
  height: 34%;
  top: 64%;
  left: 50%;
  background: var(--teal);
  color: var(--paper);
  animation: floaty 9s ease-in-out infinite 0.8s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hex-cell { animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ==========================================================================
   Marquee strip
   ========================================================================== */

.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll-left 38s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}

.marquee-track span::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--honey);
  clip-path: var(--hex);
  display: block;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; }
}

/* ==========================================================================
   Cards: features
   ========================================================================== */

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-icon {
  width: 52px;
  height: 52px;
  clip-path: var(--hex);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-icon--honey { background: var(--honey-light); color: var(--honey-deep); }
.feature-icon--coral { background: #ffd9cd; color: var(--coral-deep); }
.feature-icon--teal { background: #cdeee5; color: var(--teal); }
.feature-icon--ink { background: var(--ink); color: var(--honey-light); }

.feature-card h3 {
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ==========================================================================
   Process steps
   ========================================================================== */

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding-bottom: var(--space-lg);
  position: relative;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--line) 0, var(--line) 6px, transparent 6px, transparent 12px);
}

.process-step:last-child::before {
  display: none;
}

.process-num {
  width: 64px;
  height: 64px;
  clip-path: var(--hex);
  background: var(--ink);
  color: var(--honey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.process-step:nth-child(odd) .process-num {
  background: var(--coral);
  color: var(--paper);
}

.process-body h3 {
  margin-bottom: 0.5rem;
}

.process-body p {
  color: var(--ink-soft);
}

.process-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--honey-light);
  color: var(--honey-deep);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
}

/* ==========================================================================
   Pricing — package cards
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.price-card--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.price-card--featured .price-card-foot,
.price-card--featured .price-card-list li {
  color: rgba(251, 242, 227, 0.82);
}

.price-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.price-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

.price-card--featured .price-card-name {
  color: var(--honey-light);
}

.price-card-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  margin: 0.4rem 0 0.15rem;
  letter-spacing: -0.02em;
}

.price-card-amount span {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.65;
}

.price-card-tagline {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  min-height: 2.6em;
}

.price-card--featured .price-card-tagline {
  color: rgba(251, 242, 227, 0.78);
}

.price-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.price-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.price-card-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15em;
  color: var(--teal);
}

.price-card--featured .price-card-list li svg {
  color: var(--honey-light);
}

.price-card-list li.is-muted {
  opacity: 0.5;
}

.price-card-list li.is-muted svg {
  color: currentColor;
  opacity: 0.4;
}

/* ==========================================================================
   Comparison table
   ========================================================================== */

.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.94rem;
}

table.compare caption {
  display: none;
}

table.compare th,
table.compare td {
  padding: 0.95rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}

table.compare thead th {
  font-family: var(--font-display);
  font-weight: 800;
  background: var(--ink);
  color: var(--paper);
  position: sticky;
  top: 0;
}

table.compare thead th:first-child {
  border-top-left-radius: var(--radius);
}

table.compare thead th:last-child {
  border-top-right-radius: var(--radius);
}

table.compare tbody th {
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink);
}

table.compare th:first-child,
table.compare td:first-child {
  white-space: nowrap;
  width: 28%;
}

.scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
  letter-spacing: 0.01em;
}

table.compare td,
table.compare tbody th {
  text-align: center;
}

table.compare tbody th {
  text-align: left;
}

table.compare tbody tr:nth-child(even) {
  background: var(--cream);
}

table.compare tbody tr:last-child td,
table.compare tbody tr:last-child th {
  border-bottom: none;
}

table.compare .yes {
  color: var(--teal);
  font-size: 1.15rem;
}

table.compare .no {
  color: var(--line);
}

table.compare tbody .col-featured {
  background: #fdf3df;
  font-weight: 700;
}

/* Keep the Business header cell visually identical to the other header cells */
table.compare thead .col-featured {
  background: var(--ink);
  color: var(--paper);
}

.price-row td,
.price-row th {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

/* ==========================================================================
   Tabs (package detail panels)
   ========================================================================== */

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.tab-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  color: var(--ink-soft);
  transition: all 0.2s ease;
}

.tab-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.tab-btn.is-active {
  background: var(--ink);
  color: var(--honey-light);
  border-color: var(--ink);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
  animation: fade-in 0.4s ease;
}

/* No-JS fallback: show every panel, hide the tab buttons */
.no-js .tabs {
  display: none;
}

.no-js .tab-panel {
  display: block;
  margin-bottom: 1.5rem;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem;
}

.tab-panel-meta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tab-panel-meta .price-card-amount {
  margin: 0;
}

.tab-pill {
  display: inline-flex;
  align-self: flex-start;
  background: var(--honey-light);
  color: var(--honey-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

.tab-note {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-left: 4px solid var(--honey);
}

.tab-note strong {
  color: var(--ink);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.96rem;
}

.check-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.1em;
  color: var(--teal);
}

.check-list li.sub {
  margin-left: 1.8rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Add-on cards / generic info cards
   ========================================================================== */

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.addon-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.addon-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.addon-card-top h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0;
}

.addon-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--honey-deep);
  white-space: nowrap;
  background: var(--honey-light);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
}

.addon-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Hosting / domain cards
   ========================================================================== */

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}

.info-card h3 {
  margin-bottom: 1rem;
}

.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}

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

.plan-row-name {
  font-weight: 700;
}

.plan-row-sub {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.plan-row-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  text-align: right;
}

.plan-row-save {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  background: #cdeee5;
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  margin-top: 0.2rem;
}

/* ==========================================================================
   Bundles
   ========================================================================== */

.bundle-note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 5px solid var(--coral);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}

.bundle-note strong {
  color: var(--ink);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bundle-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.bundle-card-icon {
  width: 56px;
  height: 56px;
  clip-path: var(--hex);
  background: var(--honey);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.bundle-card-icon svg {
  width: 28px;
  height: 28px;
}

.bundle-card h3 {
  margin-bottom: 0.4rem;
}

.bundle-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--coral-deep);
  margin-bottom: 1.25rem;
}

.bundle-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.bundle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.bundle-list li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.bundle-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15em;
  color: var(--teal);
}

.bundle-why {
  margin-top: auto;
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
}

.bundle-why strong {
  color: var(--ink);
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  padding: 1.3rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}

.faq-question .plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-question .plus::before,
.faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-question .plus::before {
  width: 12px;
  height: 2px;
}

.faq-question .plus::after {
  width: 2px;
  height: 12px;
}

.faq-item.is-open .faq-question .plus {
  background: var(--coral);
}

.faq-item.is-open .faq-question .plus::before,
.faq-item.is-open .faq-question .plus::after {
  background: var(--paper);
}

.faq-item.is-open .faq-question .plus::after {
  transform: rotate(90deg);
  opacity: 0;
}

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

.faq-answer-inner {
  padding: 0 1.6rem 1.4rem;
  color: var(--ink-soft);
  font-size: 0.97rem;
  white-space: pre-line;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  background: var(--ink);
  border-radius: 28px;
  padding: var(--space-lg) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  color: var(--cream);
}

.cta-banner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: var(--honey);
  clip-path: var(--hex);
  opacity: 0.18;
}

.cta-banner::after {
  content: "";
  position: absolute;
  left: -40px;
  bottom: -50px;
  width: 160px;
  height: 160px;
  background: var(--coral);
  clip-path: var(--hex);
  opacity: 0.18;
}

.cta-banner h2 {
  color: var(--paper);
  max-width: 28ch;
  position: relative;
}

.cta-banner .lede {
  position: relative;
  max-width: 36ch;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

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

.site-footer {
  background: var(--ink);
  color: rgba(251, 242, 227, 0.7);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(251, 242, 227, 0.12);
}

.footer-brand .logo {
  color: var(--paper);
  margin-bottom: 0.9rem;
}

.footer-brand p {
  max-width: 32ch;
  font-size: 0.94rem;
}

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

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: var(--space-md);
  font-size: 0.85rem;
}

.footer-bottom .hexrow {
  display: flex;
  gap: 6px;
}

.footer-bottom .hexrow span {
  width: 10px;
  height: 10px;
  clip-path: var(--hex);
}

.footer-bottom .hexrow span:nth-child(1) { background: var(--honey); }
.footer-bottom .hexrow span:nth-child(2) { background: var(--coral); }
.footer-bottom .hexrow span:nth-child(3) { background: var(--teal); }

/* ==========================================================================
   Page header (non-home pages)
   ========================================================================== */

.page-hero {
  padding: var(--space-lg) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: var(--honey);
  clip-path: var(--hex);
  opacity: 0.16;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 18ch;
}

.page-hero .lede {
  max-width: 56ch;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--honey-deep);
  margin-bottom: 1rem;
}

/* ==========================================================================
   About page
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-portrait {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 380px;
}

.about-portrait .hex-frame {
  position: absolute;
  clip-path: var(--hex);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
}

.about-portrait .hex-frame--main {
  width: 78%;
  height: 78%;
  top: 11%;
  left: 11%;
  background: var(--ink);
  color: var(--honey-light);
  font-size: 4.5rem;
  z-index: 2;
}

.about-portrait .hex-frame--1 {
  width: 36%;
  height: 36%;
  top: -4%;
  right: 4%;
  background: var(--honey);
  color: var(--ink);
  z-index: 1;
}

.about-portrait .hex-frame--2 {
  width: 30%;
  height: 30%;
  bottom: 2%;
  left: -4%;
  background: var(--coral);
  color: var(--paper);
  z-index: 1;
}

.about-portrait .hex-frame--1 svg,
.about-portrait .hex-frame--2 svg {
  width: 40%;
  height: 40%;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.value-item {
  display: flex;
  gap: 1rem;
}

.value-item .feature-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.value-item h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.value-item p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.timeline-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.timeline-strip .feature-card {
  padding: 1.5rem;
  text-align: center;
}

.timeline-strip .process-num {
  margin: 0 auto 1rem;
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
}

.timeline-strip h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.timeline-strip p {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-lg);
  align-items: flex-start;
}

.contact-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2.25rem;
}

.contact-card h3 {
  color: var(--paper);
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: rgba(251, 242, 227, 0.78);
  font-size: 0.96rem;
  margin-bottom: 1.75rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.contact-detail .feature-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.contact-detail .feature-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honey-light);
  font-weight: 700;
}

.contact-detail-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--paper);
  text-decoration: none;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(251, 242, 227, 0.14);
}

.contact-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(251, 242, 227, 0.8);
}

.contact-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15em;
  color: var(--honey-light);
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
}

.field label .opt {
  font-weight: 400;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--paper);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.field-radio {
  position: relative;
}

.field-radio input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.field-radio span {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  background: var(--cream);
  transition: all 0.2s ease;
}

.field-radio input:checked + span {
  background: var(--ink);
  color: var(--honey-light);
  border-color: var(--ink);
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  display: none;
}

.form-status.is-success {
  display: block;
  background: #cdeee5;
  color: var(--teal);
}

.form-status.is-error {
  display: block;
  background: #ffe1d9;
  color: var(--coral-deep);
}

/* ==========================================================================
   Misc — Honey trail divider
   ========================================================================== */

.divider-hex {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: var(--space-lg) 0;
}

.divider-hex span {
  width: 14px;
  height: 14px;
  clip-path: var(--hex);
}

.divider-hex span:nth-child(1) { background: var(--honey); }
.divider-hex span:nth-child(2) { background: var(--coral); }
.divider-hex span:nth-child(3) { background: var(--teal); }
.divider-hex span:nth-child(4) { background: var(--ink); opacity: 0.15; }
.divider-hex span:nth-child(5) { background: var(--honey); opacity: 0.5; }

/* ==========================================================================
   WhatsApp floating button
   ========================================================================== */

.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 200;
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline-strip { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .scroll-hint { display: block; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 280px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .bundle-grid { grid-template-columns: 1fr; }
  .tab-panel-grid { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .timeline-strip { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; text-align: left; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Nav collapses to hamburger at 768px — keeps desktop nav on tablets */
@media (max-width: 768px) {
  .site-header .container { padding: 1.05rem 1.75rem 1.05rem 2.8rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 1.5rem 1.5rem 2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
}

@media (max-width: 560px) {
  table.compare th,
  table.compare td { padding: 0.7rem 0.75rem; }
  .section { padding: var(--space-lg) 0; }
  h2 { font-size: 2rem; }
  .hero h1 { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .timeline-strip { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .whatsapp-fab {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
}
