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

:root {
  --blue:    #00C8FF;
  --blue2:   #0066FF;
  --purple:  #8B2FF0;
  --purple2: #5500CC;
  --dark:    #05030F;
  --dark2:   #0C0820;
  --dark3:   #120E2A;
  --white:   #FFFFFF;
  --gray:    #A0A0C0;
  --grad:    linear-gradient(135deg, var(--blue) 0%, var(--blue2) 40%, var(--purple) 100%);
  --grad2:   linear-gradient(135deg, var(--purple2) 0%, var(--purple) 60%, var(--blue2) 100%);
  --font:    'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ===== SELECTION ===== */
::selection { background: var(--purple); color: white; }

/* ===== PARTICLES CANVAS ===== */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(5,3,15,0.95);
  box-shadow: 0 1px 0 rgba(139,47,240,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
}

.nav-logo img,
.nav-logo svg {
  width: auto;
  height: 36px;
  object-fit: contain;
  animation: logoSpin 8s linear infinite;
}

@keyframes logoSpin {
  0%   { filter: drop-shadow(0 0 6px #00C8FF88); }
  25%  { filter: drop-shadow(0 0 12px #8B2FF088); }
  50%  { filter: drop-shadow(0 0 8px #0066FF88); }
  75%  { filter: drop-shadow(0 0 14px #00C8FF88); }
  100% { filter: drop-shadow(0 0 6px #00C8FF88); }
}

.nav-logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }

.btn-nav {
  background: var(--grad);
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  transition: opacity 0.25s, box-shadow 0.25s !important;
  box-shadow: 0 0 20px rgba(0,200,255,0.25);
}

.btn-nav::after { display: none !important; }
.btn-nav:hover { opacity: 0.9; box-shadow: 0 0 30px rgba(0,200,255,0.45) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

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

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 4px 30px rgba(0,200,255,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,200,255,0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-secondary:hover {
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(0,200,255,0.15);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.1rem 2.6rem;
  font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
section { position: relative; z-index: 1; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* ===== HERO CENTERED SINGLE COLUMN ===== */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 620px;
}

.hero-center .hero-badge    { margin-bottom: 1.25rem; }
.hero-center .hero-title    { margin-bottom: 1.1rem; }
.hero-center .hero-subtitle { margin: 0 0 1.75rem; }

.hero-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.hero-perks li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}

.perk-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(0,200,255,0.12);
  border: 1px solid rgba(0,200,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--blue);
}

/* ===== BOOKING CARD ===== */
.hero-right {
  width: 100%;
  position: relative;
  z-index: 2;
}

.booking-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
}

.booking-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(139,47,240,0.14) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== BOOKING STEPS ===== */
.booking-step {
  display: none;
}

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

.booking-step h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.step-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.4rem;
}

/* ===== BOOK BUTTON ===== */
.btn-book {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--grad);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s;
  letter-spacing: 0.01em;
}

.btn-book:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,200,255,0.35);
}

.btn-book:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-back {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.btn-back:hover { color: white; }

/* ===== CALENDAR DATE GRID ===== */
.cal-dates {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.cal-date-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.55rem 0.25rem;
  color: white;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  line-height: 1.4;
}

.cal-date-btn:hover {
  border-color: rgba(0,200,255,0.4);
  background: rgba(0,200,255,0.06);
}

.cal-date-btn.selected {
  background: rgba(0,200,255,0.15);
  border-color: var(--blue);
  color: var(--blue);
  font-weight: 700;
  box-shadow: 0 0 12px rgba(0,200,255,0.2);
}

.cal-date-day {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.2rem;
}

.cal-date-btn.selected .cal-date-day { color: rgba(0,200,255,0.7); }

/* ===== CALENDAR TIME GRID ===== */
.cal-times-wrap {
  margin-bottom: 0.5rem;
}

.cal-times-wrap h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.cal-times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
}

.cal-time-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.55rem 0.3rem;
  color: white;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.cal-time-btn:hover:not(.booked) {
  border-color: rgba(0,200,255,0.4);
  background: rgba(0,200,255,0.06);
}

.cal-time-btn.selected {
  background: rgba(0,200,255,0.15);
  border-color: var(--blue);
  color: var(--blue);
  font-weight: 700;
}

.cal-time-btn.booked {
  opacity: 0.28;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}

/* ===== SUCCESS STATE ===== */
.success-wrap {
  text-align: center;
  padding: 1.5rem 0;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: successPop 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both;
}

@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.success-wrap h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.success-wrap p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto 1.25rem;
}

.success-details {
  background: rgba(0,200,255,0.07);
  border: 1px solid rgba(0,200,255,0.18);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  display: inline-block;
  min-width: 200px;
}

.form-trust {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.75rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  /* radial-gradient instead of filter:blur — no GPU repaint cost */
}

.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,47,240,0.28) 0%, transparent 70%);
  top: -250px; left: -150px;
  will-change: transform;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,102,255,0.22) 0%, transparent 70%);
  top: 50px; right: -120px;
  will-change: transform;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,255,0.18) 0%, transparent 70%);
  bottom: -80px; left: 38%;
  will-change: transform;
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* hero-grid relative z-index */
.hero-grid { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.25);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ===== ANIMATED LOGO (HERO) ===== */
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease both 0s;
}

