/* ══════════════════════════════════════
   CONXION — Shared Stylesheet
   Used by: index.html · hosting.html · web_ui.html · brand_print.html
            contact.html · product_interaction.html · growth_optimization.html
            ai_integrations_local_llm.html · agentic_systems_automation.html
══════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Used by ──
   index.html · hosting.html · web_ui.html · brand_print.html
   contact.html · product_interaction.html · growth_optimization.html
   ────────────────────────────────────────────────────────────── */

:root {
  --black:    #111111;
  --grey-bg:  #f2f2f2;
  --grey-mid: #e0e0e0;
  --grey-text:#888888;
  --white:    #ffffff;
  --accent:   #146fb3;
  --orange:   #f5822a;
  --red:      #e03030;
  --green:    #3db87a;
  --max-w:    1100px;
  --radius:   14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--black);
  background-color: #f7f6f4;
  background-image: url('bg_noise.png');
  background-repeat: repeat;
  background-size: 128px 128px;
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: 48px !important; }
h2 { font-size: 36px !important; }

/* ── Layout helpers ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 80px 0; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-mid);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 36px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo img { height: 76px; width: auto; display: block; }

/* Nav list */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

/* Each list item is a positioned parent for the dropdown */
.nav-item {
  position: relative;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  transition: opacity .2s;
}
.nav-links a:hover { opacity: .55; }
.nav-links a.active { color: var(--accent); }

/* Chevron indicator on items that have dropdowns */
.nav-item.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.nav-chevron svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2.5;
  display: block;
}

.nav-item.has-dropdown:hover .nav-chevron,
.nav-item.has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

/* ── Dropdown panel ── */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  /* padding-top creates a transparent bridge so the gap doesn't break hover */
  padding-top: 14px;
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 200;
}

/* The visible panel lives inside a child so padding-top acts as a hover bridge */
.nav-dropdown-inner {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(14px);
  border: 1px solid var(--grey-mid);
  border-radius: 10px;
  padding: 6px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  position: relative;
}

/* Small caret pointing up */
.nav-dropdown-inner::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: var(--white);
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
  border-top: 1px solid var(--grey-mid);
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-inner a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  transition: background .15s;
  opacity: 1;
}

.nav-dropdown-inner a:hover {
  background: var(--grey-bg);
  opacity: 1;
}

