/* Techmate Solutions Ltd — main stylesheet */

:root {
  --green: #6cb33f;
  --green-dark: #549230;
  --blue: #4a9fd8;
  --blue-dark: #2f7bb5;
  --ink: #1c2530;
  --ink-soft: #4b5665;
  --bg: #ffffff;
  --bg-soft: #f4f7f9;
  --border: #e3e8ec;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 32, .04);
  --shadow: 0 1px 2px rgba(16, 24, 32, .04), 0 10px 28px rgba(16, 24, 32, .09);
  --shadow-lg: 0 4px 10px rgba(16, 24, 32, .05), 0 20px 48px rgba(16, 24, 32, .14);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --font-body: 'Inter', "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: var(--blue-dark); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--green-dark); }

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

h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--font-heading);
  letter-spacing: -0.015em;
}
h1 { font-size: 2.6rem; font-weight: 800; }
h2 { font-size: 2.05rem; font-weight: 800; }
h3 { font-size: 1.35rem; font-weight: 700; }
p { margin: 0 0 16px; color: var(--ink-soft); }

ul { margin: 0 0 16px; padding-left: 20px; color: var(--ink-soft); }
li { margin-bottom: 6px; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.btn-primary {
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 6px 18px rgba(47,123,181,.28);
}
.btn-primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(84,146,48,.32); }
.btn-outline {
  border-color: #ffffff;
  color: #fff;
  background: transparent;
}
.btn-outline:hover { background: #ffffff; color: var(--blue-dark); transform: translateY(-2px); }
.btn-outline-dark {
  border-color: var(--blue);
  color: var(--blue-dark);
}
.btn-outline-dark:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

/* Top utility bar */
.topbar {
  background: var(--ink);
  color: #b9c4cf;
  font-size: .8rem;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--green), var(--blue)) 1;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.topbar-contacts { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-contacts a,
.topbar-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b9c4cf;
}
.topbar-contacts a:hover { color: var(--green); }
.topbar-contacts svg { flex-shrink: 0; opacity: .8; }
.topbar-links {
  display: flex;
  align-items: center;
}
.topbar-links a {
  position: relative;
  display: inline-block;
  padding: 0 16px;
  color: #e4ebf0;
  font-weight: 600;
  letter-spacing: .01em;
}
.topbar-links a:first-child { padding-left: 0; }
.topbar-links a:last-child { padding-right: 0; }
.topbar-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #576673;
}
.topbar-links a:hover { color: #fff; }
.topbar-links a.active { color: var(--green); }
.topbar-meta { color: #8b98a5; white-space: nowrap; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(28, 37, 48, .07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.logo img { height: 58px; }
.logo { transition: opacity .2s var(--ease); }
.logo:hover { opacity: .8; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
  border-radius: 8px;
  padding: 4px 8px;
  transition: background-color .15s var(--ease);
}
.nav-toggle:hover { background: var(--bg-soft); }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: block;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 999px;
  transition: color .15s var(--ease), background-color .15s var(--ease);
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--green-dark); background: var(--bg-soft); }

.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 5px; }
.has-dropdown > a::after {
  content: "";
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  opacity: .6;
  transition: transform .15s var(--ease);
}
.has-dropdown.open > a::after { transform: rotate(225deg); margin-top: 3px; }
.dropdown {
  /* Sits flush against the nav item (top:100%, no margin) rather than
     floating a few px below it. A gap there is dead space no element
     covers, so a cursor drifting through it — rather than darting
     straight across — triggers mouseleave on the trigger and the menu
     closes before it arrives. The old visual breathing room is kept via
     padding-top instead of margin-top, which is still part of the
     dropdown's own hoverable box, so the hover path from link to menu
     is now unbroken. */
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 200;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  padding: 16px 8px 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s var(--ease);
}
/* Only the JS-controlled .open class shows the menu — a CSS :hover trigger
   here would let two menus be visible at once (one hover-shown, one still
   open from a previous click), which is what caused menus to overlap. */
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.dropdown.align-right { left: auto; right: 0; }
.dropdown a { padding: 10px 12px; font-weight: 500; font-size: .9rem; border-radius: 8px; }
.dropdown a:hover { background: var(--bg-soft); }
.nav-cta { margin-left: 8px; }
.nav-cta .btn-primary {
  background: var(--green);
  box-shadow: 0 6px 18px rgba(108,179,63,.32);
}
.nav-cta .btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(84,146,48,.32);
}

