/* ============================================================
   CLEAN WARKS — SHARED STYLES
   Premium cleaning service website
   Kerala (Kochi, Kottayam, Pathanamthitta, Alappuzha) + Bangalore
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Colors */
  --orange: #D4E157;
  --orange-dark: #BCC93D;
  --orange-bg: #F4F8D0;
  --blue: #4B8EC8;
  --blue-dark: #2D6FA8;
  --blue-bg: #EBF3FB;
  --dark: #1A1F2E;
  --mid: #3A4052;
  --muted: #6B7280;
  --light: #F7F9FC;
  --white: #FFFFFF;
  --border: #E5EAF2;
  --green: #25D366;
  --green-dark: #1FAA52;

  /* Type */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 31, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 31, 46, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 31, 46, 0.12);
  --shadow-xl: 0 30px 80px rgba(26, 31, 46, 0.16);
  --shadow-orange: 0 12px 32px rgba(212, 225, 87, 0.40);
  --shadow-green: 0 12px 32px rgba(37, 211, 102, 0.30);

  /* Container */
  --container-max: 1240px;
  --container-pad: 24px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t: 250ms ease;
  --t-slow: 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--mid);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--orange);
}

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

ul {
  list-style: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
}

h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
}

h4 {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-block;
  margin-bottom: var(--space-3);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--mid);
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section-light {
  background: var(--light);
}

.section-white {
  background: var(--white);
}

.section-dark {
  background: var(--dark);
  color: #C9CFDB;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: #C9CFDB;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-8);
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 16px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
}

.btn-orange {
  background: var(--orange);
  color: var(--dark);
  box-shadow: var(--shadow-orange);
}

.btn-orange:hover {
  background: var(--orange-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(212, 225, 87, 0.5);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-green:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.4);
}

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

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

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

.btn-white:hover {
  background: var(--light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--dark);
  color: var(--dark);
}

.btn-sm {
  padding: 12px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 20px 36px;
  font-size: 1rem;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* ---------- BADGES & PILLS ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--blue-bg);
  color: var(--blue-dark);
}

.badge-orange {
  background: var(--orange-bg);
  color: var(--orange-dark);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #C9CFDB;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--dark);
  color: #C9CFDB;
  font-size: 0.8125rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #C9CFDB;
  transition: color var(--t);
}

.topbar-item:hover {
  color: var(--orange);
}

.topbar-item svg {
  width: 13px;
  height: 13px;
  opacity: 0.7;
}

.topbar-label {
  color: #6B7280;
  margin-right: 4px;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.75rem;
  color: #C9CFDB;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--t);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  height: 80px;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--t);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--light);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  color: var(--dark);
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-ctas .btn:not(.nav-mobile-cta) {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  padding: 28px 24px;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-7);
}

.nav-mobile-close {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-7);
}

.nav-mobile-links a {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.nav-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: auto;
}

.nav-mobile-info {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: 0.875rem;
  color: var(--muted);
}

.nav-mobile-info a {
  color: var(--dark);
  font-weight: 600;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
  background: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--blue-bg) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-bg) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-content h1 {
  margin: var(--space-4) 0 var(--space-5);
}

.hero-content h1 .accent {
  color: var(--orange);
  font-style: italic;
}

.hero-content .lead {
  margin-bottom: var(--space-6);
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-7);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-trust-num {
  font-family: var(--font-body);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.hero-trust-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
}

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

.hero-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-float-1 {
  top: 30px;
  left: -30px;
  animation: float 6s ease-in-out infinite;
}

.hero-float-2 {
  bottom: 40px;
  right: -20px;
  animation: float 6s ease-in-out infinite reverse;
  animation-delay: 1s;
}

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

.hero-float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--orange-bg);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-2 .hero-float-icon {
  background: var(--blue-bg);
  color: var(--blue);
}

.hero-float-text {
  display: flex;
  flex-direction: column;
}

.hero-float-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
}

.hero-float-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-image {
    aspect-ratio: 16 / 12;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero-float-1 { left: 0; top: 16px; }
  .hero-float-2 { right: 0; bottom: 16px; }
  .hero-float { padding: 12px 14px; }
  .hero-float-icon { width: 36px; height: 36px; }
}

/* ---------- TRUST BAR ---------- */
.trustbar {
  background: var(--dark);
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trustbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: var(--space-5);
}

