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

:root {
  --bg-dark: #0C1E1B;
  --bg-darker: #091714;
  --green-accent: #EBEB41;
  --btn-text: #0C1E1B;
  --green-neon: #7ecf3c;
  --green-glow: rgba(126, 207, 60, 0.15);
  --green-dim: #1a2e12;
  --text-white: #f0f0f0;
  --text-muted: #b0b8a8;
  --text-dim: #6b7a60;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 85px;
  background: rgba(12, 30, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(126, 207, 60, 0.08);
}

.navbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.navbar-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.sidebar-logo {
  display: none;
}

.nav-link {
  color: var(--text-white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  opacity: 0.85;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .chevron {
  margin-top: 1px;
  transition: transform 0.3s;
}

.nav-dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: rgba(12, 30, 27, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(235, 235, 65, 0.1);
  border-radius: 10px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  transform: translateX(-50%) translateY(16px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}

.dropdown-item:hover {
  color: #EBEB41;
  background: rgba(235, 235, 65, 0.06);
}

.btn-cta-nav {
  display: inline-flex;
  align-items: center;
  padding: 11px 26px;
  background: var(--green-accent);
  color: var(--btn-text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.01em;
  box-shadow: 0 0 20px rgba(235, 235, 65, 0.15);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: box-shadow 0.3s;
}

.btn-cta-nav::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #015941;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);
}

.btn-cta-nav:hover::after {
  width: 400px;
  height: 400px;
}

.btn-cta-nav:hover {
  box-shadow: 0 0 30px rgba(1, 89, 65, 0.4);
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 85px;
  background: #0C1E1B;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* hero overlay removed to match familiar section */

/* Cyber grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 207, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 207, 60, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Ambient neon glow behind illustration */
.hero-glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(26, 158, 110, 0.2) 0%,
    rgba(1, 89, 65, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(40px);
}

.hero-inner {
  flex: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
}

/* LEFT COLUMN */
.hero-left {
  flex: 1;
  max-width: 560px;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.hero-headline {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--text-white);
}

.hero-highlight {
  display: inline-block;
  background: linear-gradient(90deg, #EBEB41 60%, #015941 100%);
  color: var(--btn-text);
  padding: 4px 24px 6px;
  margin-top: 6px;
  font-weight: 800;
  line-height: 1.15;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Blinking cursor bar */
.hero-highlight::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #015941;
  animation: cursorBlink 0.8s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Fancy text rotation with clip animation */
.fancy-text {
  display: inline-block;
  position: relative;
}

.fancy-word {
  display: inline-block;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  clip-path: inset(0 100% 0 0);
  white-space: nowrap;
}

.fancy-word.active {
  opacity: 1;
  position: relative;
  clip-path: inset(0 0% 0 0);
  animation: clipReveal 1.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.fancy-word.exit {
  opacity: 1;
  position: absolute;
  animation: clipHide 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes clipReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0.3;
  }
  30% {
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
  }
}

@keyframes clipHide {
  0% {
    clip-path: inset(0 0% 0 0);
    opacity: 1;
  }
  70% {
    opacity: 0.6;
  }
  100% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
}

.hero-description {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-white);
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 500;
}

/* .btn-cta-hero -- original style
.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: box-shadow 0.3s, color 0.3s, border-color 0.3s;
}

.btn-cta-hero::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--green-accent);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);
}

.btn-cta-hero:hover::after {
  width: 400px;
  height: 400px;
}

.btn-cta-hero:hover {
  color: var(--btn-text);
  border-color: var(--green-accent);
  box-shadow: 0 0 30px rgba(235, 235, 65, 0.2);
}
*/

/* btn-cta-hero -- white outline ghost button */
.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: transparent;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: 0.01em;
  border: 2px solid rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.btn-cta-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.hero-trust-statement {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: 0.01em;
}

/* RIGHT COLUMN */
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-top: 30px;
}

.hero-illustration img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 60px rgba(126, 207, 60, 0.12));
}

/* Trust badges below illustration */
.trust-badges {
  margin-top: 32px;
  text-align: center;
}

.trust-heading {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  /* color: var(--text-dim); */
  color: #d1cece;
  margin-bottom: 4px;
  position: relative;
  display: inline-block;
}

.trust-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-accent), transparent);
  opacity: 0.4;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-logo {
  height: 28px;
  width: auto;
  transition: opacity 0.2s;
}

.trust-logo:hover {
  opacity: 0.85;
}

.sequoia-logo {
  height: 26px;
}

.trust-logo.ycombinator {
  height: 150px;
  margin-top: 10px;
}

.tiger-logo {
  height: 38px;
}

/* ===== BOTTOM BRAND ROW (MARQUEE) ===== */
.brand-row {
  padding: 40px 0 48px;
  border-top: 1px solid rgba(126, 207, 60, 0.06);
  overflow: hidden;
}

.brand-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 14%, #000 15%, #000 85%, transparent 86%);
  -webkit-mask-image: linear-gradient(90deg, transparent 14%, #000 15%, #000 85%, transparent 86%);
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

.brand-logo {
  height: 36px;
  width: auto;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 0.25s;
  flex-shrink: 0;
}

.brand-logo:hover {
  opacity: 0.85;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

/* ===== TRUSTED CLIENTS MARQUEE STRIP ===== */
.clients-strip {
  width: 100%;
  background: #0C1E1B;
  padding: 32px 0;
  position: relative;
  z-index: 30;
  text-align: center;
}

.clients-caption {
  font-size: 16px;
  font-weight: 600;
  color: #d1cece;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 56px;
  padding: 0 24px;
  position: relative;
  display: inline-block;
}

.clients-caption::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-accent), transparent);
  opacity: 0.4;
}