/* WhatsApp floating chat button */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .45), var(--shadow-lg);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 26px rgba(37, 211, 102, .55), var(--shadow-lg); }
@media (max-width: 680px) {
  .whatsapp-float { right: 14px; bottom: 14px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* Hero */
.hero {
  background-image: linear-gradient(120deg, rgba(28,37,48,.93) 0%, rgba(36,65,100,.88) 55%, rgba(47,123,181,.86) 100%), url('../images/banner-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 90px 0 100px;
}
.hero .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero h1 { color: #fff; font-size: 2.9rem; }
.hero p.lead { color: #cfe0ee; font-size: 1.1rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.hero-badges div { color: #cfe0ee; font-size: .85rem; }
.hero-badges strong { display: block; color: #fff; font-size: 1.7rem; }

/* Hero slider */
.hero-slides { position: relative; min-height: 380px; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .6s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; pointer-events: auto; }
.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.15);
  padding: 0;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.hero-dots button:hover { border-color: #fff; }
.hero-dots button.active { background: var(--green); border-color: transparent; transform: scale(1.2); }
.hero-graphic {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 28px;
}
.hero-graphic ul { list-style: none; padding: 0; margin: 0; }
.hero-graphic li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #e7eef5;
}
.hero-graphic li:last-child { border-bottom: none; }
.hero-graphic .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.hero-graphic .hg-icon {
  width: 30px; height: 30px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
}
.hero-graphic .hg-icon svg { width: 17px; height: 17px; stroke: var(--green); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Page header (inner pages) */
.page-header {
  background-image: linear-gradient(120deg, rgba(28,37,48,.93) 0%, rgba(47,123,181,.88) 100%), url('../images/banner-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}
.page-header h1 { color: #fff; margin-bottom: 8px; }
.page-header .breadcrumb { color: #bcd4e8; font-size: .9rem; }
.page-header .breadcrumb a { color: #dcebf6; }

/* Category-specific page-header artwork — the body carries a cat-* class
   (set per page) so each solution cluster gets its own coordinated
   technical background while sharing the same layout/overlay. */
body.cat-domains .page-header {
  background-image: linear-gradient(120deg, rgba(28,37,48,.93) 0%, rgba(47,123,181,.88) 100%), url('../images/banner-bg-domains.svg');
}
body.cat-business .page-header {
  background-image: linear-gradient(120deg, rgba(28,37,48,.93) 0%, rgba(47,123,181,.88) 100%), url('../images/banner-bg-business.svg');
}
body.cat-infrastructure .page-header {
  background-image: linear-gradient(120deg, rgba(28,37,48,.93) 0%, rgba(47,123,181,.88) 100%), url('../images/banner-bg-infrastructure.svg');
}

/* Sections */
section { padding: 84px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head p { margin: 0; }

/* Grid of cards */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  box-shadow: 0 8px 18px rgba(47,123,181,.28);
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card .icon svg { width: 26px; height: 26px; stroke: #fff; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.card p { margin-bottom: 10px; font-size: .95rem; }
.card a.more { font-weight: 700; font-size: .88rem; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col img { border-radius: var(--radius); }

/* Solution page body */
.solution-body { display: grid; grid-template-columns: 2.2fr 1fr; gap: 48px; }
.solution-main h2 { font-size: 1.5rem; margin-top: 32px; }
.solution-main ul li { margin-bottom: 10px; }
.sidebar { background: var(--bg-soft); border-radius: var(--radius); padding: 24px; align-self: start; position: sticky; top: 90px; }
.sidebar h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.sidebar ul { list-style: none; padding: 0; margin: 0 0 24px; }
.sidebar li { margin-bottom: 4px; }
.sidebar a {
  display: block; padding: 9px 12px; border-radius: 6px; color: var(--ink); font-size: .92rem; font-weight: 500;
}
.sidebar a:hover, .sidebar li.active a { background: #fff; color: var(--green-dark); }
.sidebar .cta-box {
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: var(--radius);
  padding: 22px;
  color: #fff;
}
.sidebar .cta-box h4 { color: #fff; }
.sidebar .cta-box p { color: rgba(255,255,255,.9); font-size: .88rem; }
.sidebar .cta-box .btn { background: #fff; color: var(--blue-dark); width: 100%; text-align: center; }

/* Values / tabs */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-grid .card { text-align: center; }

/* Testimonial / stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats strong { display: block; font-size: 2.2rem; color: var(--green-dark); }
.stats span { color: var(--ink-soft); font-size: .9rem; }

/* Benefits grid (homepage "Why Techmate") */
.benefit-card { text-align: left; }
.benefit-card h3 { font-size: 1.05rem; }
.benefit-card p { margin-bottom: 0; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card .quote { font-size: .98rem; color: var(--ink); margin: 0; }
.testimonial-card .quote::before { content: "\201C"; }
.testimonial-card .quote::after { content: "\201D"; }
.testimonial-card .author { margin: 0; font-weight: 700; font-size: .88rem; color: var(--ink-soft); }
.testimonial-card.placeholder { border-style: dashed; background: var(--bg-soft); }
.testimonial-card.placeholder .quote { color: var(--ink-soft); font-style: italic; }
.testimonial-card.placeholder .quote::before, .testimonial-card.placeholder .quote::after { content: ""; }
.testimonials-note { text-align: center; font-size: .85rem; color: var(--ink-soft); margin: 28px 0 0; }

/* CTA band */
.cta-band {
  background-image: linear-gradient(120deg, rgba(47,123,181,.92), rgba(84,146,48,.92)), url('../images/banner-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.contact-info .item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info .item .ico {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--bg-soft); display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); font-weight: 700;
}
form.contact-form { background: var(--bg-soft); border-radius: var(--radius); padding: 28px; }
form.contact-form label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; }
form.contact-form input, form.contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
  margin-bottom: 18px; font-family: inherit; font-size: .95rem;
}
form.contact-form textarea { resize: vertical; min-height: 130px; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 24px; }

/* Domain search */
.domain-band {
  background-image: linear-gradient(120deg, rgba(28,37,48,.93) 0%, rgba(47,123,181,.88) 100%), url('../images/banner-bg-domains.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 64px 0;
}
.domain-band.compact { padding: 44px 0; }
.domain-band-hero { padding: 88px 0; position: relative; }
.domain-band-hero .section-head h2 { font-size: 2.5rem; }
.domain-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 2px 0 18px;
}
.domain-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #dcebf6;
  font-size: .85rem;
  font-weight: 600;
}
.domain-trust span::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}
.domain-band-hero .domain-form button {
  padding: 16px 32px;
  font-size: 1.02rem;
  animation: domain-cta-pulse 2.4s infinite;
}
@keyframes domain-cta-pulse {
  0% { box-shadow: 0 6px 18px rgba(47,123,181,.28), 0 0 0 0 rgba(255,255,255,.35); }
  70% { box-shadow: 0 6px 18px rgba(47,123,181,.28), 0 0 0 14px rgba(255,255,255,0); }
  100% { box-shadow: 0 6px 18px rgba(47,123,181,.28), 0 0 0 0 rgba(255,255,255,0); }
}
.domain-form {
  display: flex;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto 22px;
  flex-wrap: wrap;
}
.domain-form input[type="text"] {
  flex: 1;
  min-width: 220px;
  padding: 15px 18px;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
}
.domain-form button { flex-shrink: 0; }
.tld-chips {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tld-chips span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #e7eef5;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .88rem;
}
.tld-chips strong { color: var(--green); margin-left: 6px; }
.fine-print { text-align: center; font-size: .78rem; margin: 0; }
.domain-band .fine-print { color: rgba(255,255,255,.75); }
.domain-band .fine-print a { color: #fff; text-decoration: underline; }

/* Partners */
.partners-band { padding: 56px 0; border-top: 1px solid var(--border); }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}
.partner-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.partner-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--blue); }
.partner-card .mono {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #fff; font-weight: 800; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
}
.partner-card .p-name { font-weight: 700; color: var(--ink); font-size: .95rem; line-height: 1.2; }
.partner-card .p-tag { display: block; font-weight: 400; color: var(--ink-soft); font-size: .76rem; margin-top: 2px; }

/* Solution clusters (homepage) */
.cluster { margin-bottom: 52px; }
.cluster:last-child { margin-bottom: 0; }
.cluster-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}
.cluster-head h3 { margin: 0; font-size: 1.25rem; }
.cluster-head span { color: var(--ink-soft); font-size: .88rem; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card {
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.price-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.price-card .badge-popular {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--green), var(--blue));
  color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  padding: 5px 16px; border-radius: 999px; text-transform: uppercase;
}
.price-card h3 { margin-bottom: 4px; }
.price-card .price { font-size: 2.1rem; font-weight: 800; color: var(--ink); margin-bottom: 2px; }
.price-card .price span { font-size: .95rem; font-weight: 500; color: var(--ink-soft); }
.price-card .price-note { font-size: .82rem; color: var(--ink-soft); margin-bottom: 20px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.price-card ul li {
  padding: 9px 0 9px 26px; position: relative; font-size: .92rem; color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li::before {
  content: "\2713"; position: absolute; left: 0; top: 9px; color: var(--green-dark); font-weight: 700;
}
.price-card .btn { text-align: center; }

/* Domain pricing table */
.domain-pricing table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.domain-pricing th, .domain-pricing td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: .93rem; }
.domain-pricing th { background: var(--bg-soft); text-transform: uppercase; font-size: .76rem; letter-spacing: .05em; color: var(--ink-soft); }
.domain-pricing td strong { color: var(--green-dark); }
.domain-pricing tbody tr { transition: background-color .15s var(--ease); }
.domain-pricing tbody tr:hover { background: var(--bg-soft); }
.domain-pricing tbody tr:last-child td { border-bottom: none; }

/* Footer */
.site-footer { background: #16202b; color: #b9c4cf; padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; margin-bottom: 36px; }
.footer-grid h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: #b9c4cf; font-size: .92rem; }
.footer-grid a:hover { color: var(--green); }
.footer-logo img { height: 36px; margin-bottom: 14px; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.social-links a:hover { background: var(--green); transform: translateY(-2px); }
.social-links svg { width: 17px; height: 17px; fill: #fff; }
.social-links a.coming-soon { opacity: .4; }
.social-links a.coming-soon:hover { background: rgba(255,255,255,.07); transform: none; cursor: default; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .82rem; color: #8b98a5;
}

/* Scroll-reveal (progressive enhancement — applied via JS, degrades to
   fully visible with no motion if JS is off or the user prefers reduced
   motion). */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .domain-band-hero .domain-form button { animation: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-slides { min-height: 300px; }
  .two-col { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .solution-body { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .topbar-meta { display: none; }
  .topbar-links { display: none; }
}
/* Home/About Us/Contact moved into the topbar, so the main nav only
   carries the four dropdown categories plus Get a Quote. Measured the
   nav's natural width against the header's own content box (max 1180px,
   minus its padding) and it wraps to a second line once the viewport
   drops below ~990px — 1024px gives a safe margin, so the hamburger
   kicks in there instead of squeezing labels to fit narrower. */
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; align-items: stretch; padding: 10px; gap: 0; }
  .main-nav .nav-cta { margin: 10px; }
  .dropdown { position: static; box-shadow: none; border: none; display: none; padding-left: 12px; margin: 0; }
  .has-dropdown.open .dropdown { display: block; }
}
@media (max-width: 680px) {
  .domain-form { flex-direction: column; }
  .domain-form button { width: 100%; }
  .domain-band-hero { padding: 56px 0; }
  .domain-band-hero .section-head h2 { font-size: 1.8rem; }
  .domain-trust { gap: 12px 18px; }
  .domain-pricing { overflow-x: auto; }
  h1 { font-size: 2rem; }
  .hero { padding: 60px 0 70px; }
  /* Below ~680px the crossfade slides (position:absolute, stacked on top of
     each other) can overflow their min-height box when copy wraps to more
     lines than expected, overlapping the badges/dots underneath. Swap to a
     normal stacked block per slide instead — same JS toggle of .active,
     just sized by its own content so nothing overlaps. Loses the fade
     transition on mobile only, which is an acceptable trade-off. */
  .hero-slides { min-height: 0; }
  .hero-slide {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    transition: none;
  }
  .hero-slide.active { display: block; }
  .grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-location { display: none; }
  .topbar-contacts { gap: 14px; }
  .topbar-inner { padding: 7px 0; }
}
