/* IOTERA SMART LLC — static site styles */
:root {
  --red: #e63946;
  --red-dark: #c1121f;
  --yellow: #ffd60a;
  --yellow-dark: #f4a261;
  --black: #1a1a1a;
  --gray-900: #2b2b2b;
  --gray-700: #4a4a4a;
  --gray-500: #6b7280;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --max-width: 1200px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--black);
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--red-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Top bar */
.top-bar {
  background: var(--black);
  color: var(--yellow);
  text-align: center;
  padding: 0.6rem 1rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.top-bar--split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1rem;
  text-align: left;
  font-size: 0.95rem;
}

.top-bar-left {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.top-bar-right {
  margin-left: auto;
}

.top-bar a {
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  margin-left: 0;
}

.top-bar a:hover {
  color: var(--white);
  text-decoration: none;
}

.top-bar-sep {
  margin: 0 0.35rem;
  opacity: 0.7;
}

/* Header & nav */
.site-header {
  background: var(--white);
  border-bottom: 4px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.site-header--rail {
  position: relative;
  border-bottom: none;
  border-left: 8px solid var(--red);
  box-shadow: none;
  border-bottom: 1px solid #e5e5e5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--black);
}

.logo:hover {
  text-decoration: none;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--red);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--gray-700);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--yellow);
  color: var(--black);
  text-decoration: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--red);
  color: var(--white) !important;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 0 var(--red-dark);
  transition: transform 0.15s, box-shadow 0.15s;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 0 var(--red-dark);
  text-decoration: none;
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 0 var(--red-dark);
}

.btn-primary:hover {
  color: var(--white);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 0 #d4a800;
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 3px solid var(--black);
}

/* Hero */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--gray-900);
  overflow: hidden;
}

.hero--split {
  min-height: 460px;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 26, 26, 0.92) 42%, rgba(26, 26, 26, 0.55) 100%),
    url("../images/hero-bg.jpg") center / cover no-repeat;
}

.hero--split .hero-bg {
  background:
    linear-gradient(250deg, rgba(26, 26, 26, 0.2) 0%, rgba(26, 26, 26, 0.88) 48%, rgba(26, 26, 26, 0.95) 100%),
    url("../images/hero-bg.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  max-width: 640px;
}

.hero-content--end {
  margin-left: auto;
  max-width: 560px;
  padding: 3rem 0 3.5rem;
  text-align: left;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-team {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 214, 10, 0.15);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
}

.hero-team a {
  color: var(--yellow);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-team a:hover {
  color: var(--white);
  text-decoration: none;
}

.hero-team span {
  color: var(--white);
  font-size: 0.9rem;
}

/* Team page — problems grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.problem-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.problem-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--yellow);
}

.problem-icon {
  font-size: 1.5rem;
}

.problem-header h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

.problem-list {
  list-style: none;
  padding: 0;
}

.problem-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.25rem;
  color: var(--gray-700);
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}

.problem-list li:last-child {
  border-bottom: none;
}

.problem-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header--left {
  text-align: left;
  max-width: 720px;
  margin-inline: 0 0 2rem;
}

.section-header--left p {
  margin-inline: 0;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--gray-700);
  max-width: 600px;
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

/* Trade rail (homepage services — distinct from card grids) */
.trade-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 3px solid var(--black);
}

.trade-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 2px solid #e5e5e5;
}

.trade-item h3 {
  font-size: 1.15rem;
  font-weight: 900;
  margin: 0;
}

.trade-item p {
  color: var(--gray-700);
  margin: 0;
  font-size: 0.95rem;
}

.trade-item a {
  font-weight: 800;
  white-space: nowrap;
}

.route-steps {
  list-style: none;
  counter-reset: route;
  display: grid;
  gap: 1rem;
  max-width: 800px;
  padding: 0;
}

.route-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  padding: 1rem 1.25rem;
  background: var(--gray-100);
  border-left: 6px solid var(--yellow);
}

