/* ============================================================
   WEBMARVEL TECHNOLOGIES — MASTER STYLESHEET
   webmarvel.in | Built for SEO, Conversion & Performance
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ─── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --navy:        #0D1B2A;
  --navy-light:  #1B2D45;
  --navy-lighter:#243B55;
  --white:       #FAFAF8;
  --off-white:   #F4F3EF;
  --amber:       #F59E0B;
  --amber-dark:  #D97706;
  --amber-light: rgba(245,158,11,0.1);
  --text:        #1E293B;
  --muted:       #64748B;
  --border:      #E2E8F0;
  --border-dark: #CBD5E1;
  --success:     #10B981;
  --wa-green:    #25D366;

  --font-display: 'Outfit', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 4px rgba(13,27,42,0.07);
  --shadow-md:  0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg:  0 12px 48px rgba(13,27,42,0.13);

  --section-pad: clamp(64px, 9vw, 108px);
  --container:   1200px;
  --nav-h:       72px;
}

/* ─── 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.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); letter-spacing: -0.005em; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--muted); line-height: 1.75; }
strong { color: var(--text); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}
.section           { padding: var(--section-pad) 0; }
.section--dark     { background: var(--navy); }
.section--tint     { background: var(--off-white); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4  { color: #fff; }
.section--dark p   { color: rgba(255,255,255,0.6); }
.section--dark strong { color: rgba(255,255,255,0.9); }

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

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

/* ─── VISIBILITY UTILITIES ────────────────────────────────── */
.mobile-only { display: none; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block; }
}

