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

:root {
  --navy:        #0B1D3A;
  --navy-mid:    #122140;
  --navy-light:  #1A3060;
  --blue:        #2563EB;
  --blue-hover:  #1A50CE;
  --blue-50:     #EFF6FF;
  --blue-100:    #DBEAFE;
  --blue-200:    #BFDBFE;
  --white:       #FFFFFF;
  --off-white:   #F8FAFF;
  --text-dark:   #0F172A;
  --text-mid:    #475569;
  --text-light:  #94A3B8;
  --border:      #E2E8F0;
}

html { scroll-behavior: smooth; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB, #7c3aed, #2563EB);
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
  z-index: 999;
}

/* ─── UTILITY ─────────────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 560px;
}
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.btn-primary {
  background: var(--blue);
  color: white;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: inherit;
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: white;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.28);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(37,99,235,0.35);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--blue); background: rgba(37,99,235,0.06); }

.section-cta {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(11,29,58,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { display: block; }
.logo-name { font-size: 21px; font-weight: 900; letter-spacing: -0.5px; color: white; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.btn-nav {
  background: var(--blue);
  color: white;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--blue-hover); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: white; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  z-index: 190;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: white; }
.mobile-menu .btn-primary { margin-top: 20px; justify-content: center; }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 130px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.07) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-glow {
  position: absolute; top: -120px; right: -120px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1400px) / 2 + 24px));
  padding-right: 0;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 640px) 1fr;
  gap: 80px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.28);
  color: #93C5FD;
  padding: 7px 14px;
  font-size: 12.5px; font-weight: 600;
  margin-bottom: 28px; letter-spacing: 0.2px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #3B82F6; border-radius: 50%;
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900; letter-spacing: -2px;
  line-height: 1.05; color: white; margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #60A5FA, #a78bfa, #60A5FA);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero-desc {
  font-size: 18px; color: rgba(255,255,255,0.60);
  line-height: 1.75; margin-bottom: 40px; max-width: 480px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.stat-number {
  font-size: 30px; font-weight: 900;
  color: white; letter-spacing: -1px; line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* Browser mockup */
