/* ==========================================================================
   THE MARKETING HUB — B2B DEMAND GENERATION LANDING STYLES (EN)
   Theme: Apple-inspired Dual-Tone (Dark / Light Alternating Sections)
   Corporate Colors:
   - Primary Navy: #2E4978
   - Pink Accent: #FD2C84
   - Corporate Multi-color Gradient: linear-gradient(to left, #fd2c84 0%, #b9299d 25%, #7119b6 50%, #3265ed 75%, #30c9f0 100%)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Dark Mode Palette */
  --bg-dark: #080c14;
  --bg-dark-alt: #0d121f;
  --bg-card-dark: rgba(15, 23, 42, 0.75);
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Light Mode Palette (Apple Signature Light Gray & White) */
  --bg-light: #f5f5f7;
  --bg-light-alt: #ffffff;
  --bg-card-light: #ffffff;
  --border-light: rgba(0, 0, 0, 0.08);
  --text-light-main: #1d1d1f;
  --text-light-muted: #6e6e73;

  /* Corporate Colors */
  --color-navy: #2E4978;
  --color-pink: #FD2C84;
  --color-purple: #7119b6;
  --color-blue: #3265ed;
  --color-cyan: #30c9f0;

  /* Corporate Multi-color Gradients */
  --gradient-tmh: linear-gradient(to left, #fd2c84 0%, #b9299d 25%, #7119b6 50%, #3265ed 75%, #30c9f0 100%);
  --gradient-tmh-subtle: linear-gradient(135deg, rgba(253,44,132,0.12) 0%, rgba(113,25,182,0.12) 50%, rgba(48,201,240,0.12) 100%);
  --gradient-text-accent: linear-gradient(to left, #fd2c84 0%, #b9299d 25%, #7119b6 50%, #3265ed 75%, #30c9f0 100%);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
  --text-main: #f8fafc;
  --text-muted: rgba(255, 255, 255, 0.85);
  --text-dim: #64748b;

  /* Layout */
  --max-width: 1400px;
  --max-width-fluid: 1800px;
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;

  /* Transitions & Shadows */
  --glow-gradient: 0 10px 40px rgba(113, 25, 182, 0.35);
  --shadow-light-card: 0 4px 24px rgba(0, 0, 0, 0.04);
  --shadow-light-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  line-height: 1.65;
  background: var(--bg-dark);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  max-width: var(--max-width-fluid);
  margin: 0 auto;
  padding: 0 36px;
}

.section-padding {
  padding: 75px 0;
  position: relative;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & BADGES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.badge-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #30c9f0;
  backdrop-filter: blur(8px);
}

.badge-light {
  background: rgba(46, 73, 120, 0.08);
  border: 1px solid rgba(46, 73, 120, 0.18);
  color: var(--color-navy);
}

.dot-pink {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-pink);
  box-shadow: 0 0 10px var(--color-pink);
  animation: pulse-dot 2s infinite;
}

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

/* --------------------------------------------------------------------------
   4. APPLE STYLE NAVIGATION BAR
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), border-color var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background-color: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border-dark);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px; /* Tighter padding for cleaner Apple look */
  padding: 0 36px;
  max-width: 1680px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  margin-right: auto; /* Push logo to the left */
}

.logo-img {
  height: 64px; /* Larger logo */
  width: auto;
  transition: transform var(--transition-fast);
}

