/* ============================================================
   VAPE & PHONE EXPRESS — Master Stylesheet
   Clean rebuild from scratch
   ============================================================ */

/* ---------- Google Fonts (Loaded via HTML) ---------- */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --primary: #FB0200;
  --primary-dark: #c90200;
  --primary-light: #ff4545;
  --primary-glow: rgba(251, 2, 0, 0.15);
  --secondary: #151515;
  --text: #171717;
  --text-light: #6d7680;
  --text-muted: #999;
  --white: #FFFFFF;
  --black: #000000;
  --bg-pink: #FFD3D3;
  --bg-pink-alt: #FBABCB;
  --bg-light: #f5f5f7;
  --bg-dark: #111111;
  --border-light: #e5e5e5;
  --border-pink: #FA7A7A;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FB0200 0%, #ff4545 50%, #ff6b6b 100%);
  --gradient-dark: linear-gradient(135deg, #151515 0%, #1e1e2e 100%);
  --gradient-pink: linear-gradient(135deg, #FFD3D3 0%, #ffe0e0 50%, #fff0f0 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  --gradient-cta: linear-gradient(135deg, #d40200 0%, #FB0200 40%, #ff4545 100%);

  /* Typography */
  --font-family: 'Poppins', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.5rem;
  --fs-hero: 2.75rem;

  /* Spacing */
  --container-max: 1200px;
  --container-padding: 24px;
  --section-padding: 70px 0;
  --gap-sm: 10px;
  --gap-md: 20px;
  --gap-lg: 30px;
  --gap-xl: 50px;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 30px rgba(251, 2, 0, 0.15);

  /* Transitions */
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Text Selection */
::selection {
  background: rgba(251, 2, 0, 0.2);
  color: var(--primary-dark);
}

body {
  font-family: var(--font-family);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-hero); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-lg); }
p { margin-bottom: 1em; }

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section--pink { background: var(--bg-pink); }
.section--light { background: var(--bg-light); }
.section--dark { background: var(--bg-dark); color: var(--white); }
.section--white { background: var(--white); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--gap-sm); }
.gap-md { gap: var(--gap-md); }
.gap-lg { gap: var(--gap-lg); }

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: var(--white); }
.text-red { color: var(--primary); }
.text-upper { text-transform: uppercase; }
.text-muted { color: var(--text-light); }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-family);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #d40000 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(251, 2, 0, 0.25);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #e60000 0%, #cc0000 100%);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(251, 2, 0, 0.5), 0 0 15px rgba(251, 2, 0, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 2, 0, 0.25);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  font-weight: 700;
}

.btn--white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn--lg {
  padding: 16px 40px;
  font-size: var(--fs-md);
  border-radius: var(--radius-lg);
}

.btn i,
.btn svg {
  font-size: 0.9em;
}

/* ---------- TOP BAR ---------- */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: var(--fs-sm);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
}

.top-bar__item a {
  color: var(--white);
}

.top-bar__item a:hover {
  opacity: 0.85;
  color: var(--white);
}

.top-bar__item i {
  font-size: var(--fs-base);
}

/* ---------- HEADER / NAV ---------- */
.header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--transition);
}

.header:hover {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.header__logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  transition: color var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--primary);
}

/* Dropdown */
.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}

.nav__dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  transition: all var(--transition-fast);
}

.nav__dropdown-link:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 24px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--secondary);
  transition: color var(--transition);
}

.header__phone i {
  color: var(--primary);
  font-size: 14px;
}

.header__phone:hover {
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  transition: background var(--transition), transform var(--transition);
}

.hamburger:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.hamburger__line {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 1002;
  padding: 50px 30px 30px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transition: right var(--transition);
  overflow-y: auto;
}

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

.mobile-nav__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 24px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: color var(--transition);
}

.mobile-nav__close:hover {
  color: var(--primary);
}

.mobile-nav__overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover,
.mobile-nav__link--active {
  color: var(--primary);
}

.mobile-nav__sub {
  padding-left: 20px;
}

.mobile-nav__sub .mobile-nav__link {
  font-size: var(--fs-sm);
  font-weight: 500;
}