/* ── Shared button ── */
.btn {
  display: inline-block;
  background: #fc7231;
  color: var(--white);
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1px;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s;
  font-family: inherit;
}
.btn:hover { background: #e05e22; transform: translateY(-1px); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero { padding: 72px 0 60px; }

.hero-headline {
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.hero-sub {
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 700;
  color: #999999;
  margin-top: 8px;
  letter-spacing: -0.3px;
}

.hero-body {
  margin-top: 20px;
  color: #444;
  line-height: 1.7;
  font-size: 22px;
  font-weight: 400;
}

.hero-media {
  margin-top: 40px;
  background: var(--grey-bg);
  border-radius: var(--radius);
  aspect-ratio: 16 / 7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media svg { width: 80px; opacity: .3; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-pill {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats-bar {
  padding: 48px 0;
  border-top: 1px solid var(--grey-mid);
  border-bottom: 1px solid var(--grey-mid);
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  text-align: center;
}

.stat-number {
  font-size: clamp(42px, 6vw, 60px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-text);
  margin-top: 8px;
  letter-spacing: 0.1px;
}

/* ══════════════════════════════════════
   SECTION TITLES
══════════════════════════════════════ */
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 32px;
  line-height: 1.05;
}

.section-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  color: var(--grey-text);
  margin-bottom: 44px;
  line-height: 1.5;
}

.section-rule {
  border: none;
  border-top: 1px solid var(--grey-mid);
  margin: 0;
}

/* ══════════════════════════════════════
   SERVICES (index.html)
══════════════════════════════════════ */
#services { padding-bottom: 100px; }

.service-tier-label {
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 700;
  color: #999999;
  letter-spacing: -0.2px;
  margin-bottom: 24px;
  margin-top: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: transparent;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  /* background: var(--grey-mid); */
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-img svg { width: 48px; opacity: .35; }

.service-card-body { padding: 14px 4px 4px; }

.service-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.1px;
}

.service-card-desc {
  font-size: 18px;
  font-weight: 400;
  color: rgb(153, 153, 153);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   PRODUCTS (index.html)
══════════════════════════════════════ */
#products { background: transparent; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.product-card {
  background: transparent;
  display: flex;
  flex-direction: column;
}

.product-card-img {
  background: var(--grey-mid);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img svg { width: 60px; opacity: .25; }

.product-card-body { padding: 16px 4px 4px; }

.product-card-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.product-tagline {
  font-size: 16px;
  font-weight: 400;
  color: rgb(153, 153, 153);
  margin-bottom: 12px;
  line-height: 1.55;
}

.product-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--accent);
  text-decoration: underline;
  word-break: break-all;
}
.product-link:hover { opacity: .7; }

.product-coming {
  font-size: 18px;
  font-weight: 400;
  color: rgb(153, 153, 153);
}

/* ══════════════════════════════════════
   TESTIMONIALS (index.html)
══════════════════════════════════════ */
#testimonials { background: transparent; }

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 8px;
}

.testimonial {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.testimonial-quote {
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 600;
  line-height: 1.75;
  color: #111111;
  font-style: normal;
}

.testimonial-quote .hl {
  color: #111111;
  font-style: normal;
  font-weight: 600;
}

.testimonial-attr {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--grey-text);
}

.testimonial-attr a {
  color: var(--grey-text);
  text-decoration: underline;
}

/* ══════════════════════════════════════
   CONTACT (index.html)
══════════════════════════════════════ */
#contact { background: transparent; }

.contact-sub {
  font-size: 18px;
  font-weight: 700;
  color: #999999;
  margin-top: 4px;
  margin-bottom: 36px;
  letter-spacing: -0.1px;
}

.contact-columns {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 4px;
  text-align: left;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--grey-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
}

.contact-form {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.1px;
}

.form-group input,
.form-group textarea {
  border: 1px solid var(--grey-mid);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group textarea { min-height: 120px; resize: vertical; }

.btn-submit {
  background: #fc7231;
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  align-self: flex-start;
  width: 100%;
}
.btn-submit:hover { background: #e05e22; transform: translateY(-1px); }

/* ══════════════════════════════════════
   PRICING TABS (hosting.html)
══════════════════════════════════════ */
.plan-toggle {
  display: flex;
  gap: 6px;
  background: var(--grey-bg);
  border: 1px solid var(--grey-mid);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 44px;
}

.toggle-btn {
  background: none;
  border: none;
  border-radius: 7px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--grey-text);
  cursor: pointer;
  transition: background .2s, color .2s;
}

.toggle-btn.active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

/* ══════════════════════════════════════
   PRICING CARDS (hosting.html)
══════════════════════════════════════ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}

.plan-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.plan-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}

.plan-tagline {
  font-size: 12px;
  color: var(--grey-text);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 36px;
}

.plan-price-block { margin-bottom: 6px; }

.plan-price {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
}

.plan-price sup {
  font-size: 18px;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}

.plan-price-period {
  font-size: 13px;
  color: var(--grey-text);
  font-weight: 400;
}

.plan-annual {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}

.plan-divider {
  border: none;
  border-top: 1px solid var(--grey-mid);
  margin: 0 0 18px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin-bottom: 24px;
}

.plan-features li {
  font-size: 13px;
  font-weight: 400;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.plan-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grey-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%233db87a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-cta {
  display: block;
  text-align: center;
  background: var(--grey-bg);
  border: 1px solid var(--grey-mid);
  border-radius: 8px;
  padding: 11px 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  font-family: inherit;
}
.plan-cta:hover { background: var(--grey-mid); }

.plan-card.featured .plan-cta {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.plan-card.featured .plan-cta:hover { background: #333; }

/* ══════════════════════════════════════
   COMPARISON TABLE (hosting.html)
══════════════════════════════════════ */
.comparison-wrap {
  overflow-x: auto;
  margin-bottom: 8px;
  border-radius: var(--radius);
  border: 1px solid var(--grey-mid);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 13px;
}

.comparison-table thead th {
  background: var(--grey-bg);
  padding: 14px 16px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2px;
  text-align: left;
  border-bottom: 1px solid var(--grey-mid);
  white-space: nowrap;
}

.comparison-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.comparison-table thead th:last-child  { border-radius: 0 var(--radius) 0 0; }

.comparison-table tbody tr { border-bottom: 1px solid var(--grey-mid); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: #fafafa; }

.comparison-table td {
  padding: 12px 16px;
  vertical-align: middle;
  color: #333;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

.check { color: var(--green); font-size: 16px; font-weight: 700; }
.cross { color: var(--grey-mid); font-size: 16px; }
.highlight-col { background: rgba(20,111,179,0.04); }

/* ══════════════════════════════════════
   SUPPORT SECTION (hosting.html)
══════════════════════════════════════ */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.support-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.support-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.support-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-icon svg { width: 16px; height: 16px; stroke: var(--accent); }

.support-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 1px;
}

.support-item-text span { font-size: 13px; color: var(--grey-text); }

.support-promise {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 32px;
}

.support-promise h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.support-promise p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.support-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.support-table tr { border-bottom: 1px solid var(--grey-mid); }
.support-table tr:last-child { border-bottom: none; }
.support-table td { padding: 10px 0; color: #444; }
.support-table td:last-child { text-align: right; font-weight: 600; color: var(--green); }

/* ══════════════════════════════════════
   WHY SECTION (hosting.html)
══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.why-icon svg { width: 20px; height: 20px; stroke: var(--accent); }

.why-card h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}

.why-card p { font-size: 13px; color: var(--grey-text); line-height: 1.6; }

/* ══════════════════════════════════════
   FAQ (hosting.html)
══════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.faq-item { border-bottom: 1px solid var(--grey-mid); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .15s;
}
.faq-question:hover { background: #fafafa; }

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}

.faq-chevron svg { width: 11px; height: 11px; stroke: var(--black); stroke-width: 2.5; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p { padding: 0 24px 20px; font-size: 14px; color: #555; line-height: 1.7; }

/* ══════════════════════════════════════
   CTA BAND (hosting.html)
══════════════════════════════════════ */
.cta-band {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(24px, 3.5vw, 36px) !important;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.8px;
  line-height: 1.1;
  max-width: 520px;
}

.cta-band p { color: rgba(255,255,255,0.8); font-size: 15px; margin-top: 8px; }

.btn-white {
  background: var(--white);
  color: var(--black);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity .2s, transform .15s;
}
.btn-white:hover { opacity: .85; transform: translateY(-1px); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: transparent;
  border-top: 1px solid var(--grey-mid);
  padding: 52px 0 40px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand { display: flex; flex-direction: column; gap: 6px; }

.footer-brand .tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--grey-text);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1px;
  margin-bottom: 14px;
}

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

.footer-col a {
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-text);
  transition: color .2s;
}
.footer-col a:hover { color: var(--black); }

.footer-social-link { display: flex; align-items: center; gap: 8px; }
.footer-social-link svg { flex-shrink: 0; }

.footer-copy {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 400;
  color: var(--grey-text);
}

/* ══════════════════════════════════════
   HAMBURGER MENU
══════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background .15s;
  z-index: 200;
}
.hamburger:hover { background: var(--grey-bg); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, width .3s ease;
  transform-origin: center;
}

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

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 80px 24px 48px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: all; }

.mobile-menu a {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
  transition: opacity .2s;
}
.mobile-menu a:hover { opacity: .5; }

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer; color: var(--black);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  transition: background .15s;
}
.mobile-close:hover { background: var(--grey-bg); }

.mobile-menu .mobile-cta {
  margin-top: 12px;
  background: var(--black);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
}
.mobile-menu .mobile-cta:hover { opacity: .75; }

/* Mobile sub-links beneath each main nav heading */
.mobile-nav-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.mobile-nav-group > a:first-child {
  /* inherits the large link style from .mobile-menu a */
}

.mobile-subnav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 6px;
}

.mobile-subnav a {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--grey-text) !important;
  letter-spacing: 0 !important;
  padding: 3px 0;
  transition: color .2s !important;
}
.mobile-subnav a:hover { color: var(--black) !important; opacity: 1 !important; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }


/* ══════════════════════════════════════
   CONTACT PAGE (contact.html)
══════════════════════════════════════ */

/* Page grid */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

/* Hero padding override for contact page */
#hero.contact-hero { padding-bottom: 0; }

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-sidebar-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--grey-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--grey-text);
  margin-bottom: 3px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
}

.contact-info-value a { color: var(--accent); text-decoration: none; }
.contact-info-value a:hover { text-decoration: underline; }

.contact-response-note {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

.contact-response-note strong { color: var(--black); }

/* Form card */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 36px 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.contact-form-sub {
  font-size: 14px;
  color: var(--grey-text);
  margin-bottom: 28px;
}

.contact-form-full {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-full .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-full .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form-full .form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.1px;
}

.contact-form-full .form-group label .opt {
  font-weight: 400;
  color: var(--grey-text);
  margin-left: 3px;
}

.contact-form-full input,
.contact-form-full textarea,
.contact-form-full select {
  border: 1px solid var(--grey-mid);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--black);
  background: #fff;
  transition: border-color .2s;
  outline: none;
}

.contact-form-full input:focus,
.contact-form-full textarea:focus,
.contact-form-full select:focus { border-color: var(--accent); }

.contact-form-full textarea { min-height: 110px; resize: vertical; }

.contact-form-full select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

