/* ============================================================
   Flash 2 Yaad — Marketing Site Styles
   Colors: Navy #0a3d91, Gold #f5b731, Dark #0f172a, White #fff
   ============================================================ */

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

:root {
  --navy: #0a3d91;
  --navy-dark: #072d6b;
  --navy-light: #1a5cc7;
  --gold: #f5b731;
  --gold-dark: #d99e1f;
  --gold-light: #fcd56a;
  --orange: #FE9E00;
  --dark: #0f172a;
  --gray-900: #1e293b;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-100: #f1f5f9;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,.1), 0 4px 10px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.12);
  --transition: 0.25s ease;
}

/* Brand gradient bar at top of page */
body::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--orange), var(--gold), var(--navy));
  background-size: 300% 100%;
  animation: brand-bar 8s ease infinite;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

@keyframes brand-bar {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--navy-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-accent {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn-accent:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: transparent;
  padding: 10px 20px;
}

.btn-ghost:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #ADE110 0%, #33B808 100%);
  color: var(--white);
  border: none;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #9ECC0F 0%, #2DA007 100%);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(51, 184, 8, 0.35);
}

.btn img {
  vertical-align: middle;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-300);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.nav-logo img {
  height: 58px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 82px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #041a44 100%);
  z-index: 0;
}

/* --- Clean hero (Aeropost-inspired, with photo bg) --- */
.hero-clean .hero-bg {
  background: url('assets/hero-bg.png?v=3') center/cover no-repeat;
}

.hero-clean .hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,61,145,.87) 0%, rgba(7,45,107,.82) 45%, rgba(4,26,68,.92) 100%);
  pointer-events: none;
}

.hero-clean .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255,255,255,0.06) 1.5px, transparent 1.5px),
    radial-gradient(ellipse at 80% 10%, rgba(245,183,49,.1), transparent 55%);
  background-size: 28px 28px, 100% 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 90px 24px 52px;
  max-width: 820px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(245,183,49,.15);
  border: 1px solid rgba(245,183,49,.35);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero-badges span img {
  flex-shrink: 0;
}

/* --- Hero action cards (Aeropost-inspired) --- */
.hero-actions-strip {
  position: relative;
  z-index: 1;
  padding: 0 24px 60px;
}

.hero-actions-inner {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-action-card {
  flex: 1;
  max-width: 260px;
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 28px rgba(0,0,0,0.22);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.hero-action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  color: var(--navy-dark);
}

.hero-action-icon {
  width: 68px;
  height: 68px;
  background: rgba(10,61,145,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  border-radius: 3px;
  margin: 10px auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  padding: 100px 0;
  background: var(--gray-100);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--orange);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(254,158,0,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background var(--transition), box-shadow var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(254,158,0,.14);
  box-shadow: 0 0 0 6px rgba(254,158,0,.06);
}

.service-icon img {
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   RATES
   ============================================================ */

.rates {
  padding: 100px 0;
}

.rate-calculator {
  max-width: 600px;
  margin: 0 auto 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 2px solid var(--gray-300);
  box-shadow: var(--shadow-lg);
}

.rate-calc-input label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.rate-calc-input select,
.rate-calc-input input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--transition);
  font-family: inherit;
}

.rate-calc-input select:focus,
.rate-calc-input input:focus {
  outline: none;
  border-color: var(--navy);
}

.custom-weight-input {
  margin-top: 12px;
}

.rate-calc-result {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(10,61,145,.03), rgba(254,158,0,.04));
  border-radius: var(--radius-sm);
  border: 2px solid var(--gray-300);
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}

.rate-calc-result:has(.rate-result-price) {
  border-color: #FE9E00;
  background: linear-gradient(135deg, rgba(254,158,0,.04), rgba(10,61,145,.03));
}