.route-steps li::before {
  counter-increment: route;
  content: counter(route);
  grid-row: 1 / span 2;
  align-self: center;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.route-steps strong {
  font-size: 1.05rem;
}

.route-steps span {
  color: var(--gray-700);
  font-size: 0.95rem;
}

.quote-layout--stack {
  align-items: start;
}

.areas-layout--reverse {
  direction: rtl;
}

.areas-layout--reverse > * {
  direction: ltr;
}

.areas-list--stack {
  grid-template-columns: 1fr;
}

.app-banner--narrow {
  max-width: 820px;
}

.faq-list--wide {
  max-width: none;
}

.cta-band--left {
  text-align: left;
}

.footer-brand-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.footer-grid--rail {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.form-success[hidden] {
  display: none !important;
}

.form-success.show:not([hidden]) {
  display: block;
  margin-bottom: 1rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  border: 2px solid var(--black);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* Service areas */
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
}

.areas-list li {
  background: var(--white);
  border-left: 4px solid var(--red);
  padding: 0.75rem 1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.map-wrap {
  border: 4px solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
}

.map-wrap iframe,
.map-wrap img {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--yellow);
}

.review-stars {
  color: #fbbc04;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-text {
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.review-author {
  font-weight: 800;
  font-size: 0.9rem;
}

.review-meta {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.reviews-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* Quote form */
.quote-section {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
  color: var(--white);
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.quote-info h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.quote-info h2 span {
  color: var(--yellow);
}

.quote-info p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.quote-benefits {
  list-style: none;
}

.quote-benefits li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-weight: 600;
}

.quote-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.quote-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 4px solid var(--yellow);
}

.quote-form h3 {
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-500);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-success {
  display: none;
  background: #d1fae5;
  color: #065f46;
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  margin-top: 1rem;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0;
  border-bottom: 5px solid var(--yellow);
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

/* Content pages */
.content-page {
  padding: 3rem 0 4rem;
}

.content-body {
  max-width: 800px;
}

.content-body h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 2rem 0 0.75rem;
  color: var(--black);
}

.content-body h2:first-child {
  margin-top: 0;
}

.content-body p,
.content-body li {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.content-body ul,
.content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-body li {
  margin-bottom: 0.5rem;
}

.last-updated {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border: 4px solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-box {
  background: var(--yellow);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--black);
}

.stat-box span {
  font-size: 0.85rem;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 5px solid var(--red);
  box-shadow: var(--shadow);
}

.value-card h3 {
  font-weight: 800;
  margin-bottom: 0.5rem;
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: var(--gray-100);
  border-left: 5px solid var(--red);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
}

.contact-card h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 0.35rem;
}

.contact-card p,
.contact-card a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.contact-card a:hover {
  color: var(--red);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
}

/* CTA band */
.cta-band {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 3rem 1rem;
}

.cta-band h2 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.cta-band p {
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.cta-band .btn-secondary {
  font-size: 1.1rem;
}

/* Process / how we work */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.process-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}

.process-card::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.process-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.process-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 800;
  list-style: none;
  background: var(--gray-100);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  background: var(--yellow);
  border-bottom: 2px solid var(--black);
}

.faq-item .faq-answer {
  padding: 1rem 1.25rem;
  color: var(--gray-700);
}

.faq-item .faq-answer p {
  margin-bottom: 0.75rem;
}

.faq-item .faq-answer p:last-child {
  margin-bottom: 0;
}

/* App product highlight */
.app-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.app-feature {
  background: var(--white);
  border-left: 5px solid #7c3aed;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.app-feature h3 {
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.app-feature p {
  color: var(--gray-700);
  font-size: 0.95rem;
}

.app-banner {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 45%, #f472b6 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 4px solid var(--black);
}

.app-banner h2,
.app-banner h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.app-banner p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
}

.app-banner .btn-secondary {
  margin-right: 0.75rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  vertical-align: top;
}

.info-table th {
  background: var(--gray-100);
  font-weight: 800;
  width: 36%;
}

.content-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 1.5rem 0 0.5rem;
  color: var(--black);
}

.content-body code {
  background: var(--gray-100);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-name {
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--yellow);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--yellow);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .areas-layout,
  .quote-layout,
  .about-grid,
  .contact-layout,
  .footer-grid,
  .footer-grid--rail {
    grid-template-columns: 1fr;
  }

  .areas-list {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .trade-item {
    grid-template-columns: 1fr;
  }

  .areas-layout--reverse {
    direction: ltr;
  }

  .top-bar--split {
    flex-direction: column;
    text-align: center;
  }

  .top-bar-right {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 4px solid var(--red);
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }

  .header-cta {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .hero {
    min-height: 440px;
  }

  .hero-team {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