#budget-group { display: none; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .plans-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  .support-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-sidebar { order: 1; }
  .contact-form-card { order: 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .stats-grid { gap: 20px; }
  .footer-cols { gap: 32px; }
  .contact-columns { flex-direction: column; gap: 40px; }
  .contact-info { flex: unset; width: 100%; }
  .contact-form { flex: unset; width: 100%; }
  .cta-band { padding: 36px 28px; }
  .plans-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 520px) {
  .plans-grid { grid-template-columns: 1fr !important; }
  .contact-form-full .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 20px; }
}

/* Contact page — supplementary utility classes */
.contact-services-list    { font-size: 13px; color: var(--grey-text); line-height: 1.9; }
.contact-services-heading { font-weight: 700; color: #444; margin-bottom: 6px; font-size: 12px;
                             text-transform: uppercase; letter-spacing: 0.5px; }
.form-honeypot            { display: none; }
.required-star            { color: var(--accent); }
#form-status              { display: none; font-size: 14px; color: var(--green);
                             font-weight: 600; text-align: center; margin-top: 4px; }

/* ══════════════════════════════════════
   GROWTH & OPTIMIZATION (growth_optimization.html)
══════════════════════════════════════ */

/* ── Plans grid column variants ── */
.plans-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.plans-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

/* ── Plan price size modifiers ── */
.plan-price.plan-price-md {
  font-size: 28px;
  letter-spacing: -0.8px;
}

.plan-price.plan-price-sm {
  font-size: 26px;
  letter-spacing: -0.8px;
}

/* ── Subsection heading (h3 within a section) ── */
.subsection-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 20px;
  line-height: 1.1;
}

/* ══════════════════════════════════════
   BEFORE / AFTER KPI CARDS
══════════════════════════════════════ */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 12px;
}

.kpi-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kpi-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--grey-text);
}

