/* ═══════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --orange: #E8851A;
  --orange-dark: #C96F0D;
  --orange-light: #F5A84B;
  --black: #111111;
  --dark: #1A1A1A;
  --mid: #2E2E2E;
  --gray: #6B6B6B;
  --light-gray: #EBEBEB;
  --white: #FFFFFF;
  --cream: #FAF8F5;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom cursor ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(232,133,26,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), width 0.3s, height 0.3s, opacity 0.3s;
  transform: translate(-50%, -50%);
}
body:hover .cursor { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { transform: translate(-50%, -50%) scale(2.5); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(16px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

/* hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

body.menu-open { overflow: hidden; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,133,26,0.18) 0%, transparent 70%);
  top: -100px; right: -200px;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,133,26,0.08) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}

/* animated diagonal stripe */
.hero-stripe {
  position: absolute;
  width: 3px;
  height: 200%;
  background: linear-gradient(to bottom, transparent, rgba(232,133,26,0.3), transparent);
  top: -50%;
  left: 58%;
  transform: rotate(15deg);
  animation: stripe-move 8s linear infinite;
}
@keyframes stripe-move {
  0% { opacity: 0.3; left: 30%; }
  50% { opacity: 0.6; }
  100% { opacity: 0.3; left: 75%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: 120px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-left { display: flex; flex-direction: column; gap: 28px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fade-up 0.7s 0.2s forwards ease;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,133,26,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(232,133,26,0); }
}
.hero-eyebrow span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 100px);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 2px;
  opacity: 0;
  animation: fade-up 0.8s 0.4s forwards ease;
}
.hero-title .line-orange { color: var(--orange); }
.hero-title .line-outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
  color: transparent;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  opacity: 0;
  animation: fade-up 0.8s 0.6s forwards ease;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s 0.8s forwards ease;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--white); border-color: var(--orange); }
.btn-secondary svg { transition: transform 0.2s; }
.btn-secondary:hover svg { transform: translateX(4px); }

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  animation: fade-up 0.8s 1s forwards ease;
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* hero right — visual card */
.hero-right {
  opacity: 0;
  animation: fade-in 1s 0.9s forwards ease;
  position: relative;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.hero-card-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.mockup-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #28C840; }

.mockup-url {
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-url .lock { color: var(--orange); font-size: 10px; }

.mockup-hero-block {
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.mockup-hero-block::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(232,133,26,0.2);
}
.mockup-title-line {
  height: 16px;
  background: var(--white);
  border-radius: 3px;
  margin-bottom: 8px;
  width: 75%;
}
.mockup-title-line.short { width: 50%; opacity: 0.4; }
.mockup-title-line.orange { background: var(--orange); width: 40%; }
.mockup-btn-mock {
  display: inline-block;
  background: var(--orange);
  height: 12px;
  width: 90px;
  border-radius: 4px;
  margin-top: 16px;
}

.mockup-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.mockup-card {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 14px 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mockup-card-icon {
  width: 20px; height: 20px;
  border-radius: 4px;
  background: var(--orange);
  opacity: 0.7;
  margin-bottom: 8px;
}
.mockup-card-line {
  height: 7px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin-bottom: 5px;
}
.mockup-card-line.short { width: 65%; }

.hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 1px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.tag.active {
  background: rgba(232,133,26,0.15);
  color: var(--orange);
  border-color: rgba(232,133,26,0.3);
}

/* ═══════════════════════════════════════
   PROBLEM STRIP
═══════════════════════════════════════ */
#problem {
  background: var(--orange);
  padding: 28px 48px;
  overflow: hidden;
  position: relative;
}

.problem-ticker {
  display: flex;
  gap: 60px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.problem-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  flex-shrink: 0;
}
.problem-item .sep {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
}

/* ═══════════════════════════════════════
   PROBLEM SECTION (the big statement)
═══════════════════════════════════════ */
#statement {
  background: var(--black);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#statement .bg-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 280px;
  color: rgba(255,255,255,0.015);
  letter-spacing: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

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

.statement-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
}

.statement-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 2px;
}
.statement-title em {
  font-style: normal;
  color: var(--orange);
}
.statement-title .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.2);
  color: transparent;
}

