/* -----------------------------------------------------------
   Patriot Plumbing — Styles
   Navy + orange, General Sans body. Clean small-business feel.
   ----------------------------------------------------------- */

/* Demo banner */
.demo-banner {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
  color: #fff;
  padding: 20px 0;
  position: relative;
  z-index: 1001;
  border-bottom: 3px solid #1d4ed8;
}
.demo-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.demo-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.demo-banner-content {
  max-width: 700px;
}
.demo-banner-headline {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 4px;
}
.demo-banner-sub {
  font-size: 0.8125rem;
  font-weight: 400;
  opacity: 0.85;
  line-height: 1.5;
  margin: 0;
}
.demo-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.demo-banner a:hover {
  opacity: 0.85;
}
.demo-banner-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 10px 20px;
}
.demo-banner-phone svg {
  flex-shrink: 0;
  opacity: 0.9;
}
.demo-banner-phone-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.demo-banner-phone-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}
.demo-banner-phone-number {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff !important;
  text-decoration: none !important;
}
.demo-banner-phone-number:hover {
  text-decoration: underline !important;
}
.demo-banner-phone-tag {
  background: #22c55e;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.demo-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.demo-banner-btn {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.demo-banner-btn:hover {
  transform: translateY(-1px);
  opacity: 1 !important;
}
.demo-banner-btn-primary {
  background: #fff;
  color: #1e40af !important;
}
.demo-banner-btn-primary:hover {
  background: #f0f4ff;
}
.demo-banner-btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.3);
}
.demo-banner-btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}
@media (max-width: 600px) {
  .demo-banner { padding: 16px 0; }
  .demo-banner-headline { font-size: 0.8125rem; }
  .demo-banner-phone { flex-wrap: wrap; justify-content: center; text-align: center; padding: 10px 16px; }
  .demo-banner-phone-info { align-items: center; }
  .demo-banner-actions { flex-direction: column; align-items: stretch; }
  .demo-banner-btn { text-align: center; }
}

:root {
  --navy: #1b3a5c;
  --navy-900: #132a44;
  --navy-700: #264d76;
  --navy-50: #eef3f9;
  --orange: #e87c3e;
  --orange-600: #d46a2c;
  --orange-50: #fdf0e6;

  --ink: #0f1b2a;
  --body: #384456;
  --muted: #6b7a8f;
  --line: #e2e7ee;
  --line-strong: #c9d2de;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-softer: #fafbfd;

  --shadow-sm: 0 1px 2px rgba(15, 27, 42, 0.06),
    0 1px 1px rgba(15, 27, 42, 0.04);
  --shadow-md: 0 6px 20px -8px rgba(15, 27, 42, 0.18),
    0 2px 4px rgba(15, 27, 42, 0.06);
  --shadow-lg: 0 24px 48px -16px rgba(15, 27, 42, 0.22),
    0 8px 16px -8px rgba(15, 27, 42, 0.1);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --container: 1200px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "General Sans", "Inter", system-ui, -apple-system, Segoe UI,
    Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(2.25rem, 4.8vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease),
    background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease);
  white-space: nowrap;
}

.btn-sm {
  padding: 9px 14px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 24px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 6px 14px -4px rgba(232, 124, 62, 0.5);
}

.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -6px rgba(232, 124, 62, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy-50);
}

.btn-block {
  width: 100%;
}

.inline-link {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.inline-link:hover {
  color: var(--orange);
}

/* ---------- Topbar ---------- */

.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 36px;
  flex-wrap: wrap;
}

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

