﻿:root {
  --font-display: "Oswald", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --primary: #e73b4a;
  --secondary: #0b3f8f;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

a {
  text-decoration: none;
}

.container {
  width: min(1200px, 100% - 2rem);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

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

.bg-white {
  background: #fff;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

p {
  margin: 0;
}

.mt-40 {
  margin-top: 2.5rem;
}

.center {
  text-align: center;
}

.line {
  width: 6rem;
  height: 4px;
  background: var(--primary);
  margin: 1rem auto 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 0.75rem 1.4rem;
  transition: all 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(231, 59, 74, 0.25);
}

.btn-primary:hover {
  background: #d92f3f;
}

.btn-secondary {
  color: #fff;
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: #073372;
}

.btn-lg {
  font-size: clamp(0.95rem, 2vw, 1.5rem);
  padding: 0.9rem 1.8rem;
}

@keyframes urgent-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

.pulse {
  animation: urgent-pulse 2s infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: all 0.25s ease;
}

.site-header.scrolled {
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 0.55rem 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-main {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.brand-main span {
  color: #fff;
}

.brand-sub {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #e5e7eb;
  font-weight: 700;
}

.site-header.scrolled .brand-main {
  color: var(--secondary);
}

.site-header.scrolled .brand-main span {
  color: var(--primary);
}

.site-header.scrolled .brand-sub {
  color: #4b5563;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav a {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

.desktop-nav > a:not(.btn):hover {
  color: var(--primary);
}

.site-header.scrolled .desktop-nav > a:not(.btn) {
  color: #1f2937;
}

.mobile-toggle {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0.25rem;
}

.site-header.scrolled .mobile-toggle {
  color: var(--secondary);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #eef2f7;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  padding: 0.7rem 1rem 1rem;
}

.mobile-menu.open {
  display: grid;
  gap: 0.6rem;
}

.mobile-menu a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-menu .btn {
  width: 100%;
  font-size: 1rem;
  margin-top: 0.4rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(11, 63, 143, 0.92), rgba(11, 63, 143, 0.82), rgba(11, 63, 143, 0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 1.1px;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 1rem;
  margin-bottom: 1.1rem;
  color: #fff;
  font-size: clamp(2.4rem, 8vw, 6rem);
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.45);
}

.hero h1 span {
  color: #fff;
}

.hero p {
  margin: 0 0 1.3rem;
  color: #e5e7eb;
  font-size: clamp(1.05rem, 2vw, 1.7rem);
  line-height: 1.45;
}

.hero .btn-lg {
  font-size: clamp(1.1rem, 2.6vw, 1.75rem);
  padding: 1.05rem 2.2rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.9rem;
  margin-top: 1.5rem;
}

.hero-points div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
}

.hero-points svg {
  color: var(--primary);
  width: 22px;
  height: 22px;
}

.trust-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(84, 118, 184, 0.46);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.75rem 0;
  display: none;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
}

.trust-item svg {
  color: var(--primary);
  width: 30px;
  height: 30px;
}

.trust-item p {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 0.74rem;
  opacity: 0.95;
  line-height: 1.1;
}

.urgency-banner {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  padding: 0.8rem;
  animation: fadePulse 1.5s infinite;
}

@keyframes fadePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.78;
  }
}

.section-head {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-head p {
  font-size: 1.08rem;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.55;
}

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

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  border-color: #f8a0a7;
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #eff6ff;
  display: grid;
  place-items: center;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 1.32rem;
  letter-spacing: 0.2px;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #4b5563;
  font-size: 0.99rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.service-card a {
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.split-img-wrap {
  position: relative;
}

.split-img {
  width: 100%;
  height: clamp(320px, 42vw, 500px);
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.18);
}

.quote-box {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.94);
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  padding: 0.9rem;
}

.quote-box p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.stars {
  color: #eab308;
  letter-spacing: 1px;
  font-size: 1.2rem;
  line-height: 1;
}

.stars.red {
  color: var(--primary);
}

.split-content h2 span {
  color: var(--primary);
}

.split-content > p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.steps-list {
  margin: 1.7rem 0;
  display: grid;
  gap: 1rem;
}

.step-item {
  display: flex;
  gap: 0.8rem;
}

.step-item span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fee2e2;
  color: var(--primary);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.step-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.step-item p {
  color: var(--muted);
}

.brands {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.brands p {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
}

.brands img {
  width: 100%;
  object-fit: contain;
}

.reviews {
  background: linear-gradient(to bottom, #fff, #f8fafc);
}

.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.review-controls button {
  border: 1px solid #f3c4c9;
  background: #fff;
  color: var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.review-controls button:hover {
  background: var(--primary);
  color: #fff;
}

.reviews-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.4rem;
}

.reviews-row::-webkit-scrollbar {
  height: 8px;
}

.reviews-row::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 999px;
}

.review-card {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.review-quote {
  position: absolute;
  right: 16px;
  top: 16px;
  color: rgba(231, 59, 74, 0.28);
  width: 22px;
  height: 22px;
}

.review-card p {
  color: #374151;
  margin: 0.8rem 0;
}

.review-meta {
  border-top: 1px solid #f3f4f6;
  padding-top: 0.7rem;
  display: grid;
  gap: 0.15rem;
}

.review-meta strong {
  color: var(--secondary);
}

.review-meta span {
  font-size: 0.9rem;
  color: #6b7280;
}

.review-meta em {
  color: var(--primary);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 700;
}

.how {
  position: relative;
  overflow: hidden;
  background: var(--secondary);
  color: #fff;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.shape-a {
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.16);
  right: -120px;
  top: -110px;
}

.shape-b {
  width: 360px;
  height: 360px;
  background: rgba(231, 59, 74, 0.3);
  left: -170px;
  bottom: -140px;
}

.how-content {
  position: relative;
  z-index: 2;
}

.section-head-light p {
  color: #dbeafe;
  font-size: 1.1rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  max-width: 1050px;
  margin: 0 auto;
}

.how-grid article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.how-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--primary);
  display: grid;
  place-items: center;
}

.how-icon svg {
  width: 32px;
  height: 32px;
}

.how-grid h3 {
  margin-bottom: 0.5rem;
}

.how-grid p {
  color: #dbeafe;
}

.area-split {
  grid-template-columns: 1fr;
}

.map-wrap {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #e5e7eb;
}

.map-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%);
}