.logo-img:hover { transform: scale(1.03); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 auto; /* Center navigation links */
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover { color: var(--text-main); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto; /* Push actions to the right */
}

/* Circular Apple Language Switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 46px;
  box-sizing: border-box;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 100%;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.lang-switch a:hover {
  color: #ffffff;
}

.lang-switch a.active {
  background: #ffffff;
  color: #080c14;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  height: 46px;
  box-sizing: border-box;
  border-radius: 100px;
  background: var(--gradient-tmh);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--glow-gradient);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 45px rgba(253, 44, 132, 0.55);
  color: #ffffff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(10px);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   5. APPLE CENTERED PRODUCT SHOWCASE HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 170px;
  padding-bottom: 110px;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  text-align: center;
}

.hero-bg-image {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
  opacity: 0.35;
  filter: brightness(0.75) contrast(1.15);
  transition: opacity 0.5s ease;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(8, 12, 20, 0.45) 0%, rgba(8, 12, 20, 0.9) 70%, rgba(8, 12, 20, 1) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-orb-center {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 44, 132, 0.18) 0%, rgba(113, 25, 182, 0.12) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-centered-content {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-apple {
  font-size: clamp(3.2rem, 6.2vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-top: 16px;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-subtitle-apple {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto 36px auto;
  font-weight: 400;
}

.hero-ctas-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 1080px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero-trust-bar {
    border-radius: 16px;
    padding: 16px;
  }
}

.hero-trust-bar span strong {
  color: #ffffff;
}

/* Massive Centered Apple Product Card */
.hero-product-showcase {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.image-container-glass {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
  transform-style: preserve-3d;
}

.image-container-glass:hover {
  border-color: rgba(253, 44, 132, 0.5);
  box-shadow: 0 45px 100px rgba(253, 44, 132, 0.25);
}

/* --------------------------------------------------------------------------
   6. DUAL-TONE SECTIONS: DARK vs LIGHT (APPLE RHYTHM)
   -------------------------------------------------------------------------- */
.section-light {
  background-color: var(--bg-light);
  color: var(--text-light-main);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-light h1, .section-light h2, .section-light h3, .section-light h4 {
  color: var(--text-light-main);
}

.section-light p { color: var(--text-light-muted); }

.light-card {
  background: var(--bg-card-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-light-card);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
}

.light-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-light-hover);
  border-color: var(--color-pink);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-main);
}

.glass-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(253, 44, 132, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.card-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--gradient-tmh-subtle);
  border: 1px solid rgba(253, 44, 132, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-pink);
  margin-bottom: 24px;
}

