/* ==========================================================================
   Lonestar Mobile Security — styles
   ========================================================================== */
/* ---------- Self-hosted fonts (Barlow, OFL) ---------- */
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/Barlow-Regular.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/Barlow-Medium.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/Barlow-SemiBold.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/Barlow-Bold.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/BarlowCondensed-SemiBold.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/BarlowCondensed-Bold.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 800; font-display: swap; src: url("/assets/fonts/BarlowCondensed-ExtraBold.woff2") format("woff2"); }

:root {
  --navy-900: #071224;
  --navy-800: #0b1c33;
  --navy-700: #12294a;
  --navy-600: #1a3a6b;
  --gold: #f2b134;
  --gold-600: #d9971c;
  --gold-100: #fdf1d6;
  --ink: #101a2b;
  --ink-2: #3b4a63;
  --ink-3: #6b778c;
  --line: #e3e7ee;
  --paper: #ffffff;
  --paper-2: #f5f6f9;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(7, 18, 36, .10);
  --shadow-lg: 0 24px 60px rgba(7, 18, 36, .18);
  --font-head: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Barlow", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1180px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.05; margin: 0 0 .5em; letter-spacing: .005em; color: var(--navy-800); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); font-weight: 800; }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 700; }
[hidden] { display: none !important; }

.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.container.narrow { max-width: 820px; }

.skip-link { position: absolute; left: 1rem; top: -100px; background: var(--gold); color: var(--navy-900); padding: .6rem 1rem; border-radius: var(--radius-sm); font-weight: 700; z-index: 200; }
.skip-link:focus { top: 1rem; }

.ico { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; letter-spacing: .02em; text-transform: uppercase;
  padding: .85rem 1.6rem; border-radius: var(--radius-sm); border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--gold); color: var(--navy-900); box-shadow: 0 8px 20px rgba(242, 177, 52, .28); }
.btn-primary:hover { background: #f7c04f; box-shadow: 0 10px 26px rgba(242, 177, 52, .38); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.btn-light { background: #fff; color: var(--navy-800); }
.btn-light:hover { background: var(--gold-100); }
.btn-lg { font-size: 1.25rem; padding: 1rem 1.9rem; }
.btn-sm { font-size: .98rem; padding: .6rem 1.1rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  color: #fff; transition: background .25s ease, box-shadow .25s ease, height .25s ease;
  background: linear-gradient(to bottom, rgba(7,18,36,.78), rgba(7,18,36,0));
}
.site-header.is-solid { background: rgba(7, 18, 36, .94); backdrop-filter: blur(10px); box-shadow: 0 6px 24px rgba(0,0,0,.25); height: 66px; }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: inherit; }
.brand-mark { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.55rem; letter-spacing: .05em; text-transform: uppercase; }
.brand-sub { font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-top: .18rem; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.site-nav a:not(.btn) { color: rgba(255,255,255,.9); text-decoration: none; font-weight: 600; font-size: 1rem; letter-spacing: .01em; position: relative; padding: .3rem 0; }
.site-nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.site-nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; color: #fff; text-decoration: none; font-weight: 700; font-family: var(--font-head); font-size: 1.15rem; letter-spacing: .02em; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 8px; flex-direction: column; justify-content: center; gap: 6px; }
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 600px) {
  .eyebrow { font-size: .82rem; letter-spacing: .14em; align-items: flex-start; }
  .eyebrow .ico { margin-top: .1em; }
}

@media (max-width: 960px) {
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw);
    background: var(--navy-900); flex-direction: column; align-items: flex-start; gap: 0;
    padding: calc(var(--header-h) + 1rem) 1.6rem 2rem; transform: translateX(100%); transition: transform .28s ease; box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a:not(.btn) { font-size: 1.25rem; padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; }
  .site-nav .nav-cta { margin-top: 1.4rem; width: 100%; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; color: #fff; overflow: hidden; background: var(--navy-900); padding: calc(var(--header-h) + 3rem) 0 5rem; isolation: isolate; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; filter: saturate(1.05); }
.hero-overlay { position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 20% 30%, rgba(7,18,36,.30), transparent 60%),
    linear-gradient(90deg, rgba(7,18,36,.88) 0%, rgba(7,18,36,.72) 45%, rgba(7,18,36,.35) 100%),
    linear-gradient(to top, rgba(7,18,36,.9) 0%, rgba(7,18,36,0) 40%); }
.hero-content { max-width: 800px; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.hero h1 { color: #fff; margin-bottom: 1rem; text-wrap: balance; }
.hero .accent { color: var(--gold); }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: rgba(255,255,255,.88); max-width: 640px; margin-bottom: 1.8rem; }
.lede strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; color: rgba(255,255,255,.85); font-weight: 500; }
.hero-points li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-points .ico { color: var(--gold); }

