/* ==========================================================================
   MAS RENEWABLE ENERGY — AWWWARDS-LEVEL PREMIUM STYLESHEET v2.0
   Complete Rewrite: Typography, Animations, Layouts, Micro-Interactions
   ========================================================================== */

/* ─── GOOGLE FONTS IMPORT ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ─── 1. DESIGN TOKENS ─── */
:root {
  --orange: #FF6A00;
  --orange-secondary: #FF8A00;
  --orange-light: #FFF3E8;
  --orange-gradient: linear-gradient(135deg, #FF6A00 0%, #FFA000 100%);
  --orange-gradient-reverse: linear-gradient(315deg, #FF6A00 0%, #FFA000 100%);
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --soft-white: #F5F5F5;
  --gray-100: #F0F0F0;
  --gray-200: #E0E0E0;
  --gray-300: #CCCCCC;
  --gray-500: #888888;
  --gray-700: #555555;
  --black: #111111;
  --black-soft: #1A1A1A;
  --dark: #222222;

  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 20px rgba(0,0,0,0.04);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.06);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.08);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.1);
  --shadow-orange: 0 16px 40px rgba(255,106,0,0.2);
  --shadow-orange-lg: 0 24px 60px rgba(255,106,0,0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }
input, textarea, select { font-family: inherit; outline: none; border: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ─── 3. PREMIUM TYPOGRAPHY ─── */
/* Display headlines — these are the showstoppers */
.display-xxl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--black);
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--black);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--black);
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Body text */
.body-xl {
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-700);
}

.body-lg {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-700);
}

.body-md {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-700);
}

/* Gradient text highlight */
.text-gradient {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Outlined text (stroke) */
.text-outline {
  -webkit-text-stroke: 2px var(--black);
  -webkit-text-fill-color: transparent;
}

.text-outline-orange {
  -webkit-text-stroke: 2px var(--orange);
  -webkit-text-fill-color: transparent;
}

/* Label/tag overline */
.overline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
}

/* Section label pill */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.4rem;
  background: var(--orange-light);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1.5px solid rgba(255,106,0,0.15);
  margin-bottom: 1.5rem;
}

.section-tag svg { width: 16px; height: 16px; }

/* ─── 4. LAYOUT ─── */
.container {
  width: min(90%, 1440px);
  margin: 0 auto;
  position: relative;
}

.container-narrow {
  width: min(85%, 1100px);
  margin: 0 auto;
}

.section {
  padding: clamp(5rem, 10vw, 10rem) 0;
  position: relative;
}

.section-header {
  max-width: 780px;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  margin-top: 1.25rem;
}

/* ─── 5. BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 2.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease-out-expo); }
.btn:hover svg { transform: translateX(4px); }

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

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s var(--ease-out-expo);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-orange-lg);
}

.btn-primary:hover::before { left: 100%; }

.btn-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 50px rgba(0,0,0,0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}

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

.btn-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37,211,102,0.35);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn-sm {
  padding: 0.75rem 1.6rem;
  font-size: 0.88rem;
}

/* ─── 6. PRELOADER ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: clip-path 1s var(--ease-out-expo);
  clip-path: inset(0 0 0 0);
}

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

.preloader-counter {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
  position: relative;
}

.preloader-counter::after {
  content: '%';
  font-size: 0.4em;
  color: var(--orange);
  vertical-align: super;
}

.preloader-line {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.preloader-line-fill {
  height: 100%;
  width: 0%;
  background: var(--orange);
  transition: width 0.1s linear;
}

.preloader-text {
  font-family: var(--font-display);
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1.5rem;
}

/* ─── 7. HEADER ─── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease-out-expo);
}

.header.scrolled {
  padding: 0.8rem 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--orange-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.5s var(--ease-spring);
}

.logo:hover .logo-mark { transform: rotate(90deg) scale(1.1); }

.logo-text span { color: var(--orange); }

.nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover { color: var(--black); }
.nav-link:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}

.menu-toggle:hover { background: var(--soft-white); }
.menu-toggle svg { width: 22px; height: 22px; }

/* ─── 8. HERO ─── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

/* Geometric background shapes */
.hero-shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 120%;
  background: var(--orange-light);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.hero-shape-2 {
  position: absolute;
  bottom: -30px;
  right: 15%;
  width: 350px;
  height: 350px;
  border: 3px solid rgba(255,106,0,0.12);
  border-radius: 50%;
  z-index: 0;
}