.hero-logo {
  width: auto;
  max-width: 420px;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  will-change: transform;
  animation: heroLogoFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(0,200,255,0.55)) drop-shadow(0 0 80px rgba(139,47,240,0.35));
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 30px rgba(0,200,255,0.5)) drop-shadow(0 0 60px rgba(139,47,240,0.3)); }
  50%       { transform: translateY(-12px) scale(1.03); filter: drop-shadow(0 0 50px rgba(0,200,255,0.7)) drop-shadow(0 0 80px rgba(139,47,240,0.5)); }
}

.hero-logo-ring {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(0,200,255,0.15);
  animation: ringExpand 3s ease-in-out infinite;
  pointer-events: none;
}

.hero-logo-ring:nth-child(2) { width: 420px; height: 420px; animation-delay: 0.5s; }
.hero-logo-ring:nth-child(3) { width: 480px; height: 480px; animation-delay: 1s; }

@keyframes ringExpand {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* ===== HERO TEXT ===== */
h1.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease both 0.4s;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 1s ease both 0.6s;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease both 0.8s;
}

.hero-trust {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  animation: fadeInUp 1s ease both 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-trust svg { opacity: 0.5; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.5s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== STATS ===== */
#stats {
  padding: 0;
  border-top: none;
  border-bottom: none;
  display: none; /* stats now live inside the hero and why cards */
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { padding: 1rem; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.2);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
#services {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 24px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,200,255,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,200,255,0.1);
}

.service-card:hover::before { opacity: 0.05; }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,200,255,0.1);
  border: 1px solid rgba(0,200,255,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  transition: background 0.3s, box-shadow 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(0,200,255,0.15);
  box-shadow: 0 0 20px rgba(0,200,255,0.2);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.service-card p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--blue);
}

/* ===== PROCESS ===== */
#process {
  padding: 4rem 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--purple) 100%);
  opacity: 0.3;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1px solid rgba(0,200,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.process-step:hover .step-number {
  background: rgba(0,200,255,0.1);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(0,200,255,0.25);
}

.step-content { padding-top: 0.75rem; }

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-content p {
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

/* ===== BENEFITS ===== */
#benefits {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,200,255,0.15);
  background: rgba(255,255,255,0.05);
}

.benefit-card:hover::after { transform: scaleX(1); }

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ===== AUDIT SECTION ===== */
#audit {
  padding: 6rem 0;
}

.audit-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.audit-content h2 { margin-bottom: 1rem; }
.audit-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.audit-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.audit-perks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.perk-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(0,200,255,0.12);
  border: 1px solid rgba(0,200,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--blue);
}

/* ===== FORM ===== */
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(0,200,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.form-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.form-card .form-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: white;
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  outline: none;
  -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(0,200,255,0.05);
  box-shadow: 0 0 0 3px rgba(0,200,255,0.1);
}

.form-group select option { background: #1a1030; color: white; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
  width: 100%;
  background: var(--grad);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,200,255,0.35);
}

.btn-submit:active { transform: translateY(0); }

.form-trust {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 4rem 0;
  background: var(--dark2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,47,240,0.2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.stars {
  color: #FFD700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.author-role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== ABOUT ===== */
#about {
  padding: 4rem 0;
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}

.about-logo-big {
  width: auto;
  max-width: 260px;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  animation: heroLogoFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 0 50px rgba(0,200,255,0.4)) drop-shadow(0 0 100px rgba(139,47,240,0.25));
  position: relative;
  z-index: 2;
}

.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,200,255,0.1);
  animation: ringRotate 20s linear infinite;
}

