/* ============================================================
   COMMUNITIII — Shared Stylesheet
   Font: Bebas Neue (display) + Oswald (headings) + Outfit (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --deep-navy:   #080809;
  --dark-purple: #0f0f13;
  --primary:     #673de6;
  --medium:      #5025d1;
  --soft:        #8c85ff;
  --light:       #d5dfff;
  --lightest:    #ebe4ff;
  --pink:        #fc5185;
  --yellow:      #ffcd35;
  --dark:        #1d1e20;
  --gray:        #727586;
  --white:       #ffffff;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Outfit', sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --glow-purple: 0 0 40px rgba(103, 61, 230, 0.45);
  --glow-pink:   0 0 40px rgba(252, 81, 133, 0.45);
  --glow-soft:   0 0 60px rgba(140, 133, 255, 0.25);

  --glass-bg:     rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur:   blur(16px);

  --section-pad: clamp(60px, 8vw, 110px);
  --container:   1200px;
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--deep-navy);
  color: var(--light);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection {
  background: var(--pink);
  color: var(--white);
}

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

/* ===== 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.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section { padding: var(--section-pad) 0; position: relative; z-index: 1; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--pink);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
}

.section-title span {
  background: linear-gradient(135deg, var(--soft) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--gray);
  max-width: 560px;
  margin-top: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--pink) 100%);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(103, 61, 230, 0.5);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(252, 81, 133, 0.5); }

.btn-ghost {
  background: transparent;
  color: var(--light);
  border: 1.5px solid rgba(140, 133, 255, 0.4);
}
.btn-ghost:hover {
  border-color: var(--soft);
  box-shadow: 0 0 20px rgba(140, 133, 255, 0.2);
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(252, 81, 133, 0.4);
}
.btn-pink:hover { box-shadow: var(--glow-pink); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-out), box-shadow 0.4s;
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(8, 8, 9, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(140, 133, 255, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 8px; }

/* Logo image */
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s;
}
.nav-logo-img:hover { opacity: 0.8; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), 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); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8, 8, 9, 0.99);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 56px);
  color: var(--white);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--pink); }

/* ===== ORBS / AMBIENT LIGHT ===== */
.orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0;
  animation: orb-fade-in 1.5s var(--ease-out) forwards;
}
.orb-1 {
  width: clamp(400px, 60vw, 800px);
  height: clamp(400px, 60vw, 800px);
  background: radial-gradient(circle, rgba(103, 61, 230, 0.5) 0%, transparent 70%);
  top: -20%; left: -15%;
  animation-delay: 0s;
  animation: orb-fade-in 1.5s forwards, drift-1 18s ease-in-out infinite 1.5s;
}
.orb-2 {
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: radial-gradient(circle, rgba(252, 81, 133, 0.35) 0%, transparent 70%);
  top: 10%; right: -10%;
  animation: orb-fade-in 1.5s 0.3s forwards, drift-2 22s ease-in-out infinite 1.8s;
}
.orb-3 {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: radial-gradient(circle, rgba(140, 133, 255, 0.3) 0%, transparent 70%);
  bottom: -5%; left: 30%;
  animation: orb-fade-in 1.5s 0.6s forwards, drift-3 25s ease-in-out infinite 2.1s;
}

@keyframes orb-fade-in { to { opacity: 1; } }
@keyframes drift-1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(80px, 60px) scale(1.08); }
  66% { transform: translate(-40px, 100px) scale(0.95); }
}
@keyframes drift-2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-70px, 50px) scale(0.95); }
  66% { transform: translate(40px, -60px) scale(1.05); }
}
@keyframes drift-3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.1); }
}

