/* =============================================
   GURUKRUPA AI AUTOMATION AGENCY — style.css
   Agency-only site | Pure dark glassmorphism
   ============================================= */

:root {
  --primary: #4F46E5;
  --primary-dark: #3730A3;
  --primary-light: #818CF8;
  --accent: #C084FC;
  --accent-light: #E9D5FF;
  --glow-blue: rgba(79, 70, 229, 0.4);
  --glow-purple: rgba(192, 132, 252, 0.3);

  --bg: #030712;
  --bg-card: #090e1a;
  --bg-card-hover: #0f1527;
  --bg-alt: #060b16;
  --bg-glass: rgba(3, 7, 18, 0.75);

  --text: #F0F4FF;
  --text-muted: #8899BB;
  --text-dim: rgba(136, 153, 187, 0.6);

  --border: rgba(79, 70, 229, 0.1);
  --border-hover: rgba(79, 70, 229, 0.25);

  --white: #FFFFFF;
  --success: #10B981;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
  --apple-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--apple-ease);
  --transition-slow: 0.8s var(--apple-ease);
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(2, 8, 23, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.logo-mark svg { display: block; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-light);
}
.brand-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 500;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--primary-light);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta-btn {
  padding: 9px 20px;
  background: var(--primary);
  color: white !important;
  border-radius: 50px;
  font-weight: 600;
  transition: all var(--transition) !important;
  box-shadow: 0 0 24px rgba(59,130,246,0.3);
}
.nav-cta-btn:hover {
  background: var(--primary-dark) !important;
  box-shadow: 0 0 32px rgba(59,130,246,0.5) !important;
  transform: translateY(-1px);
}
.nav-cta-btn::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2,8,23,0.97) 50%, rgba(2,8,23,0.3) 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-text-side {
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: revealUp 1s var(--apple-ease) forwards 0.1s;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 10px var(--primary-light);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}
.hero-text-side h1 {
  font-size: clamp(2.0rem, 4.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  opacity: 0;
  animation: revealUp 1.1s var(--apple-ease) forwards 0.25s;
}
.h1-gradient {
  background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Right Column Mockup Styling */
.hero-mockup-side {
  opacity: 0;
  animation: revealUp 1.2s var(--apple-ease) forwards 0.5s;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
}
.hero-mockup-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  padding: 8px;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.hero-dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  filter: brightness(0.85) contrast(1.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-mockup-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: calc(100% + 20px);
  max-width: 360px;
  background: rgba(8, 14, 28, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow-card), 0 0 20px rgba(59, 130, 246, 0.15);
  z-index: 10;
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}
.mockup-pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulse-dot 1.4s infinite;
}
.mockup-header-title {
  font-size: 0.72rem;
  font-family: monospace;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.mockup-feed {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.9);
  min-height: 120px;
  max-height: 150px;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.4;
  text-align: left;
}
.mockup-log-line {
  opacity: 0;
  animation: revealLine 0.4s var(--apple-ease) forwards;
  word-wrap: break-word;
}
.log-time { color: rgba(147, 197, 253, 0.7); margin-right: 5px; }
.log-user { color: #facc15; }
.log-ai { color: #60a5fa; }
.log-db { color: #34d399; }
.log-system { color: #f472b6; }

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

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.75;
  max-width: 600px;
  opacity: 0;
  animation: revealUp 1.1s var(--apple-ease) forwards 0.4s;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  animation: revealUp 1.1s var(--apple-ease) forwards 0.55s;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: revealUp 1.1s var(--apple-ease) forwards 0.7s;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 5px;
  letter-spacing: 0.3px;
}
/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
  animation: bounce-dot 1.6s ease-in-out infinite;
}
@keyframes bounce-dot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.4; }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(40px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 0 32px rgba(59,130,246,0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 48px rgba(59,130,246,0.5);
}
.btn-glass {
  background: rgba(59,130,246,0.08);
  color: rgba(255,255,255,0.85);
  border-color: rgba(59,130,246,0.2);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-3px) scale(1.02);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 24px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #0088cc;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 24px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,136,204,0.35);
  text-decoration: none;
}
.btn-telegram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,136,204,0.55);
}
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 17px 28px;
  font-size: 1rem;
  border-radius: 14px;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  padding: 20px 0;
  background: rgba(10,15,30,0.9);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-badge {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-divider {
  color: var(--border);
  font-size: 1.2rem;
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text);
  margin: 14px 0;
  letter-spacing: -1px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}