.about-ring:nth-child(1) { width: 280px; height: 280px; }
.about-ring:nth-child(2) { width: 360px; height: 360px; animation-duration: 30s; animation-direction: reverse; }
.about-ring:nth-child(3) { width: 440px; height: 440px; animation-duration: 40s; border-color: rgba(139,47,240,0.08); }

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about-content h2 { margin-bottom: 1.25rem; }

.about-content p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.highlight-item { text-align: center; }

.highlight-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.highlight-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
}

/* ===== CTA BANNER ===== */
#cta-banner {
  padding: 6rem 0;
  background: var(--dark3);
}

.cta-banner-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-banner-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.cta-banner-inner p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand { max-width: 260px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: white;
}

.footer-logo img,
.footer-logo svg {
  width: auto;
  height: 30px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.social-icon:hover {
  background: rgba(0,200,255,0.12);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer-links a:hover { color: white; }

.footer-email {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.87rem;
  transition: opacity 0.25s;
  word-break: break-all;
}

.footer-email:hover { opacity: 0.8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════
   MOBILE NAV (tablet + phone)
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── nav ── */
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 75vw; max-width: 300px; height: 100vh;
    background: rgba(5,3,15,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .btn-nav { margin-top: 0.5rem; }
  .hamburger { display: flex; z-index: 1001; }

  /* ── hero ── */
  #hero { padding: 6rem 1.25rem 4rem; min-height: auto; }
  .hero-center { max-width: 100%; padding: 0; }
  .hero-logo { max-width: 220px; max-height: 150px; }
  .hero-logo-ring { display: none; }
  .hero-logo-wrap { margin-bottom: 1.5rem; }
  h1.hero-title { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 0.85rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-perks { gap: 0.5rem; }
  .hero-perks li { font-size: 0.88rem; }
  .hero-badge { font-size: 0.78rem; }

  /* ── stats ── */
  #stats { padding: 2.5rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: 0.78rem; }

  /* ── problem ── */
  #problem { padding: 3.5rem 0 2.5rem; }
  .problem-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .problem-item { padding: 1.25rem 1rem; }
  .problem-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
  .problem-item h3 { font-size: 0.9rem; }
  .problem-item p { font-size: 0.8rem; }

  /* ── sections general ── */
  #services, #process, #benefits, #portfolio, #results, #about { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2rem; }
  h2 { font-size: clamp(1.65rem, 6vw, 2.4rem); }
  .section-sub { font-size: 0.92rem; }

  /* ── services ── */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.75rem 1.5rem; }

  /* ── process ── */
  .process-steps::before { left: 20px; }
  .step-number { width: 42px; height: 42px; min-width: 42px; font-size: 0.9rem; }
  .process-step { gap: 1.25rem; padding: 1.5rem 0; }
  .step-content h3 { font-size: 1.05rem; }
  .step-content p { font-size: 0.88rem; }

  /* ── benefits ── */
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .benefit-card { padding: 1.25rem; }
  .benefit-icon { font-size: 1.6rem; margin-bottom: 0.65rem; }
  .benefit-card h3 { font-size: 0.92rem; }
  .benefit-card p { font-size: 0.82rem; }

  /* ── portfolio ── */
  .portfolio-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .portfolio-soon { min-height: 200px; }

  /* ── testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { padding: 1.5rem; }
  .testimonial-card blockquote { font-size: 0.88rem; }

  /* ── booking form ── */
  #book { padding: 3.5rem 0 4rem; }
  .book-wrap { gap: 1.75rem; }
  .booking-card { padding: 1.75rem 1.25rem; border-radius: 18px; }
  #book .booking-card { max-width: 100%; }
  .cal-dates { grid-template-columns: repeat(4, 1fr); gap: 0.4rem; }
  .cal-times { grid-template-columns: repeat(3, 1fr); gap: 0.35rem; }
  .cal-date-btn { font-size: 0.68rem; padding: 0.45rem 0.15rem; }
  .cal-time-btn { font-size: 0.72rem; padding: 0.45rem 0.2rem; }

  /* ── about ── */
  .about-wrap { grid-template-columns: 1fr; gap: 0; }
  .about-visual { display: none; } /* hide decorative visual on mobile */
  .about-highlights { gap: 1.25rem; }

  /* ── pre-book ── */
  #pre-book { padding: 4rem 0; }
  .pre-book-headline { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .pre-book-sub { font-size: 0.92rem; }
  .btn-pre-book { font-size: 0.95rem; padding: 1rem 1.6rem; width: 100%; justify-content: center; }
  .pre-book-pills { gap: 0.5rem; }

  /* ── footer ── */
  footer { padding: 3rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-bottom: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* ── hero-ctas legacy ── */
  .hero-ctas { flex-direction: column; align-items: center; }

  /* ── new hero elements ── */
  .btn-hero-main { font-size: 0.95rem; padding: 1rem 1.6rem; width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .hero-stats { gap: 1rem; padding: 0.85rem 1.25rem; width: 100%; justify-content: center; }
  .hero-stat .count-num { font-size: 1.25rem; }

  /* ── why section ── */
  #why { padding: 3.5rem 0 2.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 1rem; max-width: 100%; }
  .why-card { padding: 1.5rem 1.25rem; }

  /* ── simple footer ── */
  .footer-links-row { gap: 1rem; }
  footer { padding: 0; border-top: 1px solid rgba(255,255,255,0.06); }
}

/* ══════════════════════════════════════════════
   SMALL PHONES (≤ 480px)
══════════════════════════════════════════════ */
@media (max-width: 480px) {
  nav { padding: 1rem 1.25rem; }
  .container { padding: 0 1.1rem; }

  #hero { padding: 5.5rem 1.1rem 3.5rem; }
  .hero-logo { max-width: 180px; max-height: 125px; }
  h1.hero-title { font-size: clamp(1.8rem, 10vw, 2.4rem); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stat-number { font-size: 2rem; }

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

  .form-row { grid-template-columns: 1fr; }
  .cal-dates { grid-template-columns: repeat(3, 1fr); }
  .cal-times { grid-template-columns: repeat(2, 1fr); }

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

  .footer-grid { grid-template-columns: 1fr; }
  .pre-book-pills { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 0.75rem; }
  .hero-stat-divider { display: none; }
  .btn-hero-main { font-size: 0.88rem; padding: 0.85rem 1.2rem; white-space: normal; }
}

/* ===== SUCCESS STATE ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.form-success.show { display: block; }

/* ===== PORTFOLIO ===== */
#portfolio {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto;
}

.portfolio-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,200,255,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,200,255,0.08);
}

/* ── Browser mock preview ── */
.portfolio-preview {
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.pv-green { background: linear-gradient(160deg, #0a2a0a 0%, #0d3d10 60%, #0a2a0a 100%); }

.pv-browser-bar {
  background: rgba(0,0,0,0.45);
  padding: 0.5rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pv-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.pv-dot:nth-child(1) { background: #ff5f57; }
.pv-dot:nth-child(2) { background: #ffbd2e; }
.pv-dot:nth-child(3) { background: #28c840; }

.pv-url {
  margin-left: 0.6rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  font-family: monospace;
  letter-spacing: 0.01em;
}

.pv-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.pv-logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.pv-brand {
  font-size: 0.95rem;
  font-weight: 800;
  color: #2ecc71;
  letter-spacing: -0.01em;
}

.pv-badge-green {
  font-size: 0.65rem;
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.35);
  color: #2ecc71;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
}

.pv-hero-bar {
  height: 5px;
  background: linear-gradient(90deg, #2ecc71, #27ae60);
  border-radius: 3px;
  margin-bottom: 0.85rem;
}

.pv-blocks {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.pv-block {
  height: 36px;
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.15);
  border-radius: 6px;
}

.pv-cta-bar {
  background: linear-gradient(90deg, #27ae60, #2ecc71);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ── Portfolio info block ── */
.portfolio-info {
  padding: 1.5rem 1.75rem 1.75rem;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.portfolio-category {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.8;
}

.portfolio-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.25s;
}

.portfolio-live:hover { color: var(--blue); }

.portfolio-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.portfolio-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.portfolio-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.18);
  color: rgba(0,200,255,0.9);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

/* ── "Your project here?" card ── */
.portfolio-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border-style: dashed;
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
}

.portfolio-soon:hover {
  border-color: rgba(0,200,255,0.3);
  background: rgba(0,200,255,0.03);
}

.portfolio-soon-inner {
  text-align: center;
  padding: 2.5rem;
}

.soon-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.portfolio-soon h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.portfolio-soon p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.btn-soon {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  background: var(--grad);
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.25s, transform 0.25s;
}

.btn-soon:hover { opacity: 0.85; transform: translateY(-2px); }

@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-soon { min-height: 260px; }
}

/* ===== HERO PRIMARY CTA BUTTON ===== */
.btn-hero-main {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--grad);
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.1rem 2.2rem;
  border-radius: 50px;
  letter-spacing: 0.01em;
  margin-top: 2rem;
  box-shadow: 0 0 0 0 rgba(0,200,255,0.5), 0 8px 40px rgba(0,200,255,0.3);
  animation: ctaPulse 3s ease-in-out infinite, fadeInUp 1s ease both 0.9s;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-hero-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-hero-main:hover { transform: translateY(-3px) scale(1.02); animation: none; box-shadow: 0 12px 50px rgba(0,200,255,0.55); }
.btn-hero-main:hover::before { opacity: 1; }
.btn-hero-main svg { transition: transform 0.25s; flex-shrink: 0; }
.btn-hero-main:hover svg { transform: translateX(5px); }
.btn-hero-icon { font-size: 1.1rem; }

.hero-cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin-top: 0.75rem;
  animation: fadeInUp 1s ease both 1.05s;
}

/* ===== HERO STATS STRIP ===== */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.25rem;
  padding: 1rem 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  animation: fadeInUp 1s ease both 1.2s;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.hero-stat .count-num {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat span:last-child {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  white-space: nowrap;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ===== HORIZONTAL STEPS ===== */
#process {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.step-h {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.step-h-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,200,255,0.08);
  border: 2px solid rgba(0,200,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.step-h-circle span {
  font-size: 1rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-h:hover .step-h-circle {
  background: rgba(0,200,255,0.15);
  border-color: var(--blue);
  box-shadow: 0 0 20px rgba(0,200,255,0.3);
}

.step-h h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-h p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 18px;
  color: rgba(0,200,255,0.4);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .step-h { padding: 0; width: 100%; max-width: 320px; }
  .step-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }
  #process { padding: 3rem 0; }
}

/* ===== WHY SECTION ===== */
#why {
  padding: 5rem 0 4rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(0,200,255,0.25); box-shadow: 0 16px 50px rgba(0,0,0,0.35); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 1.25rem; }
.why-metric {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.18);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
}
.why-metric .count-num {
  font-size: 0.9rem;
  font-weight: 800;
}

/* ===== SIMPLE FOOTER ===== */
.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 2.5rem 0 1.5rem;
}
.footer-links-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links-row a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links-row a:hover { color: white; }

/* ===== HERO DISCOVER HINT ===== */
.hero-discover {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  margin-top: 2.25rem;
  animation: fadeInUp 1s ease both 1.1s;
}

/* ===== ANIMATED STAT COUNTERS ===== */
.count-num {
  display: inline-block;
}

/* ===== PROBLEM SECTION ===== */
#problem {
  padding: 5rem 0 4rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.problem-item {
  background: rgba(255,60,60,0.05);
  border: 1px solid rgba(255,60,80,0.15);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  transition: transform 0.35s, border-color 0.35s, background 0.35s;
  cursor: default;
}

.problem-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255,80,80,0.3);
  background: rgba(255,60,60,0.08);
}

.problem-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.problem-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.problem-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.problem-solution {
  text-align: center;
  padding: 1.5rem 0 0;
}

.solution-arrow {
  font-size: 1.8rem;
  color: var(--blue);
  opacity: 0.7;
  animation: bounce 2.5s ease-in-out infinite;
  margin-bottom: 0.6rem;
}

.solution-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
}

.solution-text strong {
  color: white;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== PRE-BOOK CTA SECTION ===== */
#pre-book {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.pre-book-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pre-book-orb {
  position: absolute;
  border-radius: 50%;
}

.pre-book-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,47,240,0.25) 0%, transparent 65%);
  top: -200px; left: -200px;
  animation: orbFloat 9s ease-in-out infinite;
}

.pre-book-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,102,255,0.2) 0%, transparent 65%);
  bottom: -150px; right: -150px;
  animation: orbFloat 11s ease-in-out infinite reverse;
}

