/* =================================================================
   Texas Fenceless - main stylesheet
   Brand: Texas navy + burnt orange, cream, lawn green
   Hand-built, mobile-first. No framework.
   ================================================================= */

/* ----- Design tokens ----- */
:root {
  --navy: #1b2a4a;
  --navy-light: #2a3d63;
  --navy-deep: #142036;
  --orange: #c75b2a;
  --orange-dark: #ad4a1f;
  --cream: #f7f3ec;
  --cream-dark: #ece5d8;
  --green: #3f7d4f;
  --ink: #2b3340;
  --muted: #5c6675;
  --line: #e2dccf;
  --white: #ffffff;

  --shadow-sm: 0 2px 6px rgba(27, 42, 74, 0.08);
  --shadow-md: 0 8px 24px rgba(27, 42, 74, 0.12);
  --shadow-lg: 0 18px 48px rgba(27, 42, 74, 0.18);

  --radius: 10px;
  --radius-lg: 16px;
  --container: 1140px;

  --font-head: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-body: "Open Sans", "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 {
  font-size: 2.6rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--orange-dark);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ----- Layout helpers ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  padding: 72px 0;
}

.section--cream {
  background: var(--cream);
}
.section--white {
  background: var(--white);
}
.section--navy {
  background: var(--navy);
  color: #dfe6f2;
}
.section--navy h2,
.section--navy h3 {
  color: #fff;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 12px;
  font-family: var(--font-head);
}
.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}
.section--navy .section-head p {
  color: #b9c4d8;
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--orange-dark);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn--navy {
  background: var(--navy);
  color: #fff;
}
.btn--navy:hover {
  background: var(--navy-light);
}
.btn--lg {
  padding: 17px 38px;
  font-size: 1.08rem;
}
.btn--block {
  display: block;
  width: 100%;
}

/* =================================================================
   Header
   ================================================================= */
.topbar {
  background: var(--navy-deep);
  color: #c9d3e6;
  font-size: 0.86rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a {
  color: #dfe6f2;
  font-weight: 600;
}
.topbar .topbar-note {
  color: #98a6c0;
}

.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand:hover {
  text-decoration: none;
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.32rem;
  letter-spacing: -0.2px;
  line-height: 1.05;
}
.brand-name span {
  color: var(--orange);
}
.brand-tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--navy);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover {
  text-decoration: none;
  color: var(--orange-dark);
}
.main-nav a.active {
  border-bottom-color: var(--orange);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.12rem;
  white-space: nowrap;
}
.header-phone:hover {
  text-decoration: none;
  color: var(--orange-dark);
}

/* Free Quote button that lives inside the mobile dropdown menu only */
.nav-quote {
  display: none;
}

.nav-toggle {
  display: none;
  background: var(--navy);
  border: none;
  border-radius: 8px;
  width: 46px;
  height: 42px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  position: relative;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
  transition: 0.2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
}
.nav-toggle span::before {
  top: -7px;
}
.nav-toggle span::after {
  top: 7px;
}

/* =================================================================
   Hero
   ================================================================= */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(20, 32, 54, 0.92) 0%,
    rgba(20, 32, 54, 0.78) 42%,
    rgba(20, 32, 54, 0.35) 100%
  );
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 86px;
  padding-bottom: 92px;
  max-width: 1180px;
}
.hero-inner {
  max-width: 620px;
}
.hero .eyebrow {
  display: inline-block;
  background: rgba(199, 91, 42, 0.22);
  border: 1px solid rgba(199, 91, 42, 0.5);
  color: #f4b48f;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.76rem;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}
.hero h1 {
  color: #fff;
  font-size: 3.05rem;
  margin-bottom: 18px;
}
.hero h1 .accent {
  color: #f0a571;
}
.hero-lead {
  font-size: 1.22rem;
  color: #cdd6e6;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  margin-top: 30px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  color: #aebbd2;
  font-size: 0.92rem;
}
.hero-trust strong {
  color: #fff;
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
}

/* ----- Trust bar ----- */
.trustbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trustbar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.trustbar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
}
.trustbar-item svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  flex: none;
}

/* =================================================================
   Generic grids / cards
   ================================================================= */
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(199, 91, 42, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card .icon svg {
  width: 30px;
  height: 30px;
}
.card h3 {
  margin-bottom: 8px;
}
.card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}

/* ----- Split feature ----- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split--reverse .split-media {
  order: 2;
}
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.split-body h2 {
  margin-bottom: 16px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 26px;
}
.checklist li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 13px;
  color: var(--ink);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* =================================================================
   Steps (How it works)
   ================================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-sm);
}
.step h3 {
  font-size: 1.12rem;
}
.step p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* =================================================================
   Testimonials
   ================================================================= */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.stars {
  color: #e8a13a;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.quote-card blockquote {
  margin: 0 0 20px;
  font-size: 1.02rem;
  color: var(--ink);
  flex: 1;
}
.quote-by {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  flex: none;
}
.avatar.alt {
  background: var(--orange);
}
.avatar.alt2 {
  background: var(--navy);
}
.quote-by strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
}
.quote-by span {
  color: var(--muted);
  font-size: 0.86rem;
}

/* =================================================================
   CTA band
   ================================================================= */
