/* =============================================
   RESPONSIVE CTA VISIBILITY
   ============================================= */
/* Desktop: show form button, hide WhatsApp */
.hero-cta-mobile { display: none !important; }
.hero-cta-desktop { display: inline-flex !important; }

/* Mobile: show WhatsApp, hide form button */
@media (max-width: 640px) {
  .hero-cta-mobile  { display: inline-flex !important; }
  .hero-cta-desktop { display: none !important; }
}


/* =============================================
   FOUNDER'S OFFER BANNER
   ============================================= */
.founders-banner {
  position: fixed;
  top: 68px; /* sits just below the navbar */
  left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #7c3aed, #0ea5e9, #7c3aed);
  background-size: 200% auto;
  animation: banner-shimmer 4s linear infinite;
  padding: 10px 24px;
  text-align: center;
}
@keyframes banner-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.founders-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
}
.founders-tag {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.founders-text {
  color: rgba(255,255,255,0.92);
  font-size: 0.875rem;
}
.founders-text strong { color: #fff; }
.founders-cta {
  background: #fff;
  color: #7c3aed;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.founders-cta:hover { background: #f5f3ff; transform: translateY(-1px); }

/* Push hero down to account for banner */
.hero { padding-top: 168px; }

@media (max-width: 640px) {
  .founders-banner { top: 60px; padding: 8px 16px; }
  .founders-text { font-size: 0.8rem; }
  .hero { padding-top: 180px; }
}

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

:root {
  --bg:        #080d1a;
  --bg-surface:#0f1628;
  --bg-card:   rgba(255,255,255,0.04);
  --border:    rgba(255,255,255,0.08);
  --primary:   #7c3aed;
  --primary-light: #a855f7;
  --secondary: #0ea5e9;
  --accent:    #f59e0b;
  --green:     #22c55e;
  --text:      #f1f5f9;
  --muted:     #94a3b8;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 25px 50px rgba(0,0,0,0.4);
  --glow:      0 0 40px rgba(124,58,237,0.2);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }
.section-dark { background: var(--bg-surface); }

.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 24px rgba(124,58,237,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.5); }

.btn-whatsapp {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 24px rgba(34,197,94,0.35);
}
.btn-whatsapp:hover { background: #16a34a; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(34,197,94,0.45); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary-light); color: var(--primary-light); }

.btn-primary-full {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 24px rgba(124,58,237,0.35);
  transition: all 0.25s ease;
}
.btn-primary-full:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.5); }

.btn-outline-full {
  display: block;
  text-align: center;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
}
.btn-outline-full:hover { border-color: var(--primary-light); color: var(--primary-light); }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(8,13,26,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.logo-icon { color: var(--primary-light); font-size: 1.3rem; }
.logo-accent { color: var(--primary-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 600;
}
.nav-links .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

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

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav-mobile a {
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-weight: 500;
  transition: all 0.2s;
}
.nav-mobile a:hover { color: var(--text); background: var(--bg-card); }
.nav-mobile.open { display: flex; }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
#whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: none; /* hidden on desktop */
  align-items: center;
  gap: 10px;
  background: #22c55e;
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 24px rgba(34,197,94,0.4);
  transition: all 0.25s ease;
}
#whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(34,197,94,0.5); }
#whatsapp-float svg { flex-shrink: 0; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; right: -150px; animation-delay: 0s; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--secondary); bottom: -100px; left: -100px; animation-delay: -3s; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--accent); top: 40%; left: 40%; animation-delay: -5s; opacity: 0.12; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-inner { position: relative; z-index: 1; text-align: center; }

.hero-badge {
  display: inline-block;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--primary-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 40px;
  backdrop-filter: blur(12px);
  max-width: 520px;
  margin: 0 auto;
}
.stat { text-align: center; padding: 0 32px; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-unit {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--muted);
}
.stat-label { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(124,58,237,0.12);
  color: var(--primary-light);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

/* =============================================
   PROBLEM SECTION
   ============================================= */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.problem-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.problem-icon { font-size: 2.5rem; margin-bottom: 20px; }
.problem-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.problem-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.3); }
.service-card-featured {
  background: linear-gradient(145deg, rgba(124,58,237,0.12), rgba(14,165,233,0.08));
  border-color: rgba(124,58,237,0.35);
  box-shadow: var(--glow);
}
.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon-blue { background: rgba(14,165,233,0.12); color: var(--secondary); }
.service-icon-purple { background: rgba(124,58,237,0.15); color: var(--primary-light); }
.service-icon-green { background: rgba(34,197,94,0.12); color: var(--green); }
.service-icon-orange { background: rgba(249,115,22,0.12); color: #f97316; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.7; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-list li { font-size: 0.9rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.service-list li::before { display: none; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto 48px;
}
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  text-align: right;
}
.step-content { padding: 4px 0 32px; }
.step-content h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.step-content p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.step-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  margin-left: 79px;
  margin-bottom: 0;
}
.steps-cta { text-align: center; }