/* ─── PROCESS GRID (service pages) ────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ─── SLIDER (desktop) ────────────────────────────────────── */
.slider { position: relative; overflow: hidden; }
.slider__track {
  display: flex !important;
  gap: 28px;
}
.slider__track > * {
  flex-shrink: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.slider[data-visible="3"] .slider__track > * {
  width: calc((100% - 56px) / 3);
  opacity: 0.6;
  transform: scale(0.9);
}
.slider[data-visible="3"] .slider__track > *.card-focus {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 12px 40px rgba(13,27,42,0.12);
  z-index: 2;
  position: relative;
}
.slider[data-visible="2"] .slider__track > * {
  width: calc((100% - 28px) / 2);
}
.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.slider__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.slider__btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.slider__dots {
  display: flex;
  gap: 8px;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.slider__dot.active {
  background: var(--amber);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .slider__controls { display: none; }
  .slider[data-visible="3"] .slider__track > * {
    width: 80vw;
    opacity: 0.5;
    transform: scale(0.92);
  }
  .slider[data-visible="3"] .slider__track > *.card-focus {
    opacity: 1;
    transform: scale(1);
  }
  .slider[data-visible="2"] .slider__track > * {
    width: 85vw;
  }
}

/* ─── MOBILE CAROUSEL (non-slider sections) ──────────────── */
@media (max-width: 768px) {
  .mobile-carousel:not(.slider__track) {
    display: flex !important;
    grid-template-columns: unset !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .mobile-carousel:not(.slider__track) > * {
    flex: 0 0 82%;
    min-width: 0;
    scroll-snap-align: start;
  }
  .mobile-carousel:not(.slider__track)::-webkit-scrollbar { display: none; }
  .mobile-carousel:not(.slider__track) { scrollbar-width: none; }
}

/* ─── WHY WEBMARVEL CARDS ─────────────────────────────────── */
.why-card { text-align: center; }
.why-card__icon { font-size: 2rem; margin-bottom: 12px; }
.why-card__text p { font-size: 13px; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 2px 14px rgba(245,158,11,0.28);
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(245,158,11,0.38);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-dark);
}
.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-wa {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 2px 14px rgba(37,211,102,0.28);
}
.btn-wa:hover {
  background: #1fb855;
  transform: translateY(-1px);
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 34px; font-size: 15px; }

/* ─── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(13,27,42,0.07);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 8px;
}
.nav__logo img {
  height: 88px;
  width: auto;
  display: block;
}
.nav__logo-dot {
  display: none;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav__links > a,
.nav__dropdown-toggle {
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links > a:hover,
.nav__links > a.active,
.nav__dropdown:hover .nav__dropdown-toggle {
  color: var(--navy);
  background: var(--off-white);
}
.nav__dropdown { position: relative; }
.nav__dropdown-toggle svg {
  width: 13px; height: 13px;
  transition: transform 0.2s;
}
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 250px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 10;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}
.nav__dropdown-menu a:hover { background: var(--off-white); color: var(--navy); }
.dm-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.nav__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px clamp(20px, 5vw, 48px) 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  max-height: calc(100svh - var(--nav-h));
  overflow-y: auto;
}
.nav__mobile.open { display: block; }
.nav__mobile > a,
.nav__mobile .mobile-label {
  display: block;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav__mobile .mobile-submenu a {
  display: block;
  padding: 10px 0 10px 20px;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.nav__mobile .nav__cta { margin-top: 18px; flex-direction: column; }
.nav__mobile .btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .nav__links     { display: none; }
  .nav__cta.desktop { display: none; }
  .nav__hamburger { display: flex; }
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 35%, rgba(245,158,11,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(13,27,42,0.03) 0%, transparent 65%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.09);
  border: 1px solid rgba(245,158,11,0.22);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber-dark);
  margin-bottom: 22px;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--amber); }
.hero > .container > .hero__grid .hero__text > p {
  font-size: 1.07rem;
  max-width: 500px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero__stats   { display: flex; gap: 36px; flex-wrap: wrap; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label { font-size: 12px; color: var(--muted); }

/* Hero visual */
.hero__visual { position: relative; }
.hero__mockup {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero__mockup::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.mockup-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }
.mockup-url {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  height: 10px;
  margin-left: 8px;
}
.mockup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.mockup-metric {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px;
}
.mockup-metric__label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mockup-metric__val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.mockup-metric__sub {
  font-size: 10px;
  color: #10B981;
  margin-top: 2px;
}
.mockup-chart {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px;
  margin-top: 12px;
}
.mockup-chart__label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  font-weight: 500;
}
.mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
}
.mockup-bar-item {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(245,158,11,0.25);
  transition: background 0.2s;
}
.mockup-bar-item.hi { background: var(--amber); }
.mockup-badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
}
.mockup-badge__icon {
  width: 34px; height: 34px;
  background: rgba(16,185,129,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.mockup-badge__text { font-size: 12px; }
.mockup-badge__text strong { display: block; font-size: 14px; color: var(--navy); }
.hero__tag-left {
  position: absolute;
  top: 20px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  animation: float 3.5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@media (max-width: 900px) {
  .hero__grid   { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}

/* ─── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  flex: 1;
}
.trust-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--border-dark);
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.trust-logo:hover { color: var(--muted); }

/* ─── SECTION HEADER ──────────────────────────────────────── */
.section-header        { margin-bottom: clamp(40px, 6vw, 64px); }
.section-header.center { text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header h2     { margin-bottom: 12px; }
.section-header p      { max-width: 560px; font-size: 1.03rem; }
.section-header.center p { margin: 0 auto; }

/* ─── SERVICE CARDS ───────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: rgba(245,158,11,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.service-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.service-card > p { font-size: 14px; flex: 1; margin-bottom: 22px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber-dark);
  transition: gap 0.2s;
  margin-top: auto;
}
.service-card:hover .service-card__link { gap: 10px; }

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.testimonial-card--featured {
  background: var(--navy);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.testimonial-card--featured::before {
  content: '"';
  position: absolute;
  top: -20px; right: 28px;
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 800;
  color: rgba(245,158,11,0.08);
  line-height: 1;
}
.stars { display: flex; gap: 3px; color: var(--amber); font-size: 13px; margin-bottom: 14px; }
.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-card--featured .testimonial-quote { color: rgba(255,255,255,0.82); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--navy);
  flex-shrink: 0;
}
.testimonial-name  { font-size: 14px; font-weight: 600; color: var(--navy); }
.testimonial-role  { font-size: 12px; color: var(--muted); margin-top: 1px; }
.testimonial-card--featured .testimonial-name { color: #fff; }
.testimonial-card--featured .testimonial-role { color: rgba(255,255,255,0.45); }

/* ─── PROCESS STEPS ───────────────────────────────────────── */
.process-list { display: flex; flex-direction: column; gap: 28px; }
.process-step { display: flex; gap: 20px; align-items: flex-start; }
.process-step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(245,158,11,0.18);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  padding-top: 3px;
  letter-spacing: -0.03em;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 5px; }
.process-step p  { font-size: 14px; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  gap: 16px;
  user-select: none;
}
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--muted); transition: transform 0.3s; }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding-bottom: 22px; font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── PORTFOLIO CARD ──────────────────────────────────────── */
.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.28s ease;
  background: var(--white);
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,158,11,0.2);
}
.portfolio-card__img {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.portfolio-card__body { padding: 22px; }
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: var(--off-white);
  color: var(--muted);
}
.tag--amber { background: var(--amber-light); color: var(--amber-dark); }
.portfolio-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.portfolio-card h3 { font-size: 1rem; margin-bottom: 6px; }
.portfolio-card p  { font-size: 13px; margin-bottom: 14px; }
.portfolio-result {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.result-metric { text-align: center; }
.result-metric__num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.result-metric__label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── BLOG CARD ───────────────────────────────────────────── */
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card__img {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 14px; margin-bottom: 10px; font-size: 12px; color: var(--muted); flex-wrap: wrap; }
.blog-card h3 { font-size: 1.02rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card p  { font-size: 13px; flex: 1; margin-bottom: 18px; }
.blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--amber-dark);
  margin-top: auto;
}