.card-icon-wrapper-light {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(46, 73, 120, 0.06);
  border: 1px solid rgba(46, 73, 120, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-navy);
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   7. FULL-WIDTH UNIFIED FLOATING 3D METHODOLOGY CAPSULES (NO OUTER BOX FRAME)
   -------------------------------------------------------------------------- */
.methodology-diagram-css {
  position: relative;
  padding: 20px 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.capsules-wrapper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.capsule-pill {
  background: transparent;
  border: none;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-normal);
  position: relative;
}

.capsule-pill:hover {
  transform: translateY(-8px);
}

.capsule-num-top {
  font-size: 4.8rem;
  font-weight: 900;
  background: linear-gradient(-45deg, #fd2c84 0%, #b9299d 25%, #7119b6 50%, #3265ed 75%, #30c9f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
}

.capsule-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e5e7ed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  font-size: 1.35rem;
  margin-bottom: 18px;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  position: relative;
  z-index: 5;
}

.capsule-pill:hover .capsule-icon-box {
  background: var(--gradient-tmh);
  color: #ffffff;
  transform: scale(1.1);
}

.capsule-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.capsule-desc-full {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.capsule-deliverable-tag {
  width: 100%;
  padding: 10px 12px;
  background: rgba(46, 73, 120, 0.05);
  border: 1px solid rgba(46, 73, 120, 0.15);
  border-radius: 14px;
  font-size: 0.78rem;
  color: var(--color-navy);
  font-weight: 600;
  text-align: left;
  line-height: 1.35;
}

.capsule-deliverable-tag strong {
  color: var(--color-pink);
}

.capsule-connector-line {
  position: absolute;
  top: 166px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, #fd2c84 0%, #b9299d 25%, #7119b6 50%, #3265ed 75%, #30c9f0 100%);
  opacity: 0.35;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   8. ALIGNMENT & DELIVERABLES APPLE FEATURE DECK
   -------------------------------------------------------------------------- */
.alignment-flow-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.alignment-step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(46, 73, 120, 0.04);
  border: 1px solid rgba(46, 73, 120, 0.12);
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.alignment-step-item:hover {
  transform: translateX(6px);
  background: rgba(46, 73, 120, 0.08);
}

.alignment-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.deliverable-grid-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.deliverable-mini-card {
  background: #ffffff;
  border: 1px solid rgba(46, 73, 120, 0.14);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.deliverable-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(46, 73, 120, 0.12);
  border-color: var(--color-pink);
}

.deliverable-mini-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.deliverable-mini-title i {
  color: var(--color-pink);
  font-size: 1.1rem;
}

.deliverable-mini-desc {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   9. GRIDS & LAYOUT VARIATIONS
   -------------------------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --------------------------------------------------------------------------
   9. PAIN POINTS CHECKLIST
   -------------------------------------------------------------------------- */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-point-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px;
}

.pain-point-item i {
  font-size: 2.5rem;
  color: var(--color-pink);
  margin-bottom: 16px;
  background: -webkit-linear-gradient(45deg, var(--color-pink), var(--color-navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pain-point-item p {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. CASE STUDIES & CLIENT LOGOS
   -------------------------------------------------------------------------- */
.logos-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  margin-bottom: 48px;
}

.logo-item {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: -0.02em;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.logo-item:hover {
  color: var(--text-main);
  transform: scale(1.05);
}

.case-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.04);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
}

.stat-val {
  font-size: 2.2rem;
  font-weight: 900;
  color: #30c9f0;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   11. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 920px;
  margin: 40px auto 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-color: rgba(46, 73, 120, 0.25);
}

.faq-item.active {
  border-color: rgba(253, 44, 132, 0.4);
  box-shadow: 0 8px 28px rgba(253, 44, 132, 0.08);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--color-navy);
  font-size: 1.08rem;
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
  color: var(--color-navy);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  color: #515154;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 0 24px 24px 24px;
}

/* --------------------------------------------------------------------------
   12. FINAL CTA BANNER
   -------------------------------------------------------------------------- */
.header-scroll-btn {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.header.scrolled .header-scroll-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cta-banner {
  background: var(--gradient-tmh);
  border-radius: 32px;
  padding: 70px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(113, 25, 182, 0.45);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 12, 20, 0.35);
  backdrop-filter: blur(6px);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 16px;
  color: #ffffff;
}

.cta-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
}

.landing-contact-form {
  margin-top: 30px;
  text-align: left;
}

.landing-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.form-input-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 14px 18px;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-input-control::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.form-input-control:focus {
  border-color: #30c9f0;
  background: rgba(255, 255, 255, 0.22);
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
}

.form-checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #fd2c84;
  cursor: pointer;
}

@media (max-width: 992px) {
  .landing-form-grid {
    grid-template-columns: 1fr;
  }
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-white {
  background: #ffffff;
  color: #080c14;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.5);
  color: #080c14;
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  padding: 90px 0 40px 0;
  border-top: 1px solid var(--border-dark);
  background: #05080e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 20px;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col ul li a:hover { color: var(--text-main); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   14. ANIMATIONS & REVEAL CLASSES
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* --------------------------------------------------------------------------
   15. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1400px) {
  .capsules-wrapper { grid-template-columns: repeat(4, 1fr); }
  .capsule-connector-line { display: none; }
}

@media (max-width: 1024px) {
  .grid-2, .case-card { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .pain-points-grid, .capsules-wrapper { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-container { padding: 0 20px; }
}

@media (max-width: 768px) {
  .header-actions .btn-primary { display: none; }
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
  .grid-3, .grid-4, .pain-points-grid, .capsules-wrapper { grid-template-columns: 1fr; }
  .section-padding { padding: 70px 0; }
  .hero-title-apple { font-size: 2.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .logos-bar { flex-direction: column; gap: 20px; text-align: center; }
  .container-fluid { padding: 0 16px; }
  h2 { white-space: normal !important; }
}

/* --------------------------------------------------------------------------
   SERVICES ACCORDION
   -------------------------------------------------------------------------- */
.services-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 20px 24px;
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.accordion-header:hover {
  background: rgba(255, 255, 255, 0.1);
}
.accordion-icon {
  font-size: 1.4rem;
  color: var(--color-pink);
  margin-right: 16px;
  display: flex;
  align-items: center;
}
.accordion-title {
  font-size: 1.2rem;
  font-weight: 600;
  flex: 1;
}
.accordion-arrow {
  transition: transform var(--transition-fast);
}
.accordion-header[aria-expanded="true"] .accordion-arrow {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-fast) ease-out;
  padding: 0 24px;
}

.accordion-content p {
  margin: 0;
  padding-top: 10px;
  padding-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   ALTERNATING ROWS (APPLE STYLE)
   -------------------------------------------------------------------------- */
.pillars-alternating {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 40px 0;
}
.alternating-row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.alternating-row.reverse {
  flex-direction: row-reverse;
}
.alternating-row .text-col {
  flex: 1;
}
.alternating-row .image-col {
  flex: 1;
}
.feature-mockup {
  border-radius: 24px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.mockup-pink {
  background: linear-gradient(135deg, rgba(253,44,132,0.1), rgba(253,44,132,0.05));
  color: var(--color-pink);
}
.mockup-blue {
  background: linear-gradient(135deg, rgba(48,201,240,0.1), rgba(48,201,240,0.05));
  color: #30c9f0;
}
.mockup-purple {
  background: linear-gradient(135deg, rgba(113,25,182,0.1), rgba(113,25,182,0.05));
  color: #7119b6;
}
.mockup-green {
  background: linear-gradient(135deg, rgba(50,101,237,0.1), rgba(50,101,237,0.05));
  color: #3265ed;
}

@media (max-width: 768px) {
  .alternating-row, .alternating-row.reverse {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   EXPERT CARDS (DARK EXECUTIVE)
   -------------------------------------------------------------------------- */
.expert-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.expert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
}
.expert-image {
  width: 100%;
  border-bottom: 1px solid var(--border-dark);
}
.expert-info {
  padding: 24px;
  text-align: center;
}
.expert-info h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.expert-role {
  color: var(--color-pink);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   BENTO GRID (APPLE STYLE PILLARS)
   -------------------------------------------------------------------------- */
.bento-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.bento-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}
.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
}
.bento-number {
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}
.bento-icon-glow {
  font-size: 2.5rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  display: inline-block;
  filter: drop-shadow(0 0 16px currentColor);
}
.bento-title {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
}
.bento-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  margin: 0;
}

@media (max-width: 768px) {
  .bento-pillars {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bento-card {
    padding: 40px 32px;
  }
  .bento-number {
    font-size: 10rem;
    top: -10px;
    right: -10px;
  }
}

/* --------------------------------------------------------------------------
   SERVICES SPLIT LAYOUT
   -------------------------------------------------------------------------- */
.services-split-layout {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-split-header {
  position: sticky;
  top: 120px;
  align-self: start;
}

/* Override previous accordion max-width since it's now in a column */
.services-accordion {
  max-width: 100%;
}

@media (max-width: 992px) {
  .services-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-split-header {
    position: static;
  }
}

/* --------------------------------------------------------------------------
   VISUAL PILLARS LAYOUT (STAGGERED IMAGES & LIST)
   -------------------------------------------------------------------------- */
.pillars-visual-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pillars-images-col {
  position: relative;
  width: 100%;
  height: 600px;
}

.pillars-images-col .img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 75%;
  background-image: url('img/img-succescase-01.jpeg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pillars-images-col .img-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 75%;
  background-image: url('img/img-succescase-02.jpeg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  border: 12px solid var(--bg-dark);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: transform var(--transition-normal);
}

.pillars-images-col:hover .img-front {
  transform: translateY(-10px) scale(1.02);
}

.pillars-text-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pillar-list-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.pillar-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pillar-list-item:nth-child(1) .pillar-icon { color: var(--color-pink); border-color: rgba(253, 44, 132, 0.2); }
.pillar-list-item:nth-child(2) .pillar-icon { color: #30c9f0; border-color: rgba(48, 201, 240, 0.2); }
.pillar-list-item:nth-child(3) .pillar-icon { color: #7119b6; border-color: rgba(113, 25, 182, 0.2); }
.pillar-list-item:nth-child(4) .pillar-icon { color: #3265ed; border-color: rgba(50, 101, 237, 0.2); }

.pillar-content h3 {
  font-size: 1.6rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.pillar-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .pillars-visual-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .pillars-images-col {
    height: 450px;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pillars-images-col {
    height: 350px;
  }
}

/* --------------------------------------------------------------------------
   EXPERTS SECTION (OVERLAY CARDS)
   -------------------------------------------------------------------------- */
.experts-header-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  max-width: 100%;
}
.experts-tag {
  justify-self: start;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.experts-title {
  justify-self: center;
  text-align: center;
}
.experts-title h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 0;
  line-height: 1.1;
  color: #ffffff;
}
.experts-desc {
  justify-self: end;
  max-width: 400px;
}
.experts-desc p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .experts-header-row {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .experts-tag, .experts-title, .experts-desc {
    justify-self: center;
    text-align: center;
  }
}

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

.expert-card-overlay {
  position: relative;
  height: 480px;
  border-radius: 20px;
  background-image: var(--expert-photo), radial-gradient(circle at 50% 30%, #1e293b 0%, #0d121f 100%);
  background-size: 100% auto, cover;
  background-position: center bottom, center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-normal);
}

.expert-card-overlay:hover {
  transform: translateY(-8px);
}

.expert-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 12, 20, 0.7) 0%,
    rgba(8, 12, 20, 0) 25%,
    rgba(8, 12, 20, 0) 60%,
    rgba(8, 12, 20, 0.9) 100%
  );
  z-index: 1;
}

.expert-role-top {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  font-weight: 500;
}

.expert-name-bottom {
  position: absolute;
  bottom: 24px;
  left: 24px;
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.1;
  color: #ffffff;
  z-index: 2;
  font-weight: 600;
}

@media (max-width: 992px) {
  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .experts-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   APPLE ALIGNMENT SECTION (SECTION 5)
   -------------------------------------------------------------------------- */
.apple-alignment-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.alignment-hero {
  text-align: left;
  margin-bottom: 0;
}

.alignment-hero h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.alignment-hero .lead-text {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--color-navy);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
}

.alignment-hero .body-text {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.alignment-deliverables-box {
  background: #ffffff;
  border: 1px solid rgba(46, 73, 120, 0.1);
  border-radius: 16px;
  padding: 24px 32px;
  font-size: 1.05rem;
  color: var(--color-navy);
  margin: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  text-align: left;
}
.alignment-deliverables-box strong {
  color: var(--color-pink);
  font-weight: 700;
}

.receive-section {
  background: var(--bg-light-alt);
  border-radius: 32px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.04);
  border: 1px solid rgba(46, 73, 120, 0.05);
}

.receive-section h3 {
  font-size: 2.2rem;
  color: var(--color-navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.receive-section .subtitle {
  font-size: 1.1rem;
  color: var(--text-light-muted);
  margin-bottom: 40px;
}

.apple-deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.del-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(46, 73, 120, 0.08);
}

.del-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.del-item i {
  color: var(--color-pink);
  font-size: 1.4rem;
  margin-top: -2px;
}

.del-item span {
  font-size: 1.15rem;
  color: var(--color-navy);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .receive-section {
    padding: 40px 24px;
  }
}

@media (max-width: 992px) {
  .apple-alignment-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* --------------------------------------------------------------------------
   MEASUREMENT SECTION (LINE INDICATORS)
   -------------------------------------------------------------------------- */
.line-indicators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.line-indicator-item {
  border-left: 4px solid var(--indicator-color);
  padding-left: 24px;
}

.line-indicator-item h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.line-indicator-item h3 i {
  color: var(--indicator-color);
  font-size: 1.3rem;
}

.line-indicator-item p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

.attribution-disclaimer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.attribution-disclaimer p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

/* --------------------------------------------------------------------------
   CASE STUDIES BENTO GRID
   -------------------------------------------------------------------------- */
.bento-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(320px, auto);
  gap: 24px;
}

.bento-case-img {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.bento-case-text {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background var(--transition-fast);
}

.bento-case-text:hover {
  background: rgba(255, 255, 255, 0.04);
}

.bento-case-tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.bento-highlight {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(234, 179, 8, 0.1);
  border-left: 3px solid #eab308;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 0;
}

@media (max-width: 1024px) {
  .bento-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bento-cases-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(250px, auto);
  }
  .bento-case-img {
    height: 300px;
  }
}

/* --------------------------------------------------------------------------
   CASE STUDIES (ROWS)
   -------------------------------------------------------------------------- */
.case-studies-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 40px;
}

.case-img {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.case-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-pink);
  margin-bottom: 16px;
}

.case-content h3 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 24px;
}

.placeholder-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  border-left: 4px solid #eab308;
  padding-left: 20px;
  font-style: italic;
}

@media (min-width: 993px) {
  .case-row.reverse .case-img {
    order: 2;
  }
  .case-row.reverse .case-content {
    order: 1;
  }
}

@media (max-width: 992px) {
  .case-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px;
  }
  .case-img {
    height: 300px;
  }
}

/* --------------------------------------------------------------------------
   MODELS SLIDER
   -------------------------------------------------------------------------- */
.models-slider-container {
  width: 100%;
  max-width: 100%;
  position: relative;
  padding: 20px 0 40px 0;
  overflow: hidden;
}

.models-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-left: 24px;
  padding-right: 24px;
  scroll-padding-left: 24px;
  scroll-padding-right: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.models-slider::-webkit-scrollbar {
  display: none;
}

.model-card {
  flex: 0 0 calc(33.333vw - 40px);
  height: 420px;
  min-width: 320px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: flex-end;
  cursor: grab;
}

.model-card:active {
  cursor: grabbing;
}

.model-card-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}

.model-card:hover .model-card-bg {
  transform: scale(1.05);
}

.model-card-content {
  position: relative;
  z-index: 3;
  padding: 40px 30px;
  width: 100%;
  background: linear-gradient(to top, rgba(13,18,31,0.95) 0%, rgba(13,18,31,0.6) 60%, transparent 100%);
}

.model-card-content h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.model-card-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0;
}

.model-more-btn {
  display: none;
}

@media (max-width: 1024px) {
  .model-card { flex: 0 0 340px; }
}

@media (max-width: 768px) {
  .model-card {
    flex: 0 0 290px;
    height: 440px;
  }
  
  .model-card-content {
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(8,12,20,0.98) 0%, rgba(8,12,20,0.85) 75%, transparent 100%);
  }

  .model-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .model-card-content p {
    font-size: 0.88rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 12px;
  }

  .model-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(253, 44, 132, 0.15);
    border: 1px solid rgba(253, 44, 132, 0.4);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .model-more-btn:hover {
    background: var(--color-pink);
    color: #ffffff;
  }

  .models-slider { 
    padding: 0 20px; 
    scroll-padding: 0 20px;
    gap: 16px; 
  }

  /* Why Choose Section Mobile Reorder & Full Width Image */
  .why-choose-grid {
    display: flex !important;
    flex-direction: column !important;
  }

  .why-choose-grid > div:last-child {
    order: -1;
    width: 100%;
    margin-bottom: 24px;
  }

  .why-choose-grid > div:last-child .image-container-glass {
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .why-choose-grid > div:last-child img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4) !important;
  }

.mobile-break {
  display: none;
}

  /* Form mobile adjustments */
  .form-checkbox-group {
    align-items: flex-start !important;
  }

  .form-checkbox-group input[type="checkbox"] {
    margin-top: 3px !important;
    flex-shrink: 0 !important;
  }

  .contact-email-link {
    white-space: nowrap !important;
    display: inline-block;
  }

  .mobile-break {
    display: inline !important;
  }
}

/* Model Details Modal (Mobile Popup) */
.model-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.model-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.model-modal-content {
  background: #0d121f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 32px 24px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.model-modal.active .model-modal-content {
  transform: translateY(0);
}

.model-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.model-modal-content h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 12px 0;
}