.rate-result-label {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.rate-result-price {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: baseline;
}

.rate-result-price .price-block {
  text-align: center;
}

.rate-result-price .currency {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.rate-result-price .amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
}

.rate-result-price .amount.gold {
  color: #FE9E00;
}

.rate-note {
  text-align: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.rate-table-toggle {
  max-width: 700px;
  margin: 0 auto;
}

.rate-table-toggle summary {
  text-align: center;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.rate-table-toggle summary:hover {
  background: var(--gray-100);
}

.rate-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.rate-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.rate-table th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.rate-table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.rate-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--gray-300);
}

.rate-table tbody tr:hover {
  background: var(--gray-100);
}

.rate-table tbody tr:last-child td {
  font-weight: 600;
  color: var(--navy);
  background: rgba(10,61,145,.05);
}

/* (About section moved to about.html) */

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-it-works {
  padding: 100px 0;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  max-width: 340px;
  text-align: center;
  padding: 32px 28px;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ADE110 0%, #33B808 100%);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(51, 184, 8, 0.25);
  transition: box-shadow 0.3s ease;
}

.step:hover .step-number {
  box-shadow: 0 4px 16px rgba(51, 184, 8, 0.25), 0 0 0 5px rgba(51, 184, 8, 0.2);
}

.step-connector {
  position: absolute;
  top: 64px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 3px;
  background: linear-gradient(90deg, var(--navy), #FE9E00);
  border-radius: 3px;
  z-index: 0;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.step p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-arrow {
  display: none;
}

/* (Contact section moved to contact.html) */

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--dark);
  color: var(--gray-300);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-700);
}

.footer-brand img {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-500);
}

.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links a,
.footer-links span {
  display: block;
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer-bottom p {
  margin-bottom: 4px;
}

.footer-bottom a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* ============================================================
   DECORATED SECTION BACKGROUNDS
   ============================================================ */

.section-decorated {
  position: relative;
  overflow: hidden;
}

.section-decorated::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,61,145,.04) 0%, transparent 70%);
  pointer-events: none;
}

.section-decorated::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,183,49,.06) 0%, transparent 70%);
  pointer-events: none;
}

.rates {
  position: relative;
  overflow: hidden;
}

.rates::before {
  content: '';
  position: absolute;
  top: 40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border: 3px solid rgba(10,61,145,.05);
  border-radius: 50%;
  pointer-events: none;
}

.rates::after {
  content: '';
  position: absolute;
  bottom: 60px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: rgba(245,183,49,.04);
  border-radius: 24px;
  transform: rotate(25deg);
  pointer-events: none;
}

.how-it-works {
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -60px;
  right: 10%;
  width: 280px;
  height: 280px;
  border: 3px dashed rgba(10,61,145,.06);
  border-radius: 50%;
  pointer-events: none;
}

.how-it-works::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 5%;
  width: 220px;
  height: 220px;
  background: rgba(245,183,49,.03);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */

.page-hero {
  position: relative;
  padding: 164px 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #041a44 100%);
  z-index: 0;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(245,183,49,.12), transparent 50%),
              radial-gradient(ellipse at 30% 70%, rgba(26,92,199,.15), transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-story {
  padding: 100px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-story-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}

.about-story-text p {
  color: var(--gray-700);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-highlight {
  padding: 20px 24px;
  background: rgba(10,61,145,.04);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 8px;
}

.about-story-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.about-stat-card .stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.about-stat-card .stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
}

.about-values-section {
  padding: 100px 0;
  background: var(--gray-100);
}

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

.value-card-lg {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card-lg:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-card-lg-icon {
  width: 80px;
  height: 80px;
  background: rgba(254,158,0,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card-lg h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card-lg p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  padding: 100px 0;
  background: var(--gray-100);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: none;
  border-left: 4px solid var(--orange);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars img {
  display: block;
}

.testimonial-card p {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--gray-100);
}

.testimonial-card footer strong {
  color: var(--dark);
  font-size: 0.95rem;
}

.testimonial-card footer span {
  color: var(--gray-500);
  font-size: 0.8rem;
}

/* ============================================================
   CTA BAND
   ============================================================ */

.cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(254,158,0,.08), transparent 50%);
  animation: cta-glow 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes cta-glow {
  0% { transform: translate(-10%, -10%); }
  100% { transform: translate(10%, 10%); }
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
}

.cta-band-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
  padding: 80px 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.contact-card-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-card a,
.contact-card address {
  color: var(--gray-700);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  display: block;
}

.contact-card a:hover {
  color: var(--navy);
}

.contact-card p {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-top: 6px;
}

.contact-page-map h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-page-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Active nav link */
.nav-links a.active {
  color: var(--navy);
  font-weight: 700;
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

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

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

  .step-connector {
    display: none;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-page-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band-actions {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .hero-actions-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-action-card {
    max-width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 18px 20px;
    gap: 16px;
  }

  .hero-action-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }

  .hero-actions-strip {
    padding-bottom: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .nav-links a.active::after {
    bottom: -2px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .hero-content {
    padding: 60px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-page-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .rate-calculator {
    padding: 24px;
  }

  .rate-result-price {
    flex-direction: column;
    gap: 16px;
  }
}