.map-wrap:hover img {
  filter: grayscale(0%);
}

.map-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--secondary);
  max-width: calc(100% - 1.5rem);
  text-align: left;
}

.map-pill svg {
  color: var(--primary);
}

.areas-grid {
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1rem;
}

.areas-grid li {
  position: relative;
  padding-left: 1rem;
  font-weight: 600;
}

.areas-grid li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 9px;
}

.note {
  background: #fefce8;
  border-left: 4px solid #facc15;
  color: #854d0e;
  padding: 0.7rem 0.8rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer {
  background: #111827;
  color: #9ca3af;
  padding: 3rem 0;
  border-top: 1px solid #1f2937;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1f2937;
  padding-bottom: 1.5rem;
}

.footer-brand {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.2rem;
  border-bottom: 1px solid #1f2937;
  padding: 1.5rem 0;
}

.footer-grid h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.footer-grid p,
.footer-grid a {
  color: #9ca3af;
  display: block;
  margin-bottom: 0.35rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-legal {
  background: linear-gradient(180deg, #081634 0%, #071129 100%);
  border-radius: 10px;
  padding: 1rem;
}

.footer-legal h4 {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
}

.footer-legal a {
  color: #bfc8d6;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.footer-legal a:hover {
  color: #fff;
}

.copyright {
  text-align: center;
  font-size: 0.85rem;
  padding-top: 1rem;
}

.mobile-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.95rem 1.45rem;
  font-size: 1.25rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
  .hero-content {
    padding-top: 1.5rem;
  }
}

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

  .trust-bar {
    display: block;
  }

  .footer-top {
    flex-direction: row;
  }

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

  .reviews-row {
    gap: 1.2rem;
  }

  .review-card {
    flex-basis: calc(50% - 0.6rem);
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-toggle,
  .mobile-menu,
  .mobile-call {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .area-split {
    grid-template-columns: 1fr 1fr;
  }

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

  .review-card {
    flex-basis: calc((100% - 2.4rem) / 3);
  }
}

.policy-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f8fafc;
}

.policy-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(8px);
}

.policy-header .brand {
  align-items: center;
  padding: 1rem 0;
}

.policy-header .brand-main {
  color: var(--secondary);
}

.policy-header .brand-main span {
  color: var(--primary);
}

.policy-header .brand-sub {
  color: #4b5563;
}

.policy-main {
  flex: 1;
  width: min(900px, 100% - 2rem);
  margin: 2.5rem auto 3rem;
}

.policy-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.policy-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.policy-date {
  color: #6b7280;
  margin-bottom: 1.2rem;
}

.policy-section {
  margin-top: 1.35rem;
}

.policy-section h2 {
  color: var(--secondary);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: 0.4rem;
}

.policy-card p {
  color: #374151;
  line-height: 1.7;
}

.policy-card ul {
  margin: 0.5rem 0 0.5rem 1.2rem;
}

.policy-card li {
  margin-bottom: 0.25rem;
}

.back-home {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.back-home:hover {
  color: #d92f3f;
}