/* ===== PROGRESS BAR ===== */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--pink));
  z-index: 2000;
  transition: width 0.1s linear;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 8, 9, 0.92) 0%,
    rgba(12, 12, 20, 0.92) 40%,
    rgba(8, 8, 16, 0.92) 100%
  ),
  url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1200&q=80') center/cover;
  background-attachment: fixed;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(140,133,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,133,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(103, 61, 230, 0.2);
  border: 1px solid rgba(140, 133, 255, 0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-up 0.8s var(--ease-out) 0.3s forwards;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: reveal-up 0.9s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.5s; }
.hero-title .line:nth-child(2) { animation-delay: 0.65s; }
.hero-title .line:nth-child(3) {
  animation-delay: 0.8s;
  background: linear-gradient(135deg, var(--soft) 0%, var(--pink) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 300;
  color: var(--light);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-up 0.9s var(--ease-out) 1s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-up 0.9s var(--ease-out) 1.15s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0;
  animation: reveal-up 1s var(--ease-out) 1.5s forwards;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--soft));
  animation: scroll-line 1.8s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  padding: 48px 0;
  background: var(--dark-purple);
  border-top: 1px solid rgba(140,133,255,0.12);
  border-bottom: 1px solid rgba(140,133,255,0.12);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(103,61,230,0.08), transparent);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(140,133,255,0.15);
}
.stat-item:last-child::after { display: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-number span {
  background: linear-gradient(135deg, var(--soft), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
  display: block;
}

/* ===== SERVICES ===== */
.services-section {
  background: linear-gradient(135deg, rgba(8, 8, 9, 0.98) 0%, rgba(15, 15, 19, 0.98) 100%),
  url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1200&q=80') center/cover;
  background-attachment: fixed;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(140, 133, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--pink));
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(103,61,230,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(140, 133, 255, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--glow-soft);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }
.service-card:hover .service-icon { color: var(--pink); }

.service-icon {
  width: calc(100% + 60px);
  margin: -36px -30px 22px -30px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  z-index: 1;
}
.service-icon img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover .service-icon img {
  transform: scale(1.08);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  position: relative; z-index: 1;
}
.service-number {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(140, 133, 255, 0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}
.service-card:hover .service-number { color: rgba(252, 81, 133, 0.08); }

/* ===== COLLABORATIONS ===== */
.collab-section {
  background: linear-gradient(135deg, rgba(15, 15, 19, 0.98) 0%, rgba(8, 8, 9, 0.98) 100%),
  url('https://images.unsplash.com/photo-1518611505868-48d0a8ec3e9c?w=1200&q=80') center/cover;
  background-attachment: fixed;
  overflow: hidden;
}
.collab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}
.collab-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(140, 133, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.collab-card:hover {
  border-color: rgba(252, 81, 133, 0.35);
  transform: translateY(-4px);
}
.collab-card-accent {
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 81, 133, 0.15), transparent 70%);
  pointer-events: none;
}
.collab-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(252, 81, 133, 0.12);
  border: 1px solid rgba(252, 81, 133, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  width: fit-content;
}
.collab-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.collab-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}
.collab-card-img {
  width: calc(100% + clamp(64px, 8vw, 104px));
  margin-left: calc(-1 * clamp(32px, 4vw, 52px));
  margin-top: calc(-1 * clamp(32px, 4vw, 52px));
  margin-bottom: 4px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ===== PRICING ===== */
.pricing-section {
  background: linear-gradient(135deg, rgba(8, 8, 9, 0.98) 0%, rgba(15, 15, 19, 0.98) 100%),
  url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1200&q=80') center/cover;
  background-attachment: fixed;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  align-items: start;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-soft);
  border-color: rgba(140, 133, 255, 0.35);
}
.pricing-card.featured {
  border-color: rgba(252, 81, 133, 0.4);
  background: rgba(103, 61, 230, 0.12);
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: var(--glow-pink);
  border-color: rgba(252, 81, 133, 0.6);
}
.pricing-featured-badge {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--pink));
  padding: 6px 20px;
  border-radius: 0 0 12px 12px;
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 16px;
  margin-top: 20px;
}
.pricing-card.featured .pricing-tier { color: var(--pink); }

.pricing-name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 28px;
}

.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--glass-border), transparent);
  margin-bottom: 24px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--light);
  line-height: 1.4;
}
.pricing-feature svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--soft);
}
.pricing-card.featured .pricing-feature svg { color: var(--pink); }

.pricing-cta { width: 100%; justify-content: center; padding: 14px 20px; }

.pricing-card:not(.featured) .pricing-cta {
  background: transparent;
  border: 1.5px solid rgba(140, 133, 255, 0.3);
  color: var(--light);
  box-shadow: none;
}
.pricing-card:not(.featured) .pricing-cta:hover {
  border-color: var(--soft);
  background: rgba(140, 133, 255, 0.1);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--dark-purple); overflow: hidden; }

.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}