.statement-body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin: 0 auto 48px;
}

.statement-stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(232,133,26,0.12);
  border: 1px solid rgba(232,133,26,0.25);
  border-radius: 100px;
  padding: 12px 24px;
}
.statement-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--orange);
  line-height: 1;
}
.statement-stat-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: left;
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
#services {
  background: var(--cream);
  padding: 120px 48px;
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  color: var(--black);
  letter-spacing: 2px;
}
.section-title em { font-style: normal; color: var(--orange); }

.section-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 320px;
  line-height: 1.7;
  text-align: right;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:hover { background: var(--black); }
.service-card:hover .service-icon { background: rgba(232,133,26,0.2); }
.service-card:hover .service-icon svg { color: var(--orange); }
.service-card:hover .service-num { color: rgba(255,255,255,0.05); }
.service-card:hover .service-name { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.5); }
.service-card:hover .service-link { color: var(--orange); }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  position: absolute;
  top: 24px; right: 32px;
  transition: color 0.3s;
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(232,133,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background 0.3s;
}
.service-icon svg { color: var(--orange); transition: color 0.3s; }

.service-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 14px;
  transition: color 0.3s;
}

.service-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 28px;
  transition: color 0.3s;
}

.service-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.3s;
}
.service-link:hover { gap: 10px; }

/* ═══════════════════════════════════════
   WHY / VALUE SECTION
═══════════════════════════════════════ */
#why {
  background: var(--black);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

#why .bg-circle {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(232,133,26,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#why .bg-circle-2 {
  width: 900px; height: 900px;
  border-color: rgba(232,133,26,0.04);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.why-left .section-eyebrow { margin-bottom: 14px; }

.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.why-title em { font-style: normal; color: var(--orange); }

.why-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}

.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.why-cta:hover { background: var(--orange-dark); transform: translateY(-2px); }

.why-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  transition: background 0.2s;
  cursor: default;
}
.why-item:hover { background: rgba(255,255,255,0.06); }
.why-item:first-child { border-radius: 12px 12px 4px 4px; }
.why-item:last-child { border-radius: 4px 4px 12px 12px; }

.why-item-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: rgba(232,133,26,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.why-item:hover .why-item-num { color: var(--orange); }

.why-item-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 6px;
}
.why-item-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
#process {
  background: var(--cream);
  padding: 120px 48px;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(232,133,26,0.1));
  z-index: 0;
}

.process-step {
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 24px;
  position: relative;
  transition: background 0.3s, color 0.3s;
}
.process-step:hover .step-circle {
  background: var(--orange);
  color: var(--white);
}

.step-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--black);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   CAMPAIGN / SOCIAL PROOF SECTION
═══════════════════════════════════════ */
#campaign {
  background: var(--white);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

#campaign .accent-strip {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 50%, var(--orange) 100%);
}

.campaign-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 72px;
}

.camp-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.camp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

/* Campaign card 1 */
.cc-1 {
  background: var(--black);
  aspect-ratio: 1;
  position: relative;
}
.cc-1 .c-bar { position:absolute; top:0;left:0; width:5px;height:100%; background:var(--orange); }
.cc-1 .c-body { padding: 40px 40px 40px 48px; height:100%; display:flex; flex-direction:column; justify-content:center; }
.cc-1 .c-eyebrow { font-family:'Montserrat',sans-serif; font-weight:700; font-size:9px; letter-spacing:4px; text-transform:uppercase; color:var(--orange); margin-bottom:18px; }
.cc-1 .c-title { font-family:'Bebas Neue',sans-serif; font-size:52px; line-height:0.95; color:var(--white); margin-bottom:18px; }
.cc-1 .c-title span { color:var(--orange); }
.cc-1 .c-text { font-size:13px; line-height:1.65; color:rgba(255,255,255,0.5); }
.cc-1 .c-logo { position:absolute; bottom:24px;right:24px; font-family:'Montserrat',sans-serif; font-weight:900; font-size:10px; color:rgba(255,255,255,0.2); }
.cc-1 .c-logo span { color:var(--orange); }

