/* ===================================================
   PRESTIGE MOBILE VASCULAR ACCESS
   Global Design System
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --red:        #990000;
  --red-dark:   #6e0000;
  --red-light:  #c0392b;
  --red-pale:   #fff0f0;
  --white:      #ffffff;
  --off-white:  #f9f9f9;
  --gray-100:   #f4f4f4;
  --gray-200:   #e8e8e8;
  --gray-400:   #aaa;
  --gray-600:   #666;
  --gray-800:   #2a2a2a;
  --dark:       #111111;

  --font-body:  'Inter', sans-serif;
  --font-head:  'Inter', sans-serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.16);
  --shadow-red: 0 8px 32px rgba(153,0,0,.25);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --nav-h:      76px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p  { color: var(--gray-600); }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-red   { color: var(--red); }
.text-center{ text-align: center; }
.badge {
  display: inline-block;
  background: var(--red-pale);
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(153,0,0,.35);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: var(--red-pale);
  transform: translateY(-2px);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn svg { flex-shrink: 0; }

/* ── Section Headers ── */
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.divider {
  width: 60px; height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 16px auto 0;
}
.divider-left { margin: 16px 0 0; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* ────────────────────────────────────────────────
   NAVIGATION
   ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-800);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red); }
.nav-cta { margin-left: 12px; }

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--red); background: var(--red-pale); }
.mobile-menu .btn { margin-top: 12px; text-align: center; justify-content: center; }

/* ── Page Top Offset ── */
.page-top { padding-top: var(--nav-h); }

/* ────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 85% 30%, rgba(227, 24, 55, 0.16) 0%, rgba(13, 23, 38, 0.6) 45%, rgba(6, 8, 14, 0.98) 85%),
    linear-gradient(180deg, #070a12 0%, #0c1220 50%, #06080e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content {
  color: var(--white);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.hero-tag span { width: 8px; height: 8px; background: #4cff91; border-radius: 50%; animation: blink 1.5s ease-in-out infinite; box-shadow: 0 0 8px #4cff91; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-content h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-content h1 em {
  font-style: normal;
  color: rgba(255,255,255,.8);
  font-weight: 300;
}
.hero-content p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-item h3 {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-stat-item p {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  line-height: 1.35;
}

/* ── Hero Showcase Photo Card ── */
.hero-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-showcase-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 26px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
  box-shadow: 
    0 30px 70px -15px rgba(0,0,0,0.85),
    0 0 50px rgba(227, 24, 55, 0.18);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hero-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 35px 80px -15px rgba(0,0,0,0.9),
    0 0 65px rgba(227, 24, 55, 0.28);
}
.hero-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}
.hero-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  border-radius: 18px;
  transition: transform 0.5s ease;
}
.hero-showcase-card:hover .hero-img-wrap img {
  transform: scale(1.02);
}
.hero-img-glow {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
  pointer-events: none;
}
.hero-showcase-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 15, 26, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.55);
  z-index: 4;
}
.hero-showcase-badge-top {
  top: 26px;
  right: 26px;
}
.hero-showcase-badge-bottom {
  bottom: 26px;
  left: 26px;
}
.pulse-indicator {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 10px #ef4444;
  animation: pulse-dot 1.8s infinite ease-in-out;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.6; }
}

/* Hero ECG Continuous Glowing Animation */
.hero-ecg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}
.ecg-track {
  stroke: rgba(255, 35, 35, 0.25);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ecg-pulse-glow {
  stroke: #ff1a1a;
  stroke-width: 3.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 300 1400;
  stroke-dashoffset: 1700;
  animation: ecg-loop 3.2s linear infinite;
  filter: drop-shadow(0 0 4px #ff0000) drop-shadow(0 0 12px #ff2222) drop-shadow(0 0 22px rgba(255,0,0,0.9));
}
@keyframes ecg-loop {
  0% {
    stroke-dashoffset: 1700;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* ────────────────────────────────────────────────
   TRUST BAR
   ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--dark);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
}
.trust-item svg { color: var(--red-light); flex-shrink: 0; }
.trust-sep { width: 1px; height: 20px; background: rgba(255,255,255,.15); }

/* ────────────────────────────────────────────────
   ABOUT SECTION
   ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gray-100);
}
.about-image-card img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.about-badge-float {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-red);
  text-align: center;
}
.about-badge-float strong { display: block; font-size: 1.8rem; font-weight: 900; }
.about-badge-float span  { font-size: .75rem; opacity: .85; font-weight: 600; }
.about-content { }
.about-content .badge { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p  { margin-bottom: 20px; font-size: 1rem; }
.about-points { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--red);
  transition: var(--transition);
}
.about-point:hover { background: var(--red-pale); }
.about-point-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.about-point-text h4 { font-size: .95rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.about-point-text p  { font-size: .85rem; color: var(--gray-600); margin: 0; }

/* ────────────────────────────────────────────────
   SERVICES SECTION
   ──────────────────────────────────────────────── */
.services-bg { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 60px; height: 60px;
  background: var(--red-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--red); color: var(--white); }
.service-icon svg { color: var(--red); transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--gray-800); }
.service-card p  { font-size: .9rem; line-height: 1.65; margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  font-size: .72rem;
  font-weight: 600;
  background: var(--red-pale);
  color: var(--red);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ────────────────────────────────────────────────
   AREAS COVERED
   ──────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.areas-map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gray-200);
  height: 480px;
}
.areas-map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.coverage-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.coverage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: var(--transition);
}
.coverage-item:hover { background: var(--red-pale); color: var(--red); }
.coverage-dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.coverage-primary .coverage-dot { width: 14px; height: 14px; box-shadow: 0 0 0 3px rgba(153,0,0,.2); }