/* Featured athlete testimonial */
.featured-testimonial {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(252, 81, 133, 0.2);
  margin-top: 60px;
  margin-bottom: 28px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.featured-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.featured-testimonial-img {
  position: relative;
  overflow: hidden;
}
.featured-testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%);
  transition: transform 0.5s var(--ease-out), filter 0.4s;
}
.featured-testimonial:hover .featured-testimonial-img img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.featured-testimonial-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(15,15,19,0.95) 100%);
}
.featured-testimonial-body {
  background: rgba(255,255,255,0.03);
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.featured-testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(252,81,133,0.1);
  border: 1px solid rgba(252,81,133,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  width: fit-content;
}
.featured-testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  position: relative;
}
.featured-testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.5;
  color: rgba(252,81,133,0.2);
  display: block;
  margin-bottom: 12px;
}
.featured-testimonial-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.featured-testimonial-role {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  margin-top: 2px;
}
.featured-testimonial-club {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.featured-testimonial-club span {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft);
}
@media (max-width: 900px) {
  .featured-testimonial { grid-template-columns: 1fr; }
  .featured-testimonial-img { aspect-ratio: 4/3; max-height: 300px; }
  .featured-testimonial-img-overlay { background: linear-gradient(to bottom, transparent 60%, rgba(15,15,19,0.95) 100%); }
}

.quote-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(140, 133, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}
.quote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(140, 133, 255, 0.3);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.8;
  color: rgba(103, 61, 230, 0.15);
  position: absolute;
  top: 20px; left: 28px;
  pointer-events: none;
  user-select: none;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  padding-top: 40px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative; z-index: 1;
}
.quote-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}
.quote-name {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ===== FOOTER ===== */
.footer {
  background: #040406;
  border-top: 1px solid rgba(140, 133, 255, 0.12);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(103, 61, 230, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .nav-logo { display: block; margin-bottom: 16px; }
.footer-brand .nav-logo-img { height: 72px; }
.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(140, 133, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-link:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(252, 81, 133, 0.1);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  transition: color 0.25s, padding-left 0.25s;
}
.footer-links a:hover { color: var(--light); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--soft); margin-top: 1px; }

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.newsletter-input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(140, 133, 255, 0.08);
  border: 1px solid rgba(140, 133, 255, 0.2);
  border-radius: 100px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: var(--gray); }
.newsletter-input:focus { border-color: rgba(140, 133, 255, 0.5); }
.newsletter-btn {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  border: none;
  border-radius: 100px;
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: box-shadow 0.3s;
  white-space: nowrap;
}
.newsletter-btn:hover { box-shadow: var(--glow-purple); }

.footer-bottom {
  border-top: 1px solid rgba(140, 133, 255, 0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
}
.footer-legal a {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  transition: color 0.25s;
}
.footer-legal a:hover { color: var(--light); }

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  overflow: hidden;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--deep-navy) 0%, #0c0c14 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero .orbs { opacity: 0.6; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 100px);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  position: relative; z-index: 1;
}
.page-hero-title span {
  background: linear-gradient(135deg, var(--soft), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  color: var(--gray);
  max-width: 480px;
  margin: 16px auto 0;
  position: relative; z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--soft); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--pink); }