.trustbar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #C9CFDB;
  font-size: 0.875rem;
  font-weight: 500;
}

.trustbar-item svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ---------- ABOUT STRIP ---------- */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-images {
  position: relative;
  height: 540px;
}

.about-img-1,
.about-img-2 {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-1 {
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-img-2 {
  width: 60%;
  height: 65%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 8px solid var(--white);
}

.about-img-1 img,
.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.about-badge-num {
  font-family: var(--font-body);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  font-weight: 600;
}

.about-content h2 {
  margin: var(--space-3) 0 var(--space-4);
}

.about-content p {
  margin-bottom: var(--space-5);
}

.checkpoints {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin: var(--space-5) 0 var(--space-6);
}

.checkpoint {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
}

.checkpoint-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-bg);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkpoint-icon svg {
  width: 14px;
  height: 14px;
}

.checkpoint-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
}

@media (max-width: 1024px) {
  .about-strip {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 420px;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 540px) {
  .about-images { height: 360px; }
  .checkpoints { grid-template-columns: 1fr; }
}

/* ---------- STATS BAR ---------- */
.stats {
  background: var(--dark);
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 225, 87, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(75, 142, 200, 0.10) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  text-align: center;
}

.stat {
  padding: var(--space-5);
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 225, 87, 0.15);
  border-radius: var(--radius-md);
  color: var(--orange);
}

.stat-icon svg {
  width: 30px;
  height: 30px;
}

.stat-num {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  color: #9CA3AF;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

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

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-5);
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t-slow);
  display: flex;
  flex-direction: column;
}

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

.service-card.featured {
  grid-column: span 4;
}

.service-card.standard {
  grid-column: span 3;
}

.service-image {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.service-card.featured .service-image {
  aspect-ratio: 16 / 12;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

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

.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-tag.kerala {
  color: var(--orange-dark);
}

.service-tag.bangalore {
  color: var(--blue-dark);
}

.service-body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--orange-bg);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-2);
}

.service-card.featured h3 {
  font-size: 1.625rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: var(--space-4);
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
}

.service-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--t);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .service-card.featured { grid-column: span 6; }
  .service-card.standard { grid-column: span 6; }
}

@media (max-width: 600px) {
  .service-card.featured,
  .service-card.standard {
    grid-column: span 12;
  }
}

/* ---------- LOCATIONS ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  transition: all var(--t-slow);
  display: flex;
  flex-direction: column;
}

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

.location-card .badge {
  align-self: flex-start;
  margin-bottom: var(--space-4);
}

.location-card h3 {
  font-size: 1.625rem;
  margin-bottom: var(--space-3);
}

.location-address {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}

.location-address svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.location-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-4);
}

.location-phone svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: var(--space-3) 0 var(--space-5);
}

.location-pills span {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--light);
  color: var(--mid);
}

.location-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .locations-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ---------- WHY CHOOSE US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.why-content h2 {
  margin: var(--space-3) 0 var(--space-5);
}

.why-content > p {
  margin-bottom: var(--space-6);
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.benefit {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: all var(--t);
}

.benefit:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.benefit.highlight {
  background: var(--orange);
  border-color: var(--orange-dark);
  color: var(--dark);
}

.benefit.highlight .benefit-icon {
  background: rgba(0, 0, 0, 0.10);
  color: var(--dark);
}

.benefit.highlight h4,
.benefit.highlight p {
  color: var(--dark);
}

.benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--orange-bg);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.benefit-icon svg {
  width: 18px;
  height: 18px;
}

.benefit h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.benefit p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

.why-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
}

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

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-image { max-width: 520px; margin: 0 auto; aspect-ratio: 16/11; }
}

@media (max-width: 540px) {
  .benefits { grid-template-columns: 1fr; }
}

/* ---------- BEFORE / AFTER ---------- */
.beforeafter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: stretch;
}

.ba-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

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

.ba-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
}

.ba-label.after {
  background: var(--orange);
  color: var(--white);
}

@media (max-width: 768px) {
  .beforeafter { grid-template-columns: 1fr; }
}

