/* ===================================================
   UP & CLEAN — Professional Yacht Hull Cleaning
   Navy & White Theme
   =================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --blue-primary: #0A2E5C;
  --blue-dark: #061D3C;
  --blue-accent: #1B75BC;
  --blue-light: #E8F4FD;
  --blue-glow: rgba(27, 117, 188, 0.15);
  --white: #FFFFFF;
  --off-white: #F7FAFD;
  --gray-light: #f0f4f8;
  --gray-mid: #c5cfd8;
  --gray-text: #5a6a78;
  --dark: #0f1c2e;
  --shadow-sm: 0 2px 8px rgba(13, 59, 102, 0.06);
  --shadow-md: 0 6px 24px rgba(13, 59, 102, 0.10);
  --shadow-lg: 0 12px 48px rgba(13, 59, 102, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  color: var(--gray-text);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.01em;
  position: relative;
}

.btn-primary {
  background: var(--blue-accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13, 59, 102, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--blue-primary);
  border: 1.5px solid var(--blue-accent);
}

.btn-outline-dark:hover {
  background: var(--blue-accent);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---------- Section Shared Styles ---------- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--blue-accent);
  margin-bottom: 12px;
}

/* ===================================================
   HEADER / NAVIGATION
   =================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(13, 59, 102, 0.08);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo {
  padding: 7px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.867);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(13, 59, 102, 0.10);
  transition: var(--transition);
}

.header.scrolled .header-logo {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  padding: 0;
}

.header-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.header.scrolled .header-logo img {
  height: 40px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}

.header.scrolled .nav-links a {
  color: var(--dark);
}

.header.scrolled .nav-links a.nav-cta {
  color: var(--white);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-accent);
  transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-links a.active:not(.nav-cta)::after {
  width: 100%;
}

.nav-links a.active:not(.nav-cta) {
  color: var(--blue-accent);
}

.header.scrolled .nav-links a.active:not(.nav-cta) {
  color: var(--blue-accent);
}

.nav-cta {
  padding: 10px 22px !important;
  font-size: 0.88rem !important;
}

.header:not(.scrolled) .nav-cta {
  background: var(--white);
  color: var(--blue-primary);
}

.header:not(.scrolled) .nav-cta:hover {
  background: var(--off-white);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.header.scrolled .hamburger span {
  background: var(--dark);
}

/* ===================================================
   MOBILE SIDEBAR
   =================================================== */
.mobile-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  background: var(--white);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  overflow-y: auto;
  display: none;
  flex-direction: column;
}

.mobile-sidebar.open {
  right: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-light);
  flex-shrink: 0;
}

.sidebar-header img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.sidebar-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-light);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: var(--transition);
  flex-shrink: 0;
}

.sidebar-close:hover {
  border-color: var(--blue-accent);
  color: var(--blue-accent);
  background: var(--blue-light);
}

.sidebar-nav {
  padding: 12px 24px;
  flex: 1;
}

.sidebar-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--gray-light);
  transition: var(--transition);
}

.sidebar-nav a:last-child {
  border-bottom: none;
}

.sidebar-nav a:hover {
  color: var(--blue-accent);
}

.sidebar-bottom {
  padding: 24px;
  border-top: 1px solid var(--gray-light);
  margin-top: auto;
  flex-shrink: 0;
}

.sidebar-bottom .sidebar-contact {
  padding: 0;
  margin-bottom: 20px;
}

.sidebar-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray-text);
  transition: var(--transition);
}

.sidebar-contact a:hover {
  color: var(--blue-accent);
}

.sidebar-contact a svg {
  flex-shrink: 0;
  color: var(--blue-accent);
}

.sidebar-quote-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 28, 46, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1002;
  opacity: 0;
  transition: opacity 0.35s ease;
  cursor: pointer;
}

.sidebar-overlay.active {
  opacity: 1;
}

/* ===================================================
   HERO SLIDESHOW
   =================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 29, 60, 0.82) 0%,
    rgba(10, 46, 92, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--promo-offset, 48px) + 80px + 20px) 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content h1 {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s 0.3s forwards;
}

.hero-content .hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  max-width: 620px;
  margin-bottom: 36px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s 0.5s forwards;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s 0.7s forwards;
}

.hero-buttons .btn {
  padding: 15px 32px;
  font-size: 1.05rem;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero pagination dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.15);
}

.hero-dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.2);
}

/* ===================================================
   TRUST / BENEFITS BAR
   =================================================== */