/* ---------- HERO SECTION ---------- */
.hero {
  background: var(--gradient-pink);
  padding: 70px 0 0;
  overflow: hidden;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 2, 0, 0.06) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero__content {
  flex: 1;
  padding-bottom: 70px;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__text {
  font-size: var(--fs-md);
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.8;
}

.hero__image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero__image img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ---------- KLARNA BANNER ---------- */
.klarna-banner {
  background: linear-gradient(135deg, #FBABCB 0%, #f78da7 100%);
  padding: 28px 40px;
  text-align: center;
  border-radius: var(--radius-xl);
  max-width: 1000px;
  margin: -25px auto 50px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(251, 171, 203, 0.4);
}

.klarna-banner h3 {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.klarna-banner p {
  font-size: var(--fs-base);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

/* ---------- BRAND CAROUSEL ---------- */
.brands {
  padding: 50px 0 40px;
  overflow: hidden;
}

.brands__track {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  width: max-content;
}

.brands__item {
  flex: 0 0 auto;
  width: 155px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-xl);
  padding: 16px 22px;
  background: var(--white);
  transition: all var(--transition-smooth);
}

.brands__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(251, 2, 0, 0.1);
  border-color: var(--primary-light);
}

.brands__item img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.brands__item:hover img {
  opacity: 1;
}

/* Text-based brand logos (for brands without image files) */
.brands__item--text span {
  font-family: var(--font-family);
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.5px;
  white-space: nowrap;
  opacity: 0.75;
  transition: opacity var(--transition);
}

.brands__item--text:hover span {
  opacity: 1;
}

/* ---------- SERVICES GRID ---------- */
.services {
  padding: 70px 0 50px;
}

.services__title {
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

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

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

.service-card {
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-smooth);
  padding: 30px 16px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-light);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border-color: var(--border-light);
}

.service-card__image {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-card__image img {
  max-width: 90%;
  max-height: 220px;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__title {
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--black);
  text-transform: uppercase;
}

/* ---------- TWO COLUMN SECTION ---------- */
.two-col {
  display: flex;
  align-items: center;
  gap: 60px;
}

.two-col__image {
  flex: 1;
}

.two-col__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.two-col__content {
  flex: 1;
}

.two-col__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.two-col__content h2 .text-red {
  font-style: italic;
}

.two-col__content p {
  color: var(--text-light);
  font-size: var(--fs-md);
  line-height: 1.8;
}

/* ---------- REPAIR CARDS ---------- */
.repairs-section {
  padding: 80px 0;
}

.repairs-section__title {
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
}

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

.repair-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.repair-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.repair-card:hover::before {
  opacity: 1;
}

.repair-card__icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.repair-card__icon img {
  height: 72px;
  width: auto;
  transition: transform var(--transition);
}

.repair-card:hover .repair-card__icon img {
  transform: scale(1.1);
}

.repair-card__title {
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: var(--black);
}

.repair-card__text {
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 22px;
}

.repair-card .btn {
  font-size: var(--fs-sm);
  padding: 10px 24px;
}

/* ---------- BEST SHOP / PITCH SECTION ---------- */
.pitch {
  background: var(--gradient-pink);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.pitch::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 2, 0, 0.05) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.pitch__inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.pitch__content {
  flex: 1;
}

.pitch__content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 20px;
}

.pitch__content p {
  font-size: var(--fs-base);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.pitch__image {
  flex: 1;
  position: relative;
}

.pitch__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ---------- WHY CHOOSE US ---------- */
.why-us {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.why-us h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 50px;
}

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

/* Fix class mismatch: HTML uses .why-us__card, CSS had .why-card */
.why-us__card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-us__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.why-us__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.why-us__card:hover::before {
  opacity: 1;
}

.why-us__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffe0e0 0%, #FFD3D3 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--primary);
  transition: all var(--transition);
}

.why-us__card:hover .why-us__icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.why-us__card h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.why-us__card p {
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Legacy .why-card support */
.why-card {
  padding: 30px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

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

.why-card--light {
  background: var(--white);
  color: var(--text);
}

.why-card--dark {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.why-card--dark .why-card__title {
  color: var(--white);
}

.why-card--dark .why-card__text {
  color: rgba(255,255,255,0.8);
}

.why-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

.why-card__icon img {
  height: 40px;
  width: auto;
}

.why-card__title {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.why-card__text {
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin: 0;
}

/* ---------- CTA SECTION ---------- */
.cta {
  padding: 70px 0;
  text-align: center;
}

.cta h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: var(--fs-md);
  color: var(--text-light);
  line-height: 1.8;
}

/* ---------- CTA BANNER (homepage) ---------- */
.cta-banner {
  background: var(--gradient-cta);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ---------- REVIEWS ---------- */
.reviews {
  padding: 80px 0;
  background: var(--bg-light);
}

.reviews h2 {
  margin-bottom: 16px;
}

/* Grid layout */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Horizontal scrolling carousel */
.reviews__carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.reviews__carousel::-webkit-scrollbar {
  display: none;
}

.reviews__carousel .review-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
}


.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5a623 0%, #ffd700 100%);
}

.review-card::after {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.review-card__stars {
  color: #f5a623;
  font-size: var(--fs-lg);
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.review-card__text {
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.review-card__author {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--secondary);
}

.review-card__source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-weight: 500;
}

.review-card__source i {
  font-size: 14px;
}

.review-card__source img {
  height: 16px;
  width: auto;
}

/* ---------- BLOG GRID ---------- */
.blogs {
  padding: 70px 0;
}

.blogs__title {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 40px;
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card__body {
  padding: 20px;
}

.blog-card__date {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card__title a {
  color: var(--secondary);
}

.blog-card__title a:hover {
  color: var(--primary);
}

.blog-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .btn {
  font-size: var(--fs-sm);
  padding: 8px 18px;
}

/* ---------- STATS GRID ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat-card {
  padding: 36px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
}

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

.stat-card__number {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: var(--fs-sm);
  color: var(--text-light);
  font-weight: 500;
}

/* ---------- STEPS GRID ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.step-card {
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-smooth);
  position: relative;
}

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

.step-card__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: var(--white);
  font-size: var(--fs-xl);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-card__title {
  font-size: var(--fs-md);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--secondary);
}

.step-card__text {
  font-size: var(--fs-sm);
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- CONTACT FORM ---------- */
.contact-form-section {
  padding: 80px 0;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 45px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--bg-light);
  transition: all var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(251, 2, 0, 0.08);
  background: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  text-align: center;
  margin-top: 16px;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: var(--gradient-pink);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 2, 0, 0.06) 0%, transparent 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ---------- ABOUT PAGE ---------- */
.about-intro {
  padding: 70px 0;
}

.about-intro__inner {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.about-intro__content {
  flex: 1;
}

.about-intro__stars {
  color: #f5a623;
  font-size: var(--fs-xl);
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.about-intro__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}

.about-intro__content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-intro__list {
  margin-bottom: 24px;
}

.about-intro__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-weight: 500;
  color: var(--secondary);
}

.about-intro__list li i {
  color: var(--primary);
}

.about-intro__image {
  flex: 0 0 45%;
}

.about-intro__image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* ---------- BUY/SELL & CONTACT SPLIT ---------- */
.split-section {
  padding: 70px 0;
}

.split-section__inner {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.split-section__info {
  flex: 1;
}

.split-section__info h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}

.split-section__info p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.split-section__form {
  flex: 1;
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.split-section__form h3 {
  margin-bottom: 24px;
}

/* Contact info list */
.contact-info-list {
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item i {
  font-size: var(--fs-lg);
  color: var(--primary);
  margin-top: 3px;
  min-width: 24px;
  text-align: center;
}

.contact-info-item__text {
  flex: 1;
}

.contact-info-item__label {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--secondary);
  display: block;
  margin-bottom: 2px;
}

.contact-info-item__value {
  font-size: var(--fs-sm);
  color: var(--text-light);
}

.contact-info-item__value a {
  color: var(--text-light);
}

.contact-info-item__value a:hover {
  color: var(--primary);
}

/* ---------- UNLOCKING PAGE ---------- */
.unlock-steps {
  padding: 70px 0;
}

.unlock-steps h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.step-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  position: relative;
  transition: transform var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-card__number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: var(--fs-xl);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card__title {
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: 10px;
}

.step-card__text {
  font-size: var(--fs-sm);
  color: var(--text-light);
  margin: 0;
}

.unlock-networks {
  padding: 0 0 70px;
}

.unlock-networks h3 {
  text-align: center;
  margin-bottom: 20px;
}

.unlock-networks p {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 30px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--gradient-dark);
  color: rgba(255,255,255,0.85);
  padding: 70px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 45px;
}

.footer__brand p {
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-top: 18px;
}

.footer__brand img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-base);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__heading {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}

.footer__links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer__info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: var(--fs-sm);
}

.footer__info-item i {
  color: var(--primary);
  margin-top: 4px;
  min-width: 18px;
  font-size: 14px;
}

.footer__info-item a,
.footer__info-item span {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__info-item a:hover {
  color: var(--white);
}

.footer__hours {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}

.footer__hours dt {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.footer__hours dd {
  margin-bottom: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.4);
}

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-float__label {
  background: var(--white);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}

.whatsapp-float__tagline {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #25d366;
  margin-top: 1px;
}

.whatsapp-float__btn {
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: pulse-green 2s infinite;
}

.whatsapp-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6); }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroCtaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 2, 0, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(251, 2, 0, 0); }
}