/* ---------- BOOKING CTA BANNER ---------- */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 64px);
  text-align: center;
  overflow: hidden;
  color: var(--dark);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://cleanwarks.com/wp-content/uploads/2022/11/h8-cta-banner.png') center/cover;
  opacity: 0.10;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--dark);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: var(--mid);
  font-size: 1.125rem;
  margin-bottom: var(--space-6);
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* ---------- BLOG CARDS ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t-slow);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-body {
  padding: var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: var(--space-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-meta-cat {
  color: var(--orange);
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: var(--space-4);
  flex: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
}

.blog-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--t);
}

.blog-card:hover .blog-link svg { transform: translateX(4px); }

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

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: #fff;
  color: #555;
  border-top: 1px solid #eee;
  padding: clamp(64px, 9vw, 100px) 0 var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-8);
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-4);
  /* No invert — logo displays correctly on white background */
}

.footer-brand p {
  color: #666;
  font-size: 0.9375rem;
  margin-bottom: var(--space-5);
  max-width: 320px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #555;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: #111;
  font-weight: 600;
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-contact-label {
  font-size: 0.6875rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-right: 4px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: #666;
}

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

.footer-bottom {
  border-top: 1px solid #eee;
  padding-top: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: #888;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-5);
}

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: #888;
}

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

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- FLOATING WHATSAPP ---------- */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 90;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  animation: bob 3s ease-in-out infinite;
  transition: all var(--t);
}

.float-wa:hover {
  transform: scale(1.08);
  color: var(--white);
}

.float-wa svg {
  width: 30px;
  height: 30px;
}

.float-wa-tip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}

.float-wa:hover .float-wa-tip {
  opacity: 1;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------- PAGE HERO (Sub-pages) ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 80px);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange-bg) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: var(--space-4);
}

.breadcrumb a {
  color: var(--muted);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb-sep {
  color: var(--border);
}

.breadcrumb .current {
  color: var(--dark);
  font-weight: 600;
}

.page-hero h1 {
  margin-bottom: var(--space-4);
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- SERVICE PAGE LAYOUT ---------- */
.service-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.service-hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero h1 {
  margin: var(--space-4) 0 var(--space-5);
}

.service-hero .lead {
  margin-bottom: var(--space-5);
}

.service-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-5);
}

.service-hero-pills span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--blue-bg);
  color: var(--blue-dark);
}

@media (max-width: 1024px) {
  .service-hero-grid { grid-template-columns: 1fr; }
  .service-hero-image { max-width: 540px; margin: 0 auto; aspect-ratio: 16/12; }
}

/* Service body with sidebar */
.service-body-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-7);
  align-items: flex-start;
}

.service-content h2 {
  margin: var(--space-7) 0 var(--space-4);
}

.service-content h2:first-child {
  margin-top: 0;
}

.service-content p {
  margin-bottom: var(--space-4);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin: var(--space-5) 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--light);
  border-radius: var(--radius-md);
}

.feature-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item-icon svg {
  width: 20px;
  height: 20px;
}

.feature-item h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.service-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.sidebar-card.dark {
  background: var(--dark);
  color: var(--white);
  border: none;
}

.sidebar-card.dark h4 {
  color: var(--white);
}

.sidebar-card h4 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-4);
}

.sidebar-phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-phone:last-of-type { border-bottom: none; }

.sidebar-phone-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9CA3AF;
  font-weight: 700;
}

.sidebar-phone a {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.sidebar-card.dark .sidebar-phone a:hover { color: var(--orange); }

.sidebar-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.sidebar-form input,
.sidebar-form select,
.sidebar-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--t);
}

.sidebar-form input:focus,
.sidebar-form select:focus,
.sidebar-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.sidebar-services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-services-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

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

.sidebar-services-list a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.sidebar-services-list a::after {
  content: '→';
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .service-body-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: relative; top: 0; }
  .feature-list { grid-template-columns: 1fr; }
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 64px);
  align-items: flex-start;
}

.contact-locations {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-loc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-loc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--orange-bg);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-loc-icon svg {
  width: 22px;
  height: 22px;
}

.contact-loc-card h4 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.contact-loc-card p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-loc-card a {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
}

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

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
}

.contact-form h3 {
  margin-bottom: var(--space-2);
}

.contact-form p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-3);
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  background: var(--white);
  color: var(--dark);
  transition: all var(--t);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-bg);
}

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

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-6) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  padding-bottom: var(--space-6);
}

.timeline-dot {
  position: absolute;
  left: 22px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 4px;
}

