/* =====================================================
   RAVCA NAUTICAL — LANDING PAGE STYLES
   Colors: Red #E63329 | Charcoal #1A1A1A | Steel #8A8A8A
   Font: Inter (clean, iPhone-style)
   ===================================================== */

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

:root {
  --red:       #E63329;
  --red-dark:  #C4251B;
  --red-light: #FF4A3F;
  --charcoal:  #1A1A1A;
  --dark:      #111111;
  --steel:     #8A8A8A;
  --mid:       #5A5A5A;
  --light:     #F7F7F7;
  --white:     #FFFFFF;
  --border:    rgba(0,0,0,0.08);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);

  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);

  --nav-h: 72px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
em { font-style: normal; }

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

/* ----- TYPOGRAPHY HELPERS ----- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.text-accent { color: var(--red); }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(230,51,41,0.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,51,41,0.45);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-header.scrolled {
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 2px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-name {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--red);
}
.nav-brand-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(230,51,41,0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(138,138,138,0.06) 0%, transparent 40%),
    linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #111 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
  background: rgba(230,51,41,0.1);
  border: 1px solid rgba(230,51,41,0.2);
  padding: 8px 16px;
  border-radius: 999px;
}

.hero-title {
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-accent { color: var(--red); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll i { font-size: 0.8rem; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* ===================================================
   STATS
   =================================================== */
.stats {
  background: var(--charcoal);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(230,51,41,0.06); }

.stat-icon {
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-plus {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 0.04em;
  margin-top: 6px;
  text-transform: uppercase;
}

/* ===================================================
   ABOUT
   =================================================== */
.about {
  padding: 110px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 440px;
}

.about-card-main {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(230,51,41,0.12), transparent 60%);
}

.about-ship-icon {
  font-size: 5rem;
  color: rgba(255,255,255,0.08);
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.about-card-label {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  padding: 0 24px;
}

.about-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: var(--shadow);
  white-space: nowrap;
  z-index: 2;
}
.about-pill i { color: var(--red); }
.about-pill--1 { top: -16px; left: -16px; }
.about-pill--2 { bottom: -16px; right: -16px; }

.about-copy { padding-right: 20px; }

.about-text {
  color: var(--mid);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--light);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pillar:hover {
  border-color: rgba(230,51,41,0.25);
  box-shadow: 0 4px 16px rgba(230,51,41,0.08);
}
.pillar > i {
  font-size: 1.1rem;
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}
.pillar > div { display: flex; flex-direction: column; gap: 2px; }
.pillar strong { font-size: 0.9rem; font-weight: 700; }
.pillar span   { font-size: 0.82rem; color: var(--steel); }

/* ===================================================
   SERVICES
   =================================================== */
.services {
  padding: 110px 0;
  background: var(--light);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230,51,41,0.15);
}

.service-card--featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}
.service-card--featured .service-desc { color: rgba(255,255,255,0.6); }
.service-card--featured .service-title { color: var(--white); }
.service-card--featured .service-list li { color: rgba(255,255,255,0.8); }

.service-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(230,51,41,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon-wrap i { font-size: 1.4rem; color: var(--red); }
.service-card--featured .service-icon-wrap { background: rgba(230,51,41,0.2); }

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-list { display: flex; flex-direction: column; gap: 10px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--mid);
}
.service-list li i { color: var(--red); font-size: 0.7rem; flex-shrink: 0; }

/* ===================================================
   WHY US
   =================================================== */
.why-us {
  padding: 110px 0;
  background: var(--white);
}

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

.why-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(230,51,41,0.2);
}

.why-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(230,51,41,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--transition), transform var(--transition);
}
.why-item:hover .why-icon { background: var(--red); transform: scale(1.1); }
.why-icon i { font-size: 1.3rem; color: var(--red); transition: color var(--transition); }
.why-item:hover .why-icon i { color: var(--white); }

.why-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-item p  { font-size: 0.86rem; color: var(--mid); line-height: 1.65; }

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  padding: 110px 0;
  background: var(--light);
  overflow: hidden;
}