/* =============================================
   PRICING — 2-STEP LAYOUT
   ============================================= */
.pricing-step {
  margin-bottom: 40px;
}
.pricing-step-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.pricing-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(124,58,237,0.35);
}
.pricing-step-label div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricing-step-label strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.pricing-step-label span {
  font-size: 0.85rem;
  color: var(--muted);
}
.pricing-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.pricing-step-connector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0 32px;
  color: var(--muted);
  font-size: 0.875rem;
}
.pricing-step-connector-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.hosting-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
}
.hosting-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.3); }
.hosting-card-featured {
  background: linear-gradient(145deg, rgba(124,58,237,0.12), rgba(14,165,233,0.08));
  border-color: rgba(124,58,237,0.35);
  box-shadow: var(--glow);
}
@media (max-width: 768px) {
  .pricing-grid-2 { grid-template-columns: 1fr; }
}

/* Legacy 3-col kept for any other pages */
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card-featured {
  background: linear-gradient(145deg, rgba(124,58,237,0.12), rgba(14,165,233,0.06));
  border-color: rgba(124,58,237,0.4);
  box-shadow: var(--glow);
}
.pricing-popular {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-tier {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.price-currency { font-size: 2rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.price-plus { font-size: 1.2rem; color: var(--muted); }
.pricing-freq { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.pricing-tagline { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-features li { font-size: 0.9rem; display: flex; gap: 10px; align-items: flex-start; }
.tick { color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-saving {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(34,197,94,0.08);
  border-radius: 6px;
  border: 1px solid rgba(34,197,94,0.15);
}

.pricing-addons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.addon-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.addon-item { font-size: 0.9rem; color: var(--text); }
.addon-item strong { color: var(--primary-light); }
.addon-divider { color: var(--border); font-size: 1.2rem; }

.pricing-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}
.pricing-note a { color: var(--primary-light); border-bottom: 1px solid rgba(168,85,247,0.4); transition: opacity 0.2s; }
.pricing-note a:hover { opacity: 0.8; }

/* =============================================
   PROCESS STRIP
   ============================================= */
.process-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 32px;
}
.process-step { display: flex; align-items: center; gap: 12px; }
.process-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(124,58,237,0.3);
}
.process-text { display: flex; flex-direction: column; }
.process-text strong { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.process-text span { font-size: 0.75rem; color: var(--muted); }
.process-arrow { color: var(--muted); font-size: 1.1rem; flex-shrink: 0; }
@media (max-width: 768px) {
  .process-strip { flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px; }
  .process-arrow { transform: rotate(90deg); align-self: center; }
}

/* =============================================
   ABOUT STRIP (homepage teaser)
   ============================================= */
.about-strip {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  transition: all 0.3s ease;
}
.about-strip:hover { border-color: rgba(124,58,237,0.3); box-shadow: var(--glow); }
.about-strip-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(124,58,237,0.15), rgba(14,165,233,0.08));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}
.about-strip-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.about-strip-content h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.about-strip-content p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 12px; }
.about-strip-content strong { color: var(--text); }
@media (max-width: 768px) {
  .about-strip { grid-template-columns: 1fr; padding: 32px 24px; }
  .about-strip-avatar { width: 120px; height: 120px; font-size: 3rem; }
}

/* =============================================
   SELF-UPDATE SECTION
   ============================================= */
.self-update-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.su-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.su-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,0.3);
  box-shadow: var(--glow);
}
.su-icon { font-size: 2.2rem; margin-bottom: 16px; }
.su-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.su-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

.su-cta {
  margin-top: 8px;
}
.su-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(14,165,233,0.08));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius);
  padding: 28px 36px;
  flex-wrap: wrap;
}
.su-cta-text { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.su-cta-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.su-cta-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
}
.su-cta-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; max-width: 360px; }
.su-cta-text p strong { color: var(--text); }
.su-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

@media (max-width: 900px) {
  .self-update-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .self-update-grid { grid-template-columns: 1fr; }
  .su-cta-inner { flex-direction: column; align-items: flex-start; padding: 24px; }
  .su-cta-buttons { width: 100%; }
  .su-cta-buttons .btn { flex: 1; justify-content: center; }
}

/* =============================================
   AMENDS SECTION
   ============================================= */
.amends-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.amend-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
}
.amend-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.3); }
.amend-card-mid {
  background: linear-gradient(145deg, rgba(124,58,237,0.1), rgba(14,165,233,0.06));
  border-color: rgba(124,58,237,0.35);
  box-shadow: var(--glow);
}
.amend-icon { font-size: 2rem; margin-bottom: 16px; }
.amend-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.amend-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.amend-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.amend-note {
  font-size: 0.78rem;
  color: var(--green);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.15);
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-block;
}
.amends-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}
@media (max-width: 768px) { .amends-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 28px; } }

/* =============================================
   CASE STUDY
   ============================================= */
