@import url('https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Exo:wght@400;500;600;700;800;900&display=swap');

:root {
  --orange: #FF5E00;
  --orange-glow: #FF8A3D;
  --gold: #E5A84B;
  --dark: #1A1A1A;
  --dark-elevated: #222222;
  --dark-card: #FFFFFF;
  --dark-border: #E8E8E8;
  --surface: #F7F7F7;
  --gray-600: #6B6B6B;
  --gray-400: #888888;
  --gray-300: #555555;
  --gray-200: #E0E0E0;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #555555;
  --whatsapp: #25D366;
  --radius: 16px;
  --font-display: 'Exo', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

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


/* ── Top Bar ── */
.top-bar {
  background: var(--dark);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--dark-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.top-bar-item svg {
  width: 13px;
  height: 13px;
  color: var(--orange);
  flex-shrink: 0;
}

.top-bar-item a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar-item a:hover {
  color: var(--orange);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--dark-border);
  padding: 0.75rem 0;
}

/* Pages without hero (services, about) — navbar always light */
.navbar.always-light {
  background: #ffffff !important;
  border-bottom: 1px solid var(--dark-border) !important;
  padding: 0.9rem 0 !important;
  top: 0 !important;
}

.navbar.always-light .nav-links a {
  color: var(--text) !important;
}

.navbar.always-light .nav-links a:hover,
.navbar.always-light .nav-links a.active {
  color: var(--orange) !important;
}

.navbar.always-light .hamburger span {
  background: var(--text) !important;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.navbar.scrolled .nav-logo img {
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  position: relative;
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

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

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--orange);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: var(--white) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: #20bd5a;
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.35);
}

.nav-cta svg { width: 16px; height: 16px; }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
  background: var(--text);
}

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

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.75);
  pointer-events: none;
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-phone {
  display: block;
  color: var(--orange);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 0.25rem;
  -webkit-text-fill-color: var(--orange);
  background: none;
}

.hero-phone::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 1.25rem auto 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 94, 0, 0.08);
  border: 1px solid rgba(255, 94, 0, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  color: var(--orange-glow);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.8); }
}

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

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px) scale(0.97); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 600;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

/* ── Brand Marquee ── */
.brand-marquee {
  background: var(--white);
  padding: 2.5rem 0;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  overflow: hidden;
}

.brand-marquee p {
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.marquee-track {
  display: flex;
  gap: 5rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-track img {
  height: 32px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  object-fit: contain;
}

.marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ── Section ── */
.section {
  padding: 7rem 0;
  position: relative;
}

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

.section-gray {
  background: var(--surface);
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--orange);
}

.section-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin-bottom: 1.25rem;
  color: var(--text);
}

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

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.section-dark .section-header p {
  color: var(--gray-400);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 24px rgba(255, 94, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 94, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.35);
}

.btn svg { width: 18px; height: 18px; }

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 94, 0, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 94, 0, 0.1);
}

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

.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 8, 8, 0.6) 100%);
  pointer-events: none;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.service-card-body {
  padding: 1.75rem;
}

.service-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-weight: 600;
}

.service-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease;
}

.service-card:hover .service-card-link { gap: 0.75rem; }

/* ── How It Works ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 2rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.step-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 94, 0, 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.step-card:hover {
  border-color: rgba(255, 94, 0, 0.25);
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 20px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 94, 0, 0.1);
}

.step-card:hover::after {
  opacity: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  box-shadow: 0 8px 24px rgba(255, 94, 0, 0.2);
}

.step-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 600;
}

.step-card p {
  color: rgba(255, 255, 255, 0.6);
}

.step-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ── Promise Section ── */
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.promise-list li .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255, 94, 0, 0.1);
  border: 1px solid rgba(255, 94, 0, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-top: 2px;
}

.promise-list li strong { color: var(--text); }

.promise-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.promise-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.promise-highlight {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 94, 0, 0.06);
  border-left: 3px solid var(--orange);
  border-radius: 0 12px 12px 0;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

/* ── Testimonials ── */
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--gray-200);
  cursor: grab;
}

.testimonials-track::-webkit-scrollbar {
  height: 4px;
}

.testimonials-track::-webkit-scrollbar-track {
  background: var(--gray-200);
  border-radius: 10px;
}

.testimonials-track::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}

.testimonials-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--gray-600);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.testimonials-scroll-hint svg {
  width: 18px;
  height: 18px;
  animation: scroll-hint 1.5s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.testimonial-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--dark-border);
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  border-color: rgba(255, 94, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-display);
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-author-info span {
  font-size: 0.75rem;
  color: var(--gray-600);
}

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

.why-card {
  position: relative;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 1px 0 0 rgba(255, 255, 255, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Shimmer top edge */
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 94, 0, 0.8), var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Inner glow */
.why-card::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 94, 0, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 94, 0, 0.2);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 1px 0 0 rgba(255, 255, 255, 0.06),
    0 24px 56px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 94, 0, 0.08);
}

.why-card:hover::before { opacity: 1; }
.why-card:hover::after  { opacity: 1; }

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 94, 0, 0.08);
  border: 1px solid rgba(255, 94, 0, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.why-icon img { width: 24px; height: 24px; }

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.why-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.75;
}

.why-card .highlight {
  display: block;
  margin-top: 1.25rem;
  color: var(--orange-glow);
  font-weight: 600;
  font-size: 0.825rem;
}

/* ── CTA Section ── */
.cta-section {
  padding: 7rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-glow) 50%, var(--gold) 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.15);
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 1.25rem;
  max-width: 280px;
}

.footer-brand img {
  height: 38px;
  border-radius: 6px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
}

.footer-contact li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--gray-400);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 94, 0, 0.3);
}

.footer-social a svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ── Service Detail Page ── */
.service-hero {
  padding: 11rem 0 4rem;
  background: var(--surface);
  position: relative;
  border-bottom: 1px solid var(--dark-border);
}

.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(255, 94, 0, 0.04) 0%, transparent 50%);
}

.service-hero .container { position: relative; z-index: 1; }

.service-hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.service-hero p {
  font-size: 1.1rem;
  color: var(--gray-400);
  max-width: 580px;
  line-height: 1.75;
}

.service-content { padding: 5rem 0 7rem; }

.service-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-text h2 {
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.service-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-text .highlight-box {
  background: rgba(255, 94, 0, 0.05);
  border-left: 3px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.service-image-col img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--dark-border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease;
}

.back-link:hover { gap: 0.75rem; }

/* ── Mobile Nav ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mobile-nav a {
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-display);
  transition: color 0.3s ease;
}

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid, .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .promise-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-content-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .top-bar-inner { gap: 1rem; }
  .top-bar-item:nth-child(1),
  .top-bar-item:nth-child(4) { display: none; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 2.5rem; }
  .section { padding: 5rem 0; }

  .services-grid, .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { flex: 0 0 300px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .hero-image-wrapper img { height: 280px; }
}
