/* ============================================
   A-TEAM CONTRACTING - Site Styles
   Brand: Bold industrial, orange + blue, built to convert
   ============================================ */

/* CSS Variables */
:root {
  --orange: #F58220;
  --orange-deep: #B85408;     /* Accessible for white text on orange backgrounds */
  --orange-dark: #8E4106;     /* Hover/active state */
  --blue: #1B5B98;
  --blue-dark: #0f3d6b;
  --blue-deep: #08243f;
  --white: #FFFFFF;
  --soft-white: #F8F8F8;
  --cream: #FAF7F2;
  --charcoal: #1A1A1A;
  --gray-700: #2D2D2D;
  --gray-500: #6B6B6B;
  --gray-300: #D8D8D8;
  --gray-100: #EEEEEE;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;

  --max-width: 1280px;
  --section-pad: clamp(4rem, 8vw, 7rem);
  --radius: 6px;

  --shadow-sm: 0 2px 8px rgba(8, 36, 63, 0.08);
  --shadow-md: 0 10px 30px rgba(8, 36, 63, 0.12);
  --shadow-lg: 0 20px 50px rgba(8, 36, 63, 0.18);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

picture {
  display: block;
}

/* Picture wrappers should fill their containers */
.hero-image-wrap picture,
.about-photo-wrap picture,
.gallery-item picture {
  width: 100%;
  height: 100%;
}

.hero-image-wrap picture img,
.about-photo-wrap picture img,
.gallery-item picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--orange); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 12px 20px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; color: var(--white); }

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

/* Typography */
.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: var(--charcoal);
}

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  color: var(--white);
}

h2, .h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  margin-bottom: 1rem;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h3, .h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--orange-deep);
  margin-bottom: 1rem;
  display: inline-block;
}

.script-accent {
  font-family: var(--font-script);
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange-deep);
  color: var(--white);
  box-shadow: 0 4px 0 var(--orange-dark), 0 8px 20px rgba(184, 84, 8, 0.35);
}

.btn-primary:hover {
  background: var(--orange-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--orange-dark), 0 12px 28px rgba(184, 84, 8, 0.45);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--orange-dark), 0 2px 8px rgba(184, 84, 8, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.btn-block { width: 100%; }

/* Phone CTA */
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--charcoal);
}

.phone-btn svg {
  flex-shrink: 0;
}

/* ============================================
   UTILITY BAR
   ============================================ */
.utility-bar {
  background: var(--blue-deep);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.utility-bar a {
  color: var(--white);
  font-weight: 700;
}

.utility-bar a:hover { color: var(--orange); }

.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 600px) {
  .utility-bar { font-size: 0.78rem; }
  .utility-bar .container { justify-content: center; }
  .utility-right { display: none; }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-link img {
  height: 56px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--blue);
  text-transform: uppercase;
}

.logo-text span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--blue);
}

.main-nav a:hover::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-toggle span {
  width: 26px;
  height: 3px;
  background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 360px);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 99;
  }
  .main-nav.open { right: 0; }
  .main-nav a { font-size: 1.05rem; }
  .mobile-toggle { display: flex; z-index: 101; }
  .header-cta .btn { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: var(--blue-deep);
  color: var(--white);
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(5rem, 9vw, 7rem);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(245, 130, 32, 0.22), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(27, 91, 152, 0.6), transparent 60%),
    linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-dark) 50%, var(--blue-deep) 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 130, 32, 0.15);
  border: 1px solid rgba(245, 130, 32, 0.4);
  color: var(--orange);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .orange-line {
  color: var(--orange);
  display: block;
}

.hero h1 .underline {
  position: relative;
  display: inline-block;
}

.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 6px;
  background: var(--orange);
  border-radius: 4px;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.6;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-proof-item strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
  line-height: 1;
}

.hero-proof-item span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero Image / Card */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-left: auto;
  width: 100%;
}

@media (max-width: 900px) {
  .hero-visual { margin: 0 auto; max-width: 420px; }
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  background: var(--gray-300);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--orange-deep);
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  padding: 22px 18px;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  transform: rotate(8deg);
  box-shadow: var(--shadow-md);
  z-index: 5;
  border: 4px solid var(--white);
}