.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.case-study-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.case-study-grid-3 .case-study-more {
  grid-column: 1 / -1;
  grid-row: auto;
}
.case-study-more .more-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  text-align: left;
  flex-wrap: wrap;
}
.case-study-more .more-inner .more-icon { font-size: 2.5rem; flex-shrink: 0; }
.case-study-more .more-inner h3 { margin-bottom: 6px; font-size: 1.3rem; }
.case-study-more .more-inner p { margin: 0; flex: 1; min-width: 200px; }
.case-study-more .more-inner .btn { flex-shrink: 0; margin-top: 0; }
@media (max-width: 900px) {
  .case-study-grid-3 { grid-template-columns: 1fr; }
  .case-study-grid-3 .case-study-more { grid-column: auto; }
  .case-study-more .more-inner { flex-direction: column; text-align: center; }
}
.case-study-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: all 0.3s ease;
}
.case-study-card:hover { border-color: rgba(124,58,237,0.3); box-shadow: var(--glow); }
.case-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.case-tag {
  background: rgba(124,58,237,0.12);
  color: var(--primary-light);
  border: 1px solid rgba(124,58,237,0.2);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.case-location { font-size: 0.875rem; color: var(--muted); }
.case-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.case-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 28px; }
.case-results {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.case-result { text-align: center; }
.result-value {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.result-label { font-size: 0.8rem; color: var(--muted); }
.case-services-used {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.service-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
}
.case-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary-light); font-size: 0.875rem; font-weight: 600; text-decoration: none; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); width: 100%; }
.case-link:hover { gap: 10px; }
.case-custom-badge {
  display: inline-block;
  background: rgba(234,179,8,0.1);
  border: 1px solid rgba(234,179,8,0.25);
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.case-study-note {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.case-study-note strong { color: var(--text); }
.case-link:hover { color: var(--text); border-color: var(--text); }
.case-link span { transition: transform 0.2s ease; }
.case-link:hover span { transform: translate(2px, -2px); }

.case-study-more {
  background: linear-gradient(145deg, rgba(124,58,237,0.1), rgba(14,165,233,0.05));
  border: 1px dashed rgba(124,58,237,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-inner {
  text-align: center;
  padding: 48px 32px;
}
.more-icon { font-size: 3rem; margin-bottom: 20px; }
.more-inner h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.more-inner p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
  transition: all 0.3s ease;
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,0.35); }
.contact-card-whatsapp { border-color: rgba(34,197,94,0.25); }
.contact-card-whatsapp:hover { border-color: var(--green); box-shadow: 0 0 30px rgba(34,197,94,0.15); }
.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-light);
}
.contact-card-whatsapp .contact-card-icon { color: var(--green); }
.contact-label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-value { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; margin: 4px 0; }
.contact-hint { font-size: 0.8rem; color: var(--muted); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 36px;
}
.footer-inner { text-align: center; }
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.footer-tagline { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.8rem; color: var(--muted); opacity: 0.6; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Show WhatsApp float on mobile only */
  #whatsapp-float { display: flex; }

  .hero-stats { padding: 20px 24px; }
  .stat { padding: 0 16px; }
  .stat-num { font-size: 2rem; }

  .cards-grid-3 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .case-study-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .case-results { gap: 16px; }

  /* On mobile: show contact cards, hide desktop form */
  .contact-desktop-form { display: none; }
  .contact-mobile-cards { display: flex; flex-direction: column; gap: 16px; }

  #whatsapp-float span { display: none; }
  #whatsapp-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 80px; height: 1px; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* =============================================
   CONTACT FORM (desktop)
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-mobile-cards { display: none; } /* hidden on desktop */
.contact-desktop-form { display: block; }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.contact-form-card > p { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }

.cf-field { margin-bottom: 16px; }
.cf-field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.cf-field label .req { color: var(--primary-light); }
.cf-field input, .cf-field textarea, .cf-field select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  padding: 11px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.cf-field input:focus, .cf-field textarea:focus, .cf-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--muted); opacity: 0.6; }
.cf-field textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(124,58,237,0.3);
  transition: all 0.25s ease;
  margin-top: 8px;
}
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,0.45); }
.cf-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
  color: var(--green);
  font-size: 1rem;
  font-weight: 600;
}

.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-desktop-form { display: none; }
  .contact-mobile-cards { display: flex !important; flex-direction: column; gap: 16px; }
}

/* =============================================
   ERP TEASER & SUBPAGE STYLES
   ============================================= */
.erp-teaser-strip {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
  background: linear-gradient(145deg, rgba(124,58,237,0.05), rgba(14,165,233,0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  transition: all 0.3s ease;
}
.erp-teaser-strip:hover { border-color: rgba(124,58,237,0.3); box-shadow: var(--glow); }

@media (max-width: 991px) {
  .erp-teaser-strip {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
}

.erp-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .erp-details-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .erp-details-grid { grid-template-columns: 1fr; }
}

.integration-badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.integration-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.erp-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .erp-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