/* ─── CONTACT FORM ────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.11);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 12px; color: var(--muted); margin-top: 10px; }
.form-success {
  display: none;
  background: rgba(16,185,129,0.07);
  border: 1px solid rgba(16,185,129,0.22);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success__icon { font-size: 2rem; margin-bottom: 10px; }
.form-success h3 { color: #059669; margin-bottom: 8px; }
.form-success p  { font-size: 14px; color: var(--muted); }

/* ─── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(245,158,11,0.07) 0%, transparent 70%);
}
.cta-band .container { position: relative; }
.cta-band h2   { color: #fff; margin-bottom: 12px; }
.cta-band p    { color: rgba(255,255,255,0.6); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-trust span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ─── FLOATING WHATSAPP ───────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.09); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
.wa-float svg  { width: 27px; height: 27px; fill: white; }
.wa-float__tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .footer__logo-img {
  height: 120px;
  width: auto;
  margin-bottom: 18px;
}
.footer__brand > p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s;
  color: rgba(255,255,255,0.5);
}
.footer__social a:hover { background: var(--amber); border-color: var(--amber); color: var(--navy); }
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer__col ul li a:hover { color: #fff; }
.footer__contact-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.7); }
.heart { color: var(--amber); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 0 56px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { color: var(--border-dark); }
.page-hero h1 { max-width: 700px; margin-bottom: 14px; }
.page-hero > .container > p { max-width: 600px; font-size: 1.05rem; }

/* ─── STAT CARDS ──────────────────────────────────────────── */
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: var(--muted); }

/* ─── FEATURE ITEMS ───────────────────────────────────────── */
.feature-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.feature-item h4 { margin-bottom: 4px; font-size: 15px; }
.feature-item p  { font-size: 14px; }

/* ─── INFO CARD ───────────────────────────────────────────── */
.info-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
}
.info-card h3 { margin-bottom: 10px; font-size: 1.1rem; }