.hero-shape-3 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: var(--orange-gradient);
  opacity: 0.06;
  border-radius: 50%;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 720px; }

/* Split letter word with big emphasis */
.hero-eyebrow {
  margin-bottom: 2rem;
}

.hero-title {
  margin-bottom: 2rem;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
}

.hero-subtitle {
  max-width: 540px;
  margin-bottom: 0.5rem;
}

/* Hero image + overlapping elements */
.hero-visual {
  position: relative;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-img-frame:hover img { transform: scale(1.06); }

/* Decorative frame corner accents */
.hero-img-frame::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px;
  width: 60px;
  height: 60px;
  border-top: 4px solid var(--orange);
  border-left: 4px solid var(--orange);
  border-radius: 8px 0 0 0;
  z-index: 5;
}

.hero-img-frame::after {
  content: '';
  position: absolute;
  bottom: -8px; right: -8px;
  width: 60px;
  height: 60px;
  border-bottom: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
  border-radius: 0 0 8px 0;
  z-index: 5;
}

/* Floating stat cards */
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  border: 1px solid rgba(255,106,0,0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.6s var(--ease-out-expo);
}

.float-card:hover { transform: translateY(-6px) scale(1.03) !important; }

.float-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.float-card-icon.orange { background: var(--orange-gradient); color: var(--white); }
.float-card-icon.light { background: var(--orange-light); color: var(--orange); }

.float-card-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
}

.float-card-text span {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.fc-pos-1 { bottom: 5%; left: -18%; }
.fc-pos-2 { top: 12%; right: -12%; }
.fc-pos-3 { bottom: 30%; right: -8%; }
.fc-pos-4 { top: -4%; left: 4%; }

/* ─── 9. TRUST BAR ─── */
.trust-bar {
  padding: 2rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
  background: var(--off-white);
}

.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  flex-shrink: 0;
  display: flex;
  gap: 3.5rem;
  min-width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.marquee-item svg { width: 20px; height: 20px; color: var(--orange); }

@keyframes marquee-scroll {
  to { transform: translateX(calc(-100% - 3.5rem)); }
}

/* ─── 10. SUBSIDY SECTION ─── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.visual-block {
  position: relative;
}

.visual-block-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.visual-block-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 6s ease;
}

.visual-block-img:hover img { transform: scale(1.05); }

.floating-badge {
  position: absolute;
  top: -25px; right: -25px;
  width: 130px; height: 130px;
  background: var(--orange-gradient);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow-orange-lg);
  animation: badge-float 4s ease-in-out infinite;
  z-index: 5;
}

.floating-badge .big { font-size: 1.7rem; font-weight: 800; line-height: 1; }
.floating-badge .small { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

@keyframes badge-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

/* Benefit list items */
.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1.2rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out-expo);
}

.benefit-item:hover {
  background: var(--white);
  border-color: rgba(255,106,0,0.2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

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

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

.benefit-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.benefit-item p { font-size: 0.82rem; color: var(--gray-500); }

/* Counter strip */
.counter-strip {
  display: flex;
  gap: 3.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}

.counter-item h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.counter-item p {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 0.3rem;
}

/* ─── 11. FINANCE SECTION ─── */
.finance-block {
  background: var(--orange-gradient);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 6rem);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.finance-block::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.finance-block::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,160,0,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.finance-block .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.finance-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.finance-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.f-card {
  background: var(--white);
  color: var(--black);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.f-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--orange-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.f-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.f-card:hover::after { transform: scaleX(1); }

.f-card-icon {
  width: 50px; height: 50px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.f-card-icon svg { width: 22px; height: 22px; }
.f-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.f-card p { font-size: 0.88rem; color: var(--gray-700); }

.finance-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  aspect-ratio: 4/3;
  border: 4px solid rgba(255,255,255,0.15);
}

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

/* ─── 12. CALCULATOR ─── */
.calc-wrap {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem);
  border: 1px solid var(--gray-100);
}

.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 3rem;
  align-items: start;
}

.calc-inputs {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.calc-field { margin-bottom: 2.5rem; }
.calc-field:last-child { margin-bottom: 0; }

.calc-field-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.calc-field-label span:first-child {
  font-weight: 700;
  font-size: 0.95rem;
}

.calc-field-label .value-display {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
}

/* Range slider */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: var(--gray-100);
  border-radius: 5px;
  outline: none;
  margin: 1rem 0;
  position: relative;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-orange);
  transition: transform 0.2s var(--ease-spring);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 600;
}