.pre-book-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.pre-book-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,200,255,0.08);
  border: 1px solid rgba(0,200,255,0.2);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 1.75rem;
}

.pre-book-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.pre-book-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.pre-book-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2rem;
}

.pre-book-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.25rem;
}

.pre-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.pre-book-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

/* The big CTA button */
.btn-pre-book {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--grad);
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1.25rem 2.8rem;
  border-radius: 50px;
  letter-spacing: 0.01em;
  box-shadow:
    0 0 0 0 rgba(0,200,255,0.5),
    0 8px 40px rgba(0,200,255,0.3),
    0 0 80px rgba(139,47,240,0.15);
  animation: ctaPulse 3s ease-in-out infinite;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-pre-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-pre-book:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 0 0 0 rgba(0,200,255,0),
    0 14px 55px rgba(0,200,255,0.55),
    0 0 120px rgba(139,47,240,0.35);
  animation: none;
}

.btn-pre-book:hover::before { opacity: 1; }

.btn-pre-book svg {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.btn-pre-book:hover svg { transform: translateX(6px); }

@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(0,200,255,0.4),
      0 8px 40px rgba(0,200,255,0.3),
      0 0 80px rgba(139,47,240,0.15);
  }
  50% {
    box-shadow:
      0 0 0 14px rgba(0,200,255,0),
      0 8px 40px rgba(0,200,255,0.35),
      0 0 100px rgba(139,47,240,0.2);
  }
}

