/* ═══════════════════════════════════════════════════════
   INTERMAVEN AGENCY — MAIN STYLESHEET
   Brand colors extracted from logo:
   Cyan/Teal: #00E5CC
   Orange/Amber: #F5A623
   Dark BG: #0A0A0A
═══════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  --cyan:        #10b981;
  --cyan-dim:    #0d9668;
  --orange:      #F5A623;
  --orange-dim:  #d4891a;
  --dark:        #080A09;
  --dark-2:      #0F1210;
  --dark-3:      #161B18;
  --dark-4:      #1E2620;
  --mid:         #2A3530;
  --light:       #E8EDE9;
  --muted:       #7A8C85;
  --white:       #ffffff;

  --font-display: 'Sansation', 'Barlow Condensed', sans-serif;
  --font-body:    'Sansation', 'Barlow', sans-serif;
  --font-accent:  'Sansation', 'Orbitron', sans-serif;

  --header-h:     88px;
  --header-h-sm:  64px;
  --max-w:        1120px;
  --radius:       3px;
  --radius-card:  3px;

  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.18s ease;
}

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

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

body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--light);
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
}
select option { background: var(--dark-3); }

/* ── UTILITIES ─────────────────────────────────────── */
.max-w {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.accent { color: var(--cyan); }
.accent-orange { color: var(--orange); }

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 0.3em 0.8em;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: rgba(232,237,233,0.75);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--dark);
  border-color: var(--cyan);
}
.btn-primary:hover {
  background: transparent;
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(16,185,129,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--light);
  border-color: rgba(232,237,233,0.3);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-sm { font-size: 0.8rem; padding: 0.5rem 1rem; }
.btn-lg { font-size: 0.9rem; padding: 0.85rem 2rem; }
.btn-xl { font-size: 1.15rem; padding: 1rem 2.5rem; width: 100%; justify-content: center; }
.btn-full { width: 100%; justify-content: center; }
.w-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background var(--transition), height var(--transition), backdrop-filter var(--transition);
}

#site-header.scrolled {
  height: var(--header-h-sm);
  background: rgba(8,10,9,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16,185,129,0.12);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}

.logo-link { flex-shrink: 0; }

.site-logo {
  width: 236px;
  height: 49px;
  object-fit: contain;
  transition: width var(--transition), height var(--transition);
}

#site-header.scrolled .site-logo {
  width: 177px;
  height: 37px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,237,233,0.75);
  transition: color var(--transition-fast);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: width var(--transition-fast);
}
.main-nav a:hover { color: var(--cyan); }
.main-nav a:hover::after { width: 100%; }

.book-btn { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(8,10,9,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(16,185,129,0.15);
  padding: 1rem 2rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-link {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--light);
  transition: color var(--transition-fast);
}
.mobile-link:hover { color: var(--cyan); }
.mobile-nav .btn { margin-top: 1rem; }

/* ═══════════════════════════════════════════════════
   HERO SECTION (ALWAYS FITS VIEWPORT – NO SCROLL)
═══════════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,10,9,0.88) 0%,
    rgba(8,10,9,0.65) 50%,
    rgba(8,10,9,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100%;
}

.hero-text {
  position: relative;
  min-height: 300px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.slide-text {
  position: absolute;
  top: 68px; left: 0; right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  text-align: center;
}
.slide-text.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(245,166,35,0.4);
  padding: 0.3em 0.9em;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.8s ease infinite;
}

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

.slide-text h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.96rem, 4.0vw, 3.0rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide-text h1 .line {
  display: block;
  transform: translateX(-60px);
  opacity: 0;
  transition: none;
}

.slide-text.animating h1 .line-1 {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
              opacity 0.7s ease 0.08s;
}
.slide-text.animating h1 .line-2 {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.24s,
              opacity 0.7s ease 0.24s;
}
.slide-text.animating h1 .line-3 {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.42s,
              opacity 0.7s ease 0.42s;
}

.slide-text h1 .line.accent { color: var(--cyan); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(232,237,233,0.75);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
  transform: translateY(14px);
  opacity: 0;
  transition: none;
}
.slide-text.animating .hero-sub {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s ease 0.62s, opacity 0.6s ease 0.62s;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition-delay: 0.8s;
}
.hero-cta.cta-visible { transform: translateY(0); opacity: 1; }

.hero-arrows {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
}

.arrow-btn {
  pointer-events: all;
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: rgba(8,10,9,0.6);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--light);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}
.arrow-btn:hover {
  background: var(--cyan);
  color: var(--dark);
  border-color: var(--cyan);
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(232,237,233,0.3);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}
.dot.active {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(16,185,129,0.5);
  width: 28px;
  border-radius: 5px;
}

/* ═══════════════════════════════════════════════════
   OFFER SECTION
═══════════════════════════════════════════════════ */
.section-offer {
  padding: 5rem 0;
  background: var(--dark-2);
  position: relative;
}
.section-offer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.urgency-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(90deg, rgba(245,166,35,0.12), rgba(245,166,35,0.06));
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius);
  padding: 0.9rem 1.5rem;
  margin-bottom: 3.5rem;
  font-size: 0.95rem;
  color: var(--orange);
}
.urgency-strip i { font-size: 1.1rem; flex-shrink: 0; }
.urgency-strip span { color: var(--light); }
.urgency-strip strong { color: var(--orange); }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.offer-details h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.deliverables {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.del-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1.15rem;
}