/* ────────────────────────────────────────────────
   PRICING / PARTNERSHIP
   ──────────────────────────────────────────────── */
.pricing-bg { background: var(--off-white); }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 2px solid var(--gray-200);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(153,0,0,.10), var(--shadow-md);
  transform: translateY(-4px);
}
.pricing-card.featured {
  border-color: var(--red);
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}
.pricing-card.featured:hover {
  box-shadow: 0 0 0 4px rgba(153,0,0,.18), var(--shadow-md);
  transform: translateY(-4px);
}
.pricing-card .featured-label {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
}
.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--gray-800);
}
.pricing-card .price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 6px;
}
.pricing-card .price-note {
  font-size: .85rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--gray-800);
}
.pricing-feature svg { color: var(--red); flex-shrink: 0; }

/* ────────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--red); box-shadow: 0 4px 20px rgba(153,0,0,.1); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-item.open .faq-question { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ────────────────────────────────────────────────
   CONTACT / FORM
   ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p  { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--red-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-400); margin-bottom: 2px; }
.contact-detail-text span  { font-size: 1rem; font-weight: 600; color: var(--gray-800); }
.contact-detail-text a { color: var(--gray-800); }
.contact-detail-text a:hover { color: var(--red); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  border: 1px solid var(--gray-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(153,0,0,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon {
  width: 72px; height: 72px;
  background: #e8faf2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #27ae60;
}
.form-success h3 { color: var(--gray-800); margin-bottom: 12px; }
.form-success p  { color: var(--gray-600); }

/* ────────────────────────────────────────────────
   AGREEMENT PAGE
   ──────────────────────────────────────────────── */
.agreement-page { background: var(--off-white); min-height: 100vh; }
.agreement-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 60px;
  border: 1px solid var(--gray-200);
  max-width: 860px;
  margin: 0 auto;
}
.agreement-header {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 40px;
}
.agreement-header img { height: 80px; margin: 0 auto 20px; }
.agreement-header h1 { font-size: 1.8rem; color: var(--gray-800); margin-bottom: 8px; }
.agreement-header p  { font-size: .9rem; }
.agreement-section { margin-bottom: 36px; }
.agreement-section h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.agreement-section h3::before {
  content: '';
  width: 4px; height: 18px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.agreement-section p,
.agreement-section li {
  font-size: .925rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 8px;
}
.agreement-section ul { padding-left: 20px; }
.agreement-section ul li { list-style: disc; }
.agreement-download {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  color: var(--white);
  margin-top: 48px;
}
.agreement-download h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 8px; }
.agreement-download p  { color: rgba(255,255,255,.8); margin-bottom: 24px; }

/* ────────────────────────────────────────────────
   PAGE HERO (interior pages)
   ──────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 80px 0 72px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 16px; position: relative; }
.page-hero p   { font-size: 1.05rem; color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto; position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

/* ────────────────────────────────────────────────
   CTA SECTION
   ──────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 96px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 16px; }
.cta-section p  { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img {
  height: auto;
  width: 160px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: block;
}
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-bottom: 24px; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: .875rem; color: rgba(255,255,255,.55); }
.footer-contact-item svg { color: var(--red-light); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p  { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a  { color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ────────────────────────────────────────────────
   ANIMATIONS
   ──────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 { transition-delay: .1s; }
.stagger-2 { transition-delay: .2s; }
.stagger-3 { transition-delay: .3s; }
.stagger-4 { transition-delay: .4s; }
.stagger-5 { transition-delay: .5s; }

/* ────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-showcase-card { max-width: 580px; margin: 0 auto; }
  .hero-img-wrap img { height: 380px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 560px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 24px; }
  .agreement-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-showcase-badge { padding: 7px 14px; font-size: .75rem; }
  .hero-img-wrap img { height: 300px; }
  .trust-bar-inner { gap: 24px; }
  .trust-sep { display: none; }
  .pricing-cards { max-width: 100%; }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; padding: 110px 0 80px; }
  .hero-img-wrap img { height: 240px; }
  .hero-showcase-badge-top { top: 14px; right: 14px; }
  .hero-showcase-badge-bottom { bottom: 14px; left: 14px; }
  .about-badge-float { display: none; }
}