/* mobile problem grid */
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-pre-book { font-size: 1rem; padding: 1.1rem 2rem; }
  .pre-book-headline { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  #pre-book { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .problem-grid { grid-template-columns: 1fr; }
  .pre-book-pills { flex-direction: column; align-items: center; }
}

/* ===== HERO CTA WRAP ===== */
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2.25rem;
  animation: fadeInUp 1s ease both 1s;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--grad);
  color: white;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.15rem 2.6rem;
  border-radius: 50px;
  letter-spacing: 0.01em;
  box-shadow:
    0 4px 40px rgba(0,200,255,0.35),
    0 0 80px rgba(139,47,240,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 10px 50px rgba(0,200,255,0.55),
    0 0 100px rgba(139,47,240,0.3);
}

.btn-hero-cta:hover::before { opacity: 1; }

.btn-hero-cta svg {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.btn-hero-cta:hover svg { transform: translateX(5px); }

.hero-cta-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.02em;
}

/* ===== BOOK SECTION ===== */
#book {
  padding: 5rem 0 7rem;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 60%, var(--dark) 100%);
  position: relative;
}

/* subtle connector line from hero scroll arrow to book section */
#book::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(180deg, rgba(0,200,255,0.5), transparent);
  pointer-events: none;
}

.book-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.book-header {
  text-align: center;
  max-width: 580px;
}