.trust-bar {
  background: var(--white);
  padding: 50px 0;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--gray-light);
}

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

.trust-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.trust-item:hover {
  background: var(--blue-light);
  transform: translateY(-4px);
}

.trust-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-accent);
  font-size: 1.5rem;
}

.trust-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===================================================
   SERVICE SECTIONS
   =================================================== */
.service-section {
  padding: 100px 0;
}

.service-section:nth-of-type(even) {
  background: var(--off-white);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-grid.reverse {
  direction: rtl;
}

.service-grid.reverse > * {
  direction: ltr;
}

.service-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-image img.service-hero-img {
  height: auto;
  aspect-ratio: 1013 / 514;
  object-fit: cover;
}

.service-image img.chart-image {
  height: auto;
  object-fit: contain;
  background: var(--white);
}

.service-image:hover img {
  transform: scale(1.03);
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 117, 188, 0.1);
  pointer-events: none;
}

.service-text .section-label {
  margin-bottom: 10px;
}

.service-text h2 {
  margin-bottom: 20px;
}

.service-text > p {
  margin-bottom: 24px;
}

.service-bullets {
  margin-bottom: 32px;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
}

.service-bullets li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--blue-accent);
}

/* ===================================================
   ROBOT SHOWCASE
   =================================================== */
.robot-intro {
  background: var(--off-white);
}

.robot-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.robot-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.robot-hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.robot-image-wrapper:hover .robot-hero-img {
  transform: scale(1.02);
}

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

.robot-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.robot-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.robot-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-accent);
  flex-shrink: 0;
}

.robot-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.robot-feature p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===================================================
   VIDEO SECTION
   =================================================== */
.video-section {
  background: var(--white);
  padding: 100px 0;
}

.video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  background: var(--dark);
  aspect-ratio: 16 / 9;
}

.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ===================================================
   HOW IT WORKS / METHODOLOGY
   =================================================== */
.methodology {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-accent) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.methodology::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.methodology::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

.methodology .section-header h2 {
  color: var(--white);
}

.methodology .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.methodology .section-label {
  color: rgba(255, 255, 255, 0.7);
}

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

.method-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  padding: 32px 24px 28px;
  text-align: left;
  transition: var(--transition);
  position: relative;
}

.method-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.method-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.method-step-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}

.method-card h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.method-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===================================================
   ENVIRONMENTAL / ECO SECTION
   =================================================== */
.eco-section {
  background: var(--off-white);
  padding: 100px 0;
}

.eco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.eco-content .section-label {
  margin-bottom: 10px;
}

.eco-content h2 {
  margin-bottom: 16px;
}

.eco-content > p {
  margin-bottom: 32px;
}

.eco-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eco-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.eco-point-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--blue-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}

.eco-point h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.eco-point p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.eco-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.eco-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ===================================================
   PROMO BANNER — TOP ANNOUNCEMENT BAR
   =================================================== */
:root {
  --promo-height: 48px;
}

.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: linear-gradient(135deg, #0A2E5C 0%, #1B75BC 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(10px + env(safe-area-inset-top, 0px)) 48px 10px 16px;
  overflow: hidden;
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
  flex: 1;
  justify-content: center;
}

.promo-bar-inner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  line-height: 1.3;
  margin: 0;
}

.promo-bar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 10px;
  border-radius: 4px;
  white-space: nowrap;
  animation: promoPulse 2.5s ease-in-out infinite;
}

@keyframes promoPulse {
  0%, 100% { background: rgba(255, 255, 255, 0.18); }
  50% { background: rgba(255, 255, 255, 0.30); }
}

.promo-bar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  background: var(--white);
  color: var(--blue-primary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0 14px;
  border-radius: 4px;
  white-space: nowrap;
  transition: var(--transition);
}

.promo-bar-cta:hover {
  background: var(--off-white);
  transform: translateX(2px);
}

.promo-bar-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-bar-close:hover {
  color: var(--white);
}

/* Shift header down when promo bar is present — handled by JS setting --promo-offset on body */
body:not(.promo-dismissed) .header {
  top: var(--promo-offset, 48px);
}

/* When promo bar is dismissed */
body.promo-dismissed .promo-bar {
  display: none;
}

body.promo-dismissed .header {
  top: 0;
}

/* ===================================================
   HERO PROMO BADGE
   =================================================== */
.hero-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  width: fit-content;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s 0.1s forwards;
}