.timeline-item h4 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.9375rem;
  color: var(--muted);
}

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--t-slow);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--space-4);
  background: var(--light);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-card p {
  font-size: 0.875rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ---------- LEGAL / TEXT PAGE ---------- */
.legal {
  padding: clamp(48px, 7vw, 80px) 0;
}

.legal-content h2 {
  margin: var(--space-7) 0 var(--space-4);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h3 {
  margin: var(--space-5) 0 var(--space-3);
  font-size: 1.25rem;
}

.legal-content p {
  margin-bottom: var(--space-4);
  color: var(--mid);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-5);
  margin-bottom: var(--space-4);
}

.legal-content ul li {
  margin-bottom: var(--space-2);
  color: var(--mid);
}

/* ---------- BLOG POST ---------- */
.blog-post {
  padding: clamp(48px, 7vw, 80px) 0;
}

.blog-post-hero {
  text-align: center;
  margin-bottom: var(--space-7);
}

.blog-post-hero .blog-meta {
  justify-content: center;
}

.blog-post-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-7);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-content h2 {
  margin: var(--space-7) 0 var(--space-4);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
}

.blog-post-content h3 {
  margin: var(--space-5) 0 var(--space-3);
  font-size: 1.375rem;
}

.blog-post-content p {
  margin-bottom: var(--space-4);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.blog-post-content ul,
.blog-post-content ol {
  padding-left: var(--space-5);
  margin-bottom: var(--space-4);
}

.blog-post-content ul { list-style: disc; }
.blog-post-content ol { list-style: decimal; }

.blog-post-content li {
  margin-bottom: var(--space-2);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--orange);
  background: var(--orange-bg);
  padding: var(--space-5);
  margin: var(--space-5) 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--dark);
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }

/* Selection */
::selection {
  background: var(--orange);
  color: var(--white);
}


/* ============================================================
   HOMEPAGE — PREMIUM EDITORIAL (V3)
   ============================================================ */

/* ---------- PILL NAVIGATION ---------- */
.nav-pill-wrap {
  position: sticky;
  top: 14px;
  z-index: 100;
  padding: 0 var(--container-pad);
  margin-top: 14px;
}

.nav-pill {
  max-width: var(--container-max);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-radius: var(--radius-pill);
  padding: 10px 14px 10px 26px;
  box-shadow: 0 10px 32px rgba(26, 31, 46, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all var(--t);
}

.nav-pill.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 36px rgba(26, 31, 46, 0.12);
}

.nav-pill .nav-logo img { height: 42px; }

.nav-pill .nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-pill .nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
  padding: 6px 0;
  position: relative;
}

.nav-pill .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: all var(--t);
  transform: translateX(-50%);
}

.nav-pill .nav-link:hover::after,
.nav-pill .nav-link.active::after {
  width: 100%;
}

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

@media (max-width: 1024px) {
  .nav-pill { padding: 8px 8px 8px 20px; }
  .nav-pill .nav-links { display: none; }
  .nav-pill .nav-ctas .desktop-only { display: none; }
}

/* ---------- HERO ---------- */
.hero-v3 {
  padding: clamp(52px, 8vw, 96px) 0 clamp(48px, 7vw, 80px);
  background: #FAFAF8;
  position: relative;
  overflow: hidden;
}

.hero-v3::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(244, 106, 40, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-v3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Text side */
.hero-v3-text {
  position: relative;
  z-index: 2;
}

.hero-v3-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-5);
  box-shadow: 0 2px 12px rgba(26, 31, 46, 0.06);
}

.hero-v3 h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: var(--space-5);
}

.hero-v3 h1 em {
  font-style: italic;
  color: var(--orange-dark);
}

.hero-v3 .lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: var(--space-6);
}

.hero-v3-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.hero-v3-social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border);
}

.hero-v3-avatars {
  display: flex;
  align-items: center;
}

.hero-v3-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid #FAFAF8;
  margin-left: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--white);
}