.testimonials-outer {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 12px 0;
}

.testimonials-outer::before,
.testimonials-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-outer::before { left: 0;  background: linear-gradient(to right, var(--light), transparent); }
.testimonials-outer::after  { right: 0; background: linear-gradient(to left,  var(--light), transparent); }

.testimonials-ribbon {
  display: flex;
  gap: 20px;
  padding: 12px 24px;
  cursor: grab;
  user-select: none;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonials-ribbon:active { cursor: grabbing; }

.testimonial-card {
  flex: 0 0 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.testimonial-stars { color: #F59E0B; display: flex; gap: 3px; font-size: 0.8rem; }

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.7;
  flex: 1;
  position: relative;
  padding-left: 20px;
}
.testimonial-card blockquote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--red);
  opacity: 0.25;
  position: absolute;
  left: -4px;
  top: -10px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1rem;
}

.testimonial-info strong { display: block; font-size: 0.88rem; font-weight: 700; }
.testimonial-info span  { font-size: 0.78rem; color: var(--steel); }

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.tctrl-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.tctrl-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.tctrl-dots { display: flex; gap: 8px; align-items: center; }
.tctrl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--steel);
  opacity: 0.35;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: var(--transition);
}
.tctrl-dot.active { background: var(--red); opacity: 1; width: 22px; border-radius: 999px; }

/* ===================================================
   CONTACT
   =================================================== */
.contact {
  padding: 110px 0;
  background: var(--white);
}

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

.contact-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.contact-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(230,51,41,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
  color: var(--red);
}

.contact-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.contact-card address { font-size: 0.9rem; color: var(--mid); line-height: 1.8; }

.hours { display: flex; flex-direction: column; gap: 10px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; }
.hours-row span { color: var(--mid); }
.hours-row strong { font-weight: 700; }
.hours-closed strong { color: var(--steel); }

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-details li { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--mid); }
.contact-details li i { color: var(--red); width: 16px; flex-shrink: 0; }
.contact-details a { color: var(--charcoal); font-weight: 500; transition: color var(--transition); }
.contact-details a:hover { color: var(--red); }

.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(230,51,41,0.12);
}

.cta-content { display: flex; align-items: center; gap: 20px; }
.cta-icon { font-size: 2rem; color: var(--red); flex-shrink: 0; }
.cta-content h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cta-content p  { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--dark);
  padding: 56px 0 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand { display: flex; align-items: center; gap: 14px; }

.footer-logo {
  height: 52px; width: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 2px;
}

.footer-name { font-size: 1rem; font-weight: 900; letter-spacing: 0.08em; color: var(--red); }
.footer-tag  { font-size: 0.72rem; color: var(--steel); letter-spacing: 0.06em; margin-top: 2px; }

.footer-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.83rem; color: var(--steel); padding: 6px 12px; border-radius: 6px; transition: color var(--transition), background var(--transition); }
.footer-nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ===================================================
   SCROLL-IN ANIMATIONS
   =================================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* ===================================================
   RESPONSIVE — TABLET (≤ 900px)
   =================================================== */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd)        { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-last-child(-n+2)  { border-bottom: none; }

  .about-grid   { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 300px; }
  .about-copy   { padding-right: 0; }

  .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

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

  .contact-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 40px; }

  .cta-banner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .cta-content { flex-direction: column; text-align: center; }

  .footer-top { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

/* ===================================================
   RESPONSIVE — MOBILE (≤ 640px)
   =================================================== */
@media (max-width: 640px) {
  :root { --nav-h: 64px; }

  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(17,17,17,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: 10px; color: var(--white); }
  .nav-cta  { text-align: center; justify-content: center; margin-top: 8px; }

  .hero-content { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .about-visual { height: 240px; }
  .about-pill--1 { top: -12px; left: 0; }
  .about-pill--2 { bottom: -12px; right: 0; }

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

  .testimonial-card { flex: 0 0 calc(100vw - 60px); }

  .footer-nav { justify-content: center; }
}