/* ===== ABOUT PAGE ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(140, 133, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}
.about-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(103, 61, 230, 0.2) 0%, rgba(252, 81, 133, 0.1) 100%);
}
.about-visual-text {
  position: relative; z-index: 1;
}
.about-visual-text .big-stat {
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--white);
  line-height: 1;
}
.about-visual-text .big-stat span {
  background: linear-gradient(135deg, var(--soft), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-visual-text p {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}
.about-visual-orb {
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 61, 230, 0.3), transparent 70%);
  filter: blur(40px);
}

.about-text .section-label { justify-content: flex-start; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(140, 133, 255, 0.12);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.value-card:hover {
  border-color: rgba(140, 133, 255, 0.3);
  transform: translateY(-4px);
}
.value-icon {
  width: 48px;
  height: 48px;
  color: var(--soft);
  margin-bottom: 20px;
  transition: color 0.3s, transform 0.4s var(--ease-out);
}
.value-icon svg {
  width: 100%;
  height: 100%;
}
.value-card:hover .value-icon {
  color: var(--pink);
  transform: scale(1.1);
}
.value-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.value-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== TEAM PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.team-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(140, 133, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(252, 81, 133, 0.3);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(103,61,230,0.2) 0%, rgba(252,81,133,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-card-img .avatar-placeholder {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(140, 133, 255, 0.3);
}
.team-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease-out);
}
.team-card:hover .team-card-img img {
  transform: scale(1.05);
}
.team-card-info {
  padding: 24px;
}
.team-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.team-bio {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== SERVICES PAGE ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(140, 133, 255, 0.08);
}
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail:last-child { border-bottom: none; }

.service-detail-icon {
  width: 100%;
  aspect-ratio: 1;
  max-width: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0 auto;
}
.service-detail-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.service-detail:hover .service-detail-icon img {
  transform: scale(1.05);
}

.service-detail-content .section-label { justify-content: flex-start; }

.service-detail-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.service-detail-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
}
.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--light);
}
.service-benefit-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 60px;
}
.contact-info .section-label { justify-content: flex-start; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(140, 133, 255, 0.12);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: border-color 0.3s;
}
.contact-detail:hover { border-color: rgba(140, 133, 255, 0.3); }
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(103, 61, 230, 0.2);
  border: 1px solid rgba(140, 133, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft);
  flex-shrink: 0;
}
.contact-detail-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 15px;
  color: var(--light);
  font-weight: 300;
}
.contact-detail-value a:hover { color: var(--pink); }

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(140, 133, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 52px);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(140, 133, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(140, 133, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(140, 133, 255, 0.08);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--dark-purple); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; padding: 16px; font-size: 14px; }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ===== FORM VALIDATION STATES ===== */
.form-input.input-error,
.form-textarea.input-error,
.form-select.input-error {
  border-color: rgba(252, 81, 133, 0.65);
  box-shadow: 0 0 0 3px rgba(252, 81, 133, 0.1);
}
.form-input.input-valid,
.form-textarea.input-valid,
.form-select.input-valid {
  border-color: rgba(52, 211, 153, 0.5);
  box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.08);
}
.field-error {
  display: block;
  margin-top: 7px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: #fc5185;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  min-height: 18px;
}
.field-error.visible { opacity: 1; transform: translateY(0); }

/* ===== SUBMIT BUTTON SPINNER ===== */
@keyframes cf-spin { to { transform: rotate(360deg); } }
.btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cf-spin 0.7s linear infinite;
  flex-shrink: 0;
}

/* ===== CONTACT FORM SUCCESS CARD ===== */
.contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: clamp(48px,6vw,72px) clamp(32px,4vw,52px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 48px rgba(52,211,153,0.08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.contact-success.visible { opacity: 1; transform: translateY(0); }
.contact-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.35);
  display: flex; align-items: center; justify-content: center;
  color: #34d399;
}
.contact-success-title {
  font-family: var(--font-display);
  font-size: clamp(28px,4vw,40px);
  letter-spacing: 0.04em;
  color: var(--white);
}
.contact-success-body {
  font-size: 15px; font-weight: 300;
  color: var(--gray); line-height: 1.7;
  max-width: 340px;
}
.contact-success-back {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--soft); cursor: pointer;
  background: none; border: none; padding: 0;
  text-decoration: underline; text-underline-offset: 4px;
  transition: color 0.2s;
}
.contact-success-back:hover { color: var(--white); }

/* ===== ANIMATION HELPERS ===== */
@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.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; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== SUCCESS TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: rgba(10, 10, 14, 0.97);
  border: 1px solid rgba(140, 133, 255, 0.3);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--light);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-icon { color: var(--soft); }

/* ===== MOBILE / TOUCH GLOBALS ===== */
* {
  -webkit-tap-highlight-color: transparent;
}
button, a, [role="button"] {
  touch-action: manipulation;
}
/* Prevent iOS zoom on input focus */
input, textarea, select {
  font-size: 16px !important;
}

/* ===== RESPONSIVE ===== */

/* ---- 1100px: Tablet landscape ---- */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-story { gap: 48px; }
}

