@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&family=Barlow+Semi+Condensed:wght@500;600;700;800&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   VARIABLES
   ============================================ */
:root {
  --navy: #001c60;
  --navy-dark: #001040;
  --navy-light: #0A2E7A;
  --red: #c71510;
  --red-dark: #9E100D;
  --bg-warm: #F4F1EC;
  --bg-card: #FFFFFF;
  --white: #fefeff;
  --accent-steel: #B8C4D8;
  --accent-warm: #E8DDD0;
  --border-subtle: #D9D5D0;
  --text-dark: #0A0A0A;
  --text-muted: #5C5856;
  --text-light: #8A8683;

  --font-heading: 'Source Serif 4', Georgia, serif;
  --font-ui: 'Barlow Semi Condensed', 'Arial Narrow', sans-serif;

  --nav-height: 64px;
}

/* ============================================
   BASE
   ============================================ */
body {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-warm);
  overflow-x: hidden;
}

::selection {
  background: var(--red);
  color: var(--white);
}

/* ---------- Grain overlay ---------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 512px 512px;
}

/* ============================================
   SECTION LABEL
   ============================================ */
.section-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--red);
  margin-right: 0.6rem;
  vertical-align: middle;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-label.line-drawn::before {
  width: 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background: var(--navy);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

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

.nav__left .lucide {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.nav__logo {
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--white);
  text-transform: uppercase;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-steel);
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav__link:hover {
  color: var(--white);
}

.nav__cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--red);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  transition: background 0.3s;
}

.nav__cta:hover {
  background: var(--red-dark);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 28, 96, 0.4) 0%,
    rgba(0, 28, 96, 0.55) 40%,
    rgba(0, 28, 96, 0.92) 100%
  );
}

.hero__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 32px;
  padding: 0 80px 80px 80px;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 16px;
  background: var(--red);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  white-space: pre-line;
}

.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  color: var(--accent-steel);
  line-height: 1.5;
  white-space: pre-line;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 18px 40px;
  background: var(--red);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 18px 40px;
  border: 1px solid var(--accent-steel);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-steel);
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* hero__image is now absolute positioned - see hero section above */

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 80px;
  background: var(--white);
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item .lucide {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
}

.trust-item .lucide-star {
  fill: var(--red);
}

.trust-item span {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-dark);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--bg-warm);
  padding: 80px;
}

.services__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.services__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.1;
  white-space: pre-line;
}

.services__desc {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 600px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.services__grid .service-card:nth-child(2) {
  margin-top: 48px;
}

.service-card {
  background: var(--navy);
  overflow: hidden;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card__img {
  height: 220px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card__num {
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  background: var(--red);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.service-card__desc {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-steel);
  line-height: 1.6;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--navy);
  padding: 80px;
  border-bottom: 4px solid var(--red);
}

.process__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  text-align: center;
}

.process__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.process__steps {
  display: flex;
}

.process-step {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--navy-light);
}

.process-step:last-child {
  border-right: none;
}

.process-step__num {
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  background: var(--red);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.process-step__desc {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-steel);
  line-height: 1.6;
}

/* ============================================
   PROMISE
   ============================================ */
.promise {
  display: flex;
  background: var(--navy);
}

.promise__left {
  flex: 1;
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.promise__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.15;
  white-space: pre-line;
}

.promise__text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--accent-steel);
  line-height: 1.6;
}

.promise__right {
  width: 500px;
  flex-shrink: 0;
  padding: 80px 80px 80px 40px;
  display: flex;
  flex-direction: column;
}

.promise-stat {
  padding: 28px 0;
  border-bottom: 1px solid var(--navy-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.promise-stat:last-child {
  border-bottom: none;
}

.promise-stat__num {
  font-family: var(--font-heading);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 700;
  color: var(--red);
  letter-spacing: -2px;
  line-height: 1;
}

.promise-stat__label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-steel);
  text-transform: uppercase;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  background: var(--bg-warm);
  padding: 80px;
}

.reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.reviews__header-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reviews__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.1;
  white-space: pre-line;
}

.reviews__stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.reviews__stars .lucide {
  width: 24px;
  height: 24px;
  color: var(--red);
}

.reviews__stars-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.reviews__grid {
  display: flex;
  gap: 24px;
}

.review-card {
  flex: 1;
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-card__quote {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-card__name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.review-card__source {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-light);
  text-transform: uppercase;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  display: flex;
  background: var(--white);
}

.contact__left {
  flex: 1;
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.1;
  white-space: pre-line;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-row {
  display: flex;
  gap: 16px;
}

.contact-row .lucide {
  width: 24px;
  height: 24px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-row__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-row__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-light);
  text-transform: uppercase;
}

.contact-row__text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-row__text--phone {
  font-size: 20px;
  font-weight: 600;
}

.contact__map {
  width: 560px;
  flex-shrink: 0;
  min-height: 500px;
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta {
  background: var(--red);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
}

.cta__subtitle {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  opacity: 0.85;
  line-height: 1.5;
  max-width: 600px;
  white-space: pre-line;
}

.cta__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 48px;
  background: var(--navy);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-navy .lucide {
  width: 18px;
  height: 18px;
}

.btn-outline-white {
  display: inline-block;
  padding: 20px 48px;
  border: 2px solid var(--white);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  padding: 60px 80px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer__brand {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer__logo .lucide {
  width: 20px;
  height: 20px;
  color: var(--red);
}

.footer__logo-text {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  color: var(--accent-steel);
  line-height: 1.6;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-steel);
  text-transform: uppercase;
}

.footer__col a,
.footer__col span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--accent-steel);
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.footer__social .lucide {
  width: 16px;
  height: 16px;
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--navy-light);
}

.footer__bar span {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-light);
}