.browser-wrap { animation: float 6s ease-in-out infinite; }
.browser {
  background: #112040;
  border: 1px solid rgba(255,255,255,0.13);
  border-right: none;
  box-shadow:
    -20px 32px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(37,99,235,0.12);
}
.browser-bar {
  background: #0c1b36; padding: 11px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.b-dots { display: flex; gap: 6px; }
.b-dot { width: 10px; height: 10px; border-radius: 50%; }
.b-dot.r { background: #FF5F57; }
.b-dot.y { background: #FEBC2E; }
.b-dot.g { background: #28C840; }
.b-url {
  flex: 1; background: rgba(255,255,255,0.05);
  height: 24px; display: flex; align-items: center;
  padding: 0 10px; color: rgba(255,255,255,0.3);
  font-size: 11px; font-family: monospace;
}
.browser-body { padding: 0; overflow: hidden; }
.inner-nav {
  background: #111; padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.inner-logo-text { font-size: 13px; font-weight: 900; color: #D4AF37; letter-spacing: 2px; }
.inner-nav-links { display: flex; gap: 8px; }
.inner-nav-link { width: 28px; height: 4px; background: rgba(255,255,255,0.2); }
.inner-hero { background: linear-gradient(135deg, #1c0e00, #3a1e00); padding: 28px 20px 24px; }
.inner-hero-tag { font-size: 9px; font-weight: 700; letter-spacing: 2px; color: rgba(212,175,55,0.7); text-transform: uppercase; margin-bottom: 8px; }
.inner-hero-h { font-size: 20px; font-weight: 900; color: #D4AF37; letter-spacing: 1px; margin-bottom: 6px; }
.inner-hero-sub { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
.inner-cta { display: inline-block; background: #D4AF37; color: #111; padding: 7px 18px; font-size: 10px; font-weight: 800; letter-spacing: 0.5px; }
.inner-services { display: flex; background: #1a1a1a; border-top: 1px solid #2a2a2a; }
.inner-svc { flex: 1; padding: 12px 10px; text-align: center; border-right: 1px solid #2a2a2a; }
.inner-svc:last-child { border-right: none; }
.inner-svc-name { font-size: 10px; color: rgba(255,255,255,0.6); font-weight: 600; margin-bottom: 3px; }
.inner-svc-price { font-size: 10px; color: #D4AF37; font-weight: 600; }
.inner-booking {
  background: #0f0f0f; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.inner-booking-text { font-size: 11px; color: rgba(255,255,255,0.5); }
.inner-booking-btn { background: var(--blue); color: white; padding: 6px 14px; font-size: 10px; font-weight: 700; }
.browser-tag {
  position: absolute; bottom: -14px; right: -14px;
  background: var(--blue); color: white;
  padding: 8px 16px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px; z-index: 2;
}
.browser-wrap { position: relative; }

/* ─── LOGOS STRIP ─────────────────────────────────────── */
.logos-strip {
  background: var(--off-white);
  padding: 36px 24px;
  border-bottom: 1px solid var(--border);
}
.logos-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.logos-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-light); white-space: nowrap;
}
.logos-row { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.brand-pill {
  font-size: 14px; font-weight: 800; color: var(--text-light);
  letter-spacing: -0.3px; display: flex; align-items: center; gap: 7px; opacity: 0.7;
}
.brand-pill-icon {
  width: 24px; height: 24px; background: var(--border);
  display: flex; align-items: center; justify-content: center;
}

/* ─── SERVICES ────────────────────────────────────────── */
.services { padding: 64px 24px; background: white; }
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px;
  flex-wrap: wrap; gap: 24px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.service-card {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.service-card:last-child { border-right: none; }
.service-card:hover {
  background: var(--blue-50);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.10);
  z-index: 1;
}
.service-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), #a78bfa);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.service-icon svg { color: #60A5FA; }
.service-title { font-size: 20px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.4px; }
.service-desc { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; }
.service-list { list-style: none; border-top: 1px solid var(--border); }
.service-list li {
  font-size: 13.5px; color: var(--text-mid);
  padding: 9px 0 9px 20px; border-bottom: 1px solid var(--border); position: relative;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 12px; top: 10px; }

/* ─── INDUSTRIES ──────────────────────────────────────── */
.industries {
  padding: 64px 24px; background: var(--navy);
  position: relative; overflow: hidden;
}
.industries-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
}
.industries .section-inner { position: relative; z-index: 1; }
.industries .section-title { color: white; }
.industries .section-desc { color: rgba(255,255,255,0.55); margin-bottom: 56px; }
.ind-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.09);
}
.ind-card {
  padding: 40px 28px; border-right: 1px solid rgba(255,255,255,0.09);
  transition: background 0.2s;
}
.ind-card:last-child { border-right: none; }
.ind-card:hover { background: var(--navy-light); }
.ind-icon { color: rgba(255,255,255,0.5); margin-bottom: 24px; display: block; }
.ind-name { font-size: 17px; font-weight: 800; color: white; margin-bottom: 8px; letter-spacing: -0.3px; }
.ind-desc { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ─── INDUSTRY MINI BROWSERS ─────────────────────── */
.mini-browser {
  border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.mini-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 8px; background: rgba(0,0,0,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mini-dots { display: flex; gap: 3px; }
.mini-dots span { width: 5px; height: 5px; border-radius: 50%; }
.mini-dots span:nth-child(1) { background: #FF5F57; }
.mini-dots span:nth-child(2) { background: #FEBC2E; }
.mini-dots span:nth-child(3) { background: #28C840; }
.mini-url { font-size: 8px; font-family: monospace; color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); padding: 2px 5px; flex: 1; }
.mb-nav { display: flex; align-items: center; justify-content: space-between; padding: 7px 10px; }
.mb-logo { font-size: 9px; font-weight: 900; letter-spacing: 1.5px; }
.mb-btn { font-size: 7px; font-weight: 800; padding: 3px 8px; letter-spacing: 0.5px; }
.mb-hero { padding: 12px 10px 10px; }
.mb-eyebrow { font-size: 7px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; opacity: 0.65; }
.mb-title { font-size: 14px; font-weight: 900; line-height: 1.2; color: #fff; }
.mb-pills { display: flex; flex-wrap: wrap; gap: 4px; padding: 8px 10px; }
.mb-pills span { font-size: 7px; padding: 2px 6px; font-weight: 600; }

/* Barber */
.mini-b-barber { background: #0f0f0f; }
.mini-b-barber .mb-nav { background: #111; border-bottom: 1px solid #1e1e1e; }
.mini-b-barber .mb-logo { color: #D4AF37; }
.mini-b-barber .mb-btn { background: #D4AF37; color: #000; }
.mini-b-barber .mb-hero { background: linear-gradient(135deg, #1c0e00, #111); }
.mini-b-barber .mb-eyebrow { color: #D4AF37; }
.mini-b-barber .mb-pills { background: #0a0a0a; }
.mini-b-barber .mb-pills span { background: #1c1c1c; color: #D4AF37; }

/* Restaurant */
.mini-b-restaurant { background: #0d0802; }
.mini-b-restaurant .mb-nav { background: #120c03; border-bottom: 1px solid #1e1505; }
.mini-b-restaurant .mb-logo { color: #E8A87C; }
.mini-b-restaurant .mb-btn { background: #E8A87C; color: #000; }
.mini-b-restaurant .mb-hero { background: linear-gradient(135deg, #1c1005, #0d0802); }
.mini-b-restaurant .mb-eyebrow { color: #E8A87C; }
.mini-b-restaurant .mb-pills { background: #080502; }
.mini-b-restaurant .mb-pills span { background: #1a1205; color: #E8A87C; }

/* Beauty */
.mini-b-beauty { background: #100810; }
.mini-b-beauty .mb-nav { background: #140a14; border-bottom: 1px solid #201020; }
.mini-b-beauty .mb-logo { color: #E8A0C0; }
.mini-b-beauty .mb-btn { background: #E8A0C0; color: #000; }
.mini-b-beauty .mb-hero { background: linear-gradient(135deg, #1c0818, #100810); }
.mini-b-beauty .mb-eyebrow { color: #E8A0C0; }
.mini-b-beauty .mb-pills { background: #08050a; }
.mini-b-beauty .mb-pills span { background: #180a18; color: #E8A0C0; }

/* Retail */
.mini-b-retail { background: #060c18; }
.mini-b-retail .mb-nav { background: #091020; border-bottom: 1px solid #0f1a2e; }
.mini-b-retail .mb-logo { color: #60A5FA; }
.mini-b-retail .mb-btn { background: #60A5FA; color: #000; }
.mini-b-retail .mb-hero { background: linear-gradient(135deg, #0a1628, #060c18); }
.mini-b-retail .mb-eyebrow { color: #60A5FA; }
.mini-b-retail .mb-pills { background: #040810; }
.mini-b-retail .mb-pills span { background: #0a1220; color: #60A5FA; }

/* ─── PROCESS ─────────────────────────────────────────── */
.process { padding: 64px 24px; background: var(--off-white); }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 60px; border: 1px solid var(--border);
}
.process-step {
  padding: 44px 40px;
  border-right: 1px solid var(--border); position: relative;
}
.process-step:last-child { border-right: none; }
.step-num {
  font-size: 72px; font-weight: 900; color: var(--blue-200);
  line-height: 1; margin-bottom: 20px; letter-spacing: -3px;
}
.step-title { font-size: 20px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.4px; }
.step-desc { font-size: 15px; color: var(--text-mid); line-height: 1.75; }
.step-arrow {
  position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; background: var(--blue);
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.step-arrow svg { color: white; }
.process-step:last-child .step-arrow { display: none; }

/* ─── WHY CLIDE ───────────────────────────────────────── */
.why { padding: 64px 0 64px 0; background: white; overflow: hidden; }
.why .section-inner {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1400px) / 2 + 24px));
  padding-right: 0;
}
.why-grid {
  display: grid; grid-template-columns: minmax(0, 640px) 1fr;
  gap: 80px; align-items: center;
}
.why-left .section-desc { margin-bottom: 48px; }
.feature-list { border: 1px solid var(--border); }
.feature-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px; border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-item:last-child { border-bottom: none; }
.feature-item:hover { background: var(--blue-50); }
.feat-icon {
  width: 40px; height: 40px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feat-icon svg { color: #60A5FA; }
.feat-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.feat-body p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }

/* Showcase browser */
.showcase-wrap { position: relative; }
.showcase-browser {
  background: #0e1e36;
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  box-shadow: -20px 20px 80px rgba(0,0,0,0.3);
  overflow: hidden;
}
.sc-bar {
  background: #091628; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sc-dots { display: flex; gap: 5px; }
.sc-dot { width: 9px; height: 9px; border-radius: 50%; }
.sc-dot.r { background: #FF5F57; }
.sc-dot.y { background: #FEBC2E; }
.sc-dot.g { background: #28C840; }
.sc-url {
  flex: 1; background: rgba(255,255,255,0.05); height: 22px;
  display: flex; align-items: center; padding: 0 10px;
  color: rgba(255,255,255,0.3); font-size: 11px; font-family: monospace;
}
.r-topbar {
  background: #1a1200; padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.r-logo { font-size: 14px; font-weight: 900; color: #E8C87A; letter-spacing: 1.5px; }
.r-nav { display: flex; gap: 8px; }
.r-nav-item { width: 24px; height: 4px; background: rgba(255,255,255,0.2); }
.r-hero { background: linear-gradient(160deg, #1a0e00, #2e1a00); padding: 30px 18px; }
.r-hero-tag { font-size: 9px; font-weight: 700; color: rgba(232,200,122,0.6); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.r-hero-h { font-size: 19px; font-weight: 900; color: #E8C87A; letter-spacing: 0.5px; margin-bottom: 6px; }
.r-hero-sub { font-size: 10.5px; color: rgba(255,255,255,0.45); margin-bottom: 16px; line-height: 1.5; }
.r-cta { display: inline-block; background: #E8C87A; color: #1a0e00; padding: 7px 16px; font-size: 10px; font-weight: 800; }
.r-menu-title { font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase; padding: 14px 18px 10px; background: #111; }
.r-menu-items { display: grid; grid-template-columns: 1fr 1fr; background: #111; }
.r-item { padding: 12px 18px; border: 1px solid #1e1e1e; display: flex; align-items: center; justify-content: space-between; }
.r-item-name { font-size: 11px; color: rgba(255,255,255,0.65); font-weight: 600; }
.r-item-price { font-size: 11px; color: #E8C87A; font-weight: 700; }
.r-booking {
  background: #0a0a0a; padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.r-booking-text { font-size: 11px; color: rgba(255,255,255,0.4); }
.r-booking-btn { background: var(--blue); color: white; padding: 6px 14px; font-size: 10px; font-weight: 800; }
.showcase-tag {
  position: absolute; bottom: -14px; right: -14px;
  background: var(--navy); color: white;
  padding: 8px 16px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ─── PRICING ─────────────────────────────────────────── */
.pricing { padding: 64px 24px; background: var(--off-white); }

.pricing-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px;
  flex-wrap: wrap; gap: 24px;
}

/* Package grid */
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); margin-bottom: 2px;
  position: relative;
}
.pkg-card {
  padding: 44px 36px;
  background: white;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.10);
  z-index: 1;
}
.pkg-card.featured:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.35); }
.pkg-card .pkg-list { flex: 1; }
.pkg-card:last-child { border-right: none; }

/* Featured / highlighted card */
.pkg-card.featured {
  background: var(--navy);
  border-right-color: rgba(255,255,255,0.08);
}
.pkg-card.featured .pkg-name { color: white; }
.pkg-card.featured .pkg-price { color: white; }
.pkg-card.featured .pkg-period { color: rgba(255,255,255,0.5); }
.pkg-card.featured .pkg-desc { color: rgba(255,255,255,0.55); }
.pkg-card.featured .pkg-divider { border-color: rgba(255,255,255,0.1); }
.pkg-card.featured .pkg-list li { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.08); }
.pkg-card.featured .pkg-list li::before { color: #60A5FA; }
.pkg-card.featured .btn-pkg {
  background: var(--blue); color: white;
}
.pkg-card.featured .btn-pkg:hover { background: var(--blue-hover); }

.pkg-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue);
  color: white; padding: 5px 16px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  white-space: nowrap;
}

.pkg-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-light); margin-bottom: 20px; display: block; }
.pkg-price { font-size: 42px; font-weight: 900; letter-spacing: -2px; color: var(--text-dark); line-height: 1; }
.pkg-period { font-size: 14px; color: var(--text-light); font-weight: 500; margin-bottom: 4px; display: block; margin-top: 4px; }
.pkg-one-time { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); margin-bottom: 20px; display: block; }
.pkg-desc { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.pkg-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.pkg-list li {
  font-size: 13.5px; color: var(--text-mid);
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.pkg-list li:last-child { border-bottom: none; }
.pkg-list li::before { content: '→'; position: absolute; left: 0; color: var(--blue); font-size: 12px; top: 10px; }
.btn-pkg {
  display: block; text-align: center;
  background: transparent; color: var(--text-dark);
  border: 1px solid var(--border);
  padding: 13px 24px; font-size: 14px; font-weight: 700;
  text-decoration: none; margin-top: 28px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-family: inherit; cursor: pointer;
}
.btn-pkg:hover { background: var(--blue-50); border-color: var(--blue); color: var(--blue); }

/* Monthly section */
.monthly-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--text-light); margin: 40px 0 16px;
}
.monthly-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}
.monthly-card {
  background: white; padding: 32px 36px;
  border-right: 1px solid var(--border);
  display: flex; gap: 24px; align-items: flex-start;
  transition: background 0.2s;
}
.monthly-card:last-child { border-right: none; }
.monthly-card:hover { background: var(--blue-50); }
.monthly-icon {
  width: 48px; height: 48px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.monthly-icon svg { color: #60A5FA; }
.monthly-body { flex: 1; }
.monthly-name { font-size: 17px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.3px; }
.monthly-price {
  font-size: 26px; font-weight: 900; color: var(--blue);
  letter-spacing: -0.5px; margin-bottom: 10px;
}
.monthly-price span { font-size: 14px; font-weight: 500; color: var(--text-light); }
.monthly-desc { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

.pricing-note {
  margin-top: 28px;
  padding: 20px 24px;
  background: white;
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  font-size: 14px; color: var(--text-mid); line-height: 1.65;
}
.pricing-note strong { color: var(--text-dark); }

/* ─── TESTIMONIALS ───────────────────────────────────── */
/* ─── TEAM ────────────────────────────────────────────── */
.team { padding: 64px 24px; background: white; }
.team .section-desc { margin-bottom: 48px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.team-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--off-white);
}
.team-photo {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  background: var(--border);
  border-radius: 2px;
}
.team-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.team-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
}

.testimonials { padding: 64px 24px; background: white; }
.testimonials .section-title { margin-bottom: 56px; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.testi-card { padding: 40px 36px; border-right: 1px solid var(--border); background: white; }
.testi-card:last-child { border-right: none; }
.testi-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star { color: #F59E0B; font-size: 16px; }
.testi-quote { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: #60A5FA; font-size: 15px; font-weight: 800; flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.testi-biz { font-size: 12.5px; color: var(--text-light); }

/* ─── CTA ────────────────────────────────────────────── */
.cta-section {
  background: var(--blue); padding: 64px 24px;
  position: relative; overflow: hidden;
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-inner {
  max-width: 720px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(30px, 4vw, 48px); font-weight: 900;
  color: white; letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 18px;
}
.cta-inner p { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 16px; line-height: 1.7; }
.cta-guarantee {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px !important; font-weight: 600;
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: 36px !important;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 14px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: white; color: var(--blue);
  padding: 14px 28px; font-size: 15px; font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: var(--blue-50); transform: translateY(-2px); }

/* ─── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--navy); padding: 72px 24px 36px; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name { font-size: 22px; font-weight: 900; color: white; letter-spacing: -0.5px; margin-bottom: 14px; display: block; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; margin-bottom: 28px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; text-decoration: none;
}
.social-link:hover { background: var(--blue); }
.social-link svg { color: rgba(255,255,255,0.7); }
.footer-col h5 {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,0.35); margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 36px; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ─── SCROLL FADE ─────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── LARGE SCREENS ──────────────────────────────────── */
@media (min-width: 1600px) {
  .section-inner { padding: 0 48px; }
  .nav-inner { padding: 0 48px; }
  .hero { padding-left: 48px; padding-right: 48px; }
  .services, .process, .why, .pricing, .team, .industries {
    padding-left: 48px; padding-right: 48px;
  }
  .hero h1 { font-size: 68px; }
  .section-title { font-size: 46px; }
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 48px;
    padding-left: 24px;
    grid-template-columns: 1fr 1fr;
  }
  .why .section-inner { padding-left: 24px; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card { border-right: none; border-bottom: 1px solid var(--border); }
  .pkg-card.featured { border-bottom-color: rgba(255,255,255,0.08); }
  .pkg-card:last-child { border-bottom: none; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .browser-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .step-arrow { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .showcase-wrap { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card { border-right: none; border-bottom: 1px solid var(--border); }
  .testi-card:last-child { border-bottom: none; }
  .monthly-grid { grid-template-columns: 1fr; }
  .monthly-card { border-right: none; border-bottom: 1px solid var(--border); }
  .monthly-card:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 128px 20px 80px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .ind-grid { grid-template-columns: 1fr; }
  .logos-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .services-header, .pricing-header { flex-direction: column; align-items: flex-start; }
}