.kpi-values {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.kpi-val {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1;
}

.kpi-val-before {
  color: var(--grey-text);
  text-decoration: line-through;
  text-decoration-color: rgba(136, 136, 136, 0.4);
}

.kpi-val-after {
  color: var(--green);
}

.kpi-arrow {
  color: var(--grey-text);
  font-size: 14px;
  font-weight: 400;
}

.kpi-delta {
  display: inline-block;
  background: rgba(61, 184, 122, 0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.1px;
}

.kpi-period {
  font-size: 12px;
  color: var(--grey-text);
  line-height: 1.4;
}

.kpi-disclaimer {
  font-size: 12px;
  color: var(--grey-text);
  font-style: italic;
  text-align: center;
  padding-bottom: 32px;
}

/* ══════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 16px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.process-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.process-step-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
  color: var(--black);
}

.process-step-desc {
  font-size: 13px;
  color: var(--grey-text);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   RESPONSIVE — Growth & Optimization additions
══════════════════════════════════════ */
@media (max-width: 900px) {
  .plans-grid-2  { grid-template-columns: 1fr; }
  .plans-grid-3  { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  .plans-grid-3  { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   CTA BAND VARIANTS
   ai_integrations_local_llm.html · agentic_systems_automation.html
══════════════════════════════════════ */
.cta-band-col {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.cta-price-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-price-hero {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-price-hero-val {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.cta-price-hero-val sup {
  font-size: 0.45em;
  font-weight: 600;
}

.cta-price-hero-meta {
  opacity: 0.75;
  font-size: 14px;
  color: var(--white);
}

/* ══════════════════════════════════════
   USE-CASE GRID
   ai_integrations_local_llm.html · agentic_systems_automation.html
══════════════════════════════════════ */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.usecase-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.usecase-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usecase-icon svg { width: 18px; height: 18px; stroke: var(--accent); }

.usecase-card h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.1px;
  margin-bottom: 4px;
}

.usecase-card p { font-size: 13px; color: var(--grey-text); line-height: 1.6; }

/* ── Spacing utility — used in why-conxion section ── */
.why-grid-spaced { margin-top: 36px; }

/* ══════════════════════════════════════
   ECOMMERCE & STORES (ecommerce_stores.html)
══════════════════════════════════════ */

/* Price range display for project-based packages */
.plan-price-range {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 4px;
}

.plan-price-range sup {
  font-size: 13px;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}

/* Timeframe / scope note below price */
.plan-timeframe {
  font-size: 12px;
  color: var(--grey-text);
  font-weight: 500;
  margin-bottom: 20px;
}

/* ── Differentiator checklist ── */
.differentiator-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 8px;
}

.differentiator-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.45;
}

.diff-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(61,184,122,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}

/* ── Platform badge grid ── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.platform-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.platform-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-icon svg { width: 20px; height: 20px; stroke: var(--accent); }

.platform-card h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.1px;
  margin-bottom: 4px;
}

.platform-card p { font-size: 13px; color: var(--grey-text); line-height: 1.6; }

/* ── Highlighted comparison column for conXion ── */
.highlight-col-you {
  background: rgba(20,111,179,0.06);
  font-weight: 700 !important;
}

.comparison-table thead th.highlight-col-you {
  background: rgba(20,111,179,0.10);
  color: var(--accent);
}

@media (max-width: 600px) {
  .platform-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   DESKTOP & MOBILE APPS (desktop_mobile_apps.html)
══════════════════════════════════════ */

/* Flagship product callout card */
.app-flagship-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 28px 28px 24px;
  margin-top: 32px;
}

.app-flagship-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-flagship-body { flex: 1; }

.app-flagship-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 6px;
}

.app-flagship-body h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.app-flagship-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
}

.app-flagship-body a {
  color: var(--accent);
  text-decoration: underline;
}
.app-flagship-body a:hover { opacity: .75; }

/* Add-on note band */
.app-addon-note {
  background: var(--grey-bg);
  border: 1px solid var(--grey-mid);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin-top: 28px;
}

.app-addon-note strong { color: var(--black); }

@media (max-width: 768px) {
  .app-flagship-card { flex-direction: column; gap: 14px; }
}

/* ══════════════════════════════════════
   BLOG — LISTING PAGE
══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background: transparent;
  display: flex;
  flex-direction: column;
}

.blog-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--grey-bg);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.03); }

.blog-card-body { padding: 18px 0 8px; flex: 1; display: flex; flex-direction: column; }

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-category-pill {
  display: inline-block;
  background: var(--grey-bg);
  border: 1px solid var(--grey-mid);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Per-category accent colours */
.blog-category-pill[data-cat="ai"]          { border-color: var(--accent); color: var(--accent); background: rgba(20,111,179,0.06); }
.blog-category-pill[data-cat="web-design"]  { border-color: var(--orange); color: var(--orange); background: rgba(245,130,42,0.06); }
.blog-category-pill[data-cat="ecommerce"]   { border-color: var(--green);  color: var(--green);  background: rgba(61,184,122,0.06); }
.blog-category-pill[data-cat="marketing"]   { border-color: #a855f7;       color: #a855f7;       background: rgba(168,85,247,0.06); }
.blog-category-pill[data-cat="infrastructure"] { border-color: #e03030;    color: var(--red);    background: rgba(224,48,48,0.06); }

.blog-date {
  font-size: 12px;
  color: var(--grey-text);
  white-space: nowrap;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--black);
  transition: color .2s;
}

.blog-card:hover .blog-card-title { color: var(--accent); }

.blog-card-excerpt {
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-read-more:hover { opacity: .7; }

/* ── Filter pills ── */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}

.filter-pill {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-text);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  font-family: inherit;
}
.filter-pill:hover { border-color: var(--black); color: var(--black); }
.filter-pill.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── Blog hero feature card (first/featured post) ── */
.blog-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--grey-mid);
}

.blog-feature-card .blog-card-img { aspect-ratio: 4 / 3; border-radius: var(--radius); }
.blog-feature-card .blog-card-title { font-size: clamp(22px, 3vw, 30px); }
.blog-feature-card .blog-card-excerpt { font-size: 16px; }

/* Empty state */
.blog-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--grey-text);
  font-size: 16px;
  display: none;
}

