:root {
  --bg: #FFFFFF;
  --bg-soft: #FFFBF7;
  --surface: #F9FAFB;
  --surface-strong: #F3F4F6;
  --text: #111827;
  --muted: #6B7280;
  --soft: #9CA3AF;
  --line: rgba(0, 0, 0, 0.1);
  --yellow: #EA580C;
  --yellow-strong: #C2410C;
  --green: #89d7ad;
  --blue: #85b7ff;
  --danger: #ff8b8b;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --header-height: 82px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.thanks-page {
  min-height: 100svh;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

strong {
  color: #EA580C;
  font-weight: 760;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  overflow: visible;
  clip: auto;
  background: var(--yellow);
  color: #fff;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  width: 128px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav > a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  font-weight: 680;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: #fff;
}

.nav-cta {
  border: 1px solid rgba(234, 88, 12, 0.55);
  background: rgba(234, 88, 12, 0.08);
  color: var(--yellow) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: #fff;
}

.section {
  padding: 92px 0;
}

.hero {
  display: flex;
  align-items: center;
  padding: 78px 0 72px;
  background:
    linear-gradient(115deg, rgba(234, 88, 12, 0.07), transparent 40%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.76fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 880;
}

h3 {
  font-size: 1.08rem;
  font-weight: 820;
}

.hero-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-lead a {
  color: var(--yellow);
  font-weight: 820;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 820;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--yellow);
  color: #fff;
  border-color: var(--yellow);
}

.button.secondary {
  background: #FFFFFF;
  color: var(--text);
  border-color: rgba(0,0,0,0.2);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: #F9FAFB;
  font-size: 0.92rem;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFFFFF;
  padding: 26px; border: 1px solid rgba(0,0,0,0.1);
  box-shadow: var(--shadow);
}

.landing-hero {
  background:
    linear-gradient(115deg, rgba(234, 88, 12, 0.06), transparent 40%),
    var(--bg);
}

.landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.68fr);
  gap: 50px;
  align-items: center;
}

.landing-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.landing-hero h1 {
  max-width: 880px;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
}

.landing-summary {
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: var(--radius);
  padding: 24px;
  background: #FFFFFF;
  box-shadow: var(--shadow);
}

.landing-summary img {
  width: 128px;
  margin-bottom: 26px;
  filter: none;
}

.landing-summary h2 {
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
}

.check-list,
.link-list,
.faq-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.link-list a,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
}

.check-list li {
  position: relative;
  padding: 13px 14px 13px 34px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 1.14em;
  left: 15px;
  width: 7px;
  height: 7px;
  background: var(--yellow);
}

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

.link-list a {
  display: block;
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 760;
}

.link-list a:hover,
.link-list a:focus-visible {
  color: var(--text);
  border-color: rgba(234, 88, 12, 0.55);
}

.faq-item {
  padding: 20px;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cta-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #F9FAFB;
}

.cta-strip .split {
  align-items: center;
}

.hero-form {
  scroll-margin-top: calc(var(--header-height) + 18px);
  border: 1px solid rgba(234, 88, 12, 0.3);
  background: #FFFFFF;
  box-shadow: var(--shadow);
}

.form-intro {
  margin-bottom: 18px;
}

.form-intro h2 {
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1;
}

.form-intro p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
}

.hero-logo {
  width: min(310px, 100%);
  margin: 0 auto 28px;
}

.dns-route {
  display: grid;
  gap: 12px;
}

.route-node {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(0, 0, 0, 0.24);
}