.section-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(59,130,246,0.1);
  color: var(--primary-light);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(59,130,246,0.2);
}
.section-badge-light {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.2);
}

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  padding: 110px 0;
  background: var(--bg-alt);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-glow {
  position: absolute;
  top: -40px; left: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
  transition: all 0.6s ease;
  pointer-events: none;
  z-index: 2;
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.service-card:hover .card-glow {
  transform: scale(2);
  opacity: 0.8;
}
.card-img {
  width: 100%;
  height: 200px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-card:hover .card-img img,
.case-card:hover .card-img img {
  transform: scale(1.06);
}
.card-content {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: auto;
}
.card-tags li {
  padding: 4px 12px;
  background: rgba(59,130,246,0.08);
  color: var(--primary-light);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(59,130,246,0.15);
}

/* =============================================
   PROCESS
   ============================================= */
.process-section {
  padding: 110px 0;
  background: var(--bg);
}
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto 48px;
}
.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 40px;
}
.step-connector {
  position: absolute;
  left: 27px;
  top: 58px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, var(--primary), transparent);
  opacity: 0.3;
}
.process-step:last-child .step-connector { display: none; }
.step-circle {
  width: 56px; height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: rgba(59,130,246,0.1);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary-light);
  box-shadow: 0 0 24px rgba(59,130,246,0.2);
}
.step-content {
  flex: 1;
  padding-top: 12px;
}
.step-content h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.pricing-note-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 32px;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: var(--radius);
  max-width: 760px;
  margin: 0 auto;
}
.pricing-note-icon { font-size: 1.8rem; }
.pricing-note-box strong { display: block; font-size: 1rem; color: var(--primary-light); margin-bottom: 6px; }
.pricing-note-box p { font-size: 0.88rem; color: var(--text-muted); }

/* =============================================
   WHY US
   ============================================= */
.why-section {
  padding: 110px 0;
  background: var(--bg-alt);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.why-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}
.why-icon-wrap {
  font-size: 2.8rem;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 1rem; color: var(--text); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   CASE STUDIES
   ============================================= */
.cases-section {
  padding: 110px 0;
  background: var(--bg);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.case-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.case-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.case-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}
.case-status {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--success);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.case-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 8px; }
.case-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.case-metrics {
  margin-top: 8px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-highlight {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-light);
}
.metric-detail {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.case-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.case-stack span {
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.08);
  color: var(--primary-light);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.15);
}
.cases-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-style: italic;
  padding: 16px 24px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* =============================================
   INQUIRY FORM
   ============================================= */
.inquiry-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #030a1e 0%, #0a1535 100%);
}
.inquiry-section .section-header h2,
.inquiry-section .section-header p { color: white; }
.inquiry-section .section-header p { color: rgba(255,255,255,0.65); }
.form-card {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(59,130,246,0.15);
  border-top: 3px solid var(--primary-light);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 64px rgba(0,0,0,0.5);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group:not(.form-row .form-group) { margin-bottom: 20px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.8); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: white;
  background: rgba(255,255,255,0.05);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: #0a0f1e; color: white; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.form-group textarea { resize: vertical; }

.success-msg { text-align: center; padding: 52px 24px; }
.success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.success-msg h3 { font-size: 1.6rem; color: var(--primary-light); margin-bottom: 12px; }
.success-msg p { font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.success-msg a { color: var(--primary-light); }

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  padding: 110px 0;
  background: var(--bg-alt);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -1px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.c-icon {
  font-size: 1.2rem;
  width: 44px; height: 44px;
  background: rgba(59,130,246,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(59,130,246,0.15);
}
.contact-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.contact-item p, .contact-item a { font-size: 0.92rem; color: var(--text); }
.contact-item a:hover { color: var(--primary-light); }

.promise-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px;
}
.promise-box h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 24px; }
.promise-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.promise-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.promise-check { font-size: 1rem; flex-shrink: 0; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #010410;
  border-top: 1px solid rgba(59,130,246,0.08);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo-mark { font-size: 22px; }
.footer-brand-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
}
.footer-brand-sub {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary-light); }
.footer-copy { font-size: 0.74rem; color: rgba(255,255,255,0.3); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.65);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
.whatsapp-float-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(0,0,0,0.82);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }

/* =============================================
   TELEGRAM FLOAT
   ============================================= */