.hero .btn--lg {
  animation: heroCtaPulse 2.5s ease-in-out infinite;
}

.hero .btn--lg:hover {
  animation: none;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__actions { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .mobile-nav__overlay { display: block; }

  .hero__inner { flex-direction: column; text-align: center; gap: 40px; }
  .hero__text { margin: 0 auto 30px; }
  .hero__content { padding-bottom: 30px; }
  .hero__image { justify-content: center; width: 100%; }
  .hero__image img { max-width: 500px; width: 100%; margin: 0 auto; }

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

  .two-col { flex-direction: column; gap: 35px; text-align: center; }
  .two-col__content { order: 1; }
  .two-col__image { order: 2; width: 100%; display: flex; justify-content: center; }
  .two-col__image img { max-width: 600px; width: 100%; margin: 0 auto; }

  .pitch__inner { flex-direction: column; gap: 35px; text-align: center; }
  .pitch__content { order: 1; }
  .pitch__image { order: 2; width: 100%; display: flex; justify-content: center; }
  .pitch__image img { max-width: 600px; width: 100%; margin: 0 auto; }

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

  .about-intro__inner { flex-direction: column; gap: 35px; }
  .about-intro__image { flex: 1; width: 100%; display: flex; justify-content: center; }
  .about-intro__image img { max-width: 600px; width: 100%; margin: 0 auto; }
  
  .split-section__inner { flex-direction: column; gap: 35px; }

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

  .contact-form {
    padding: 35px 28px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-padding: 50px 0;
    --container-padding: 18px;
  }

  h1 { font-size: clamp(2rem, 8vw, 2.75rem); line-height: 1.1; }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); line-height: 1.2; }

  .top-bar__inner { 
    gap: 12px; 
    font-size: var(--fs-xs); 
  }

  /* Hide address on small screens, keep phone + email */
  .top-bar__item:last-child {
    display: none;
  }

  .header__inner {
    padding: 8px var(--container-padding);
  }

  .header__logo img { height: 44px; }

  .hero {
    padding: 50px 0;
  }

  .hero__inner, .two-col, .pitch__inner, .about-intro__inner, .split-section__inner {
    gap: 25px;
  }

  .repairs-section__title, .services__title, .blogs__title, .why-us h2 {
    margin-bottom: 30px !important;
  }

  .hero__image img { max-width: 400px; width: 100%; margin: 0 auto; }

  .services__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .service-card { padding: 22px 14px; }

  .repairs-grid { grid-template-columns: 1fr; gap: 16px; }
  .repair-card { 
    padding: 24px 16px; 
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .repair-card__icon { height: 50px; margin-bottom: 16px; }
  .repair-card__icon img { height: 45px; }
  .repair-card__title { margin-bottom: 8px; }
  .repair-card__text { margin-bottom: 16px; font-size: 0.8rem; }

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

  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__carousel .review-card { flex: 0 0 85vw; }
  .review-card { padding: 28px 24px; }

  .cta-banner { padding: 50px 20px; }

  .blogs__grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-card { padding: 24px 16px; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form {
    padding: 28px 22px;
  }

  .footer__inner { grid-template-columns: 1fr; gap: 35px; }

  .brands__item { width: 125px; height: 68px; padding: 14px; }

  .klarna-banner { 
    margin: -15px 18px 35px; 
    padding: 22px 24px;
    border-radius: var(--radius-lg);
  }

  .split-section__form {
    padding: 28px 22px;
  }

  .page-hero {
    padding: 45px 0;
  }

  /* Ensure images inside pitch and two-col don't overflow */
  .pitch__image img,
  .two-col__image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
  }

  /* Better touch targets for mobile */
  .btn {
    min-height: 44px;
  }

  .footer__bottom p {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .hero__inner, .two-col, .pitch__inner, .about-intro__inner, .split-section__inner {
    gap: 20px;
  }

  .services__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { padding: 18px 12px; }
  .service-card__title { font-size: var(--fs-sm); }

  .brands__item { width: 105px; height: 58px; padding: 10px 14px; }
  
  .hero__title { font-size: 1.75rem; }
  
  .repairs-grid { grid-template-columns: 1fr; }

  .whatsapp-float__label { 
    font-size: 11px; 
    padding: 6px 10px;
  }
  .whatsapp-float__tagline {
    font-size: 10px;
  }

  .hero__title { font-size: 1.6rem; }

  .klarna-banner { 
    margin: -10px 14px 30px; 
    padding: 20px 18px;
  }
  .klarna-banner h3 { font-size: var(--fs-lg); }
  .klarna-banner p { font-size: var(--fs-sm); }

  .contact-form {
    padding: 24px 18px;
  }

  .header__actions .btn { 
    padding: 7px 12px; 
  }
}

/* ---------- ANIMATIONS ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