@media (max-width: 768px) {
  .blog-feature-card { grid-template-columns: 1fr; gap: 20px; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   BLOG — POST PAGE
══════════════════════════════════════ */
#post-hero {
  padding-bottom: 0;
}

.post-hero-img {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--grey-bg);
  margin-top: 40px;
}

.post-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-header {
  max-width: 720px;
  margin: 40px auto 0;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.post-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.post-lede {
  font-size: clamp(17px, 2vw, 20px);
  color: #555;
  line-height: 1.65;
  font-weight: 400;
}

/* Reading column */
.post-body {
  max-width: 720px;
  margin: 48px auto 0;
}

.post-body h2 {
  font-size: clamp(20px, 3vw, 26px) !important;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 48px 0 16px;
  line-height: 1.15;
}

.post-body h3 {
  font-size: clamp(16px, 2.5vw, 20px) !important;
  font-weight: 700;
  margin: 32px 0 10px;
  letter-spacing: -0.2px;
}

.post-body p {
  font-size: 17px;
  color: #333;
  line-height: 1.85;
  margin-bottom: 22px;
  font-weight: 400;
}

.post-body ul,
.post-body ol {
  padding-left: 24px;
  margin-bottom: 22px;
}

.post-body li {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 8px;
}

.post-body strong { font-weight: 700; color: var(--black); }

.post-body a { color: var(--accent); text-decoration: underline; }
.post-body a:hover { opacity: .7; }

.post-body blockquote {
  border-left: 4px solid var(--accent);
  margin: 32px 0;
  padding: 18px 26px;
  background: var(--grey-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.post-body blockquote p {
  font-size: 19px;
  font-style: italic;
  color: #444;
  margin-bottom: 0;
  line-height: 1.7;
}

.post-body code {
  background: var(--grey-bg);
  border: 1px solid var(--grey-mid);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 14px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

.post-body pre {
  background: #1c1c1e;
  color: #e8e8e8;
  border-radius: var(--radius);
  padding: 24px 28px;
  overflow-x: auto;
  margin-bottom: 28px;
}

.post-body pre code {
  background: none;
  border: none;
  color: inherit;
  font-size: 13.5px;
  padding: 0;
}

/* Inline callout / tip box */
.post-callout {
  background: rgba(20,111,179,0.06);
  border: 1px solid rgba(20,111,179,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}

.post-callout p { font-size: 15px; color: #333; margin-bottom: 0; }
.post-callout strong { color: var(--accent); }

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-text);
  margin-bottom: 0;
  transition: color .2s;
}
.back-link:hover { color: var(--black); }

/* Post footer / navigation */
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 48px;
  border-top: 1px solid var(--grey-mid);
  margin-top: 64px;
  flex-wrap: wrap;
}

.post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 46%;
}

.post-nav-item.next { text-align: right; margin-left: auto; }

.post-nav-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--grey-text);
}

.post-nav-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.35;
}
.post-nav-title:hover { opacity: .7; }

/* Author / share row */
.post-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid var(--grey-mid);
  margin-top: 48px;
}

.post-share-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--grey-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-share-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.post-share-links a {
  display: flex;
  align-items: center;
  color: var(--accent);
  transition: opacity .2s;
}
.post-share-links a svg { display: block; }
.post-share-links a:hover { opacity: .55; }

@media (max-width: 600px) {
  .post-nav-item { max-width: 100%; }
  .post-nav-item.next { text-align: left; margin-left: 0; }
}

/* ══════════════════════════════════════
   PORTFOLIO FRAMEWORK
   (pages not yet built — CSS ready)
══════════════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.portfolio-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.portfolio-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--grey-bg);
  position: relative;
}

.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.portfolio-card:hover .portfolio-card-img img { transform: scale(1.04); }

.portfolio-card-body { padding: 16px 0 8px; }

.portfolio-card-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.portfolio-card-client {
  font-size: 13px;
  color: var(--grey-text);
  margin-bottom: 10px;
}

.portfolio-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.portfolio-tag {
  background: var(--grey-bg);
  border: 1px solid var(--grey-mid);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--grey-text);
  letter-spacing: 0.2px;
}

/* ── Case study page ── */
.case-study-hero {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--grey-bg);
  margin-bottom: 56px;
}

.case-study-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-study-meta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 24px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  margin-bottom: 56px;
}

.case-study-meta-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--grey-text);
  margin-bottom: 6px;
}

.case-study-meta-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}