/* Pills toggle */
.toggle-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.3rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
}

.pill {
  padding: 0.85rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  color: var(--gray-500);
}

.pill.active {
  background: var(--white);
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}

/* Cost readout */
.cost-readout {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}

.cost-readout .cost-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
}

.cost-readout .cost-sub {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 0.2rem;
}

/* Dashboard output */
.calc-dashboard {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calc-output-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.output-tile {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.output-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.output-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.output-tile:hover::before { transform: scaleX(1); }

.output-tile .tile-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.output-tile .tile-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.2;
}

.output-tile .tile-unit {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.2rem;
}

/* Chart area */
.chart-area {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  flex-grow: 1;
}

.chart-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.chart-top h4 { font-weight: 700; font-size: 1rem; }

.chart-legend {
  display: flex;
  gap: 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
}

.legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 0.4rem; vertical-align: middle; }

.chart-canvas-wrap { height: 260px; position: relative; }

/* ─── 13. SERVICES ─── */
.services-panels {
  display: flex;
  height: 650px;
  gap: 1rem;
}

.srv-panel {
  position: relative;
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s var(--ease-out-expo);
}

.srv-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.srv-panel:hover .srv-panel-bg { transform: scale(1.08); }

.srv-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.8) 100%);
  transition: background 0.5s ease;
  z-index: 1;
}

.srv-panel.active .srv-panel-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(17,17,17,0.92) 100%);
}

.srv-panel-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem;
  color: var(--white);
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.srv-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
  width: fit-content;
}

.srv-panel-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.srv-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
}

.srv-details {
  list-style: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-out-expo) 0.15s;
}

.srv-details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}

.srv-details li svg { width: 16px; height: 16px; color: var(--orange); }

.srv-arrow {
  width: 48px; height: 48px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  transition: all 0.5s var(--ease-out-expo);
}

.srv-arrow svg { width: 20px; height: 20px; transition: transform 0.4s var(--ease-out-expo); }

/* ACTIVE panel states */
.srv-panel.active { flex: 2.5; }

.srv-panel.active .srv-desc { max-height: 80px; opacity: 1; }
.srv-panel.active .srv-details { opacity: 1; transform: translateY(0); }
.srv-panel.active .srv-arrow {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}
.srv-panel.active .srv-arrow svg { transform: rotate(-45deg); }

/* Panel counter badge (01, 02, 03…) */
.srv-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  z-index: 2;
  transition: all 0.6s var(--ease-out-expo);
}

.srv-panel.active .srv-num { color: rgba(255,255,255,0.2); font-size: 5rem; }

/* ─── 14. BRANDS MARQUEE ─── */
.brands-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.brands-title {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.brands-marquee .marquee-track { gap: 5rem; animation-duration: 35s; }

.brand-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-300);
  letter-spacing: -0.04em;
  transition: all 0.4s var(--ease-out-expo);
  cursor: default;
  white-space: nowrap;
}

.brand-logo-text:hover { color: var(--orange); transform: scale(1.08); }

/* ─── 15. WHY CHOOSE US ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--orange-gradient);
  transition: height 0.5s var(--ease-out-expo);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,106,0,0.12);
}

.why-card:hover::before { height: 100%; }

.why-card-icon {
  width: 56px; height: 56px;
  background: var(--orange-light);
  color: var(--orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s var(--ease-out-expo);
}

.why-card-icon svg { width: 24px; height: 24px; }
.why-card:hover .why-card-icon { background: var(--orange); color: var(--white); }

.why-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.88rem; color: var(--gray-700); }

/* ─── 16. ROADMAP ─── */
.roadmap-section {
  overflow: hidden;
}

.roadmap-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Central vertical line */
.roadmap-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gray-200);
  border-radius: 2px;
  transform: translateX(-50%);
  z-index: 1;
}

.roadmap-line-fill {
  width: 100%;
  height: 0%;
  background: var(--orange-gradient);
  border-radius: 2px;
  transition: height 0.1s linear;
}