/* ---- 900px: Tablet portrait ---- */
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after { display: none; }
  .collab-inner { grid-template-columns: 1fr; }
  .testimonials-inner { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 36px; }
  .about-visual-card { aspect-ratio: 16/9; min-height: unset; }
  .about-visual-text .big-stat { font-size: 72px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail:nth-child(even) { direction: ltr; }
  .service-detail-icon { max-width: 220px; aspect-ratio: 1; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 768px: Mobile ---- */
@media (max-width: 768px) {
  :root { --section-pad: clamp(48px, 10vw, 80px); }

  /* Nav */
  .nav { padding: 16px 0; }
  .nav.scrolled { padding: 12px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 48px; }
  .footer-brand .nav-logo-img { height: 60px; }

  /* Hero */
  .hero { padding-top: 80px; padding-bottom: 60px; min-height: 100svh; }
  .hero-title { font-size: clamp(48px, 13vw, 78px); }
  .hero-eyebrow { font-size: 10px; padding: 7px 14px; }
  .hero-sub { font-size: 15px; }
  .hero-scroll { display: none; }

  /* Page hero */
  .page-hero { padding: 120px 0 56px; }
  .page-hero-title { font-size: clamp(44px, 11vw, 72px); }

  /* Stats */
  .stats-strip { padding: 36px 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 16px 8px; }
  .stat-item::after { display: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(140,133,255,0.12);
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(140,133,255,0.12);
  }

  /* Grids */
  .services-grid,
  .pricing-grid,
  .values-grid,
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Service cards */
  .service-card { padding: 28px 22px; }
  .service-icon { width: calc(100% + 44px); margin-left: -22px; margin-right: -22px; }

  /* Service detail page */
  .service-detail { padding: 40px 0; gap: 28px; }
  .service-detail-icon { max-width: 180px; }

  /* Pricing */
  .pricing-grid { max-width: 460px; margin-left: auto; margin-right: auto; }
  .pricing-card { padding: 28px 22px; }

  /* About */
  .about-visual-card { aspect-ratio: 4/3; padding: 32px; }
  .about-visual-text .big-stat { font-size: 64px; }

  /* Contact */
  .contact-layout { margin-top: 40px; }

  /* Footer */
  .footer { padding-top: 56px; }
  .footer-grid { padding-bottom: 40px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  /* Toast */
  .toast { left: 16px; right: 16px; bottom: 16px; }

  /* Section title sizing */
  .section-title { font-size: clamp(34px, 8vw, 56px); }
}

/* ---- 480px: Small phone ---- */
@media (max-width: 480px) {
  /* Hero CTAs */
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 15px 20px; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; }
  .newsletter-btn { width: 100%; padding: 13px; text-align: center; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  /* Service cards */
  .service-card { padding: 24px 18px; }
  .service-icon { width: calc(100% + 36px); margin-left: -18px; margin-right: -18px; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 26px 20px; }
  .pricing-name { font-size: 28px; }

  /* Contact */
  .contact-detail { flex-direction: column; gap: 10px; }
  .contact-detail-icon { width: 40px; height: 40px; flex-shrink: 0; }
  .contact-form { padding: 24px 20px; }

  /* Collab cards */
  .collab-card { padding: 28px 22px; }

  /* Quote cards */
  .quote-card { padding: 28px 22px; }
  .quote-text { font-size: 17px; }
  .quote-mark { font-size: 80px; }

  /* Buttons */
  .btn { padding: 13px 24px; font-size: 13px; }

  /* Page hero */
  .page-hero { padding: 100px 0 48px; }

  /* Footer bottom */
  .footer-bottom { flex-direction: column; align-items: center; }

  /* Team */
  .team-grid { max-width: 100%; }

  /* About visual */
  .about-visual-card { aspect-ratio: 3/2; padding: 24px; }
  .about-visual-text .big-stat { font-size: 56px; }

  /* Values */
  .value-card { padding: 24px 20px; }

  /* CTA strip override for inline-styled sections */
  .hero-cta-strip { padding: 60px 0 !important; }
}

/* ---- 360px: Very small phones ---- */
@media (max-width: 360px) {
  .hero-title { font-size: clamp(40px, 12vw, 60px); }
  .page-hero-title { font-size: clamp(36px, 10vw, 52px); }
  .section-title { font-size: clamp(30px, 9vw, 48px); }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border: none !important; padding: 12px 0; }
  .stat-item + .stat-item { border-top: 1px solid rgba(140,133,255,0.12) !important; }
  .container { padding: 0 16px; }
  .service-card, .pricing-card, .collab-card, .quote-card { padding: 22px 16px; }
}
