:root {
  --navy: #0f172a;
  --navy-2: #1e293b;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --silver: #f1f5f9;
  --silver-2: #f8fafc;
  --white: #ffffff;
  --accent: #dc2626;
  --accent-2: #ef4444;
  --success: #10b981;
  --success-bg: rgba(16, 185, 129, 0.1);
  --shadow: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --radius: 8px;
  --radius-lg: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--silver-2);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

svg {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  right: auto;
  width: min(calc(100% - 32px), var(--container));
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.85);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--navy-2));
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: #c9d6e4;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 8px;
  color: #e8f0f8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.site-nav .nav-cta:hover {
  background: linear-gradient(135deg, #ff5757, #c21a1a);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 68svh;
  display: grid;
  align-items: center;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(8, 15, 27, 0.96), rgba(15, 23, 42, 0.78) 48%, rgba(15, 23, 42, 0.18)),
    var(--hero-image);
  background-size: cover;
  background-position: center 46%;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.85), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 128px 0 78px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  color: #d9e5f0;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: #f5fbff;
  text-decoration: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.83rem;
}

.hero .eyebrow {
  color: #fca5a5;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border: 1px solid rgba(252, 165, 165, 0.3);
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.1);
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-weight: 700;
}

h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.hero-lead {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #eef6fb;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  font: inherit;
  line-height: 1.15;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
}

.button.primary:hover {
  background: linear-gradient(135deg, #ff5757, #c21a1a);
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.35);
  transform: translateY(-2px);
}

.button.secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.button.secondary:hover {
  background: var(--silver-2);
  border-color: var(--muted);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.button:hover {
  transform: translateY(-2px);
}

.button.secondary.light {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.button.secondary.light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.button.phone-button {
  background: linear-gradient(135deg, var(--success), #059669);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  line-height: 1.25;
  min-height: 56px;
  border: none;
}

.button.phone-button:hover {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.button.phone-button .phone-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  font-weight: 700;
}

.button.phone-button .phone-num {
  font-size: 1.12rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  margin-top: 2px;
}

.trust-band {
  background: linear-gradient(180deg, var(--navy), #04162a);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-item {
  min-height: 150px;
  display: flex;
  gap: 12px;
  padding: 22px 16px;
  background: rgba(15, 23, 42, 0.98);
}

.trust-item > div {
  min-width: 0;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--success-bg);
  color: #a7f3d0;
}

.trust-item h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}

.trust-item p {
  margin: 0;
  color: #cad7e5;
  font-size: 0.9rem;
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--white);
}

.section-silver {
  background: var(--silver);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.split.reverse .copy-block {
  order: 2;
}

.copy-block p {
  margin: 0 0 16px;
  color: #3c4b5e;
  font-size: 1.04rem;
}

.benefit-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-left: 4px solid var(--accent-2);
  background: var(--silver-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 700;
}

.benefit-list svg {
  color: var(--accent-2);
  margin-top: 3px;
}

.media-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  background: var(--silver);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.media-frame img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.step-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.link-grid {
  grid-template-columns: repeat(4, 1fr);
}

.link-grid.compact {
  grid-template-columns: repeat(3, 1fr);
}

.step-card,
.link-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 900;
}

.step-card p,
.link-card span {
  margin: 0;
  color: var(--muted);
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(15, 23, 42, 0.15);
}

.link-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(220, 38, 38, 0.3);
}

.link-card:hover::before {
  opacity: 1;
}

.link-card-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--silver);
}

.link-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.34));
  pointer-events: none;
}

.link-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.link-card:hover .link-card-media img {
  transform: scale(1.045);
}

.link-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.link-card strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.link-card em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}

.link-card em svg {
  transition: transform 0.2s ease;
}

.link-card:hover em svg {
  transform: translateX(4px);
}

.map-panel {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--silver);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