.model-modal-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Toast Notification Modal / Popup */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999999;
  max-width: 440px;
  width: calc(100% - 40px);
  background: rgba(13, 18, 31, 0.95);
  border: 1px solid rgba(48, 201, 240, 0.4);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.toast-notification.error-toast {
  border-color: rgba(253, 44, 132, 0.5);
}

.toast-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.toast-icon {
  font-size: 1.8rem;
  color: #30c9f0;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.toast-notification.error-toast .toast-icon {
  color: #fd2c84;
}

.toast-text h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.toast-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin: 0;
}

.toast-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  margin-left: auto;
  transition: color 0.2s ease;
}

.toast-close:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .toast-notification {
    bottom: 20px;
    right: 20px;
    left: 20px;
    width: auto;
  }
}

/* Slider Navigation Buttons */
.slider-nav-container {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding-right: 24px;
  margin-top: 24px;
}

.slider-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(46,73,120,0.1);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 1.2rem;
}

.slider-nav-btn:hover {
  background: var(--color-navy);
  color: #ffffff;
  border-color: var(--color-navy);
  transform: scale(1.05);
}

.slider-nav-btn:active {
  transform: scale(0.95);
}

/* --------------------------------------------------------------------------
   CASE STUDIES LONG TEXT
   -------------------------------------------------------------------------- */