.clients-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 14%, #000 15%, #000 85%, transparent 86%);
  -webkit-mask-image: linear-gradient(90deg, transparent 14%, #000 15%, #000 85%, transparent 86%);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

@media (hover: hover) and (pointer: fine) {
  .clients-marquee:hover .clients-track {
    animation-play-state: paused;
  }
}

@media (hover: none) {
  .clients-marquee.paused .clients-track {
    animation-play-state: paused;
  }
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.client-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.client-name {
  font-size: 22px;
  font-weight: 900;
  color: #ffffff;
  white-space: nowrap;
  font-family: var(--font-heading, inherit);
  letter-spacing: -0.01em;
}

.client-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 6px;
  white-space: nowrap;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.client-pill-gold {
  color: #7a5500;
  background: linear-gradient(135deg, #fff4b8 0%, #f5e070 20%, #e8c338 50%, #dbb230 80%, #c9a020 100%);
}

.client-pill-silver {
  color: #3a3a3a;
  background: linear-gradient(135deg, #fafafa 0%, #e8e8e8 20%, #d8d8d8 50%, #c8c8c8 80%, #b0b0b0 100%);
}

.client-country {
  display: flex;
  align-items: center;
  gap: 6px;
}

.client-flag {
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  flex-shrink: 0;
}

.client-country-code {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .clients-strip {
    padding: 24px 0;
  }

  .clients-caption {
    font-size: 14px;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
  }

  .clients-marquee {
    mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  }

  .clients-track {
    gap: 40px;
    animation-duration: 22s;
  }

  .client-name {
    font-size: 17px;
  }

  .client-pill {
    font-size: 10px;
    padding: 3px 10px;
  }
}

/* ===== COMING SOON TOAST ===== */
.cs-toast {
  position: fixed;
  top: 96px;
  left: 50%;
  transform: translate(-50%, -16px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 14px 16px;
  background: rgba(12, 30, 27, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(235, 235, 65, 0.25);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(235, 235, 65, 0.05);
  color: var(--text-white);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
  z-index: 1000;
  max-width: calc(100vw - 32px);
}

.cs-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s;
}

.cs-toast-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(235, 235, 65, 0.12);
  color: var(--green-accent);
}

.cs-toast-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cs-toast-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--text-white);
}

.cs-toast-sub {
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .cs-toast {
    top: 80px;
    padding: 12px 16px 12px 14px;
    gap: 12px;
    border-radius: 12px;
  }

  .cs-toast-icon {
    width: 32px;
    height: 32px;
  }

  .cs-toast-icon svg {
    width: 18px;
    height: 18px;
  }

  .cs-toast-title {
    font-size: 13px;
  }

  .cs-toast-sub {
    font-size: 11px;
  }
}

/* ===== SOUND FAMILIAR SECTION ===== */
.familiar {
  position: relative;
  background: var(--bg-dark);
  padding: 100px 0 120px;
  overflow: hidden;
}

/* Decorative flowing lines (top-left) */
.familiar-decor {
  position: absolute;
  top: -60px;
  left: -80px;
  width: 520px;
  height: auto;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid continuation */
.familiar-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 207, 60, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 207, 60, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.familiar-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- Header row: text + illustration (matches card grid) ---- */
.familiar-header {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  align-items: center;
}

.familiar-header-text {
  grid-column: span 3;
}

.familiar-title {
  font-size: 60px;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.familiar-subtitle {
  font-size: 21px;
  color: var(--text-white);
  font-weight: 500;
  line-height: 1.65;
}

.familiar-header-image {
  grid-column: span 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(126, 207, 60, 0.1);
  box-shadow: 0 0 40px rgba(126, 207, 60, 0.04);
}

.familiar-header-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Pain point cards grid ---- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

/* Top row: 2 wide cards (span 3 cols each) */
.pain-card--wide {
  grid-column: span 3;
}

/* Bottom row: 3 cards (span 2 cols each) */
.pain-card--third {
  grid-column: span 2;
}

/* Card base styling */
.pain-card {
  background: linear-gradient(
    160deg,
    rgba(16, 26, 16, 0.9) 0%,
    rgba(10, 18, 10, 0.95) 100%
  );
  border: 1px solid rgba(126, 207, 60, 0.1);
  border-radius: 14px;
  padding: 28px 26px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pain-card:hover {
  border-color: rgba(126, 207, 60, 0.25);
  box-shadow: 0 0 30px rgba(126, 207, 60, 0.06);
}

/* Icon */
.pain-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.pain-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Card typography */
.pain-card-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.pain-card-desc {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-white);
  font-weight: 400;
}

/* ===== AI-DRIVEN DEVSECOPS FEATURES SECTION ===== */
.features {
  position: relative;
  background: var(--bg-dark);
  padding: 110px 0 120px;
  overflow: hidden;
}

/* Decorative element (top-right) */
.features-decor {
  position: absolute;
  top: -40px;
  right: -60px;
  opacity: 0.55;
  width: 480px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid */
.features-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 207, 60, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 207, 60, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.features-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---- Centered header ---- */
.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-title {
  font-size: 60px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.features-subtitle {
  font-size: 20px;
  color: var(--text-white);
  font-weight: 500;
  line-height: 1.7;
  max-width: 960px;
  margin: 0 auto;
}

/* ---- 3-column layout ---- */
.features-columns {
  display: flex;
  align-items: center;
  gap: 40px;
}

.features-col {
  flex: 1;
}

.features-col--left,
.features-col--right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Center image column */
.features-col--center {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(126, 207, 60, 0.1);
  box-shadow:
    0 0 60px rgba(126, 207, 60, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.4);
}

.features-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Feature cards ---- */
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(
    160deg,
    rgba(16, 26, 16, 0.85) 0%,
    rgba(10, 18, 10, 0.95) 100%
  );
  border: 1px solid rgba(126, 207, 60, 0.1);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: rgba(126, 207, 60, 0.25);
  box-shadow: 0 0 24px rgba(126, 207, 60, 0.06);
}

/* Feature icon */
.feature-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Feature text */
.feature-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* ===== WHY STARTUPS CHOOSE REGOBS ===== */
.why-section {
  position: relative;
  background: var(--bg-dark);
  padding: 110px 0 60px;
  overflow: hidden;
}

/* Decorative element (top-left) */
.why-decor {
  position: absolute;
  top: -80px;
  left: -100px;
  width: 500px;
  height: auto;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid */
.why-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 207, 60, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 207, 60, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.why-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: flex-start;
  gap: 72px;
}

/* ---- Left column ---- */
.why-left {
  flex: 1;
  max-width: 620px;
}

.why-title {
  font-size: 50px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 44px;
  word-spacing: 8px;
}

/* Bullet list */
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-check {
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.why-item-desc {
  font-size: 17px;
  color: var(--text-white);
  line-height: 1.6;
  font-weight: 500;
}

/* ---- Right column: testimonial card ---- */
.why-right {
  flex: 0 0 460px;
  padding-top: 10px;
}

.testimonial-card {
  background: linear-gradient(
    160deg,
    rgba(16, 26, 16, 0.9) 0%,
    rgba(10, 18, 10, 0.95) 100%
  );
  border: 1px solid rgba(126, 207, 60, 0.12);
  border-radius: 16px;
  padding: 40px 36px 36px;
  box-shadow: 0 0 40px rgba(126, 207, 60, 0.04);
  text-align: center;
}

/* Stars */
.testimonial-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
}

/* Slides */
.testimonial-slides {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.testimonial-slide.active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  animation: slideIn 0.7s ease forwards;
}

.testimonial-slide.fade-out {
  display: flex;
  animation: slideOut 0.7s ease forwards;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-60px); }
}

/* Reverse direction (previous slide) */
.testimonial-slides.reverse .testimonial-slide.active {
  animation: slideInReverse 0.7s ease forwards;
}

.testimonial-slides.reverse .testimonial-slide.fade-out {
  animation: slideOutReverse 0.7s ease forwards;
}

@keyframes slideInReverse {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutReverse {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(60px); }
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-white);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 28px;
  max-width: 400px;
}

.testimonial-author {
  margin-bottom: 4px;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
}

.testimonial-role {
  font-size: 12.5px;
  color: var(--text-dim);
  font-weight: 400;
}

/* Slider dots */
.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(126, 207, 60, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.2s;
}

.testimonial-dot.active {
  background: var(--green-accent);
  transform: scale(1.25);
}

.testimonial-dot:hover {
  background: rgba(184, 229, 80, 0.5);
}

/* ===== HOW WE WORK SECTION ===== */
.howwework {
  position: relative;
  background: var(--bg-dark);
  padding: 80px 0 120px;
  overflow: hidden;
}

/* Decorative element (top-right) */
.howwework-decor {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: auto;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid */
.howwework-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(126, 207, 60, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 207, 60, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.howwework-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Centered heading */
.howwework-title {
  font-size: 60px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 64px;
}

/* 4 step cards row */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Step card */
.step-card {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(16, 26, 16, 0.9) 0%,
    rgba(10, 18, 10, 0.95) 100%
  );
  border: 1px solid rgba(126, 207, 60, 0.1);
  border-radius: 16px;
  padding: 40px 32px 36px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  border-color: rgba(126, 207, 60, 0.25);
  box-shadow: 0 0 28px rgba(126, 207, 60, 0.06);
}

/* Large faint step number (top-right) */
.step-number {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(126, 207, 60, 0.07);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

/* Card title */
.step-card-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--green-accent);
  margin-bottom: 14px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* Card description */
.step-card-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-white);
  font-weight: 500;
}

/* ===== FINAL CTA + BOOKING SECTION ===== */
.cta-section {
  position: relative;
  padding: 100px 16px 80px;
  background: linear-gradient(
    135deg,
    #015941 0%,
    #02704f 30%,
    #1a9e6e 60%,
    #3ec28a 100%
  );
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

/* ---- Custom Booking Widget ---- */
.booking-widget {
  display: inline-flex;
  margin: 0 auto;
  background: #0d1f1c;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  min-height: 560px;
  text-align: left;
  transition: width 0.4s ease;
}

.cta-inner .booking-widget {
  display: inline-flex;
}

/* Left panel */
.booking-left {
  width: 380px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
}

.booking-left-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 32px 32px 0;
  max-height: 520px;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

.booking-left-scroll:hover {
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.booking-left-scroll::-webkit-scrollbar { width: 6px; }
.booking-left-scroll::-webkit-scrollbar-track { background: transparent; }
.booking-left-scroll::-webkit-scrollbar-thumb { background: transparent; border-radius: 3px; }
.booking-left-scroll:hover::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); }

.booking-back button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 16px;
  transition: border-color 0.2s, color 0.2s;
}