.roadmap-steps { position: relative; z-index: 2; }

.rm-step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
}

.rm-step:last-child { margin-bottom: 0; }

.rm-step-content {
  background: var(--white);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all 0.5s var(--ease-out-expo);
}

.rm-step.active .rm-step-content {
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,106,0,0.15);
}

.rm-step-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.rm-step-content p { font-size: 0.88rem; color: var(--gray-700); }

/* Center node */
.rm-node {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rm-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--gray-200);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  z-index: 5;
}

.rm-step.active .rm-dot {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255,106,0,0.15), 0 0 25px rgba(255,106,0,0.3);
  transform: scale(1.2);
}

/* Step number (in the empty column) */
.rm-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  transition: all 0.5s var(--ease-out-expo);
  padding: 0 2rem;
}

.rm-step.active .rm-num { color: rgba(255,106,0,0.12); }

/* Alternating layout */
.rm-step:nth-child(odd) .rm-step-content { grid-column: 1; }
.rm-step:nth-child(odd) .rm-node { grid-column: 2; }
.rm-step:nth-child(odd) .rm-num { grid-column: 3; }

.rm-step:nth-child(even) .rm-num { grid-column: 1; text-align: right; }
.rm-step:nth-child(even) .rm-node { grid-column: 2; }
.rm-step:nth-child(even) .rm-step-content { grid-column: 3; }

/* ─── 17. ROI SHOWCASE ─── */
.roi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.roi-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.roi-row:last-child { border-bottom: none; }

.roi-row .label { font-weight: 600; color: var(--gray-700); }

.roi-row .value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
}

.roi-row.big .value { font-size: 1.7rem; color: var(--orange); }
.roi-row.green .value { color: #2E7D32; }

/* ROI comparison bars */
.roi-bars { display: flex; flex-direction: column; gap: 1.5rem; }

.roi-bar-item { display: flex; align-items: center; gap: 1.25rem; }

.roi-bar-label {
  width: 130px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  flex-shrink: 0;
}

.roi-bar-outer {
  flex-grow: 1;
  height: 28px;
  background: var(--off-white);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.roi-bar-inner {
  height: 100%;
  border-radius: 14px;
  width: 0%;
  transition: width 1.8s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
}

.roi-bar-inner.orange { background: var(--orange-gradient); }
.roi-bar-inner.gray { background: var(--gray-300); }

/* ─── 18. ABOUT ─── */
.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.map-container {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-100);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.map-container svg { width: 100%; max-width: 400px; }

.map-node {
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-node:hover { filter: drop-shadow(0 0 8px rgba(255,106,0,0.6)); transform: scale(1.3); }

.map-tip {
  position: absolute;
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -110%);
  transition: opacity 0.2s ease;
}

/* About VM cards */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.vm-card {
  padding: 1.6rem;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out-expo);
}

.vm-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(255,106,0,0.15);
}

.vm-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.vm-card h4 svg { width: 18px; height: 18px; }
.vm-card p { font-size: 0.85rem; color: var(--gray-700); }

/* City pills */
.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.city-chip {
  padding: 0.45rem 1rem;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  border: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease-out-expo);
}

.city-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}

/* ─── 19. TESTIMONIALS ─── */
.testimonials-section {
  background: var(--off-white);
  overflow: hidden;
}

.t-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.t-nav {
  display: flex;
  gap: 0.75rem;
}

.t-nav-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}

.t-nav-btn svg { width: 20px; height: 20px; }
.t-nav-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }

.t-track-wrap { overflow: hidden; padding: 0.5rem 0; }

.t-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.7s var(--ease-out-expo);
  will-change: transform;
}

.t-card {
  flex-shrink: 0;
  width: 480px;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.4s var(--ease-out-expo);
}

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

.t-stars {
  display: flex;
  gap: 0.15rem;
  color: var(--orange);
}

.t-stars svg { width: 18px; height: 18px; fill: var(--orange); }

.t-quote {
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
}

.t-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gray-100);
}

.t-user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--orange-light);
}

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

.t-name { font-weight: 700; font-size: 0.95rem; }
.t-role { font-size: 0.78rem; color: var(--gray-500); }