.deliverables li div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.deliverables li strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
}
.deliverables li span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-card {
  background: var(--dark-3);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-card);
  padding: 2rem;
  position: sticky;
  top: calc(var(--header-h-sm) + 1.5rem);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(16,185,129,0.05);
}

.badge-limited {
  display: inline-block;
  background: var(--orange);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 0.85em;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.price-block {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-old {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
  letter-spacing: 0.05em;
}

.price-new {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.2rem;
  color: var(--cyan);
  line-height: 1;
  margin: 0.2rem 0;
}

.price-save {
  display: inline-block;
  background: rgba(16,185,129,0.12);
  color: var(--cyan);
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25em 0.75em;
  border-radius: var(--radius);
  border: 1px solid rgba(16,185,129,0.25);
}

.spots-counter {
  margin-bottom: 1.5rem;
}
.spots-bar {
  height: 6px;
  background: var(--mid);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.spots-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  border-radius: 3px;
}
.spots-text {
  font-size: 0.85rem;
  color: var(--muted);
}
.spots-text strong { color: var(--orange); }

.mpesa-highlight {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
}

.mpesa-logo {
  width: 60px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.mpesa-highlight div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mpesa-highlight strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.mpesa-highlight span {
  font-size: 0.8rem;
  color: var(--muted);
}

.card-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin: 0.85rem 0;
  line-height: 1.5;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(16,185,129,0.7);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.guarantee i { font-size: 1.1rem; color: var(--cyan); }

/* ═══════════════════════════════════════════════════
   PORTFOLIO CAROUSEL – INFINITE SCROLL (PURE CSS, NO JUMP)
═══════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════
   PORTFOLIO CAROUSEL – INFINITE SCROLL (PURE CSS, NO JUMP)
═══════════════════════════════════════════════════ */
.section-portfolio {
  padding: 5rem 0;
  background: var(--dark);
  overflow: hidden;
}

.section-portfolio .max-w h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
}

.carousel-track-wrapper {
  overflow-x: hidden;      /* hide scrollbar completely */
  cursor: default;
  user-select: none;
}

.carousel-track {
  display: inline-flex;
  gap: 1.5rem;
  padding: 0.5rem 2rem 1.5rem;
  animation: scrollInfinite 60s linear infinite;
  width: max-content;
}

/* Pause animation on hover for better readability */
.carousel-track-wrapper:hover .carousel-track,
.carousel-track:hover {
  animation-play-state: paused;
}

/* Hover overlay stays on each item – does NOT affect animation */
.port-item {
  position: relative;
  width: 340px;
  height: 240px;
  flex-shrink: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--dark-4);
  transition: transform 0.4s ease;
}

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,10,9,0.97) 0%, rgba(8,10,9,0.6) 50%, rgba(8,10,9,0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.port-item:hover .port-overlay {
  opacity: 1;
}
.port-item:hover img {
  transform: scale(1.06);
}

.port-info {
  transform: translateY(12px);
  transition: transform 0.4s ease;
}
.port-item:hover .port-info {
  transform: translateY(0);
}

.port-info strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}
.port-info em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  font-family: var(--font-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0.2rem 0 0.5rem;
}
.port-info p {
  font-size: 0.82rem;
  color: rgba(232,237,233,0.7);
  line-height: 1.5;
}

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


/* ═══════════════════════════════════════════════════
   CUSTOM PROJECT SECTION
═══════════════════════════════════════════════════ */
.section-custom {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  border-top: 1px solid rgba(16,185,129,0.1);
  border-bottom: 1px solid rgba(16,185,129,0.1);
}

.custom-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: space-between;
}

.custom-text h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 560px;
  margin-bottom: 0.75rem;
}
.custom-text p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════ */
.section-faq {
  padding: 5rem 0;
  background: var(--dark);
}

.section-faq h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-item {
  background: var(--dark-2);
}

.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--light);
  background: var(--dark-2);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.faq-q:hover { background: var(--dark-3); color: var(--cyan); }