/* ─── SPLIT LAYOUT ────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split__visual { order: -1; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__visual { order: 0; }
}
.split__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ─── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Disable fade-up inside sliders — slider handles its own animations */
.slider__track .fade-up {
  opacity: 1;
  transform: none;
  transition: none;
}
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ─── UTILITIES ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-amber  { color: var(--amber); }
.text-navy   { color: var(--navy); }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.gap-2 { gap: 2px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text);
}
.check-list li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── SPLIT TESTIMONIAL (replaces inline grid) ───────────── */
.split-testimonial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* ─── SECTION HEADER SPLIT (replaces inline flex) ────────── */
.section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE-FIRST / APP-LIKE UI
   ═══════════════════════════════════════════════════════════════ */

/* ─── SAFE AREA INSETS (notched devices) ─────────────────── */
html {
  padding: env(safe-area-inset-top) env(safe-area-inset-right) 0 env(safe-area-inset-left);
}

/* ─── TOUCH OPTIMIZATIONS ────────────────────────────────── */
@media (pointer: coarse) {
  .btn, .nav__mobile > a, .nav__mobile .mobile-submenu a,
  .service-card__link, .blog-card__cta, .faq-question {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  /* Prevent tap highlight flash */
  a, button { -webkit-tap-highlight-color: transparent; }
  /* Smoother scrolling */
  body { -webkit-overflow-scrolling: touch; }
}

/* ─── BOTTOM NAV (app-like tab bar) ──────────────────────── */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 16px rgba(13, 27, 42, 0.06);
}
.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
  min-width: 64px;
}
.bottom-nav__item svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.bottom-nav__item.active {
  color: var(--amber-dark);
}
.bottom-nav__item.active svg {
  stroke: var(--amber-dark);
}

/* ─── MOBILE BREAKPOINT (≤768px) — app-like layout ──────── */
@media (max-width: 768px) {

  /* Show bottom nav */
  .bottom-nav { display: flex; }

  /* Body padding for bottom nav */
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }

  /* Move WhatsApp float above bottom nav */
  .wa-float {
    bottom: calc(80px + env(safe-area-inset-bottom));
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .wa-float svg { width: 24px; height: 24px; }
  .wa-float__tooltip { display: none; }

  /* Nav — compact for mobile */
  .nav { height: 56px; --nav-h: 56px; }
  .nav__logo img { height: 72px; }

  /* Hero — tighter mobile layout */
  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 32px) 0 48px;
  }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); margin-bottom: 14px; }
  .hero > .container > .hero__grid .hero__text > p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .hero__badge { font-size: 11px; padding: 5px 12px 5px 7px; margin-bottom: 16px; }
  .hero__actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .hero__stats {
    gap: 24px;
    justify-content: flex-start;
  }
  .hero__stat-num { font-size: 1.5rem; }

  /* Trust bar — horizontal scroll */
  .trust-bar { padding: 16px 0; overflow: hidden; }
  .trust-bar__inner { flex-wrap: nowrap; gap: 20px; }
  .trust-logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 20px;
    padding-right: 20px;
  }
  .trust-logos::-webkit-scrollbar { display: none; }
  .trust-logo { flex-shrink: 0; font-size: 12px; }

  /* Split testimonial — stack on mobile */
  .split-testimonial {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Section header split — stack */
  .section-header--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .section-header--split .btn { align-self: flex-start; }

  /* Section padding — tighter */
  :root { --section-pad: clamp(40px, 8vw, 64px); }

  /* Service cards — full width, compact */
  .service-card { padding: 22px; }
  .service-icon { width: 42px; height: 42px; font-size: 20px; margin-bottom: 14px; }

  /* Portfolio cards — single column on mobile */
  .portfolio-card__body { padding: 18px; }
  .portfolio-card h3 { font-size: 1.05rem; }
  .portfolio-card p { font-size: 14px; }
  .portfolio-card__img { aspect-ratio: 16/8; }
  .portfolio-result { gap: 16px; }
  .result-metric { flex: 1; }
  .result-metric__num { font-size: 1.2rem; }

  /* Testimonial cards */
  .testimonial-card { padding: 22px; }
  .testimonial-quote { font-size: 14px; }

  /* Blog cards */
  .blog-card__body { padding: 16px; }
  .blog-card h3 { font-size: 0.95rem; }

  /* CTA band */
  .cta-band__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-band__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer — compact mobile */
  .footer { padding-top: 36px; }
  .footer__logo-section { padding-bottom: 24px; margin-bottom: 24px; }
  .footer__logo-img { height: auto; max-width: 220px; }
  .footer__tagline { font-size: 13px; margin-bottom: 18px; }
  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  .footer__grid .footer__brand { margin-bottom: 8px; }
  .footer__brand .footer__logo-img { height: 80px; }
  .footer__brand > p { font-size: 13px; }
  .footer__col ul { display: flex; flex-wrap: wrap; gap: 4px 16px; }
  .footer__col ul li { width: auto; }

  /* Why Webmarvel grid — mobile tweaks */
  .why-card { text-align: left !important; display: flex; flex-direction: row; gap: 14px; align-items: flex-start; }
  .why-card__icon { font-size: 1.6rem !important; margin-bottom: 0 !important; flex-shrink: 0; }
  .why-card__text p { font-size: 13px; }

  /* Mobile menu — full-screen app-like overlay */
  .nav__mobile {
    top: 56px;
    padding: 12px 20px 20px;
    border-radius: 0 0 16px 16px;
  }
  .nav__mobile > a,
  .nav__mobile .mobile-label {
    padding: 14px 0;
    font-size: 16px;
  }
  .nav__mobile .mobile-submenu a {
    padding: 12px 0 12px 20px;
    font-size: 15px;
  }
  .nav__mobile .nav__cta {
    margin-top: 16px;
    gap: 10px;
  }

  /* Buttons — larger touch targets */
  .btn { padding: 14px 24px; font-size: 14px; border-radius: 10px; }
  .btn-lg { padding: 16px 28px; font-size: 15px; }

  /* Hide desktop CTA in nav on mobile */
  .nav__cta.desktop { display: none; }
}