.t-stats { text-align: right; }
.t-kw { font-family: var(--font-display); font-weight: 800; color: var(--orange); font-size: 1.1rem; }
.t-saved { font-size: 0.78rem; font-weight: 600; color: #2E7D32; }

/* ─── 20. FAQ ─── */
.faq-list { max-width: 850px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all 0.4s var(--ease-out-expo);
}

.faq-item.open { border-color: rgba(255,106,0,0.2); box-shadow: var(--shadow-md); }

.faq-q {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
  transition: color 0.3s ease;
}

.faq-q:hover { color: var(--orange); }

.faq-icon-wrap {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out-expo);
  flex-shrink: 0;
}

.faq-icon-wrap svg { width: 16px; height: 16px; }

.faq-item.open .faq-q { color: var(--orange); }
.faq-item.open .faq-icon-wrap { background: var(--orange); color: var(--white); transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 500px;
}

.faq-a-inner {
  padding: 0 2rem 1.5rem;
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ─── 21. CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-box {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--black);
  transition: all 0.3s var(--ease-out-expo);
}

.form-control:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,106,0,0.08);
}

textarea.form-control { resize: vertical; min-height: 110px; }

.form-feedback {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}

.form-feedback.show {
  display: block;
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

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

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

.info-text h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.info-text p { font-size: 0.88rem; color: var(--gray-700); }
.info-text a:hover { color: var(--orange); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ─── 22. FINAL CTA ─── */
.cta-block {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) 3rem;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.88) 0%, rgba(255,106,0,0.55) 100%);
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-inner h2 { color: var(--white); margin-bottom: 1.5rem; }

.cta-inner p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.5rem;
}

.cta-inner .btn-group { justify-content: center; }

/* ─── 23. FOOTER ─── */
.footer {
  background: var(--black-soft);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 2.5rem;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}

.footer .logo { color: var(--white); margin-bottom: 1.2rem; }
.footer-brand p { margin-top: 0.5rem; line-height: 1.7; }

.footer-col-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { transition: all 0.3s ease; }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.nl-form {
  display: flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.2rem;
  margin-top: 1rem;
}

.nl-input {
  flex-grow: 1;
  background: transparent;
  color: var(--white);
  padding: 0.7rem 0.8rem;
  font-size: 0.82rem;
}

.nl-btn {
  background: var(--orange);
  color: var(--white);
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  transition: background 0.3s ease;
}

.nl-btn:hover { background: var(--orange-secondary); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-socials { display: flex; gap: 0.8rem; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.4s var(--ease-out-expo);
}

.social-btn:hover { background: var(--orange); transform: translateY(-3px); }
.social-btn svg { width: 16px; height: 16px; }

/* ─── 24. FLOATING WHATSAPP ─── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  transition: all 0.4s var(--ease-spring);
  animation: wa-pulse 2s infinite;
}

.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.12) rotate(8deg); }

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ─── 25. GSAP REVEAL CLASSES ─── */
/* NOTE: Initial hidden states are set by GSAP in JS, not CSS.
   This ensures content is visible even if JS fails to load. */

/* ── Ensure all animated elements are visible by default (GSAP overrides on load) ── */
.why-card,
.faq-item,
.f-card,
.srv-panel,
.output-tile,
.benefit-item,
.rm-step-content,
.hero-subtitle,
.float-card,
.section-tag {
  /* These are shown by default; GSAP temporarily sets opacity:0 at animation start */
  opacity: 1;
  transform: none;
}

/* Hero title lines — visible without JS */
.hero-title .line-inner {
  display: block;
  transform: translateY(0);
}

/* ─── 25b. ORANGE & BLACK CONTRAST DECORATIVE BLOCKS ─── */
.section-dark {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-dark .section-tag {
  background: rgba(255,106,0,0.15);
  border-color: rgba(255,106,0,0.3);
}

.section-dark .display-xl,
.section-dark .display-xxl,
.section-dark .display-md,
.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

.section-dark .body-xl,
.section-dark .body-lg,
.section-dark .body-md,
.section-dark p {
  color: rgba(255,255,255,0.7);
}

.section-dark::before {
  content: '';
  position: absolute;
  top: -20%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,106,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-dark::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,106,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Orange accent section */
.section-orange-accent {
  position: relative;
}

.section-orange-accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: var(--orange-gradient);
}

/* Decorative orange side stripe */
.orange-stripe-left {
  position: relative;
}

.orange-stripe-left::before {
  content: '';
  position: absolute;
  top: 10%; left: 0;
  width: 5px;
  height: 80%;
  background: var(--orange-gradient);
  border-radius: 3px;
}

/* Black accent CTA banner */
.black-banner {
  background: var(--black);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.black-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--orange-gradient);
}

/* Orange block decorations for sections */
.deco-block {
  position: absolute;
  background: var(--orange);
  border-radius: var(--radius-sm);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

.deco-block-1 { width: 200px; height: 200px; top: 5%; right: -3%; transform: rotate(15deg); }
.deco-block-2 { width: 120px; height: 120px; bottom: 10%; left: -2%; transform: rotate(-10deg); border-radius: 50%; }
.deco-block-3 { width: 80px; height: 300px; top: 20%; right: 5%; transform: rotate(25deg); opacity: 0.04; }

/* Dark cards for dark sections */
.section-dark .why-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.section-dark .why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,106,0,0.3);
}