.faq-q.open { color: var(--cyan); background: var(--dark-3); }

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  color: var(--muted);
}
.faq-q.open .faq-icon { transform: rotate(180deg); color: var(--cyan); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open {
  max-height: 200px;
  padding-bottom: 1.25rem;
}
.faq-a p {
  padding: 0 1.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   TRUSTED BY
═══════════════════════════════════════════════════ */
.section-trusted {
  padding: 3.5rem 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trusted-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 2rem;
}

.trusted-logos {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
}

.trusted-logo-item {
  opacity: 0.45;
  transition: opacity var(--transition-fast);
  filter: grayscale(100%);
}
.trusted-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.trusted-logo-item img {
  height: 80px;
  width: auto;
  
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#footer {
  background: var(--dark-2);
  padding-top: 4rem;
  border-top: 1px solid rgba(16,185,129,0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  width: 220px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--light); }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition-fast);
}
.social-link i { font-size: 1.1rem; }
.social-link:hover { color: var(--cyan); }

.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact .whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #25D366;
  font-size: 0.88rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity var(--transition-fast);
}
.footer-contact .whatsapp-link:hover { opacity: 0.8; }
.footer-contact a:not(.whatsapp-link) {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color var(--transition-fast);
}
.footer-contact a:not(.whatsapp-link):hover { color: var(--light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-bottom a { color: rgba(232,237,233,0.5); transition: color var(--transition-fast); }
.footer-bottom a:hover { color: var(--cyan); }

.powered-by {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.powered-by a { color: var(--cyan); }

/* ═══════════════════════════════════════════════════
   CUSTOM PROJECT MODAL
═══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8,10,9,0.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--dark-3);
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: var(--radius-card);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  background: var(--dark-4);
  transition: all var(--transition-fast);
  z-index: 10;
}
.modal-close:hover { color: var(--white); background: var(--mid); }

.modal-step { display: none; }
.modal-step.active { display: block; }

.modal-header {
  padding: 2rem 2rem 1rem;
}
.modal-header.center { text-align: center; }

.modal-header h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  text-transform: uppercase;
  margin: 0.5rem 0;
}
.modal-header p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.modal-icon-success {
  font-size: 3.5rem;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.modal-body {
  padding: 0.5rem 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row { display: flex; gap: 1rem; }
.form-row.two-col > * { flex: 1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.modal-footer {
  padding: 1.25rem 2rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.modal-footer.center {
  justify-content: center;
  padding-top: 0;
  border-top: none;
  padding-bottom: 2.5rem;
}

/* ═══════════════════════════════════════════════════
   SERVICE MODALS
═══════════════════════════════════════════════════ */
.service-modal-box {
  max-width: 600px;
}

.svc-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.svc-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-size: 1.4rem;
  margin-top: 0.2rem;
}

.svc-modal-header .section-tag {
  margin-bottom: 0.3rem;
}

.svc-modal-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
}

.svc-modal-body {
  padding: 1.5rem 2rem 0;
}

.svc-modal-body > p {
  font-size: 0.95rem;
  color: rgba(232,237,233,0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.svc-modal-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.85rem;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(232,237,233,0.8);
  line-height: 1.45;
}

.svc-list li i {
  color: var(--cyan);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.svc-note {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  background: rgba(16,185,129,0.06);
  border-left: 2px solid var(--cyan);
  padding: 0.6rem 0.9rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.svc-cta {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .offer-grid { grid-template-columns: 1fr; }
  .pricing-card { position: static; max-width: 480px; }
  .custom-inner { flex-direction: column; gap: 2rem; text-align: center; }
  .custom-text p { max-width: 100%; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; --header-h-sm: 58px; }
  .main-nav { display: none; }
  .book-btn { display: none; }
  .hamburger { display: flex; }
  #hero {
    height: 100vh;
  }
  .hero-content { padding-top: calc(var(--header-h) + 2rem); }
  .slide-text h1 { font-size: clamp(1.54rem, 5.6vw, 2.45rem); }
  .hero-cta { flex-direction: column; width: 100%; max-width: 320px; align-items: center; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row.two-col { flex-direction: column; }
  .trusted-logos { gap: 1.5rem 2rem; }
  /* Portfolio items scale for mobile */
  .port-item {
    width: 280px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .max-w { padding-left: 1.25rem; padding-right: 1.25rem; }
  .offer-grid { gap: 2rem; }
  .section-offer { padding: 3.5rem 0; }
  .section-portfolio { padding: 3.5rem 0; }
  .port-item { width: 240px; height: 170px; }
  .modal-box { border-radius: 0; max-height: 100vh; }
  .modal-header { padding: 1.5rem 1.25rem 0.75rem; }
  .modal-body { padding: 0.5rem 1.25rem 1rem; }
  .modal-footer { padding: 1rem 1.25rem 1.5rem; flex-direction: column-reverse; }
  .svc-modal-header { flex-direction: column; gap: 0.75rem; }
  .svc-cta { flex-direction: column; }
  .svc-cta .btn { justify-content: center; }
}