.case-study-body {
  max-width: 720px;
  margin: 0 auto;
}

/* Reuse .post-body styles for case study prose */
.case-study-body h2,
.case-study-body h3,
.case-study-body p,
.case-study-body ul,
.case-study-body ol,
.case-study-body li,
.case-study-body blockquote {
  /* inherits from .post-body rules — just use both classes or duplicate as needed */
}

/* ══════════════════════════════════════
   UTILITY & SHARED COMPONENT CLASSES
   (replace inline styles across all pages)
══════════════════════════════════════ */

/* Google Tag Manager noscript iframe */
.gtm-noscript { display: none; visibility: hidden; }

/* Body scroll lock when mobile menu is open */
body.menu-open { overflow: hidden; }

/* Mobile nav active state (replaces JS inline style) */
.mobile-nav-active { font-weight: 700; opacity: 1; }

/* Footer logo image */
.footer-logo-img { height: 60px; }

/* ── Section padding utilities ── */
.section-pb-0   { padding-bottom: 0 !important; }
.section-pt-0   { padding-top: 0 !important; }
.section-pb-80  { padding-bottom: 80px !important; }

/* Section with light grey background */
.section-bg-grey { background: var(--grey-light, #f8f8f8); }

/* ── Blog index hero overrides ── */
.blog-hero-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--grey-text);
  margin-bottom: 12px;
}
.hero-body.hero-body--sm { font-size: 18px; }

/* Blog date separator dot */
.blog-date-sep { color: var(--grey-mid); }

/* ── Inline SVG icon (e.g. external-link icon in text) ── */
.icon-inline {
  display: inline;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 2px;
}

/* ── Callout boxes ── */
/* White card with left accent border */
.callout-note {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 18px 24px;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* Dark section inner note */
.callout-note-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 20px 28px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey-text);
}
.callout-note-dark strong { color: #eee; }

/* ── Margin utilities ── */
.mb-12 { margin-bottom: 12px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-8  { margin-bottom: 8px !important; }
.mb-48 { margin-bottom: 48px !important; }
.mb-64 { margin-bottom: 64px !important; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* ── Plan price modifiers ── */
/* Cents/decimal portion in hosting prices (e.g. ".99") */
.plan-price-cents { font-size: 22px; }
/* Range suffix in large plan prices (e.g. "–$1,000") — 18px variant */
.plan-price-frac  { font-size: 18px; }
/* Range suffix — 16px variant (desktop/mobile apps) */
.plan-price-frac-sm { font-size: 16px; }
/* Custom / quoted price display */
.plan-price--custom { font-size: 26px; }

/* ── Plans grid — additional column variants ── */
.plans-grid--260 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.plans-grid--220 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.plans-grid--210 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

/* ── Ecommerce plan period suffix " / mo" ── */
.plan-period-mo {
  font-size: 13px;
  font-weight: 400;
  color: var(--grey-text);
}

/* ── Comparison table secondary header text ── */
.th-sub {
  font-weight: 400;
  font-size: 11px;
  color: #aaa;
}

/* ── Service add-on pricing ── */
.addon-price {
  margin-top: 8px;
  font-weight: 700;
  color: var(--accent);
}

/* ── CTA band price unit span (replaces inline font-size/weight) ── */
.cta-price-sup {
  font-size: 0.45em;
  font-weight: 600;
}

/* ── Footnote / small print ── */
.footnote {
  font-size: 13px;
  color: var(--grey-text);
  text-align: center;
  margin-top: 16px;
}
.footnote .accent-link { color: var(--accent); }
.plans-grid--200 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 64px; }
.two-col-fact-grid { background: var(--white); border: 1px solid var(--grey-mid); border-radius: var(--radius); padding: 32px 36px; margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; }
@media (max-width: 520px) { .plans-grid--200 { grid-template-columns: 1fr !important; } .two-col-fact-grid { grid-template-columns: 1fr; padding: 20px; } }

/* ── Usecase/service icon — larger variant ── */
.icon-accent-28 {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
}

/* ── Responsive: new auto-fit grid variants ── */
@media (max-width: 768px) {
  .plans-grid--260,
  .plans-grid--220,
  .plans-grid--210 { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 520px) {
  .plans-grid--260,
  .plans-grid--220,
  .plans-grid--210 { grid-template-columns: 1fr !important; }
}

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

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .case-study-meta-row { grid-template-columns: 1fr 1fr; }
}