.booking-back button:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.booking-logo {
  height: 48px;
  width: auto;
}

.booking-session-label {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  margin-top: 24px;
}

.booking-session-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-top: 4px;
}

.booking-meta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.5;
}

.booking-meta-item svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.booking-desc {
  margin-top: 24px;
}

.booking-desc p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 10px;
}

.booking-desc strong {
  color: rgba(255,255,255,0.85);
}

.booking-desc-heading {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
  margin-top: 20px;
}

.booking-left-footer {
  padding: 16px 32px;
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.booking-left-footer a {
  color: #EBEB41;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.booking-left-footer a:hover {
  text-decoration: underline;
}

/* Right panel */
.booking-right {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.booking-step-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Calendar */
.booking-calendar-layout {
  display: flex;
}

.booking-calendar {
  max-width: 350px;
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.cal-nav button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.cal-nav button:hover {
  color: #fff;
}

.cal-month-year {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  min-width: 140px;
  text-align: center;
}

.cal-headers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.cal-headers span {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-day {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, color 0.2s;
  margin: 0 auto;
}

.cal-day--available {
  background: #1a3a32;
  color: #EBEB41;
}

.cal-day--available:hover {
  background: #254a40;
}

.cal-day--past {
  background: transparent;
  color: rgba(255,255,255,0.2);
  cursor: not-allowed;
}

.cal-day--selected {
  background: #EBEB41 !important;
  color: #0C1E1B !important;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(235,235,65,0.2);
}

.cal-day--today::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #EBEB41;
}

.cal-day--today.cal-day--selected::after {
  display: none;
}

.cal-tz-label {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

.cal-timezone {
  margin-top: 32px;
  position: relative;
}

.cal-tz-value {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  cursor: pointer;
  transition: color 0.2s;
}

.cal-tz-value:hover {
  color: rgba(255,255,255,0.85);
}

.tz-chevron {
  margin-left: 2px;
  transition: transform 0.2s;
}

.cal-timezone.open .tz-chevron {
  transform: rotate(180deg);
}

.tz-dropdown {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 340px;
  max-height: 360px;
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 100;
  overflow: hidden;
  flex-direction: column;
}

.cal-timezone.open .tz-dropdown {
  display: flex;
}

.tz-dropdown-header {
  padding: 12px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tz-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
}

.tz-search {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  width: 100%;
  font-family: inherit;
}

.tz-search::placeholder {
  color: rgba(255,255,255,0.35);
}

.tz-format-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.tz-fmt-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  transition: color 0.2s;
}

.tz-fmt-label.active {
  color: #fff;
}

.tz-fmt-switch {
  width: 36px;
  height: 20px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: background 0.2s;
}

.tz-fmt-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}

.tz-fmt-switch.is24 .tz-fmt-knob {
  transform: translateX(16px);
}

.tz-list {
  overflow-y: auto;
  max-height: 280px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.tz-list::-webkit-scrollbar {
  width: 6px;
}

.tz-list::-webkit-scrollbar-track {
  background: transparent;
}

.tz-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}

.tz-group-label {
  padding: 10px 14px 4px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tz-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.15s;
  font-size: 13px;
}

.tz-item:hover {
  background: rgba(255,255,255,0.06);
}

.tz-item-name {
  color: rgba(255,255,255,0.75);
}

.tz-item-time {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

/* Time slots */
.booking-timeslots {
  width: 0;
  flex-shrink: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 0.35s ease, opacity 0.3s ease, margin 0.35s ease;
  margin-left: 0;
}

.booking-timeslots.visible {
  width: 190px;
  opacity: 1;
  margin-left: 32px;
}

.timeslots-date {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.timeslots-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 4px;
}

.timeslots-list::-webkit-scrollbar { width: 4px; }
.timeslots-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.ts-btn {
  border: 1px solid rgba(235,235,65,0.4);
  color: #EBEB41;
  background: transparent;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.ts-btn:hover {
  background: #EBEB41;
  color: #0C1E1B;
}

.ts-selected-row {
  display: flex;
  gap: 6px;
}

.ts-selected-row .ts-current {
  flex: 1;
  background: #1a3a35;
  border: 1px solid rgba(235,235,65,0.4);
  color: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.ts-selected-row .ts-next {
  flex: 1;
  background: #EBEB41;
  color: #0C1E1B;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.ts-selected-row .ts-next:hover {
  background: #facc15;
}

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(235,235,65,0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-add-guests {
  border: 1px solid rgba(235,235,65,0.4);
  color: #EBEB41;
  background: transparent;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}

.form-add-guests:hover {
  background: rgba(235,235,65,0.1);
}

.form-terms {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  line-height: 1.6;
}

.form-terms a {
  color: #EBEB41;
  text-decoration: none;
  font-weight: 500;
}

.form-terms a:hover {
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  background: #EBEB41;
  color: #0C1E1B;
  border: none;
  border-radius: 24px;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: #facc15;
}

/* Confirmation */
.confirm-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 400px;
}

.confirm-icon {
  background: rgba(235,235,65,0.15);
  border-radius: 50%;
  padding: 16px;
  margin-bottom: 20px;
}

.confirm-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.confirm-sub {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 24px;
}

.confirm-details {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 360px;
  text-align: left;
}

.confirm-row {
  margin-bottom: 12px;
}

.confirm-row:last-child {
  margin-bottom: 0;
}

.confirm-label {
  display: block;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.confirm-value {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.confirm-again {
  margin-top: 24px;
  background: none;
  border: none;
  color: #EBEB41;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.confirm-again:hover {
  text-decoration: underline;
}

.cta-title {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 48px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(
    135deg,
    #0C1E1B 0%,
    #0e2622 50%,
    #122e28 100%
  );
  padding: 100px 0 60px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Row 1: Logo + Tagline */
.footer-top {
  margin-bottom: 32px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(126, 207, 60, 0.1);
  margin-bottom: 28px;
}

/* Row 2: Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 400;
}

.footer-copyright strong {
  font-weight: 600;
  color: var(--text-white);
}

.footer-credit {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 400;
}

.footer-credit strong {
  font-weight: 600;
  color: var(--text-white);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-link-divider {
  color: rgba(126, 207, 60, 0.2);
  font-size: 13px;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== RESPONSIVE: LARGE TABLETS / SMALL DESKTOPS (<=1200px) ===== */
@media (max-width: 1200px) {
  .hero-headline {
    font-size: 48px;
  }

  .familiar-title,
  .features-title,
  .howwework-title {
    font-size: 44px;
  }

  .cta-title {
    font-size: 42px;
  }

  .why-title {
    font-size: 40px;
  }

  .features-col--center {
    flex: 0 0 280px;
  }

  .why-right {
    flex: 0 0 380px;
  }

  .booking-left {
    width: 320px;
  }
}

/* ===== RESPONSIVE: TABLETS (<=1024px) ===== */
@media (max-width: 1024px) {
  .navbar-inner {
    padding: 0 24px;
  }

  .hero-inner {
    padding: 0 24px;
    gap: 32px;
  }

  .familiar-inner,
  .features-inner,
  .why-inner,
  .howwework-inner,
  .footer-inner {
    padding: 0 24px;
  }

  /* Features: stack to single column */
  .features-columns {
    flex-direction: column;
    gap: 32px;
  }

  .features-col--center {
    flex: none;
    width: 100%;
    max-width: 400px;
    order: -1;
  }

  .features-col--left,
  .features-col--right {
    width: 100%;
  }

  /* Why section: stack */
  .why-inner {
    flex-direction: column;
    gap: 48px;
  }

  .why-left {
    max-width: 100%;
  }

  .why-right {
    flex: none;
    width: 100%;
    max-width: 520px;
  }

  /* Steps: 2x2 grid */
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Booking widget: stack */
  .booking-widget {
    flex-direction: column;
    min-height: auto;
    width: 100%;
    max-width: 600px;
  }

  .booking-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .booking-left-scroll {
    max-height: 300px;
  }

  .cta-inner .booking-widget {
    display: flex;
  }
}

/* ===== RESPONSIVE: NARROW-DESKTOP / TABLET RANGE (769px – 1060px) ===== */
/* Fixes Sequoia + Tiger Global overlap caused by the inline -30px margin
   on the second .trust-logos row when the hero-right column is squeezed. */
@media (min-width: 769px) and (max-width: 1060px) {
  .trust-logo.ycombinator {
    height: 110px;
    margin-top: 0;
  }

  .trust-logos + .trust-logos {
    margin-top: 4px !important;
  }
}

/* ===== RESPONSIVE: SMALL TABLETS (<=768px) ===== */
@media (max-width: 768px) {
  /* Hamburger visible */
  .hamburger {
    display: flex;
  }

  .navbar {
    height: 70px;
  }

  .hero {
    padding-top: 70px;
  }

  .navbar-right {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    width: 280px;
    background: rgba(12, 30, 27, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px 24px;
    gap: 0;
    z-index: 199;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0s 0.4s;
    box-shadow: none;
    visibility: hidden;
  }

  .navbar-right.open {
    transform: translateX(0);
    visibility: visible;
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0s 0s;
  }

  /* Sidebar logo */
  .sidebar-logo {
    display: block;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(235, 235, 65, 0.1);
    width: 100%;
  }

  .sidebar-logo img {
    height: 36px;
    width: auto;
    display: block;
  }

  /* Hide the dropdown toggle, show all links directly */
  .navbar-right .nav-dropdown .nav-link {
    display: none;
  }

  .navbar-right .nav-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    min-width: unset !important;
  }

  .nav-dropdown:hover .dropdown-menu {
    transform: none !important;
  }

  .dropdown-item {
    display: block !important;
    width: 100%;
    text-align: left;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #f0f0f0 !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(235, 235, 65, 0.08);
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    background: none !important;
    transition: color 0.2s;
  }

  .dropdown-item:first-child {
    border-top: none;
  }

  .dropdown-item:active,
  .dropdown-item:hover {
    color: #EBEB41 !important;
  }

  /* CTA button in mobile menu */
  .navbar-right .btn-cta-nav {
    margin-top: 32px;
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
  }

  /* Sidebar overlay */
  .navbar-right::before {
    content: '';
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: -1;
    pointer-events: none;
    transition: background 0.4s ease;
  }

  .navbar-right.open::before {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
  }

  /* Hero: stack */
  .hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    gap: 24px;
  }

  .hero-left {
    max-width: 100%;
    padding: 32px 0 0;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-headline {
    font-size: 40px;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-right {
    width: 100%;
  }

  .hero-illustration {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Trust badges — fix overlap on mobile */
  .trust-logo.ycombinator {
    height: 90px;
    margin-top: 0;
  }

  .trust-logos + .trust-logos {
    margin-top: 8px !important;
  }

  /* Familiar section */
  .familiar {
    padding: 60px 0 80px;
  }

  .familiar-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .familiar-header-text {
    grid-column: span 1;
  }

  .familiar-header-image {
    grid-column: span 1;
  }

  .familiar-title {
    font-size: 36px;
  }

  .familiar-subtitle {
    font-size: 19px;
  }

  .familiar-subtitle br {
    display: none;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .pain-card--wide,
  .pain-card--third {
    grid-column: span 1;
  }

  /* Features */
  .features {
    padding: 60px 0 80px;
  }

  .features-title {
    font-size: 32px;
  }

  .features-title br {
    display: none;
  }

  .features-header {
    margin-bottom: 48px;
  }

  /* Why section */
  .why-section {
    padding: 60px 0 40px;
  }

  .why-title {
    font-size: 32px;
  }

  .why-title br {
    display: none;
  }

  /* How We Work */
  .howwework {
    padding: 60px 0 80px;
  }

  .howwework-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-section {
    padding: 60px 16px;
  }

  .cta-title {
    font-size: 32px;
  }

  /* Booking calendar layout */
  .booking-calendar-layout {
    flex-direction: column;
  }

  .booking-timeslots.visible {
    width: 100%;
    margin-left: 0;
    margin-top: 24px;
  }

  /* Footer */
  .site-footer {
    padding: 60px 0 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ===== RESPONSIVE: MOBILE (<=480px) ===== */
@media (max-width: 480px) {
  .navbar-inner {
    padding: 0 16px;
  }

  .hero-inner {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-description {
    font-size: 15px;
  }

  .btn-cta-hero {
    padding: 14px 28px;
    font-size: 14px;
  }

  .familiar-inner,
  .features-inner,
  .why-inner,
  .howwework-inner,
  .footer-inner {
    padding: 0 16px;
  }

  .familiar-title,
  .features-title,
  .howwework-title {
    font-size: 28px;
  }

  .why-title,
  .cta-title {
    font-size: 26px;
  }

  .features-subtitle {
    font-size: 14px;
  }

  .step-card {
    padding: 28px 20px;
  }

  .booking-left-scroll {
    padding: 20px 20px 0;
  }

  .booking-right {
    padding: 20px;
  }

  .booking-session-title {
    font-size: 20px;
  }

  .brand-logo {
    height: 28px;
  }

  .brand-track {
    gap: 40px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-card {
    padding: 28px 20px 24px;
  }
}