.telegram-float {
  position: fixed;
  bottom: 98px; right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #0088cc;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,136,204,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.telegram-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,136,204,0.65);
}
.telegram-float svg { width: 30px; height: 30px; fill: white; }
.telegram-float-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(0,0,0,0.82);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.telegram-float:hover .telegram-float-tooltip { opacity: 1; }


/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   SOVEREIGN & RESPONSIBLE AI CONSOLE
   ============================================= */
.results-section {
  padding: 110px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.results-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('agency-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}
.results-section .container {
  position: relative;
  z-index: 1;
}

.console-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto 30px;
  background: rgba(10, 15, 30, 0.45);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: var(--shadow-card), inset 0 0 30px rgba(99, 102, 241, 0.05);
}

/* Left Sidebar Tab Buttons */
.console-tabs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.console-tab-btn {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.console-tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(99, 102, 241, 0.2);
  color: white;
}
.console-tab-btn.active {
  background: rgba(79, 70, 229, 0.08);
  border-color: var(--primary-light);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(99, 102, 241, 0.1);
}
.console-tab-btn .tab-icon {
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
}
.console-tab-btn.active .tab-icon {
  background: rgba(99, 102, 241, 0.2);
  border-color: var(--primary-light);
  transform: scale(1.05);
}
.console-tab-btn .tab-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}
.console-tab-btn .tab-text p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
}
.console-tab-btn.active .tab-text p {
  color: var(--text-muted);
}

/* Progress Line on active tab */
.tab-progress-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  transition: width 8s linear;
}
.console-tab-btn.active .tab-progress-line {
  width: 100%;
}