.footer__bar span:last-child {
  font-weight: 600;
  letter-spacing: 2px;
}

.footer__bar a {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.footer__bar a:hover {
  color: #fff;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ---------- Hero cinematic entrance ---------- */
.hero__badge,
.hero__title,
.hero__subtitle,
.hero__ctas {
  opacity: 0;
  transform: translateY(24px);
}

.hero__badge.revealed,
.hero__title.revealed,
.hero__subtitle.revealed,
.hero__ctas.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__title {
  clip-path: inset(100% 0 0 0);
}

.hero__title.revealed {
  clip-path: inset(0 0 0 0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Review card quote mark ---------- */
.review-card {
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
  pointer-events: none;
}

/* ---------- Review card 3D tilt ---------- */
.review-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ---------- Magnetic buttons ---------- */
.btn-magnetic {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s, border-color 0.25s, color 0.25s;
  will-change: transform;
}

/* ---------- Scroll-down chevron (#5) ---------- */
.hero__chevron {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--white);
  opacity: 0.7;
  animation: chevron-bounce 2s ease-in-out infinite;
  transition: opacity 0.3s;
}

.hero__chevron.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes chevron-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- Process step animated line (#7) ---------- */
.process-step {
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  bottom: 20%;
  width: 2px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.process-step.visible::after {
  transform: scaleY(1);
}

.process-step:last-child::after {
  display: none;
}

/* ---------- Marquee (#8) ---------- */
.marquee {
  overflow: hidden;
  background: var(--bg-warm);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.marquee__text {
  display: flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--navy);
  color: transparent;
  white-space: nowrap;
  user-select: none;
}

.marquee__sep {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--red);
  margin: 0 24px;
  flex-shrink: 0;
  vertical-align: middle;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation-play-state: paused;
  }
}

/* ---------- Service card clip-path reveal (#9) ---------- */
.service-card.fade-in .service-card__img {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card.fade-in.visible .service-card__img {
  clip-path: inset(0 0 0 0);
}

.service-card.fade-in .service-card__body {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}

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

/* ---------- CTA dramatic entry (#10) ---------- */
.cta.fade-in {
  transform: translateY(30px) scale(0.95);
}

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

.cta.fade-in .cta__title {
  letter-spacing: 4px;
  transition: letter-spacing 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta.fade-in.visible .cta__title {
  letter-spacing: -1px;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
  .nav {
    padding: 20px 40px;
  }

  .hero__text {
    padding: 0 40px 60px;
  }

  .trust-bar {
    padding: 24px 40px;
    justify-content: center;
    gap: 24px;
  }

  .services {
    padding: 60px 40px;
  }

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

  .services__grid .service-card:nth-child(2) {
    margin-top: 0;
  }

  .process {
    padding: 60px 40px;
  }

  .process__steps {
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 calc(50% - 16px);
    border-right: none;
    border-bottom: 1px solid var(--navy-light);
  }

  .process-step:nth-child(odd) {
    border-right: 1px solid var(--navy-light);
  }

  .process-step:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .process-step::after {
    display: none;
  }

  .process-step:nth-child(odd)::after {
    display: block;
  }

  .promise {
    flex-direction: column;
  }

  .promise__left {
    padding: 60px 40px;
  }

  .promise__right {
    width: 100%;
    padding: 0 40px 60px;
  }

  .reviews {
    padding: 60px 40px;
  }

  .reviews__grid {
    flex-direction: column;
  }

  .contact {
    flex-direction: column;
  }

  .contact__left {
    padding: 60px 40px;
  }

  .contact__map {
    width: 100%;
    min-height: 400px;
  }

  .cta {
    padding: 80px 40px;
  }

  .footer {
    padding: 40px;
  }

  .footer__main {
    flex-wrap: wrap;
  }

  .footer__brand {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 16px;
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav {
    padding: 16px 24px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__right {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navy);
    padding: 24px;
    gap: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.3s ease;
    z-index: 999;
  }

  .nav__right.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    font-size: 14px;
    padding: 8px 0;
    color: var(--white);
  }

  .hero__text {
    padding: 0 24px 40px;
    gap: 24px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    text-align: center;
  }

  .trust-bar {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .services {
    padding: 48px 24px;
  }

  .process {
    padding: 48px 24px;
  }

  .process__steps {
    flex-direction: column;
  }

  .process-step {
    border-right: none !important;
    border-bottom: 1px solid var(--navy-light);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .process-step::after {
    display: none !important;
  }

  .promise__left {
    padding: 48px 24px;
  }

  .promise__right {
    padding: 0 24px 48px;
  }

  .reviews {
    padding: 48px 24px;
  }

  .reviews__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact__left {
    padding: 48px 24px;
  }

  .cta {
    padding: 60px 24px;
  }

  .cta__buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-navy,
  .btn-outline-white {
    text-align: center;
    width: 100%;
  }

  .footer {
    padding: 40px 24px 24px;
  }

  .footer__main {
    flex-direction: column;
    gap: 32px;
  }

  .footer__bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