.topbar-badge {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 640px) {
  .topbar-inner {
    justify-content: center;
    gap: 14px;
    font-size: 0.75rem;
  }
  .topbar-badge {
    display: none;
  }
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}
.logo-tag {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 26px;
  margin-left: 24px;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--body);
  padding: 6px 2px;
  transition: color 0.2s;
  position: relative;
}
.nav a:hover {
  color: var(--navy);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease);
}
.nav a:hover::after {
  transform: scaleX(1);
}

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

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  padding: 4px 6px;
}
.phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.phone-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.phone-number {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 4px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--line);
  background: white;
}
.mobile-nav a {
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  color: var(--body);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-call {
  color: var(--orange) !important;
  font-weight: 700 !important;
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 64px;
    gap: 12px;
  }
  .logo-tag {
    display: none;
  }
  .phone-link {
    display: none;
  }
  .header-quote {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav.open {
    display: flex;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(232, 124, 62, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(27, 58, 92, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, transparent 0%, transparent 100%);
  pointer-events: none;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(27, 58, 92, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(27, 58, 92, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at top right, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  background: var(--navy-50);
  border: 1px solid rgba(27, 58, 92, 0.1);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.18);
}

.hero-accent {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  margin-top: 24px;
  font-size: 1.125rem;
  color: var(--body);
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.hero-trust li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 16px;
  border-left: 2px solid var(--orange);
}
.hero-trust strong {
  font-size: 1.375rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-trust span {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Hero card */
.hero-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
}
.hero-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.pulse {
  width: 12px;
  height: 12px;
  background: #ef4444;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #ef4444;
  opacity: 0.3;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.hcard-title {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.hcard-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}
.hero-card-time {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--line);
}
.big-number {
  font-size: 4.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
}
.big-label {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.3;
}
.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--body);
}
.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-list svg {
  color: #16a34a;
  flex-shrink: 0;
}
.hero-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}
.hcard-badge {
  background: var(--navy-50);
  color: var(--navy);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-card {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 48px 0 64px;
  }
  .hero-trust {
    gap: 20px;
  }
  .hero-trust strong {
    font-size: 1.15rem;
  }
  .hero-cta .btn {
    width: 100%;
  }
}

/* ---------- Trust bar ---------- */

.trust-bar {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.875rem;
  color: var(--body);
  font-weight: 500;
}
.trust-logos .dot {
  color: var(--line-strong);
}
@media (max-width: 640px) {
  .trust-logos {
    font-size: 0.8rem;
    gap: 8px;
  }
}

/* ---------- Sections ---------- */

.section {
  padding: 96px 0;
}
@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-eyebrow-light {
  color: #f0a274;
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-lede {
  margin-top: 20px;
  font-size: 1.075rem;
  color: var(--body);
}
.section-lede-light {
  color: rgba(255, 255, 255, 0.75);
}

.section-soft {
  background: var(--bg-soft);
}

/* ---------- Services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  position: relative;
}
.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--navy-50);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 28px;
  height: 28px;
}
.service-icon-red {
  background: #fdecec;
  color: #c42b2b;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--body);
}
.service-list {
  list-style: none;
  padding: 16px 0 0;
  margin: 16px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--muted);
}
.service-list li {
  position: relative;
  padding-left: 16px;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.services-foot {
  margin-top: 40px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}
.services-foot .inline-link {
  margin-left: 6px;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Why Us (dark) ---------- */

.section-dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 15% 25%,
      rgba(232, 124, 62, 0.12) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 90%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.section-dark h2,
.section-dark h3 {
  color: white;
}
.section-dark .section-head {
  position: relative;
}

.why-wrap {
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.why-item {
  padding: 36px 28px 36px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.why-item:last-child {
  border-right: none;
  padding-right: 0;
}
.why-item:not(:first-child) {
  padding-left: 28px;
}
.why-num {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.why-item p {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-item {
    padding: 28px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .why-item:nth-child(2n) {
    border-right: none;
  }
  .why-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}
@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-item {
    border-right: none !important;
  }
  .why-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* ---------- Area ---------- */

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.area-copy h2 {
  margin-bottom: 0;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
}
.area-list span {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.area-list span:hover {
  background: var(--bg-soft);
}
.area-home {
  background: var(--navy-50) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}
.area-home small {
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--navy);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .area-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 520px) {
  .area-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Reviews ---------- */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review {
  background: white;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  margin-bottom: 16px;
}
.stars svg {
  width: 18px;
  height: 18px;
}

.review blockquote {
  margin: 0 0 24px;
  font-size: 0.975rem;
  color: var(--body);
  line-height: 1.65;
  flex: 1;
  quotes: none;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.avatar-1 {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.avatar-2 {
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
}
.avatar-3 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}
.review-meta strong {
  display: block;
  color: var(--ink);
  font-size: 0.925rem;
}
.review-meta span {
  font-size: 0.8rem;
  color: var(--muted);
}

.reviews-foot {
  margin-top: 40px;
  text-align: center;
}
.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--body);
  box-shadow: var(--shadow-sm);
}

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

/* ---------- Contact ---------- */

.section-contact {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 70% 30%,
    rgba(232, 124, 62, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.section-contact h2,
.section-contact h3 {
  color: white;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-copy {
  padding-right: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
.contact-list a,
.contact-list li > span:not(.contact-label) {
  font-size: 1.0625rem;
  color: white;
  font-weight: 500;
}
.contact-list a:hover {
  color: var(--orange);
}

/* Form */
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--body);
  box-shadow: var(--shadow-lg);
}
.form-header {
  margin-bottom: 24px;
}
.form-header h3 {
  color: var(--ink);
  font-size: 1.4rem;
}
.form-header p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 6px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.contact-form label > span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.12);
}
.contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-row label {
  margin-bottom: 14px;
}

.form-fineprint {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-success {
  margin-top: 14px;
  padding: 12px 14px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-copy {
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px;
  }
}

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.2fr;
  gap: 48px;
  padding: 64px 24px 40px;
}
.footer-brand .logo-name {
  color: white;
}
.footer-brand .logo-tag {
  color: rgba(255, 255, 255, 0.55);
}
.footer-tagline {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: 320px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-cols h4 {
  color: white;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}
.footer-cols a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer-cols a:hover {
  color: var(--orange);
}

.footer-cta-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-cta-block strong {
  color: white;
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a:hover {
  color: var(--orange);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 560px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Chat widget ---------- */

.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 28px -8px rgba(27, 58, 92, 0.55),
    0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.chat-widget:hover {
  transform: translateY(-2px);
  background: var(--navy-700);
  box-shadow: 0 16px 34px -8px rgba(27, 58, 92, 0.6),
    0 6px 14px rgba(0, 0, 0, 0.2);
}
.chat-icon {
  width: 22px;
  height: 22px;
}
.chat-ping {
  position: absolute;
  top: 6px;
  right: 10px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid var(--navy);
}
.chat-ping::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.5;
  animation: pulse 2s ease-out infinite;
}

@media (max-width: 560px) {
  .chat-widget {
    bottom: 16px;
    right: 16px;
    padding: 14px 18px 14px 16px;
    font-size: 0.875rem;
  }
  .chat-label {
    display: none;
  }
  .chat-widget {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }
}