.hero-promo-badge strong {
  color: #5CE0D8;
  font-weight: 800;
}

.hero-promo-sparkle {
  font-size: 1.1rem;
  animation: sparkleRotate 3s ease-in-out infinite;
  display: inline-block;
}

@keyframes sparkleRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(15deg) scale(1.15); }
  75% { transform: rotate(-10deg) scale(1.05); }
}

/* ===================================================
   PRICING PROMO BANNER
   =================================================== */
.pricing-promo-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #0A2E5C 0%, #1B75BC 100%);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.pricing-promo-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -8%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.pricing-promo-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: 15%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.pricing-promo-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5CE0D8;
}

.pricing-promo-text {
  flex: 1;
  min-width: 0;
}

.pricing-promo-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 2px;
  color: var(--white);
}

.pricing-promo-text span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.pricing-promo-cta {
  flex-shrink: 0;
  background: var(--white) !important;
  color: var(--blue-primary) !important;
  font-size: 0.85rem !important;
  padding: 10px 22px !important;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.pricing-promo-cta:hover {
  background: var(--off-white) !important;
  transform: translateY(-1px) !important;
}

/* Promo price styling — original price with strikethrough */
.price-promo-original {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-text);
  text-decoration: line-through;
  opacity: 0.55;
  margin-right: 6px;
}

.price-promo-tag {
  display: inline-block;
  background: #e74c3c;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Promo badge on non-featured pricing card */
.pricing-card-promo-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #e74c3c;
  color: var(--white);
  text-align: center;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.pricing-option-card:has(.pricing-card-promo-badge) .pricing-option-header {
  padding-top: 40px;
}

/* ===================================================
   PRICING — INTERACTIVE CALCULATOR
   =================================================== */
.pricing {
  background: var(--white);
  padding: 80px 0;
}

.pricing-calculator {
  max-width: 780px;
  margin: 0 auto;
}

/* --- Slider Area --- */
.pricing-slider-section {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-slider-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.pricing-length-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.pricing-length-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  transition: color 0.2s ease;
}

.pricing-length-unit {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-text);
}

.pricing-slider-track {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 4px;
}

.pricing-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--gray-light);
  outline: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.pricing-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-accent);
  border: 4px solid var(--white);
  box-shadow: 0 2px 10px rgba(27, 117, 188, 0.35);
  cursor: grab;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pricing-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 3px 16px rgba(27, 117, 188, 0.5);
  transform: scale(1.1);
}

.pricing-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.15);
}

.pricing-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-accent);
  border: 4px solid var(--white);
  box-shadow: 0 2px 10px rgba(27, 117, 188, 0.35);
  cursor: grab;
}

.pricing-slider::-moz-range-track {
  height: 8px;
  border-radius: 4px;
  background: var(--gray-light);
}

.pricing-slider-range {
  display: flex;
  justify-content: space-between;
  max-width: 480px;
  margin: 8px auto 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-text);
}

/* --- Hull area estimate line --- */
.pricing-estimate {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--gray-text);
  font-weight: 500;
}

.pricing-estimate strong {
  color: var(--dark);
}

.pricing-disclaimer {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--gray-text);
  font-style: italic;
  opacity: 0.8;
}

.pricing-footer-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-top: 24px;
  padding: 14px 20px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue-accent);
}

.pricing-footer-note em {
  font-style: normal;
  font-weight: 600;
  color: var(--blue-primary);
}

/* --- Pricing Cards --- */
.pricing-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 0;
}

.pricing-option-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.pricing-option-card.featured {
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-md);
}

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

.pricing-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--blue-accent);
  color: var(--white);
  text-align: center;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.pricing-option-header {
  padding: 28px 24px 16px;
  border-bottom: 1px solid var(--gray-light);
  text-align: center;
}

.pricing-option-card.featured .pricing-option-header {
  padding-top: 40px;
}

.pricing-option-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.pricing-option-tagline {
  font-size: 0.84rem;
  color: var(--blue-accent);
  font-weight: 600;
  margin-top: 4px;
}

.pricing-option-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing-option-price {
  text-align: center;
  margin-bottom: 6px;
}

.price-original {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-text);
  text-decoration: line-through;
  margin-right: 8px;
  opacity: 0.65;
}

.price-main {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
}

.price-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-text);
  margin-top: 3px;
}

.pricing-savings {
  text-align: center;
  background: #e8f8ef;
  color: #1a7d42;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin: 6px auto 14px;
  display: inline-block;
  align-self: center;
}

