/* ===========================
   Prestige Auto FL - Global Styles
   =========================== */

/* CSS Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background-color: #f3f4f6;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

/* Color Palette */
:root {
  --color-primary: #0b3b6b; /* Dark Blue */
  --color-primary-dark: #06233f;
  --color-accent: #f59e0b; /* Accent Gold/Orange */
  --color-accent-dark: #b45309;
  --color-bg: #f3f4f6; /* Light Gray */
  --color-white: #ffffff;
  --color-muted: #6b7280;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.15);
  --radius-lg: 18px;
  --radius-full: 999px;
  --max-width: 1120px;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 3.5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-dark);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2rem;
  color: var(--color-primary-dark);
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* ===========================
   Header & Navigation
   =========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.97));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding: 0.7rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 18px;
  background: radial-gradient(circle at 20% 0%, #f97316, #f59e0b 35%, #0ea5e9 80%);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.4);
}

.logo-mark svg {
  width: 26px;
  height: 26px;
  color: var(--color-white);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.logo-subtitle {
  font-size: 0.8rem;
  color: #9ca3af;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #e5e7eb;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #e5e7eb;
  border-radius: 999px;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: #e5e7eb;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #d1d5db;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #fbbf24, #f97316);
  transition: width 0.22s ease;
}

.nav-link:hover {
  color: #fef3c7;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #fef3c7;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #0b1120;
  background: linear-gradient(135deg, #fde68a, #fb923c);
  box-shadow: 0 10px 30px rgba(251, 146, 60, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(251, 146, 60, 0.6);
  background: linear-gradient(135deg, #facc15, #f97316);
}

.nav-cta svg {
  width: 15px;
  height: 15px;
}

/* ===========================
   Hero (Home)
   =========================== */

.hero {
  background: radial-gradient(circle at top left, #0f172a 0, #020617 60%);
  color: var(--color-white);
  padding-top: 3.25rem;
  padding-bottom: 3.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.06), transparent 55%);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
  margin-bottom: 0.85rem;
}

.hero-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #f97316, #facc15);
}

.hero-title {
  font-size: clamp(2.3rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.9rem;
}

.hero-title span {
  background: linear-gradient(to right, #fde68a, #fb923c);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #e5e7eb;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: #e5e7eb;
}

.hero-badge strong {
  font-weight: 600;
  color: #facc15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0b1120;
  background: linear-gradient(135deg, #fde68a, #fb923c);
  box-shadow: 0 24px 55px rgba(248, 250, 252, 0.19);
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #facc15, #f97316);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.7);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.72rem 1.45rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2));
  color: #e5e7eb;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: #f97316;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.35));
}

.hero-footnote {
  font-size: 0.8rem;
  color: #9ca3af;
}

.hero-footnote strong {
  color: #e5e7eb;
}

.hero-media-card {
  background: radial-gradient(circle at top left, #0f172a, #020617 55%);
  border-radius: 24px;
  padding: 1.2rem 1.2rem 1.1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.55);
  position: relative;
  overflow: hidden;
}

.hero-tag {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-tag span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e, #15803d);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.25);
}

.hero-image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.hero-image-wrapper img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.hero-metric-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-top: 1rem;
}

.hero-metric {
  display: flex;
  flex-direction: column;
}

.hero-metric strong {
  font-size: 1.2rem;
  color: #fef3c7;
}

.hero-metric span {
  font-size: 0.8rem;
  color: #9ca3af;
}

.hero-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-pill {
  font-size: 0.76rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px dashed rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

/* ===========================
   Why Choose Us
   =========================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.why-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.35rem 1.5rem;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(148, 163, 184, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.16);
  border-color: rgba(249, 115, 22, 0.9);
}

.why-icon {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: radial-gradient(circle at top left, #eff6ff, #dbeafe);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.why-title {
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--color-primary-dark);
}

.why-text {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ===========================
   Services Preview (Home) & Services Page
   =========================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.2rem 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 8px 28px rgba(148, 163, 184, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.9);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.23);
}

.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at top left, #fffbeb, #fed7aa);
  display: grid;
  place-items: center;
  color: #b45309;
}

.service-title {
  font-weight: 600;
  color: var(--color-primary-dark);
}

.service-text {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.service-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.service-chip {
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  background-color: #eff6ff;
  color: #1d4ed8;
  font-weight: 500;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.services-page-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 12px 38px rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.services-page-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.2);
}

.services-page-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at top left, #eff6ff, #dbeafe);
  display: grid;
  place-items: center;
  color: var(--color-primary);
}

.services-page-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.services-page-text {
  font-size: 0.92rem;
  color: var(--color-muted);
}

.services-page-note {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: auto;
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
  padding-top: 0.65rem;
}

/* ===========================
   Customer Trust
   =========================== */

.trust-section {
  background: linear-gradient(to bottom right, #0b1120, #020617);
  color: #e5e7eb;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
  gap: 2rem;
  align-items: center;
}

.trust-heading {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}

.trust-text {
  font-size: 0.95rem;
  color: #9ca3af;
  max-width: 26rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.trust-badge {
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.trust-metric {
  padding: 1rem 1rem 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.9), rgba(15, 23, 42, 0.8));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

.trust-metric strong {
  display: block;
  font-size: 1.4rem;
  color: #fef3c7;
  margin-bottom: 0.25rem;
}

.trust-metric span {
  font-size: 0.8rem;
  color: #cbd5f5;
}

/* ===========================
   CTA Banner
   =========================== */

.cta-banner {
  padding: 2.6rem 0 3rem;
}

.cta-card {
  background: linear-gradient(120deg, #0b3b6b, #1d4ed8);
  border-radius: 24px;
  padding: 1.8rem 1.8rem 1.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  color: #e5e7eb;
  box-shadow: 0 28px 65px rgba(30, 64, 175, 0.8);
  border: 1px solid rgba(191, 219, 254, 0.5);
}

.cta-text h2 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.cta-text p {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(191, 219, 254, 0.9);
  background: rgba(15, 23, 42, 0.1);
  color: #e5e7eb;
  font-size: 0.86rem;
  font-weight: 500;
}

.btn-ghost-light:hover {
  background: rgba(15, 23, 42, 0.22);
}

/* ===========================
   About Page
   =========================== */

.page-hero {
  background: linear-gradient(to right, #0b1120, #020617);
  color: #e5e7eb;
  padding: 2.6rem 0 2.8rem;
}

.page-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 1.8rem;
  align-items: center;
}

.page-hero-heading {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.page-hero-subtitle {
  font-size: 0.95rem;
  color: #9ca3af;
  max-width: 26rem;
}

.breadcrumb {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.6rem;
}

.breadcrumb a {
  color: #e5e7eb;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.78rem;
  color: #e5e7eb;
  margin-bottom: 0.6rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #22c55e, #15803d);
}

.page-hero-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.65);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.page-hero-media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.about-columns {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.3rem;
}

.about-block h2 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  color: var(--color-primary-dark);
}

.about-block p {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.about-list {
  margin-top: 0.8rem;
}

.about-list li {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
  display: flex;
  gap: 0.4rem;
}

.about-list li span {
  color: #16a34a;
}

.about-highlight {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 12px 35px rgba(148, 163, 184, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.about-highlight h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--color-primary-dark);
}

.about-highlight p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ===========================
   Forms & Contact / Subscribe / Unsubscribe
   =========================== */

.form-section {
  padding: 3rem 0 3.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 2.2rem;
}

.form-card {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 1.8rem 1.6rem 1.9rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.55);
}

.form-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
  color: var(--color-primary-dark);
}

.form-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 1.1rem;
}

.form-grid-side {
  font-size: 0.9rem;
  color: var(--color-muted);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-meta {
  display: grid;
  gap: 0.75rem;
}

.contact-meta-item strong {
  display: block;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}

.form-label span {
  color: #ef4444;
  margin-left: 0.1rem;
}

.form-control {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
  background-color: #f9fafb;
}

.form-control:focus {
  border-color: rgba(37, 99, 235, 0.9);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.7);
  background-color: #ffffff;
}

.form-control.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.7);
}

.form-control.success {
  border-color: #22c55e;
}

.form-help {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.error-message {
  font-size: 0.78rem;
  color: #b91c1c;
  margin-top: 0.25rem;
  min-height: 0.9rem;
}

.form-actions {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.76rem;
  color: var(--color-muted);
}

.form-success {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: #166534;
}

.form-error-global {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: #b91c1c;
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* ===========================
   Legal Pages
   =========================== */

.legal-section {
  padding: 3rem 0;
}

.legal-card {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 1.8rem 1.7rem 2rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.45);
}

.legal-card h1 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  color: var(--color-primary-dark);
}

.legal-updated {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-bottom: 1.2rem;
}

.legal-card h2 {
  font-size: 1.1rem;
  margin-top: 1.4rem;
  margin-bottom: 0.4rem;
  color: var(--color-primary-dark);
}

.legal-card p,
.legal-card li {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.legal-list {
  margin-left: 1.1rem;
  margin-top: 0.4rem;
}

.legal-list li {
  list-style: disc;
  margin-bottom: 0.3rem;
}

/* ===========================
   Footer
   =========================== */

.site-footer {
  background-color: #020617;
  color: #9ca3af;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.6rem 0 1.8rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.82rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-company {
  font-weight: 600;
  color: #e5e7eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.16s ease;
}

.footer-links a:hover {
  color: #e5e7eb;
}

/* ===========================
   Utility & Layout Helpers
   =========================== */

.text-center {
  text-align: center;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background-color: #e5e7eb;
  color: #374151;
  font-size: 0.78rem;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 992px) {
  .hero-grid,
  .trust-grid,
  .page-hero-content,
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-page-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header-inner {
    padding-inline: 1.1rem;
  }
}

@media (max-width: 768px) {
  .site-header-inner {
    padding-block: 0.6rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 52px 0 auto 0;
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(148, 163, 184, 0.5);
    padding: 0.8rem 1.4rem 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-image-wrapper img {
    height: 220px;
  }

  .why-grid,
  .services-grid,
  .services-page-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-card {
    padding: 1.6rem 1.4rem 1.8rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .trust-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-card {
    align-items: flex-start;
  }
}