.section-dark .why-card h4 { color: var(--white); }
.section-dark .why-card p { color: rgba(255,255,255,0.6); }

.section-dark .why-card-icon {
  background: rgba(255,106,0,0.15);
}

/* Dark section ROI panel */
.section-dark .roi-panel {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.section-dark .roi-row { border-color: rgba(255,255,255,0.08); }
.section-dark .roi-row .label { color: rgba(255,255,255,0.6); }
.section-dark .roi-row .value { color: var(--white); }

.section-dark .roi-bar-outer { background: rgba(255,255,255,0.06); }
.section-dark .roi-bar-label { color: rgba(255,255,255,0.7); }

/* ── DARK SECTION: ROADMAP ── */
.section-dark .rm-step-content {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
}
.section-dark .rm-step.active .rm-step-content {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,106,0,0.25);
  box-shadow: 0 0 0 1px rgba(255,106,0,0.15), 0 20px 50px rgba(0,0,0,0.3);
}
.section-dark .rm-step-content h4 { color: var(--white); }
.section-dark .rm-step-content p { color: rgba(255,255,255,0.65); }
.section-dark .rm-dot { background: var(--dark); border-color: rgba(255,255,255,0.15); }
.section-dark .rm-num { color: rgba(255,255,255,0.04); }
.section-dark .rm-step.active .rm-num { color: rgba(255,106,0,0.1); }
.section-dark .roadmap-line { background: rgba(255,255,255,0.1); }

/* ── DARK SECTION: FAQ ── */
.section-dark .faq-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  box-shadow: none;
}
.section-dark .faq-item.open {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,106,0,0.25);
}
.section-dark .faq-q { color: var(--white); }
.section-dark .faq-q:hover { color: var(--orange); }
.section-dark .faq-icon-wrap { background: rgba(255,255,255,0.08); color: var(--white); }
.section-dark .faq-item.open .faq-q { color: var(--orange); }
.section-dark .faq-a-inner { color: rgba(255,255,255,0.65); }

/* ── DARK SECTION: MAP / ABOUT ── */
.section-dark .map-container {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section-dark .vm-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
.section-dark .vm-card p { color: rgba(255,255,255,0.6); }
.section-dark .city-chip {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.08);
}
.section-dark .city-chip:hover {
  background: rgba(255,106,0,0.15);
  color: var(--orange);
  border-color: rgba(255,106,0,0.3);
}

/* ── DARK SECTION: BENEFIT ITEMS ── */
.section-dark .benefit-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
.section-dark .benefit-item:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,106,0,0.25);
}
.section-dark .benefit-item h4 { color: var(--white); }
.section-dark .benefit-item p { color: rgba(255,255,255,0.6); }

/* ── DARK SECTION: CONTACT INFO ── */
.section-dark .info-block .info-icon {
  background: rgba(255,106,0,0.15);
}
.section-dark .info-text h5 { color: var(--white); }
.section-dark .info-text p { color: rgba(255,255,255,0.65); }
.section-dark .info-text a:hover { color: var(--orange); }

/* ── DARK SECTION: COUNTER STRIP ── */
.section-dark .counter-strip {
  border-top-color: rgba(255,255,255,0.08);
}
.section-dark .counter-item p { color: rgba(255,255,255,0.5); }

/* ─── 26. RESPONSIVE ─── */
/* ═══════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════ */

/* ─── Large screens ─── */
@media (max-width: 1200px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-output-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-layout { gap: 3rem; }
}