.cta-band {
  position: relative;
  background: var(--navy);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.cta-band .container {
  position: relative;
  z-index: 2;
  padding: 76px 22px;
}
.cta-band h2 {
  color: #fff;
  font-size: 2.3rem;
  max-width: 720px;
  margin: 0 auto 14px;
}
.cta-band p {
  color: #c6d0e2;
  font-size: 1.12rem;
  max-width: 600px;
  margin: 0 auto 28px;
}

/* =================================================================
   FAQ (accordion)
   ================================================================= */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .plus {
  flex: none;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.2s ease;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
}
.faq-q .plus::before {
  top: 11px;
  left: 2px;
  right: 2px;
  height: 2px;
}
.faq-q .plus::after {
  left: 11px;
  top: 2px;
  bottom: 2px;
  width: 2px;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-q .plus::after {
  transform: scaleY(0);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--muted);
}

/* =================================================================
   Page banner (interior pages)
   ================================================================= */
.page-banner {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 64px 0 58px;
}
.page-banner h1 {
  color: #fff;
  font-size: 2.7rem;
  margin-bottom: 10px;
}
.page-banner p {
  color: #c2cce0;
  font-size: 1.12rem;
  max-width: 660px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 0.86rem;
  color: #93a2bf;
  margin-bottom: 18px;
}
.breadcrumb a {
  color: #c2cce0;
}

/* =================================================================
   Prose (privacy / terms)
   ================================================================= */
.prose {
  max-width: 820px;
  margin: 0 auto;
}
.prose h2 {
  font-size: 1.5rem;
  margin-top: 38px;
}
.prose h3 {
  margin-top: 26px;
}
.prose p,
.prose li {
  color: var(--ink);
}
.prose ul {
  padding-left: 22px;
}
.prose li {
  margin-bottom: 8px;
}
.prose .updated {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 30px;
}

/* =================================================================
   Contact / forms
   ================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 7px;
}
.field label .req {
  color: var(--orange);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(199, 91, 42, 0.15);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field .error-msg {
  display: none;
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 5px;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #c0392b;
}
.field.invalid .error-msg {
  display: block;
}
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}
.form-success {
  display: none;
  background: rgba(63, 125, 79, 0.1);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 22px 24px;
  color: var(--green);
  font-weight: 600;
}
.form-success.show {
  display: block;
}

.contact-aside .info-block {
  margin-bottom: 28px;
}
.contact-aside h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.contact-aside p {
  color: var(--muted);
  margin: 0;
}
.contact-aside a {
  font-weight: 600;
}

/* =================================================================
   Service areas
   ================================================================= */
.area-cols {
  columns: 3;
  column-gap: 32px;
  max-width: 820px;
  margin: 0 auto;
}
.area-cols li {
  list-style: none;
  padding: 9px 0 9px 26px;
  position: relative;
  break-inside: avoid;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}
.area-cols li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 3px solid var(--orange);
}

/* =================================================================
   Footer
   ================================================================= */
.site-footer {
  background: var(--navy-deep);
  color: #aab6cd;
  padding: 60px 0 0;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 38px;
  padding-bottom: 46px;
}
.footer-grid > div {
  min-width: 0;
}
.footer-links a,
.footer-contact-item a {
  overflow-wrap: anywhere;
}
.footer-brand .brand-name {
  color: #fff;
  font-size: 1.3rem;
}
.footer-brand p {
  margin-top: 14px;
  max-width: 320px;
  color: #93a2bf;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #aab6cd;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: #c4cee0;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 3px;
  color: var(--orange);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.86rem;
  color: #8090ab;
}
.footer-bottom a {
  color: #aab6cd;
}

/* =================================================================
   Utilities
   ================================================================= */
.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.lead {
  font-size: 1.15rem;
  color: var(--muted);
}
.badge-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 8px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.badge svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 960px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 26px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 820px) {
  .main-nav,
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 22px 22px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .main-nav.open a {
    width: 100%;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open .nav-quote {
    display: block;
    text-align: center;
    margin-top: 12px;
    padding: 13px 0;
    border-bottom: none;
    color: #fff;
  }
  .site-header .container {
    position: relative;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.65rem;
  }
  .section {
    padding: 54px 0;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .split--reverse .split-media {
    order: 0;
  }
  /* Dedicated portrait hero image for phones: text darkened up top,
     the dog showing clearly in the open grass at the bottom. */
  .hero .hero-bg {
    background-image: url("../images/hero-mobile.webp") !important;
    background-position: center bottom;
  }
  .hero .hero-bg::after {
    background: linear-gradient(
      180deg,
      rgba(20, 32, 54, 0.93) 0%,
      rgba(20, 32, 54, 0.82) 30%,
      rgba(20, 32, 54, 0.52) 52%,
      rgba(20, 32, 54, 0.12) 72%,
      rgba(20, 32, 54, 0) 100%
    );
  }
  .hero .container {
    padding-top: 50px;
    padding-bottom: 300px;
  }
  .hero-trust {
    display: none;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-lead {
    font-size: 1.08rem;
  }
  .area-cols {
    columns: 2;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .topbar .topbar-note {
    display: none;
  }
}

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

@media (max-width: 480px) {
  .area-cols {
    columns: 1;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
}
