/* ============================================
   REVBO.AI — STYLESHEET
   Colors: Orange #F97316 | Carolina Blue #4B9CD3 | Black #0A0A0F
   ============================================ */

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

:root {
  --orange:       #F97316;
  --orange-dark:  #EA580C;
  --orange-glow:  rgba(249, 115, 22, 0.35);
  --blue:         #4B9CD3;
  --blue-dark:    #2F7DB5;
  --blue-glow:    rgba(75, 156, 211, 0.25);
  --black:        #0A0A0F;
  --surface:      #111118;
  --surface-2:    #18181F;
  --surface-3:    #1E1E28;
  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(249,115,22,0.4);
  --text:         #F0F0F5;
  --text-muted:   #8888A0;
  --text-subtle:  #55556A;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.22s ease;
}

html { scroll-behavior: smooth; }

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

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; }

.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, #FBBF24 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 0 20px var(--orange-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FB923C, var(--orange));
  box-shadow: 0 0 32px rgba(249,115,22,0.55);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { color: var(--text); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ---- SECTION SHARED ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  background: rgba(249,115,22,0.12);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-rev { color: var(--orange); }
.logo-bo  { color: rgba(75, 156, 211, 0.65); }
.logo-dot { color: var(--orange); }
.logo-ai  { color: var(--text-muted); font-size: 0.85em; }

.nav-logo-img { height: 90px; width: auto; display: block; mix-blend-mode: screen; }
.nav-logo-img--footer { height: 72px; mix-blend-mode: screen; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0 auto;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; gap: 10px; flex-shrink: 0; }

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

.nav-mobile {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.nav-mobile a { color: var(--text-muted); text-decoration: none; font-weight: 500; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}
.glow-orb--orange {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -200px; right: -100px;
}
.glow-orb--blue {
  width: 500px; height: 500px;
  background: var(--blue);
  bottom: -100px; left: -150px;
}

/* Circuit pattern */
.circuit-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  opacity: 0.4;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(75,156,211,0.12);
  border: 1px solid rgba(75,156,211,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 48px;
  max-width: 640px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.stat { text-align: center; padding: 8px 32px; }
.stat-number {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 24px; height: 36px;
  border: 2px solid var(--border);
  border-radius: 12px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 0.8rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logo-item {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-subtle);
  letter-spacing: 0.04em;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.trust-logo-item:hover { opacity: 0.8; }

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 100px 0;
  background: var(--black);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(249,115,22,0.04));
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.feature-card:hover::before { opacity: 1; }
.feature-card--highlight {
  background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(249,115,22,0.03));
  border-color: rgba(249,115,22,0.3);
  grid-column: span 1;
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon--orange {
  background: rgba(249,115,22,0.15);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.2);
}
.feature-icon--blue {
  background: rgba(75,156,211,0.12);
  color: var(--blue);
  border: 1px solid rgba(75,156,211,0.2);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.feature-badge {
  display: inline-block;
  margin-top: 16px;
  background: rgba(249,115,22,0.15);
  color: var(--orange);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.step--reverse {
  grid-template-columns: auto 1fr 1fr;
  direction: rtl;
}
.step--reverse > * { direction: ltr; }

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}
.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text);
}
.step-content p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

/* Integration icons */
.integration-icons {
  display: flex;
  gap: 12px;
}
.int-icon {
  width: 52px; height: 52px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s;
}
.int-icon:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(249,115,22,0.08);
}