.book-header h2 { margin-bottom: 0.85rem; }

.book-header .section-sub {
  color: rgba(255,255,255,0.65);
}

/* constrain and center the booking card inside #book */
#book .booking-card {
  width: 100%;
  max-width: 560px;
}

/* mobile tweaks for new sections */
@media (max-width: 768px) {
  .btn-hero-cta { font-size: 1rem; padding: 1rem 1.8rem; }
  #book { padding: 4rem 0 5rem; }
}
.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.form-success p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* ===== LATE MOBILE OVERRIDES =====
   Must live at the END of the file so they beat base rules defined mid-file.
   Elements like .why-grid, .btn-hero-main, .hero-stats were base-defined
   AFTER the first @media block, so they need overrides here.
===== */
@media (max-width: 768px) {
  /* hero CTA button */
  .btn-hero-main {
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  /* hero stats strip */
  .hero-stats {
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    width: 100%;
    justify-content: center;
  }
  .hero-stat .count-num { font-size: 1.25rem; }

  /* why section */
  #why { padding: 3.5rem 0 2.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 1rem; max-width: 100%; }
  .why-card { padding: 1.5rem 1.25rem; }
}

@media (max-width: 480px) {
  /* hero CTA button */
  .btn-hero-main { font-size: 0.88rem; padding: 0.85rem 1.2rem; }

  /* hero stats strip */
  .hero-stats { flex-wrap: wrap; gap: 0.75rem; }
  .hero-stat-divider { display: none; }
}