.route-node span {
  display: block;
  margin-bottom: 4px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.route-node strong {
  color: var(--text);
  font-size: 1.1rem;
}

.route-node.active {
  border-color: rgba(255, 238, 117, 0.68);
  background: rgba(234, 88, 12, 0.08);
}

.route-line {
  width: 2px;
  height: 22px;
  margin-left: 22px;
  background: linear-gradient(var(--yellow), rgba(255, 255, 255, 0.15));
}

.intro-band {
  background: var(--yellow);
  color: #fff;
}

.intro-band .eyebrow,
.intro-band strong {
  color: var(--yellow);
}

.intro-band p {
  color: rgba(17, 17, 17, 0.78);
}

.intro-band .text-stack p {
  color: rgba(17, 17, 17, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: center;
}

.align-start {
  align-items: start;
}

.text-stack p,
.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-grid,
.pricing-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.pricing-card,
.step,
.contact-form,
.contact-callout {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #FFFFFF; box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.feature-card,
.step {
  min-height: 250px;
  padding: 24px;
}

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

.feature-card .button {
  width: fit-content;
  margin-top: 18px;
}

.service-links-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.service-links-strip a {
  border: 1px solid rgba(255, 238, 117, 0.34);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--yellow);
  background: rgba(234, 88, 12, 0.06);
  font-weight: 780;
}

.card-number,
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border: 1px solid rgba(234, 88, 12, 0.4);
  border-radius: var(--radius);
  color: var(--yellow);
  font-weight: 860;
}

.feature-card p,
.pricing-card p,
.step p {
  margin: 14px 0 0;
  color: var(--muted);
}

.dark-section {
  background: #F8F7F4;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.included-list {
  display: grid;
  gap: 14px;
}

.included-item {
  border-left: 4px solid var(--yellow);
  padding: 18px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
}

.included-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.pricing-card {
  min-height: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pricing-card.highlighted {
  border-color: rgba(234, 88, 12, 0.6);
  background: linear-gradient(180deg, rgba(234, 88, 12, 0.06), rgba(234, 88, 12, 0.03));
}

.plan-badge {
  margin: -24px -24px 20px !important;
  padding: 10px 16px;
  background: var(--yellow);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 880;
  text-align: center;
  text-transform: uppercase;
}

.plan-label {
  min-height: 34px;
  margin: 0 0 14px !important;
  color: var(--yellow) !important;
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
}

.pricing-card h3 {
  min-height: 0;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 14px;
  overflow-wrap: normal;
  word-break: normal;
}

.price-number {
  display: inline-block;
  font-size: clamp(3.6rem, 4.8vw, 4.6rem);
  line-height: 0.82;
}

.price-unit {
  display: inline-block;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
  text-transform: uppercase;
}

.price-quote {
  display: flex;
  align-items: center;
  font-size: clamp(2rem, 2.55vw, 2.7rem);
  line-height: 1.03;
}

.admin-pill {
  width: fit-content;
  min-height: 0 !important;
  margin: 0 0 18px !important;
  border: 1px solid rgba(234, 88, 12, 0.55);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(234, 88, 12, 0.08);
  color: var(--yellow) !important;
  font-size: 0.82rem;
  font-weight: 820;
}

.pricing-card > p:not(.plan-label):not(.plan-badge) {
  min-height: 82px;
}

.pricing-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 16px 0 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
}

.server-specs {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.server-specs li {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.93rem;
}

.server-specs li:first-child {
  border-top: 0;
}

.server-specs span {
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--yellow);
}

.server-specs li::before {
  display: none;
}

.pricing-note {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--soft);
}

.process-section {
  padding-top: 46px;
}

.contact-section {
  background:
    linear-gradient(180deg, #F3F4F6, #FFFFFF);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-copy p {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-callout {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 20px;
}

.contact-callout span {
  color: var(--muted);
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
}

.final-contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
}

.final-contact-panel img {
  width: 142px;
  margin-bottom: 24px;
}

.final-contact-panel p {
  margin: 0 0 24px;
  color: var(--muted);
}

.thanks-section {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(48px, 7vw, 82px) 0;
  background: var(--bg);
}

.thanks-shell {
  display: grid;
  gap: clamp(34px, 5vw, 54px);
  justify-items: center;
  text-align: center;
}

.thanks-confirmation {
  max-width: 880px;
}

.thanks-mark {
  width: 112px;
  height: auto;
  margin: 0 auto 24px;
}

.thanks-confirmation .eyebrow {
  margin-bottom: 18px;
}

.thanks-confirmation h1 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(4.3rem, 11vw, 8.4rem);
}