.hero-v3-avatars span:first-child { margin-left: 0; }
.hero-v3-avatars .av1 { background: linear-gradient(135deg, #FF8A65, #E64A19); }
.hero-v3-avatars .av2 { background: linear-gradient(135deg, #42A5F5, #1565C0); }
.hero-v3-avatars .av3 { background: linear-gradient(135deg, #66BB6A, #2E7D32); }
.hero-v3-avatars .av4 { background: linear-gradient(135deg, #AB47BC, #6A1B9A); }

.hero-v3-proof-text {
  font-size: 0.875rem;
  color: var(--mid);
}

.hero-v3-proof-text strong {
  color: var(--dark);
  font-weight: 700;
}

.hero-v3-stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  margin-bottom: 2px;
}

.hero-v3-stars svg { width: 14px; height: 14px; }

/* Visual side */
.hero-v3-visual {
  position: relative;
}

.hero-v3-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 100px rgba(26, 31, 46, 0.18);
}

.hero-v3-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating rating chip - top right */
.hero-float-rating {
  position: absolute;
  top: 28px;
  right: -16px;
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: 0 16px 40px rgba(26, 31, 46, 0.28);
  animation: float 6s ease-in-out infinite reverse;
  animation-delay: 1.5s;
  z-index: 2;
}

.hero-float-rating .fr-num {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--white);
  line-height: 1;
}

.hero-float-rating .fr-stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
  margin: 4px 0 2px;
}

.hero-float-rating .fr-stars svg { width: 12px; height: 12px; }

.hero-float-rating .fr-label {
  font-size: 0.6875rem;
  color: #9CA3AF;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Floating clients badge - bottom left */
.hero-float-clients {
  position: absolute;
  bottom: 28px;
  left: -16px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  box-shadow: 0 20px 50px rgba(26, 31, 46, 0.14);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.hero-float-clients .fc-avatars {
  display: flex;
  align-items: center;
}

.hero-float-clients .fc-avatars span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--white);
}

.hero-float-clients .fc-avatars span:first-child { margin-left: 0; }
.hero-float-clients .fc1 { background: linear-gradient(135deg, #FF8A65, #E64A19); }
.hero-float-clients .fc2 { background: linear-gradient(135deg, #42A5F5, #1565C0); }
.hero-float-clients .fc3 { background: linear-gradient(135deg, #66BB6A, #2E7D32); }

.hero-float-clients .fc-text {}
.hero-float-clients .fc-num {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--dark);
  line-height: 1;
}
.hero-float-clients .fc-sub {
  font-size: 0.6875rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .hero-v3-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-v3-img-wrap {
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
  }
  .hero-float-rating { right: 0; top: 16px; }
  .hero-float-clients { left: 0; bottom: 16px; }
}

@media (max-width: 600px) {
  .hero-v3 h1 { font-size: clamp(2.25rem, 8vw, 3rem); }
  .hero-v3-ctas { flex-direction: column; }
  .hero-v3-ctas .btn { width: 100%; justify-content: center; }
}

/* ---------- TICKER ---------- */
.ticker-strip {
  background: var(--dark);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.ticker-strip-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 35s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0 clamp(20px, 3vw, 36px);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-left: clamp(20px, 3vw, 36px);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- ABOUT V3 ---------- */
.about-v3 {
  padding: clamp(64px, 9vw, 120px) 0 0;
  background: var(--white);
}

.about-v3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.about-v3-text {}

.about-v3-text h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: var(--space-3) 0 var(--space-4);
}

.about-v3-text > p {
  font-size: 1.0625rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  max-width: 460px;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-5) 0 var(--space-6);
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
}

.checklist-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #22C55E;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checklist-icon svg { width: 13px; height: 13px; }

.about-v3-image {
  position: relative;
}

.about-v3-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px rgba(26, 31, 46, 0.14);
}

.about-v3-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-v3-badge {
  position: absolute;
  top: 32px;
  left: -28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: 0 16px 40px rgba(26, 31, 46, 0.12);
  text-align: center;
  animation: float 6s ease-in-out infinite;
  border: 1px solid var(--border);
}

.about-v3-badge .ab-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
}

.about-v3-badge .ab-label {
  font-size: 0.6875rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .about-v3-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-v3-img-main {
    max-width: 520px;
    margin: 0 auto;
    aspect-ratio: 16 / 12;
  }
  .about-v3-badge { left: 0; top: 16px; }
}

/* ---------- STATS BAR ---------- */
.stats-bar-v3 {
  background: var(--dark);
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 64px);
}

.stats-bar-v3 .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  text-align: center;
}

.stat-v3 {
  padding: var(--space-4) 0;
  position: relative;
}

.stat-v3:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-v3-num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-v3-label {
  font-size: 0.875rem;
  color: #9CA3AF;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .stats-bar-v3 .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-v3:not(:last-child)::after { display: none; }
}

/* ---------- SERVICES V3 ---------- */
.services-v3 {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--light);
}

.services-v3-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-7);
  flex-wrap: wrap;
}

.services-v3-head-text {}

.services-v3-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin: var(--space-2) 0 var(--space-3);
  letter-spacing: -0.015em;
}