.pricing-option-features {
  margin-bottom: 20px;
  flex: 1;
}

.pricing-option-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--dark);
  font-weight: 500;
}

.pricing-option-features li svg {
  flex-shrink: 0;
  color: var(--blue-accent);
}

.pricing-option-features li.feature-highlight {
  color: var(--blue-accent);
}

.pricing-option-body .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* --- Custom Quote Block (>15m) --- */
.pricing-custom-quote {
  display: none;
  text-align: center;
}

.pricing-custom-inner {
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-custom-inner svg {
  color: var(--blue-accent);
  margin-bottom: 16px;
}

.pricing-custom-inner h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.pricing-custom-inner p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================
   CHART SECTION
   =================================================== */
.chart-section {
  background: var(--off-white);
  padding: 100px 0;
}

/* ===================================================
   DIVER SECTION
   =================================================== */
.diver-section {
  background: var(--off-white);
  padding: 100px 0;
}

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

.diver-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.diver-content {
  position: static;
}

.diver-content .section-label {
  margin-bottom: 10px;
}

.diver-content h2 {
  color: var(--blue-primary);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.diver-lead {
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.diver-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diver-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

.diver-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--blue-accent);
}

/* ===================================================
   FAQ SECTION
   =================================================== */
.faq-section {
  background: var(--off-white);
  padding: 100px 0;
}

.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: var(--blue-accent);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  transition: color 0.2s ease;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
}

.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%231B75BC' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-item[open] .faq-question {
  color: var(--blue-accent);
}

.faq-answer {
  padding: 0 24px 20px;
  border-top: 1px solid var(--gray-light);
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 16px;
  color: var(--gray-text);
}

/* ===================================================
   CONTACT / QUOTE SECTION
   =================================================== */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

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

.contact-info {
  position: static;
}

.contact-info .section-label {
  margin-bottom: 10px;
}

.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;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}