details:hover {
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

details[open] {
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-section {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(105deg, rgba(8, 15, 27, 0.96), rgba(15, 23, 42, 0.84) 48%, rgba(15, 23, 42, 0.64)),
    var(--cta-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 16% 18%, rgba(220, 38, 38, 0.18), transparent 30%);
  pointer-events: none;
}

.cta-section > .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  max-width: 650px;
  color: #d4e0ec;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #edf5fb;
  font-weight: 700;
}

.quote-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form label.full-width {
  grid-column: 1 / -1;
}

.quote-form textarea {
  width: 100%;
  min-height: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form button {
  grid-column: 1 / -1;
}

.site-footer {
  background: #0b1523; /* Darker, matching the premium theme */
  color: var(--white);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}

.footer-grid p {
  color: #b9c8d8;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-grid a:not(.brand) {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: #a3b8cc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-grid a:not(.brand) svg {
  width: 10px;
  height: 10px;
  stroke-width: 3;
  color: var(--accent-2);
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer-grid a:not(.brand):hover {
  color: var(--white);
}

.footer-grid a:not(.brand):hover svg {
  transform: translateX(4px);
  opacity: 1;
  color: var(--white);
}

.footer-hours-card {
  margin-top: 24px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-hours-card h3 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.footer-hours-card h3 svg {
  color: var(--accent-2);
  width: 14px;
  height: 14px;
}

.footer-hours-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
}

.footer-hours-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #b9c8d8;
}

.footer-hours-card strong {
  color: var(--white);
  font-weight: 700;
}

.footer-hours-card .highlight {
  color: #38bdf8; /* Sleek sky blue color */
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #a3b8cc;
  font-size: 0.85rem;
}

.footer-bottom a {
  text-decoration: none;
  color: #a3b8cc;
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom svg {
  width: 13px;
  height: 13px;
  color: var(--accent-2);
}

@media (max-width: 1050px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 16px;
    min-height: 65px;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 16px;
    z-index: 2;
    flex: 0 0 44px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: space-between;
  }

  .hero {
    min-height: 45svh;
    background-image:
      linear-gradient(0deg, rgba(6, 27, 52, 0.9), rgba(6, 27, 52, 0.52)),
      var(--hero-image);
  }

  .hero-inner {
    padding: 80px 0 40px;
    max-width: 100%;
    min-width: 0;
  }

  h1 {
    max-width: 12ch;
    font-size: 2rem;
    line-height: 1.06;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
    max-width: 100%;
  }

  .button {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .button.phone-button {
    min-height: 48px;
    padding: 6px 16px;
  }

  .button.phone-button .phone-num {
    font-size: 1rem;
  }

  .trust-grid,
  .split,
  .split.reverse,
  .step-grid,
  .link-grid,
  .link-grid.compact,
  .reviews-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .copy-block {
    order: 0;
  }

  .trust-item {
    min-height: auto;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .step-card,
  .link-card {
    min-height: auto;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  h1 {
    font-size: 2rem;
  }
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 32px;
  color: var(--navy);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--navy);
}

.legal-content p {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #3c4b5e;
  line-height: 1.65;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-content a:hover {
  text-decoration: none;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  right: 18px;
  top: 55%;
  transform: translateY(-50%) scale(0.85);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.floating-actions.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1);
}

.floating-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

/* Individual button styles matching the image */
.floating-btn.phone {
  border: 2px solid #00a8ff;
  color: #00a8ff;
}

.floating-btn.contact {
  border: 2px solid #fbc531;
  color: #fbc531;
}

.floating-btn.whatsapp {
  border: 2px solid #2ecc71;
  color: #2ecc71;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 0 0 3px rgba(46, 204, 113, 0.15);
}

/* Hover effects */
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.floating-btn.whatsapp:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12), 0 0 0 5px rgba(46, 204, 113, 0.22);
}

/* Tooltip / Label */
.floating-btn .tooltip {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #ffffff;
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.floating-btn.phone .tooltip {
  border: 1px solid #00a8ff;
}

.floating-btn.contact .tooltip {
  border: 1px solid #fbc531;
}

.floating-btn.whatsapp .tooltip {
  border: 1px solid #2ecc71;
}

.floating-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 760px) {
  .floating-actions {
    right: 12px;
    gap: 8px;
  }
  
  .floating-btn {
    width: 32px;
    height: 32px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  }
  
  .floating-btn.whatsapp {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06), 0 0 0 2px rgba(46, 204, 113, 0.15);
  }
  
  .floating-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .floating-btn .tooltip {
    display: none;
  }
}

/* Success Notification Popup */
.success-notification {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  background: #10b981;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  width: min(calc(100% - 32px), 480px);
}

.success-notification.is-active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.success-notification-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.success-notification-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.1rem;
  flex: 0 0 28px;
}

.success-notification strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.success-notification p {
  margin: 2px 0 0;
  font-size: 0.85rem;
  opacity: 0.9;
  color: #ffffff;
  line-height: 1.4;
}