.services-v3-head p {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0;
}

.services-v3-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--t);
}

.services-v3-link:hover { color: var(--orange); }

.services-v3-link svg { width: 16px; height: 16px; transition: transform var(--t); }
.services-v3-link:hover svg { transform: translateX(4px); }

.services-v3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

/* Service card */
.svc-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(26, 31, 46, 0.05);
  display: flex;
  flex-direction: column;
  transition: all var(--t-slow);
  border: 1px solid transparent;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(26, 31, 46, 0.12);
  border-color: rgba(244, 106, 40, 0.15);
}

.svc-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.svc-card:hover .svc-card-img img {
  transform: scale(1.06);
}

.svc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
}

.svc-tag.kerala { color: var(--orange-dark); }
.svc-tag.bangalore { color: var(--blue-dark); }

.svc-card-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-card-body h3 {
  font-size: 1.375rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.svc-card-body p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex: 1;
}

.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  transition: gap var(--t);
}

.svc-card-cta svg {
  width: 18px;
  height: 18px;
  transition: transform var(--t);
}

.svc-card:hover .svc-card-cta svg { transform: translateX(4px); }

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

@media (max-width: 600px) {
  .services-v3-grid { grid-template-columns: 1fr; }
  .services-v3-head { flex-direction: column; align-items: flex-start; }
}

/* ---------- HOW IT WORKS ---------- */
.process-v3-wrap {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--white);
}

.process-v3 {
  position: relative;
  background: var(--dark);
  border-radius: 28px;
  padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 64px);
  overflow: hidden;
  isolation: isolate;
}

.process-v3::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 106, 40, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.process-v3::after {
  content: '';
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(75, 142, 200, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.process-v3-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: stretch;
}

.process-v3-steps {}

.process-v3-head {
  margin-bottom: var(--space-7);
}

.process-v3-head .eyebrow { color: var(--orange); }

.process-v3-head h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.015em;
  margin: var(--space-2) 0 var(--space-3);
}

.process-v3-head p {
  color: #9CA3AF;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 440px;
}

.process-v3-step-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.process-v3-step {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--t);
}

.process-v3-step:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(244, 106, 40, 0.35);
  transform: translateX(4px);
}

.process-v3-step-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
}

.process-v3-step-body h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 6px;
}

.process-v3-step-body p {
  font-size: 0.9375rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin: 0;
}

.process-v3-image {
  position: relative;
}

.process-v3-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
}

.process-v3-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-v3-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.process-v3-float-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange-bg);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-v3-float-icon svg { width: 20px; height: 20px; }

.process-v3-float-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--dark);
  line-height: 1;
}

.process-v3-float-text {
  font-size: 0.6875rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .process-v3-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-v3-img-wrap {
    min-height: 320px;
    aspect-ratio: 16 / 10;
    height: auto;
  }
}

/* ---------- TESTIMONIALS V3 ---------- */
.testimonials-v3 {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--light);
}

.testimonials-v3-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-8);
}

.testimonials-v3-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.015em;
  margin: var(--space-2) 0 var(--space-3);
}

.testimonials-v3-head p {
  font-size: 1.0625rem;
  color: var(--muted);
}

.testimonials-v3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.testimonial-v3 {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: all var(--t-slow);
  position: relative;
}

.testimonial-v3:hover {
  border-color: rgba(244, 106, 40, 0.25);
  box-shadow: 0 20px 60px rgba(26, 31, 46, 0.09);
  transform: translateY(-4px);
}

.testimonial-v3-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 24px;
  pointer-events: none;
  user-select: none;
}

.testimonial-v3-stars {
  display: flex;
  gap: 3px;
  color: #F59E0B;
  margin-bottom: var(--space-4);
}

.testimonial-v3-stars svg { width: 16px; height: 16px; }

.testimonial-v3-quote {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: var(--space-5);
  flex: 1;
}

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

.testimonial-v3-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--white);
  flex-shrink: 0;
}