.thanks-lead {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.thanks-confirmation .hero-actions {
  justify-content: center;
}

.thanks-next {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(234, 88, 12, 0.28);
  border-bottom: 1px solid rgba(234, 88, 12, 0.18);
  text-align: left;
}

.thanks-next .eyebrow {
  margin-bottom: 8px;
}

.thanks-next h2 {
  max-width: none;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.thanks-next p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  background: #F9FAFB;
  color: var(--text);
  padding: 12px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}

select {
  color-scheme: dark;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status.error {
  color: var(--danger);
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #111827;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.55fr) minmax(180px, 0.65fr) minmax(240px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.footer-logo {
  width: 128px;
  height: auto;
  margin-bottom: 12px;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin-top: 8px;
}

.site-footer p a {
  display: inline;
  margin-top: 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

/* =============================================
   INNER PAGE & MULTIPAGE COMPONENTS
   ============================================= */

/* 2×2 grid for homepage services section */
.home-services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Feature card flex — button stays at bottom */
.feature-card {
  display: flex;
  flex-direction: column;
}

.feature-card > p {
  flex: 1;
}

.feature-card .button {
  margin-top: 20px;
  align-self: flex-start;
}

/* Inner page hero */
.landing-hero {
  padding: 72px 0 64px;
  background:
    linear-gradient(115deg, rgba(234, 88, 12, 0.05), transparent 35%),
    var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 48px;
  align-items: start;
}

.landing-lead {
  max-width: 660px;
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.65;
}

/* Sidebar summary card */
.landing-summary {
  border: 1px solid rgba(234, 88, 12, 0.28);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.landing-summary img {
  width: 96px;
  height: auto;
  margin-bottom: 18px;
}

.landing-summary h2 {
  max-width: none;
  margin-bottom: 16px;
  font-size: 1.12rem;
  font-weight: 820;
  line-height: 1.25;
}

/* Checklist with yellow ticks */
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 860;
}

/* FAQ list */
.faq-list {
  display: grid;
  gap: 0;
  max-width: 860px;
}

.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.3;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.97rem;
}

/* Related links list */
.link-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.link-list a {
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.95rem;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.link-list a:hover,
.link-list a:focus-visible {
  border-color: rgba(234, 88, 12, 0.4);
  color: var(--text);
  background: rgba(234, 88, 12, 0.04);
}

/* CTA strip at bottom of inner pages */
.cta-strip {
  background: linear-gradient(180deg, #10100f, #050505);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================= */


/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: #111827;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-num {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--yellow);
}

.trust-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* Pricing card CTA */
.pricing-card-cta {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

/* ============================================= */


@media (max-width: 1180px) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #FFFFFF;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 50px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-grid,
  .landing-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .landing-hero h1 {
    font-size: clamp(3.1rem, 6.8vw, 4.8rem);
  }

  .hero-panel,
  .hero-form {
    max-width: 540px;
  }

  .thanks-next {
    max-width: 620px;
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .thanks-next h2 {
    margin: 0 auto;
  }

  .thanks-next p:not(.eyebrow) {
    max-width: 560px;
    margin: 0 auto;
  }

  .feature-grid,
  .landing-feature-grid,
  .home-services-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .pricing-card,
  .step {
    min-height: auto;
  }

  .pricing-card h3,
  .pricing-card > p:not(.plan-label):not(.plan-badge) {
    min-height: auto;
  }

}

@media (max-width: 560px) {
  :root {
    --header-height: 67px;
  }

  .brand img {
    width: 104px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-form {
    order: -1;
  }

  .hero-copy {
    order: 2;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .feature-card .button,
  .service-links-strip a {
    width: 100%;
  }

  .thanks-section {
    padding: 52px 0 56px;
  }

  .thanks-mark {
    width: 92px;
    margin-bottom: 18px;
  }

  .thanks-confirmation h1 {
    font-size: clamp(3.3rem, 17vw, 4.8rem);
  }

  .thanks-lead {
    font-size: 1rem;
  }

  .thanks-next {
    padding: 20px 0;
  }

  .hero-points {
    display: none;
  }

  .hero-panel,
  .landing-summary,
  .hero-form,
  .contact-form,
  .final-contact-panel,
  .pricing-card,
  .feature-card,
  .step {
    padding: 18px;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }

  .hero-form .form-intro {
    margin-bottom: 14px;
  }

  .hero-form .form-intro h2 {
    font-size: 1.9rem;
  }

  .hero-form .form-intro p:not(.eyebrow) {
    display: none;
  }

  .hero-form .two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-form .form-row {
    margin-bottom: 12px;
  }

  .hero-form input,
  .hero-form select,
  .hero-form textarea {
    min-height: 44px;
    padding: 10px;
  }

  .hero-form textarea {
    min-height: 82px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.15rem);
    white-space: normal;
  }

  .landing-hero h1 {
    font-size: clamp(2rem, 9.2vw, 2.8rem);
    overflow-wrap: anywhere;
  }
}

/* =============================================
   NAVIGATION DROPDOWN
   ============================================= */

.nav-item {
  position: relative;
}

.nav-label {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  font-weight: 680;
  cursor: pointer;
  user-select: none;
}

.nav-label:hover {
  color: #fff;
}


.nav-arrow {
  font-size: 0.68rem;
  transition: transform 180ms ease;
}

.nav-item.is-open .nav-arrow {
  transform: rotate(180deg);
}



/* Mobile: aplanar dropdown dentro del menú hamburguesa */
@media (max-width: 1180px) {
  .nav-item {
    display: contents;
  }
  .nav-label {
    display: none;
  }
  .nav-dropdown-menu {
    display: contents !important;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: 0;
    overflow: visible;
  }
  .nav-dropdown-menu a {
    min-height: 50px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 12px;
    background: transparent;
  }
  .nav-dropdown-menu a:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}



/* NAV DROPDOWN CLEAN OVERRIDE */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 4px;
  min-width: 220px;
  z-index: 50;
}

.nav-item.is-open .nav-dropdown-menu,
.nav-item:hover .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu-inner,
.nav-dropdown-menu {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-dropdown-menu a {
  display: flex !important;
  align-items: center !important;
  min-height: 44px !important;
  padding: 10px 16px !important;
  color: #374151 !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  border-bottom: 0.5px solid rgba(0,0,0,0.07) !important;
  transition: color 120ms, background 120ms;
}

.nav-dropdown-menu a:last-child {
  border-bottom: none !important;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus,
.nav-dropdown-menu a:focus-visible {
  color: #EA580C !important;
  background: rgba(234,88,12,0.06) !important;
}