/* Pulse ring */
.pulse-ring {
  position: relative;
  width: 100px; height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-ring::before, .pulse-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(249,115,22,0.3);
  animation: pulse-expand 3s infinite;
}
.pulse-ring::before { width: 100%; height: 100%; animation-delay: 0s; }
.pulse-ring::after  { width: 140%; height: 140%; animation-delay: 1s; }
@keyframes pulse-expand {
  0%   { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.pulse-core {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px var(--orange-glow);
}

/* Insight card */
.insight-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface-3);
  border: 1px solid rgba(75,156,211,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 280px;
}
.insight-icon {
  width: 36px; height: 36px;
  background: rgba(75,156,211,0.15);
  color: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.insight-title { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.insight-sub { font-size: 0.75rem; color: var(--text-muted); }
.insight-value {
  margin-left: auto;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #4ADE80;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--black);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.testimonial-card--featured {
  background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(75,156,211,0.05));
  border-color: rgba(249,115,22,0.25);
}
.testimonial-stars {
  color: var(--orange);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.author-role { font-size: 0.78rem; color: var(--text-subtle); }

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.pricing-card--equal {
  background: var(--surface-2);
  border-color: var(--border);
  transform: none;
}
.pricing-card--equal:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  border-radius: 100px;
  padding: 4px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.plan-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}
.plan-price--custom {
  font-size: 2rem;
  color: var(--blue);
}
.price-currency { font-size: 1.5rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.price-period { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.plan-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  min-height: 52px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.plan-features li.muted { color: var(--text-subtle); }
.check { color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 100px 0;
  background: var(--black);
}
.cta-inner {
  position: relative;
  background: linear-gradient(135deg, rgba(249,115,22,0.08) 0%, rgba(75,156,211,0.06) 100%);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 200px;
  background: var(--orange);
  filter: blur(120px);
  opacity: 0.06;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-content > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-input {
  flex: 1;
  min-width: 240px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--transition);
}
.cta-input::placeholder { color: var(--text-subtle); }
.cta-input:focus { border-color: var(--orange); }
.cta-note {
  font-size: 0.8rem;
  color: var(--text-subtle);
  margin: 0 !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 36px; height: 36px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

/* ============================================
   EXPERIENCE BAR (updated trust bar)
   ============================================ */
.trust-logo-sub {
  font-size: 0.75em;
  opacity: 0.65;
  font-weight: 400;
}
.trust-logo-divider {
  color: var(--text-subtle);
  font-size: 1.2rem;
  line-height: 1;
  user-select: none;
}

/* ============================================
   ABOUT THE TEAM
   ============================================ */
.about-team {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.team-card-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.team-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  background: var(--surface-2);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  transition: all 0.3s;
}
.team-card:hover {
  border-color: rgba(249,115,22,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.team-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-photo-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  background: var(--surface-3);
  border: 2px dashed rgba(249,115,22,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-subtle);
  font-size: 0.75rem;
  text-align: center;
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.team-photo-placeholder:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.team-photo-placeholder svg { opacity: 0.5; }
.team-photo-placeholder:hover svg { opacity: 0.8; }

/* Once a real photo is added, use this class on an <img> inside .team-photo-wrap */
.team-photo-wrap img {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid rgba(249,115,22,0.3);
}

.team-info { display: flex; flex-direction: column; gap: 16px; }
.team-name-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.team-name {
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 4px;
}
.team-title {
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 500;
}
.team-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.team-tag {
  background: rgba(75,156,211,0.1);
  border: 1px solid rgba(75,156,211,0.2);
  color: var(--blue);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.76rem;
  font-weight: 500;
}
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 102, 194, 0.15);
  border: 1px solid rgba(10, 102, 194, 0.3);
  color: #5B9BD5;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}
.linkedin-btn:hover {
  background: rgba(10, 102, 194, 0.25);
  border-color: rgba(10, 102, 194, 0.5);
  color: #7BB3E0;
}

/* ============================================
   PACKAGES (2-col)
   ============================================ */
.pricing-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto 28px;
}
.plan-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.plan-icon--orange {
  background: rgba(249,115,22,0.15);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.2);
}
.plan-icon--blue {
  background: rgba(75,156,211,0.12);
  color: var(--blue);
  border: 1px solid rgba(75,156,211,0.2);
}
.plan-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-subtle);
  max-width: 860px;
  margin: 0 auto;
}

/* ============================================
   CONTACT FORM (full layout)
   ============================================ */
.cta-form--full {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}
.cta-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2355556A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.cta-select option {
  background: var(--surface-2);
  color: var(--text);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid--two { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-card--featured { transform: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo-wrap { align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 48px 24px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .trust-logos { gap: 16px; }
  .trust-logo-divider { display: none; }
  .trust-logos { flex-wrap: wrap; justify-content: center; gap: 12px 24px; }
  .team-name-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: 1fr; }
  .team-card { padding: 28px 24px; }
  .team-photo-placeholder { width: 140px; height: 140px; }
}