.ta-orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.ta-blue   { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
.ta-green  { background: linear-gradient(135deg, #22C55E, #15803D); }

.testimonial-v3-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-v3-loc {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 1px;
}

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

@media (max-width: 640px) {
  .testimonials-v3-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* ---------- CTA BANNER V3 ---------- */
.cta-v3 {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--white);
}

.cta-v3-inner {
  background: var(--dark);
  border-radius: 28px;
  padding: clamp(48px, 7vw, 80px) clamp(32px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.cta-v3-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 106, 40, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-v3-text { position: relative; z-index: 1; }

.cta-v3-text h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.015em;
  margin-bottom: var(--space-3);
}

.cta-v3-text p {
  color: #9CA3AF;
  font-size: 1.0625rem;
  max-width: 520px;
}

.cta-v3-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ---------- NEWSLETTER V3 ---------- */
.newsletter-v3-wrap {
  padding: clamp(48px, 7vw, 80px) 0;
  background: var(--light);
}

.newsletter-v3 {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  box-shadow: 0 8px 40px rgba(26, 31, 46, 0.06);
  border: 1px solid var(--border);
}

.newsletter-v3-text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.newsletter-v3-text p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.newsletter-v3-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 300px;
}

.newsletter-v3-input-row {
  display: flex;
  align-items: center;
  background: var(--light);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 20px;
  border: 1px solid var(--border);
  transition: border-color var(--t);
}

.newsletter-v3-input-row:focus-within {
  border-color: var(--orange);
}

.newsletter-v3-input-row input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9375rem;
  color: var(--dark);
  padding: 10px 0;
  min-width: 0;
}

.newsletter-v3-input-row input::placeholder { color: var(--muted); }

.newsletter-v3-disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .newsletter-v3 {
    grid-template-columns: 1fr;
  }
  .newsletter-v3-form { min-width: 0; }
}

/* ---------- FOOTER V3 ---------- */
.footer-v3 {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 128px) 0 var(--space-6);
}

.footer-v3-wordmark {
  position: absolute;
  bottom: -3vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(6rem, 20vw, 22rem);
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.03em;
  user-select: none;
  z-index: 0;
}

.footer-v3 .container,
.footer-v3 .footer-grid,
.footer-v3 .footer-bottom {
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER-CLN — Cleanora-style white footer with watermark
   (Used on homepage, inner pages, blog pages)
   ============================================================ */
.footer-cln {
  background: #fff;
  color: #555;
  position: relative;
  overflow: hidden;
}

.footer-watermark-wrap {
  overflow: hidden;
  line-height: 1;
  text-align: center;
  padding: 20px 0 0;
  pointer-events: none;
  user-select: none;
}

.footer-watermark-wrap span {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(80px, 14vw, 200px);
  color: rgba(0,0,0,0.055);
  white-space: nowrap;
  display: block;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.footer-cln-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 32px;
}

.footer-cln-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-top: 48px;
}

.footer-cln-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-cln-brand p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-cln-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-cln-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-cln-contact a:hover { color: #22C55E; }
.footer-cln-contact a svg { width: 15px; height: 15px; color: #22C55E; flex-shrink: 0; }

/* Office address blocks inside footer */
.footer-office {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid #f0f0f0;
}
.footer-office-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
}
.footer-office-addr {
  font-size: 0.8125rem;
  color: #888;
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 4px;
}

.footer-cln-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-cln-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-cln-col ul a {
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-cln-col ul a:hover { color: #111; }

.footer-cln-bottom {
  border-top: 1px solid #eee;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-cln-bottom p {
  font-size: 0.8125rem;
  color: #888;
}

.footer-cln-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-cln-bottom-links a {
  font-size: 0.8125rem;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-cln-bottom-links a:hover { color: #111; }

/* Floating WhatsApp (Cleanora style) */
.float-wa-cln {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
  text-decoration: none;
}

.float-wa-cln:hover { transform: scale(1.08); }
.float-wa-cln svg { width: 28px; height: 28px; }

/* Responsive overrides for footer-cln */
@media (max-width: 1024px) {
  .footer-cln-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-cln-brand { grid-column: span 2; }
  .footer-watermark-wrap span { font-size: clamp(60px, 12vw, 120px); }
}

@media (max-width: 540px) {
  .footer-cln-grid { grid-template-columns: 1fr; }
  .footer-cln-brand { grid-column: span 1; }
}