/* ---------- Stats ---------- */
.stats { background: var(--navy-800); color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat { padding: 1.6rem 1rem; text-align: center; border-left: 1px solid rgba(255,255,255,.08); }
.stat:first-child { border-left: 0; }
.stat-value { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--gold); }
.stat-value small { font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,.7); margin-left: .15rem; }
.stat-label { display: block; margin-top: .4rem; font-size: .92rem; color: rgba(255,255,255,.78); }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } .stat:nth-child(4) { border-left: 0; } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); } .stat:nth-child(-n+2) { border-top: 0; } .stat:nth-child(5) { grid-column: 1 / -1; } }

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--paper-2); }
.section-dark { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .sub, .section-dark .section-head .sub { color: rgba(255,255,255,.78); }
.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head .sub { font-size: 1.15rem; color: var(--ink-2); }
.section-head h2 { text-wrap: balance; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.6rem 1.6rem; box-shadow: var(--shadow); }
.step-num { position: absolute; top: -18px; left: 1.4rem; width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--navy-900); font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; display: grid; place-items: center; box-shadow: 0 6px 14px rgba(242,177,52,.4); }
.step h3 { margin-top: .4rem; }
.step p { margin: 0; color: var(--ink-2); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Features ---------- */
.feature-rows { display: grid; gap: clamp(3rem, 6vw, 5rem); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature-row:nth-child(even) .feature-media { order: 2; }
.feature-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 1 / 1; background: var(--navy-900); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-tag { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-head); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .85rem; color: var(--navy-700); background: var(--gold-100); padding: .35rem .7rem; border-radius: 999px; margin-bottom: 1rem; }
.feature-copy h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.feature-copy p { color: var(--ink-2); }
.check-list li { position: relative; padding-left: 1.9rem; margin: .5rem 0; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .3em; width: 1.1em; height: 1.1em; border-radius: 50%; background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1c33' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 7l-9 10-5-5'/%3E%3C/svg%3E") center / 68% no-repeat; }
@media (max-width: 860px) { .feature-row { grid-template-columns: 1fr; } .feature-row:nth-child(even) .feature-media { order: 0; } .feature-media { max-width: 560px; } }

.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: clamp(3rem, 6vw, 5rem); }
.spec-grid li { display: flex; align-items: center; gap: .8rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.1rem; font-weight: 600; color: var(--navy-800); }
.spec-grid .ico { width: 1.5rem; height: 1.5rem; color: var(--gold-600); }
@media (max-width: 900px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .spec-grid { gap: .7rem; } .spec-grid li { padding: .8rem .9rem; font-size: .92rem; gap: .6rem; } .spec-grid .ico { width: 1.3rem; height: 1.3rem; } }

/* ---------- Industries ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.industry { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.5rem; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.industry:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.industry .ico { width: 2.2rem; height: 2.2rem; color: var(--gold-600); margin-bottom: 1rem; stroke-width: 1.8; }
.industry h3 { font-size: 1.4rem; margin-bottom: .35rem; }
.industry p { margin: 0; color: var(--ink-2); font-size: 1rem; }
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industry-grid { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem; max-width: 980px; }
.price-card { position: relative; background: #fff; color: var(--ink); border-radius: var(--radius); padding: 2.2rem 2rem 2rem; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.price-card h3 { color: var(--navy-800); }
.price-card .price-head > .ico { width: 2.4rem; height: 2.4rem; color: var(--gold-600); margin-bottom: .8rem; stroke-width: 1.8; }
.price { display: flex; align-items: baseline; gap: .5rem; font-family: var(--font-head); font-weight: 800; font-size: 3.4rem; line-height: 1; color: var(--navy-800); margin: .3rem 0 .2rem; }
.price .per { font-size: 1.1rem; font-weight: 600; color: var(--ink-3); }
.price .per em { font-style: normal; display: block; font-size: .95rem; font-weight: 500; }
.price-note { color: var(--ink-3); font-weight: 500; margin-bottom: 1.2rem; }
.price-card .check-list { flex: 1; margin-bottom: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.price-card-accent { background: var(--navy-700); color: #fff; border: 2px solid var(--gold); }
.price-card-accent h3, .price-card-accent .price, .price-card-accent .price .per, .price-card-accent .price-note { color: #fff; }
.price-card-accent .price .per, .price-card-accent .price-note { color: rgba(255,255,255,.75); }
.price-card-accent .price-head > .ico { color: var(--gold); }
.price-card-accent .check-list { border-color: rgba(255,255,255,.14); }
.badge { position: absolute; top: -14px; right: 1.5rem; background: var(--gold); color: var(--navy-900); font-family: var(--font-head); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; padding: .35rem .8rem; border-radius: 999px; }
.bundle { margin-top: 2rem; max-width: 980px; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 1.5rem 1.8rem; }
.bundle-title { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em; font-weight: 700; color: var(--gold); margin-bottom: .3rem; font-size: .95rem; }
.bundle-math { font-size: 1.35rem; margin: 0; }
.bundle-math strong { color: var(--gold); }
.bundle-note { margin: 0; color: rgba(255,255,255,.8); }
@media (max-width: 800px) { .price-grid, .bundle { grid-template-columns: 1fr; } .price-card-accent { margin-top: .6rem; } }

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.area-copy .sub { font-size: 1.15rem; color: var(--ink-2); }
.city-list { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.4rem 0 1.8rem; }
.city-list li { background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: .35rem .85rem; font-weight: 600; font-size: .95rem; color: var(--navy-800); }
.city-list li:first-child { background: var(--gold); border-color: var(--gold); color: var(--navy-900); }
.area-map { max-width: 460px; margin-inline: auto; width: 100%; }
.texas { width: 100%; height: auto; overflow: visible; }
.tx-fill { fill: var(--navy-700); stroke: var(--gold); stroke-width: 1.2; stroke-linejoin: round; filter: drop-shadow(0 12px 22px rgba(7,18,36,.25)); }
.tx-dot { fill: var(--gold); }
.tx-pulse { fill: var(--gold); opacity: .35; transform-origin: 85px 59px; animation: pulse 2.4s ease-out infinite; }
.tx-label { font-family: var(--font-head); font-weight: 800; font-size: 4.2px; letter-spacing: .6px; fill: #fff; }
@keyframes pulse { 0% { transform: scale(.4); opacity: .6; } 100% { transform: scale(1.6); opacity: 0; } }
@media (max-width: 860px) { .area-grid { grid-template-columns: 1fr; } .area-map { max-width: 340px; } }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: .8rem; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 1.3rem; }
.faq summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--navy-800); }
.faq summary::-webkit-details-marker { display: none; }
.faq-q { flex: 1; }
.faq summary::after { content: "+"; font-size: 1.6rem; line-height: 1; color: var(--gold-600); transition: transform .2s ease; flex: none; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 1.2rem; color: var(--ink-2); }

/* ---------- Booking ---------- */
.section-book { background: linear-gradient(180deg, #fff 0%, var(--paper-2) 100%); }
.book-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 2rem; align-items: start; }
.book-widget-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; min-height: 560px; }
.booking-widget { width: 100%; min-height: 560px; }
.booking-widget iframe { width: 100% !important; border: 0; }
.calendly-inline-widget { width: 100%; }

.contact-card { background: var(--navy-800); color: #fff; border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow-lg); position: sticky; top: calc(var(--header-h) + 1rem); }
.contact-card h3 { color: #fff; }
.contact-card > p { color: rgba(255,255,255,.8); }
.contact-list { display: grid; gap: 1.1rem; margin: 1.4rem 0; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .ico { width: 1.5rem; height: 1.5rem; color: var(--gold); margin-top: .15rem; }
.contact-label { display: block; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-head); font-weight: 700; color: rgba(255,255,255,.6); }
.contact-list a { color: #fff; text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--gold); }
.contact-callout { display: flex; gap: .8rem; background: rgba(242,177,52,.12); border: 1px solid rgba(242,177,52,.4); border-radius: var(--radius-sm); padding: 1rem; }
.contact-callout .ico { color: var(--gold); width: 1.4rem; height: 1.4rem; margin-top: .2rem; }
.contact-callout p { margin: 0; font-size: .98rem; color: rgba(255,255,255,.9); }
@media (max-width: 900px) { .book-grid { grid-template-columns: 1fr; } .contact-card { position: static; } }

/* Fallback request form (used until a calendar link is configured) */
.req-form { padding: 1.8rem; display: grid; gap: 1rem; }
.req-form h3 { margin-bottom: .2rem; }
.req-form .form-intro { color: var(--ink-2); margin-bottom: .4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 600; font-size: .95rem; color: var(--navy-800); }
.field input, .field select, .field textarea { font: inherit; padding: .75rem .9rem; border: 1px solid #cfd6e1; border-radius: var(--radius-sm); background: #fff; color: var(--ink); width: 100%; }
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(242,177,52,.5); border-color: var(--gold-600); }
.req-form .btn { justify-self: start; }
.form-fine { font-size: .9rem; color: var(--ink-3); margin: 0; }
.form-success { padding: 2.2rem 1.8rem; display: grid; gap: .6rem; }
.form-success .ico { width: 2.6rem; height: 2.6rem; color: var(--gold-600); }
.form-success pre { white-space: pre-wrap; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem; font-size: .92rem; line-height: 1.5; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.8); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { margin-top: 1rem; max-width: 380px; }
.footer-brand .brand { color: #fff; }
.footer-nav { display: grid; gap: .6rem; align-content: start; }
.footer-nav a, .footer-contact a { color: rgba(255,255,255,.85); text-decoration: none; font-weight: 500; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: .8rem; align-content: start; }
.footer-contact a, .footer-contact span { display: inline-flex; align-items: center; gap: .5rem; }
.footer-contact .ico { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.4rem; font-size: .92rem; color: rgba(255,255,255,.6); }
.footer-bottom p { margin: 0; }
.footer-bottom .fine { max-width: 640px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .tx-pulse { animation: none; opacity: .25; }
  .btn, .industry { transition: none; }
}
.no-js .reveal { opacity: 1; transform: none; }