.case-text-long p {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.case-results-list {
  color: #ffffff;
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.case-results-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}
.case-results-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-pink);
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   TEAM MODALS
   -------------------------------------------------------------------------- */
.team-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 18, 31, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.team-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.team-modal-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  color: #ffffff;
}

/* Custom Mac/iOS style scrollbar for the modal */
.team-modal-content::-webkit-scrollbar {
  width: 6px;
}
.team-modal-content::-webkit-scrollbar-track {
  background: transparent;
  margin: 16px 0; /* Add some space at top and bottom */
}
.team-modal-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.team-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.team-modal-overlay.active .team-modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-close:hover {
  background: var(--color-pink);
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.modal-avatar {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  object-fit: contain;
  object-position: bottom center;
  background: radial-gradient(circle at center 30%, rgba(255,255,255,0.1) 0%, transparent 70%), rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
  padding: 0;
}
.modal-header h2 {
  font-size: 2rem;
  margin-bottom: 4px;
}
.modal-role {
  color: var(--color-pink);
  font-weight: 600;
  font-size: 1.1rem;
}

.modal-body p {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.modal-body h4 {
  font-size: 1.25rem;
  margin: 32px 0 16px 0;
  color: #ffffff;
}
.modal-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.modal-body ul li {
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.modal-body ul li::before {
  content: '•';
  color: var(--color-pink);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* --------------------------------------------------------------------------
   APPLE-STYLE SWITCHER FOR CASE STUDIES
   -------------------------------------------------------------------------- */
.apple-switcher-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.apple-switcher {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 4px;
  backdrop-filter: blur(10px);
}
.switcher-btn {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 26px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.switcher-btn.active {
  color: #ffffff;
  font-weight: 600;
}
.switcher-highlight {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: var(--color-pink);
  border-radius: 26px;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (max-width: 768px) {
  .apple-switcher-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6px 4px 12px 4px;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
  }

  .apple-switcher-container::-webkit-scrollbar {
    display: none;
  }

  .apple-switcher {
    flex-wrap: nowrap;
    white-space: nowrap;
    width: max-content;
    margin: 0 auto;
    min-width: min-content;
  }

  .switcher-btn {
    font-size: 0.82rem;
    padding: 8px 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* --------------------------------------------------------------------------
   CASES PANE GRID
   -------------------------------------------------------------------------- */
.cases-panes-wrapper {
  position: relative;
  min-height: 700px;
}
.case-pane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.case-pane.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.case-pane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .case-pane-grid {
    grid-template-columns: 1fr;
  }
}
.case-pane-content {
  display: flex;
  flex-direction: column;
}
.case-pane-visual {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 400px;
}
.pane-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Custom scrollbar for long text */
.case-text-long::-webkit-scrollbar {
  width: 4px;
}
.case-text-long::-webkit-scrollbar-track {
  background: transparent;
}
.case-text-long::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.case-results-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}

/* --------------------------------------------------------------------------
   METRICS GRID FOR CASE STUDIES
   -------------------------------------------------------------------------- */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 1200px) {
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.metric-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.metric-item.full-width {
  grid-column: 1 / -1;
}
.metric-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 8px;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
}
.metric-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light-muted);
  letter-spacing: 0.5px;
  line-height: 1.4;
}




/* Base glowing flare for all cards (Lens Flare effect) */
.expert-card-apple::before {
  content: '';
  position: absolute;
  top: -20%; left: -20%;
  width: 140%; height: 140%;
  background: radial-gradient(circle at 80% 20%, rgba(253, 44, 132, 0.15), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(48, 201, 240, 0.1), transparent 50%);
  opacity: 0.7;
  transition: opacity 0.4s ease, transform 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.expert-card-apple:nth-child(2)::before {
  background: radial-gradient(circle at 20% 20%, rgba(48, 201, 240, 0.15), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(253, 44, 132, 0.05), transparent 50%);
}

.expert-card-apple:nth-child(3)::before {
  background: radial-gradient(circle at 50% 100%, rgba(253, 44, 132, 0.1), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(48, 201, 240, 0.1), transparent 50%);
}

.expert-card-apple:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.expert-card-apple:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

/* Ensure content stays above the flare */
.expert-card-apple > * {
  position: relative;
  z-index: 1;
}

.expert-icon-glow {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 2px 4px rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.expert-card-apple .expert-role-top {
  color: var(--color-pink);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.expert-card-apple:nth-child(2) .expert-role-top {
  color: var(--color-cyan);
}

.expert-card-apple .expert-name-bottom {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 24px 0;
}

.expert-action-btn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.expert-card-apple:hover .expert-action-btn {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* Modal adjustments for no image */
.modal-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(253,44,132,0.15), rgba(48,201,240,0.15));
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  margin-right: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.modal-header.no-img {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}


/* --- APPLE-STYLE TEAM CARDS V3 --- */
.apple-team-card {
  position: relative;
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  gap: 12px;
}

/* Lens flare effect */
.apple-team-card::before {
  content: '';
  position: absolute;
  top: -20%; left: -20%;
  width: 140%; height: 140%;
  background: radial-gradient(circle at 80% 20%, rgba(253, 44, 132, 0.15), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(48, 201, 240, 0.1), transparent 50%);
  opacity: 0.7;
  transition: opacity 0.4s ease, transform 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.apple-team-card:nth-child(2)::before {
  background: radial-gradient(circle at 20% 20%, rgba(48, 201, 240, 0.15), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(253, 44, 132, 0.05), transparent 50%);
}

.apple-team-card:nth-child(3)::before {
  background: radial-gradient(circle at 50% 100%, rgba(253, 44, 132, 0.1), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(48, 201, 240, 0.1), transparent 50%);
}

.apple-team-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.apple-team-card:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

.apple-team-card > * {
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Icons with color */
.apple-team-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 2px 4px rgba(255,255,255,0.15);
}

.apple-team-card:nth-child(1) .apple-team-icon {
  background: linear-gradient(135deg, rgba(253, 44, 132, 0.2), rgba(253, 44, 132, 0.05));
  border: 1px solid rgba(253, 44, 132, 0.3);
  color: #fd2c84;
}

.apple-team-card:nth-child(2) .apple-team-icon {
  background: linear-gradient(135deg, rgba(48, 201, 240, 0.2), rgba(48, 201, 240, 0.05));
  border: 1px solid rgba(48, 201, 240, 0.3);
  color: #30c9f0;
}

.apple-team-card:nth-child(3) .apple-team-icon {
  background: linear-gradient(135deg, rgba(200, 100, 240, 0.2), rgba(200, 100, 240, 0.05));
  border: 1px solid rgba(200, 100, 240, 0.3);
  color: #c864f0;
}

.apple-team-role {
  color: var(--color-pink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.apple-team-card:nth-child(2) .apple-team-role {
  color: var(--color-cyan);
}
.apple-team-card:nth-child(3) .apple-team-role {
  color: #c864f0;
}

.apple-team-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.apple-team-btn {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.apple-team-card:hover .apple-team-btn {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