/* ─── Tablet ─── */
@media (max-width: 992px) {
  .hero { padding-top: 80px; padding-bottom: 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-content { margin: 0 auto; max-width: 600px; }
  .hero-subtitle { margin: 0 auto 0.5rem; }
  .btn-group { justify-content: center; }
  .hero-shape-1 { display: none; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .float-card { display: none; }

  .display-xxl { font-size: clamp(2.2rem, 9vw, 4rem); }
  .display-xl { font-size: clamp(1.8rem, 7vw, 3rem); }
  .display-md { font-size: clamp(1.3rem, 5vw, 2rem); }

  .section { padding: clamp(3.5rem, 8vw, 6rem) 0; }

  .split-layout, .roi-layout, .about-layout, .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .finance-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .finance-visual { aspect-ratio: 16/9; max-height: 340px; }

  .calc-grid { grid-template-columns: 1fr; gap: 2rem; }
  .calc-wrap { padding: 2.5rem; }

  /* Services — 2×2 card grid, all 4 always visible */
  .services-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
    gap: 1rem;
  }
  .srv-panel {
    height: 320px;
    flex: none;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
  }
  .srv-panel:not(.active)::after { display: none; }
  /* Always show description & bullets on tablet grid */
  .srv-panel .srv-desc {
    max-height: 120px !important;
    opacity: 1 !important;
  }
  .srv-panel .srv-details {
    opacity: 1 !important;
    transform: none !important;
  }
  .srv-panel.active {
    flex: none;
    height: 320px;
    box-shadow: 0 0 0 2px var(--orange), 0 20px 50px rgba(255,106,0,0.25);
  }
  .srv-panel.active .srv-panel-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(17,17,17,0.92) 100%);
  }
  .srv-num { font-size: 2.5rem !important; }
  .srv-panel-body { padding: 1.5rem; }
  .srv-panel-body h3 { font-size: 1.1rem; }

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

  .rm-step {
    grid-template-columns: 56px 1fr;
    gap: 0;
    margin-bottom: 3rem;
  }
  .rm-step:nth-child(odd) .rm-step-content,
  .rm-step:nth-child(even) .rm-step-content { grid-column: 2; }
  .rm-step:nth-child(odd) .rm-node,
  .rm-step:nth-child(even) .rm-node { grid-column: 1; }
  .rm-step .rm-num { display: none; }
  .roadmap-line { left: 28px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .roi-bars { margin-top: 1rem; }
  .benefit-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    padding: 6rem 2rem;
    gap: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: right 0.5s var(--ease-out-expo);
    border-left: 4px solid var(--orange);
  }
  .nav.open { right: 0; }
  .nav-link {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
  }
  .nav-link::after { display: none; }
  .header-actions .btn-dark { display: none; }
  .header-actions .btn-primary { font-size: 0.8rem; padding: 0.6rem 1rem; }

  .btn-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 360px; }

  .hero-img-frame { aspect-ratio: 1/1; border-radius: var(--radius-md); }
  .hero-img-frame::before, .hero-img-frame::after { display: none; }

  /* Finance */
  .finance-block { padding: 2rem 1.25rem; border-radius: var(--radius-lg); }
  .finance-cards { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .f-card { padding: 1.4rem; }
  .f-card h4 { font-size: 1rem; }

  /* Calculator */
  .calc-wrap { padding: 1.5rem 1rem; border-radius: var(--radius-lg); }
  .calc-grid { gap: 1.5rem; }
  .calc-inputs { padding: 1.25rem; border-radius: var(--radius-md); }
  .calc-output-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .output-tile { padding: 1rem 0.85rem; }
  .output-tile .tile-value { font-size: 1.15rem; }
  .output-tile .tile-label { font-size: 0.68rem; }
  .cost-readout .cost-value { font-size: 1.5rem; }
  .chart-canvas-wrap { height: 200px; }
  .chart-top { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  /* Services — single column stack on mobile, all 4 visible */
  .services-panels {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .srv-panel { height: 300px; border-radius: var(--radius-md); }
  .srv-panel.active { height: 300px; box-shadow: 0 0 0 2px var(--orange), 0 16px 40px rgba(255,106,0,0.2); }
  .srv-panel .srv-desc { max-height: 80px !important; opacity: 1 !important; font-size: 0.82rem; }
  .srv-panel .srv-details { opacity: 1 !important; transform: none !important; }
  .srv-panel-body { padding: 1.25rem 1.25rem 1.5rem; }
  .srv-panel-body h3 { font-size: 1.1rem; }
  .srv-arrow { margin-top: 0.75rem; width: 40px; height: 40px; }
  .srv-arrow svg { transform: rotate(-45deg); }
  .srv-num { font-size: 2.5rem !important; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; gap: 0.875rem; }
  .why-card { padding: 1.75rem 1.4rem; }

  /* Roadmap */
  .rm-step { margin-bottom: 2rem; }
  .rm-step-content { padding: 1.25rem 1.4rem; }
  .rm-step-content h4 { font-size: 1rem; }
  .rm-step-content p { font-size: 0.84rem; }

  /* FAQ */
  .faq-q { padding: 1.1rem 1.3rem; font-size: 0.93rem; }
  .faq-a-inner { padding: 0 1.3rem 1.1rem; font-size: 0.86rem; }
  .faq-list { max-width: 100%; }

  /* Contact */
  .contact-layout { gap: 2rem; }
  .map-embed { height: 260px; }

  /* CTA */
  .cta-block { padding: 4rem 1.5rem; border-radius: var(--radius-lg); }
  .cta-inner h2 { font-size: clamp(1.6rem, 8vw, 2.5rem); }

  /* Misc */
  .counter-strip { flex-wrap: wrap; gap: 1.5rem 2rem; }
  .vm-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .floating-badge { width: 90px; height: 90px; top: -12px; right: -12px; }
  .floating-badge .big { font-size: 1.2rem; }
  .floating-badge .small { font-size: 0.6rem; }
  .map-container { padding: 1.25rem; }
  .section-header { margin-bottom: 2rem; }
  .footer { padding: 3rem 0 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .brands-marquee .marquee-track { gap: 3rem; }
  .brand-logo-text { font-size: 1.25rem; }
  .roi-layout { gap: 2.5rem; }
  .roi-bar-label { width: 100px; font-size: 0.82rem; }
}

/* ─── Small Mobile ─── */
@media (max-width: 480px) {
  .calc-output-grid { grid-template-columns: 1fr 1fr; }
  .calc-inputs { padding: 1rem; }
  .hero { min-height: auto; padding-top: 70px; padding-bottom: 2rem; }
  .hero-visual { max-width: 320px; }
  .display-xxl { font-size: clamp(1.9rem, 10vw, 2.6rem); line-height: 1.05; }
  .display-xl { font-size: clamp(1.5rem, 8vw, 2.2rem); }
  .body-xl { font-size: 0.98rem; }
  .btn { padding: 0.9rem 1.6rem; font-size: 0.87rem; }
  .btn-group { gap: 0.7rem; }
  .section-tag { font-size: 0.72rem; padding: 0.4rem 1rem; }
  .srv-panel { height: 270px; }
  .srv-panel.active { height: 270px; }
  .srv-panel .srv-desc { max-height: 70px !important; opacity: 1 !important; }
  .srv-panel .srv-details { opacity: 1 !important; transform: none !important; }
  .srv-panel-body h3 { font-size: 1rem; }
  .finance-cards { grid-template-columns: 1fr; }
  .info-block { gap: 0.8rem; }
  .about-layout { gap: 1.5rem; }
  .vm-grid { grid-template-columns: 1fr; }
  .city-pills { gap: 0.4rem; }
  .city-chip { font-size: 0.75rem; padding: 0.35rem 0.75rem; }
  .roi-panel { padding: 1.25rem; }
  .roi-row { padding: 1rem 0; }
  .roi-row .value { font-size: 1.05rem; }
  .roi-row.big .value { font-size: 1.25rem; }
  .map-embed { height: 230px; }
  .contact-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .counter-strip { gap: 1.25rem; }
  .counter-item h3 { font-size: 2rem; }
  .benefit-grid { gap: 0.875rem; }
  .benefit-item { padding: 1rem; }
  .faq-q { padding: 1rem 1.1rem; font-size: 0.88rem; }
  .section-header.centered p { font-size: 0.9rem; }
  .chart-canvas-wrap { height: 170px; }
  .cta-block { padding: 3rem 1.25rem; }
}