.hero-badge strong {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

.hero-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--charcoal);
  color: var(--white);
  padding: 28px 0;
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item svg {
  flex-shrink: 0;
  color: var(--orange);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.trust-item span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

@media (max-width: 800px) {
  .trust-strip .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .trust-strip .container { grid-template-columns: 1fr; }
}

/* ============================================
   SECTION BASE
   ============================================ */
section {
  padding: var(--section-pad) 0;
}

.section-cream { background: var(--cream); }
.section-blue { background: var(--blue-deep); color: var(--white); }
.section-blue h2 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-top: 12px;
}

.section-blue .section-header p { color: rgba(255, 255, 255, 0.8); }

.section-header h2 .accent-orange { color: var(--orange); }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-link {
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover { color: var(--orange); gap: 10px; }

/* ============================================
   BEFORE / AFTER GALLERY
   ============================================ */
.gallery {
  background: var(--soft-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-grid.featured {
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "big small1 small2"
    "big small3 small4";
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item.big {
  grid-area: big;
  aspect-ratio: auto;
}
.gallery-item.small1 { grid-area: small1; }
.gallery-item.small2 { grid-area: small2; }
.gallery-item.small3 { grid-area: small3; }
.gallery-item.small4 { grid-area: small4; }

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(to top, rgba(8, 36, 63, 0.92), transparent);
  color: var(--white);
}

.gallery-label strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.gallery-label span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.gallery-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange-deep);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .gallery-grid.featured {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "big big"
      "small1 small2"
      "small3 small4";
  }
}

@media (max-width: 600px) {
  .gallery-grid.featured {
    grid-template-columns: 1fr;
    grid-template-areas:
      "big"
      "small1"
      "small2"
      "small3"
      "small4";
  }
}

/* ============================================
   ABOUT (ANTHONY'S STORY)
   ============================================ */
.about {
  background: var(--cream);
  position: relative;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
}

.about-photo-wrap {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--blue);
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-tag {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: var(--orange-deep);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 6px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-md);
  z-index: 2;
  max-width: 240px;
  line-height: 1.1;
}

.about-content .eyebrow { color: var(--orange-deep); }

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--gray-700);
}

.about-content p strong {
  color: var(--charcoal);
}

.signature {
  margin-top: 28px;
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--blue);
  line-height: 1;
}

.signature-sub {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

@media (max-width: 800px) {
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
}

.process-step {
  position: relative;
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(6px);
}

.process-num {
  position: absolute;
  top: -22px;
  left: 28px;
  background: var(--orange-deep);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.process-step h3 {
  color: var(--white);
  margin: 16px 0 12px;
  font-size: 1.3rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--gray-100);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--orange);
}

.review-text {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}

.review-text::before {
  content: '"';
  font-family: var(--font-display);
  color: var(--orange);
  font-size: 4rem;
  line-height: 0;
  vertical-align: -25px;
  margin-right: 6px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.reviewer strong {
  display: block;
  font-size: 0.98rem;
  color: var(--charcoal);
}

.reviewer span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ============================================
   CTA / QUOTE FORM
   ============================================ */
.cta-section {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(245, 130, 32, 0.25), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(27, 91, 152, 0.4), transparent 60%);
}

.cta-section .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .cta-section .container { grid-template-columns: 1fr; gap: 40px; }
}

.cta-text h2 { color: var(--white); }
.cta-text .accent-orange { color: var(--orange); }
.cta-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-features {
  list-style: none;
  margin: 24px 0 8px;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.cta-features li svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* Quote Form */
.quote-form {
  background: var(--white);
  color: var(--charcoal);
  padding: 36px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.quote-form h3 {
  margin-bottom: 8px;
  font-size: 1.6rem;
  color: var(--charcoal);
}

.quote-form > p {
  color: var(--gray-500);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--gray-100);
  border-radius: 6px;
  background: var(--soft-white);
  transition: border-color 0.2s ease, background 0.2s ease;
  color: var(--charcoal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 14px;
  text-align: center;
  line-height: 1.4;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.93rem;
}

.footer-contact-item svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-tagline {
  font-family: var(--font-script);
  color: var(--orange);
  font-size: 1.3rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-deep);
  color: var(--white);
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.error-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(245, 130, 32, 0.2), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(27, 91, 152, 0.5), transparent 50%);
}

.error-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.error-num {
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 16rem);
  line-height: 0.9;
  color: var(--orange);
  margin-bottom: 16px;
  text-shadow: 6px 6px 0 var(--blue);
}

.error-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--white);
}

.error-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.error-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.no-bullets { list-style: none; padding: 0; }