.contact-detail:hover {
  color: var(--blue-accent);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-badge {
  margin-top: 40px;
  padding: 24px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-badge-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-badge h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-badge p {
  font-size: 0.85rem;
}

/* Quote Form */
.quote-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}

.quote-form-wrapper h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.quote-form-wrapper > p {
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px var(--blue-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235a6a78' viewBox='0 0 16 16'%3E%3Cpath d='M1.6 4.8L8 11.2l6.4-6.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  justify-content: center;
  margin-top: 4px;
}

.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--gray-text);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.form-group .error-message {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-group .error-message.show {
  display: block;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  margin: 0 auto 16px;
}

.form-success h3 {
  margin-bottom: 8px;
  color: #27ae60;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 8px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===================================================
   SCROLL ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===================================================
   SCROLL TO TOP BUTTON
   =================================================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 50;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top.visible:hover {
  transform: translateY(-2px);
  background: var(--blue-primary);
  box-shadow: var(--shadow-lg);
}

/* ===================================================
   LOADING ANIMATION
   =================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--blue-light);
  border-top-color: var(--blue-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--blue-accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ---------- Focus Visible ---------- */
:focus-visible {
  outline: 2px solid var(--blue-accent);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--blue-accent);
  outline-offset: 3px;
}

/* ---------- Section CTA ---------- */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===================================================
   WHATSAPP FLOATING BUTTON
   =================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 50;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  background: #20ba5a;
}

/* ===================================================
   STICKY IMAGES — DESKTOP ONLY
   =================================================== */
@media (min-width: 993px) {
  .service-grid,
  .robot-showcase,
  .eco-grid {
    align-items: start;
  }

  .service-image,
  .robot-image-wrapper,
  .eco-image {
    position: sticky;
    top: calc(50vh - 200px);
  }

  .diver-grid,
  .contact-grid {
    align-items: start;
  }

  .diver-content,
  .contact-info {
    position: sticky;
    top: calc(50vh - 200px);
  }
}

/* ===================================================
   RESPONSIVE — TABLET
   =================================================== */
@media (max-width: 992px) {

  /* Promo bar — tablet */
  .promo-bar {
    padding: 8px 44px 8px 16px;
  }

  .promo-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  /* Pricing promo — tablet */
  .pricing-promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 14px;
  }

  .pricing-promo-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-sidebar {
    display: flex;
  }

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

  .service-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-grid.reverse {
    direction: ltr;
  }

  .service-image img {
    height: 300px;
  }

  .service-image img.service-hero-img {
    height: auto;
  }

  .service-image img.chart-image {
    height: auto;
  }

  .method-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .robot-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .robot-image-wrapper {
    order: -1;
  }

  .robot-hero-img {
    aspect-ratio: 1 / 1;
  }

  .eco-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .eco-image {
    order: -1;
  }

  .pricing-options {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
    gap: 20px;
  }

  .diver-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .diver-content {
    position: static;
  }

  .diver-image {
    max-width: 420px;
    margin: 0 auto;
  }

  .diver-features {
    text-align: left;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-info {
    position: static;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

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

/* ===================================================
   RESPONSIVE — MOBILE
   =================================================== */
@media (max-width: 600px) {

  /* Promo bar — mobile */

  .promo-bar {
    padding: 6px 38px 6px 12px;
  }

  .promo-bar-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    font-size: 0.78rem;
  }

  .promo-bar-inner p {
    flex: 0 0 100%;
    order: 1;
    text-align: center;
    font-size: 0.78rem;
  }

  .promo-bar-badge {
    order: 2;
    height: 22px;
    font-size: 0.58rem;
    padding: 0 7px;
  }

  .promo-bar-cta {
    order: 2;
    height: 22px;
    font-size: 0.72rem;
    padding: 0 10px;
  }

  .hero-promo-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
    margin-bottom: 14px;
  }

  .pricing-promo-banner {
    padding: 20px 16px;
    gap: 12px;
    margin-bottom: 28px;
  }

  .pricing-promo-icon {
    width: 40px;
    height: 40px;
  }

  .pricing-promo-text strong {
    font-size: 0.95rem;
  }

  .pricing-promo-text span {
    font-size: 0.8rem;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    height: 100svh;
    min-height: auto;
  }

  .hero-content {
    padding-top: calc(var(--promo-offset, 48px) + 56px + 44px);
    justify-content: flex-start;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .hero-content .hero-sub {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .hero-buttons .btn {
    padding: 15px 24px;
    font-size: 1.05rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .trust-item {
    padding: 20px 12px;
  }

  .trust-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .service-image img {
    height: 240px;
  }

  .service-image img.service-hero-img {
    height: auto;
  }

  .service-image img.chart-image {
    height: auto;
  }

  .service-section {
    padding: 70px 0;
  }

  .quote-form-wrapper {
    padding: 28px 20px;
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .method-card {
    padding: 24px 20px;
  }

  .robot-hero-img {
    aspect-ratio: 1 / 1;
  }

  .pricing-options {
    max-width: 100%;
  }

  .faq-question {
    font-size: 0.92rem;
    padding: 16px 18px;
  }

  .faq-answer {
    padding: 0 18px 16px;
  }

  .pricing-length-number {
    font-size: 2.6rem;
  }

  .price-main {
    font-size: 1.9rem;
  }

  .pricing-slider-section {
    margin-bottom: 28px;
  }

  .pricing-custom-inner {
    padding: 36px 24px;
  }

  .pricing {
    padding: 60px 0;
  }

  .hero-dots {
    bottom: 24px;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }

  .video-section,
  .diver-section,
  .chart-section,
  .eco-section,
  .robot-intro {
    padding: 70px 0;
  }
}

/* ===================================================
   SHORT SCREEN — hero can grow beyond viewport
   =================================================== */
@media (max-height: 750px) and (max-width: 992px) {
  .hero {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .hero-slide {
    position: relative;
    height: auto;
    min-height: 100svh;
    display: none;
  }

  .hero-slide.active {
    display: block;
  }

  .hero-content {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    padding-top: calc(var(--promo-offset, 48px) + 64px + 24px);
    padding-bottom: 72px;
  }

  .hero-dots {
    bottom: 20px;
  }
}

/* ===================================================
   ROBOT PROOF SHOT (secondary image in tech section)
   =================================================== */
.robot-proof-shot {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.robot-proof-shot img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.robot-image-wrapper:hover .robot-proof-shot img {
  transform: scale(1.02);
}

.robot-proof-shot span {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-text);
  padding: 0.5rem 0 0.25rem;
  font-style: italic;
}

/* ===================================================
   BEFORE / AFTER FIGURE (below video section)
   =================================================== */
.before-after-figure {
  margin-top: 2rem;
  text-align: center;
}

.before-after-figure img {
  max-width: 700px;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  display: block;
}

.before-after-figure figcaption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-text);
  font-style: italic;
}