/* Right Display Panel */
.console-display {
  background: rgba(3, 7, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Slides */
.console-slide {
  display: none;
  opacity: 0;
  transform: translateY(15px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s var(--apple-ease);
  flex-direction: column;
  gap: 24px;
}
.console-slide.active {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: slideReveal 0.5s var(--apple-ease) forwards;
}
@keyframes slideReveal {
  from { opacity: 0; transform: translateY(15px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Slide Content */
.slide-content h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}
.slide-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.slide-content strong {
  color: var(--primary-light);
}

/* Visual Components inside slides */
.slide-visual {
  width: 100%;
  height: 180px;
  background: rgba(9, 14, 26, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Slide 1: VPS Graphic */
.visual-vps-graphic {
  width: 90%;
  max-width: 380px;
}
.vps-box {
  background: rgba(3, 7, 18, 0.8);
  border: 1px solid var(--border-hover);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}
.vps-header {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-light);
  display: block;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 6px;
}
.vps-db-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.badge-blue {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--primary-light);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
}
.badge-green {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
}
.arrow-right {
  color: var(--text-dim);
  font-weight: 700;
  animation: arrow-bounce 1.5s infinite ease-in-out;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
.vps-status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  color: var(--text-muted);
}
.vps-status-bar .pulse-indicator {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: statusPulse 1.5s infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Slide 2: Alert Notification Mock */
.visual-phone-alert {
  width: 90%;
  max-width: 350px;
}
.mock-notification {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--primary-light);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}
.noti-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.noti-header .time {
  color: var(--text-dim);
}
.noti-msg {
  font-size: 0.78rem;
  color: white;
  line-height: 1.4;
  margin-bottom: 12px;
}
.noti-actions {
  display: flex;
  gap: 8px;
}
.btn-noti-approve {
  background: var(--success);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}
.btn-noti-reject {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Slide 3: Terminal Mock */
.visual-terminal {
  width: 90%;
  max-width: 380px;
  background: #010409;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-family: 'Courier New', Courier, monospace;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.term-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.term-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.term-dot.red { background: #ff5f56; }
.term-dot.yellow { background: #ffbd2e; }
.term-dot.green { background: #27c93f; }
.term-title {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-left: 6px;
}
.term-body {
  padding: 14px 16px;
  font-size: 0.72rem;
  line-height: 1.5;
  color: #c9d1d9;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}
.c-blue { color: #58a6ff; }
.c-green { color: #7ee787; }
.c-yellow { color: #d2a8ff; }

/* Console Bottom Note */
.console-footer-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 30px;
  background: rgba(99, 102, 241, 0.03);
  border: 1px solid var(--border);
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* =============================================
   BLOG SECTION
   ============================================= */
.blogs-section {
  padding: 110px 0;
  background: var(--bg-alt);
}
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}
.blog-image {
  height: 200px;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--apple-ease);
}
.blog-card:hover .blog-image img {
  transform: scale(1.05);
}
.blog-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.4);
  z-index: 1;
}
.blog-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-light);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-date {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.blog-title {
  font-size: 1.15rem;
  color: white;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.blog-read-more-btn {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.blog-read-more-btn:hover {
  color: white;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(2,8,23,0.97);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta-btn { width: 100%; text-align: center; justify-content: center; }

  .hero { padding: 90px 0 60px; }
  .hero-stats { gap: 24px; }

  .trust-strip .container { flex-direction: column; align-items: flex-start; }

  /* Results Section Mobile */
  .console-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }
  .console-tabs {
    flex-direction: column;
    gap: 12px;
  }
  .console-tab-btn {
    padding: 14px 18px;
    gap: 12px;
  }
  .console-tab-btn .tab-icon {
    font-size: 1.4rem;
    padding: 6px;
  }
  .console-display {
    padding: 24px 18px;
    min-height: auto;
  }
  .console-footer-note {
    width: 100%;
    transform: none;
    left: 0;
  }

  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .btn { white-space: normal; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-step { flex-direction: column; }
  .step-connector { display: none; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-text-side {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    width: 100%;
  }
  .hero-mockup-side {
    width: 100%;
    margin-top: 20px;
  }
  .hero-mockup-card {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-text-side h1 { letter-spacing: -1px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.7rem; }
}

/* ========== PROBLEM SECTION ========== */
.problem-section {
  padding: var(--section-padding);
  background: var(--bg-main);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.section-badge-red {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.problem-card {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  transition: transform 0.3s var(--transition-base), border-color 0.3s var(--transition-base);
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #EF4444, #F59E0B);
  opacity: 0.7;
}
.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 68, 68, 0.2);
}
.prob-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(239, 68, 68, 0.15);
  line-height: 1;
  margin-bottom: 15px;
}
.prob-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.4;
}
.prob-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

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

/* ========== ROI SECTION ========== */
.roi-section {
  padding: var(--section-padding);
  background: var(--bg-deep);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.roi-calculator-card {
  max-width: 900px;
  margin: 50px auto 0 auto;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  box-shadow: var(--shadow-card), 0 20px 40px rgba(0,0,0,0.3);
}
.roi-inputs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
}
.roi-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.roi-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roi-label-row label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
}
.roi-val-badge {
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 4px 10px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
}
.roi-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: background 0.3s;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  cursor: pointer;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  transition: transform 0.1s;
}
.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.roi-slider-hints {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
  padding: 0 2px;
}
.roi-outputs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.roi-output-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.roi-output-box {
  background: rgba(8, 14, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.roi-output-box.highlight {
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.04);
}
.roi-output-box.highlight::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0; width: 4px;
  background: var(--primary-light);
  border-radius: 4px 0 0 4px;
}
.roi-output-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.roi-output-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light);
  margin: 4px 0;
  line-height: 1.1;
}
.roi-output-box.highlight .roi-output-num {
  color: var(--primary-light);
  background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}
.roi-output-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .roi-calculator-card {
    grid-template-columns: 1fr;
    padding: 25px;
    gap: 30px;
  }
  .roi-inputs {
    gap: 25px;
  }
}

/* ========== FOUNDER SECTION ========== */
.founder-section {
  padding: var(--section-padding);
  background: var(--bg-main);
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.founder-card {
  max-width: 960px;
  margin: 50px auto 0 auto;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-card);
}
.founder-img-col {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.5);
}
.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-content-col {
  display: flex;
  flex-direction: column;
}
.founder-badge {
  align-self: flex-start;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-light);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}
.founder-content-col h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--text-light), rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.founder-content-col p {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.founder-content-col p strong {
  color: var(--primary-light);
  font-weight: 700;
}
.founder-outcome {
  margin-bottom: 25px !important;
}
.founder-actions {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .founder-card {
    grid-template-columns: 1fr;
    padding: 25px;
    gap: 30px;
  }
  .founder-img-col {
    max-width: 320px;
    margin: 0 auto;
  }
  .founder-content-col h3 {
    font-size: 1.6rem;
  }
}

/* ========== MID CTA STRIP ========== */
.mid-cta-strip {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(8, 14, 28, 0.95), rgba(15, 23, 42, 0.95));
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.mid-cta-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.mid-cta-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.mid-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.2;
}
.mid-cta-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
}
#mid-cta-btn {
  padding: 14px 32px;
  font-size: 1.05rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