/* ─── SMALL PHONES (≤400px) ──────────────────────────────── */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.6rem; }
  .hero__stats { gap: 16px; }
  .hero__stat-num { font-size: 1.3rem; }
  .hero__stat-label { font-size: 11px; }
  .btn { padding: 12px 20px; font-size: 13px; }
  .btn-lg { padding: 14px 24px; font-size: 14px; }
  .bottom-nav__item { min-width: 56px; font-size: 9px; padding: 6px 8px; }
  .bottom-nav__item svg { width: 20px; height: 20px; }
}

/* ─── TABLET PORTRAIT (≤1024px and portrait) ─────────────── */
@media (max-width: 1024px) and (orientation: portrait) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .hero { min-height: auto; }
  .hero__text { max-width: 600px; }
  .split-testimonial { grid-template-columns: 1fr; gap: 28px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr !important; }
  .footer__brand .footer__logo-img { height: 80px !important; }
  .footer__logo-section { padding-bottom: 24px; margin-bottom: 24px; }
  .footer__tagline { font-size: 13px; }
}

/* ─── LANDSCAPE PHONE — keep it compact ──────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: calc(var(--nav-h) + 20px) 0 32px; }
  .bottom-nav { display: none; }
  body { padding-bottom: 0; }
  .wa-float { bottom: 16px; }
}

/* ─── DISABLE HOVER EFFECTS ON TOUCH ─────────────────────── */
@media (hover: none) {
  .service-card:hover { transform: none; box-shadow: none; border-color: var(--border); }
  .service-card:hover::after { transform: scaleX(0); }
  .portfolio-card:hover { transform: none; box-shadow: none; }
  .blog-card:hover { transform: none; box-shadow: none; }
  .btn-primary:hover { transform: none; }
  .btn-wa:hover { transform: none; }

  /* Active states instead for touch feedback */
  .service-card:active { transform: scale(0.98); }
  .portfolio-card:active { transform: scale(0.98); }
  .blog-card:active { transform: scale(0.98); }
  .btn:active { transform: scale(0.97); opacity: 0.9; }
}