/* Campaign card 2 */
.cc-2 {
  background: var(--white);
  aspect-ratio: 1;
  position: relative;
  border: 1px solid var(--light-gray);
}
.cc-2 .c-body { padding:36px; height:100%; display:flex; flex-direction:column; }
.cc-2 .c-badge { display:inline-flex; align-items:center; gap:6px; background:var(--orange); color:var(--white); font-family:'Montserrat',sans-serif; font-weight:700; font-size:9px; letter-spacing:2px; text-transform:uppercase; padding:6px 12px; border-radius:100px; align-self:flex-start; margin-bottom:20px; }
.cc-2 .c-title { font-family:'Bebas Neue',sans-serif; font-size:48px; line-height:0.95; color:var(--black); margin-bottom:20px; }
.cc-2 .c-title span { color:var(--orange); }
.cc-2 .c-features { display:flex; flex-direction:column; gap:10px; flex:1; }
.cc-2 .c-feat { display:flex; align-items:center; gap:10px; font-size:13px; color:var(--black); }
.cc-2 .c-dot { width:7px;height:7px; border-radius:50%; background:var(--orange); flex-shrink:0; }
.cc-2 .c-brand { font-family:'Montserrat',sans-serif; font-weight:900; font-size:12px; color:var(--black); margin-top:20px; padding-top:16px; border-top:1px solid var(--light-gray); }
.cc-2 .c-brand span { color:var(--orange); }

/* Campaign card 3 */
.cc-3 {
  background: var(--orange);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.cc-3 .c-grid { position:absolute;inset:0; background-image: linear-gradient(rgba(255,255,255,0.07) 1px,transparent 1px), linear-gradient(90deg,rgba(73, 241, 7, 0.07) 1px,transparent 1px); background-size:36px 36px; }
.cc-3 .c-circle { position:absolute; bottom:-40px;right:-40px; width:60%; aspect-ratio:1; background:rgba(0,0,0,0.12); border-radius:50%; }
.cc-3 .c-body { padding:40px; height:100%; display:flex; flex-direction:column; justify-content:space-between; position:relative;z-index:1; }
.cc-3 .c-top { font-family:'Montserrat',sans-serif; font-weight:700; font-size:9px; letter-spacing:4px; text-transform:uppercase; color:rgba(255,255,255,0.65); }
.cc-3 .c-title { font-family:'Bebas Neue',sans-serif; font-size:64px; line-height:0.95; color:var(--white); margin:auto 0; }
.cc-3 .c-cta { background:var(--black); color:var(--white); font-family:'Montserrat',sans-serif; font-weight:700; font-size:12px; letter-spacing:1px; padding:14px 20px; border-radius:7px; text-align:center; text-decoration:none; display:block; transition: transform 0.2s; }
.cc-3 .c-cta:hover { transform:scale(1.03); }

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
#cta {
  background: var(--orange);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta .bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.05) 1px,transparent 1px), linear-gradient(90deg,rgba(0,0,0,0.05) 1px,transparent 1px);
  background-size: 48px 48px;
}

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

#cta .cta-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

#cta .cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 86px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

#cta .cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 44px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-dark:hover { background: #333; transform: translateY(-2px); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-white:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--black);
  padding: 60px 48px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand span { color: var(--orange); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 2;
}
.footer-contact a {
  color: var(--orange);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-badge {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.footer-badge span { color: var(--orange); }

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-bubble {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  font-size: 13px;
  color: var(--dark);
  line-height: 1.5;
  max-width: 220px;
  text-align: right;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.wa-bubble strong { display:block; font-family:'Montserrat',sans-serif; font-weight:700; font-size:12px; margin-bottom:3px; }

.wa-float:hover .wa-bubble {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 3s infinite 2s;
}
.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .campaign-grid { grid-template-columns: 1fr; max-width: 400px; margin: 72px auto 0; }
  .cc-1, .cc-2, .cc-3 { aspect-ratio: 1; }
}

@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 24px;
    right: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    background: rgba(17,17,17,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    backdrop-filter: blur(16px);
  }
  .nav-links.active { display: flex; }
  .nav-links a { display: block; }
  .nav-cta { text-align: center; }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-content, #statement, #services, #why, #process, #campaign, #cta, footer { padding-left: 24px; padding-right: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .section-sub { text-align: left; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .process-steps { grid-template-columns: 1fr; }
}

