/* =============================================
   THIBAULT MERLE — INFLUENCER MANAGER
   Main Stylesheet
   ============================================= */

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

:root {
  --navy: #0a1628;
  --navy-2: #0f1f3d;
  --navy-3: #152244;
  --card-bg: #0d1b38;
  --card-bg-2: #111e36;
  --orange: #FF6B00;
  --orange-hover: #e55c00;
  --white: #ffffff;
  --text-muted: #7a91b3;
  --text-light: #b8cce4;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--font);
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
}

.orange {
  color: var(--orange);
}

.center {
  text-align: center;
}

/* ---- TYPOGRAPHY ---- */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.section-header.center .section-text {
  margin: 0 auto;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-small {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  margin-top: 12px;
}

.btn-small:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1540px;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 12px 28px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 22, 40, 0.95);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--orange);
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.cta-nav {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
}

.cta-nav:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1e4a 60%, #0d2155 100%);
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 60, 150, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  width: 540px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.2) 0%, rgba(10, 30, 80, 0.5) 60%, transparent 100%);
  border-radius: 60% 40% 50% 70% / 50% 60% 40% 60%;
  animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {

  0%,
  100% {
    border-radius: 60% 40% 50% 70% / 50% 60% 40% 60%;
  }

  33% {
    border-radius: 40% 60% 70% 30% / 60% 40% 60% 40%;
  }

  66% {
    border-radius: 70% 30% 40% 60% / 40% 70% 30% 70%;
  }
}

.hero-avatar-placeholder {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.avatar-silhouette {
  width: 240px;
  height: 320px;
  background: linear-gradient(160deg, rgba(255, 107, 0, 0.08) 0%, rgba(10, 28, 70, 0.4) 100%);
  border-radius: 130px 130px 90px 90px;
  border: 1px solid rgba(255, 107, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 -60px 80px rgba(255, 107, 0, 0.06), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.avatar-silhouette::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, rgba(255, 107, 0, 0.05) 60%, transparent 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 107, 0, 0.15);
}

.avatar-silhouette::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 180px;
  height: 200px;
  background: radial-gradient(ellipse at top, rgba(255, 107, 0, 0.15) 0%, rgba(10, 28, 70, 0.5) 70%, transparent 100%);
  border-radius: 100px 100px 0 0;
}

.avatar-head {
  width: 95px;
  height: 95px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 150, 50, 0.4), rgba(255, 107, 0, 0.15));
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 0, 0.25);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-bottom: -10px;
}

.avatar-body {
  width: 160px;
  height: 185px;
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.18) 0%, rgba(20, 40, 90, 0.6) 100%);
  border-radius: 90px 90px 0 0;
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-bottom: none;
  position: relative;
  z-index: 1;
}

.hero-img-label {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  opacity: 0.6;
  letter-spacing: -0.02em;
}

.hero-img-label span {
  color: var(--orange);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: bounce-y 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}

@keyframes bounce-y {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header.center .section-title {
  max-width: 700px;
}

.section-header.center .section-text {
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.problem-card:hover {
  border-color: rgba(255, 107, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.problem-cta-text {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.arrow-down {
  font-size: 1.5rem;
  color: var(--orange);
  animation: bounce-y 1.8s ease-in-out infinite;
}

/* ---- SOLUTION ---- */
.solution {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.solution-quote-bar {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
  margin-top: 24px;
}

.solution-quote-bar p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.profile-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.profile-avatar-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.profile-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 107, 0, 0.15);
}

.profile-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 16px;
}

.profile-info strong {
  font-size: 1rem;
  font-weight: 700;
}

.profile-info span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.profile-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(255, 107, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.solution-quote {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 36px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  position: relative;
}

.solution-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 36px;
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

/* ---- TRANSITION ---- */
.transition-line {
  padding: 100px 24px;
  background: var(--navy);
  text-align: center;
}

.transition-inner {
  max-width: 860px;
  margin: 0 auto;
}

.transition-line p {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.transition-highlight {
  color: var(--orange);
}

/* ---- WITH WHO ---- */
.with-who {
  padding: 100px 0;
  background: var(--navy);
}

.with-who .section-title {
  margin-bottom: 48px;
}

.with-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.with-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.with-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.with-card-orange {
  background: var(--orange);
  border-color: var(--orange);
}

.with-card-orange:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 107, 0, 0.4);
}

.with-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.with-icon-orange {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.with-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.with-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.with-card-orange p {
  color: rgba(255, 255, 255, 0.85);
}

.with-card-orange h3 {
  color: var(--white);
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy) 0%, #080f20 100%);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}

.services-header-right {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 220px;
  text-align: right;
}

.service-block {
  margin-bottom: 100px;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-category-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
}

.category-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.category-label::after {
  content: '';
  height: 1px;
  flex-grow: 1;
  background: linear-gradient(90deg, var(--orange), transparent);
  max-width: 200px;
}

.category-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
}

.category-sub {
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 6px;
}

.category-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(255, 107, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-featured {
  border-color: rgba(255, 107, 0, 0.35);
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 107, 0, 0.05) 100%);
}

.pricing-featured::before {
  content: '⭐ Populaire';
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.pricing-icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--orange);
}

.pricing-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.price {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.pricing-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

.pricing-incl {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card ul li {
  font-size: 0.85rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.pricing-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.service-banner {
  background: linear-gradient(135deg, var(--card-bg) 0%, #152244 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-banner:hover {
  border-color: rgba(255, 107, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.banner-icon {
  font-size: 1.8rem;
}

.banner-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.banner-action {
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .service-banner {
    padding: 40px;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .service-banner {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 24px;
    text-align: left;
  }

  .banner-icon {
    order: -1;
  }
}

/* ---- COACHING ---- */
.coaching-section {
  padding: 100px 0;
  background: var(--navy);
}

.orange-tag {
  color: var(--orange);
}

.coaching-inner {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
}

.coaching-inner .section-title {
  margin-bottom: 16px;
}

.coaching-inner .section-text {
  margin: 0 auto 48px;
  max-width: 560px;
}

.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  margin-bottom: 40px;
}

.coaching-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.coaching-card:hover {
  border-color: rgba(255, 107, 0, 0.2);
  transform: translateY(-3px);
}

.coaching-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.coaching-label {
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 4px;
}

.coaching-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.coaching-card .price {
  font-size: 1.1rem;
}

/* ---- ABOUT ---- */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, #080f20 0%, var(--navy) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-story {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 32px;
}

.about-chapter h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.about-chapter p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.about-right {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 500px;
}

.about-img-decoration {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(10, 22, 60, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-person-icon {
  font-size: 5rem;
  opacity: 0.15;
}

.about-img-caption {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ---- CONTACT ---- */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy) 0%, #04090f 100%);
}

.contact-inner {
  max-width: 660px;
  margin: 0 auto;
}

.contact-inner .section-title {
  margin-bottom: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a91b3' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: #0d1b38;
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 107, 0, 0.5);
  background: rgba(255, 107, 0, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4ade80;
}

/* ---- FOOTER ---- */
.footer {
  background: #04090f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-logo span {
  color: var(--orange);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.footer-links span {
  opacity: 0.4;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- HERO PORTRAIT ---- */
.hero-avatar-photo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-portrait {
  width: 480px;
  height: auto;
  border-radius: 240px 240px 140px 140px;
  object-fit: cover;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.6));
  border: 2px solid rgba(255, 107, 0, 0.2);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-portrait:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 24px 70px rgba(255, 107, 0, 0.2));
}

/* ---- ABOUT PORTRAIT ---- */
.about-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 0;
}

/* ---- FAQ SECTION ---- */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy) 0%, #080f20 100%);
}

.faq-section .section-header {
  margin-bottom: 56px;
}

.faq-category {
  margin-bottom: 32px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-category:hover {
  border-color: rgba(255, 107, 0, 0.15);
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

.faq-category-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--orange);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-category-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.faq-items {
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--orange);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 107, 0, 0.15);
}

.faq-item.active .faq-question {
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 32px;
}

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

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ---- MOBILE MENU ---- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
    animation: slideDown 0.25s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-link {
    padding: 12px 16px;
    border-radius: 10px;
    width: 100%;
  }

  .cta-nav {
    margin-top: 8px;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-container {
    gap: 40px;
  }

  .solution-grid {
    gap: 40px;
  }

  .about-grid {
    gap: 48px;
  }

  .coaching-inner {
    padding: 48px 40px;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-header-right {
    text-align: left;
  }
}

@media (max-width: 900px) {
  .section-header.center {
    align-items: flex-start;
    text-align: left;
  }

  .section-header.center .section-text,
  .center {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

  .hero-desc {
    margin-left: 0;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-image {
    display: none;
  }

  .hero-badge {
    justify-content: flex-start;
  }

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

  .solution-features {
    grid-template-columns: 1fr;
  }

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

  .about-right {
    display: none;
  }

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

  .pricing-grid-2 {
    grid-template-columns: 1fr;
  }

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

  .coaching-inner {
    padding: 40px 24px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .navbar {
    top: 10px;
    width: calc(100% - 24px);
    padding: 10px 18px;
  }

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

  .with-who-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 100px 24px 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .category-title {
    font-size: 1.8rem;
  }

  section.problem,
  section.solution,
  section.with-who,
  section.services,
  section.coaching-section,
  section.about,
  section.faq-section,
  section.contact {
    padding: 72px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .service-big-title {
    font-size: 2rem;
  }

  .coaching-inner .section-text {
    font-size: 0.9rem;
  }

  .faq-category-header {
    padding: 18px 20px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.85rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }

  .hero-portrait {
    width: 240px;
  }
}

/* ---- ULTRA WIDE SUPPORT ---- */
@media (min-width: 1920px) {
  :root {
    --radius: 20px;
    --radius-lg: 32px;
  }

  html {
    font-size: 18px;
    /* Slightly scale everything up for very large screens */
  }

  .container,
  .hero-container {
    max-width: 1760px;
    padding: 0 48px;
  }

  .navbar {
    max-width: 1700px;
  }

  .hero-container {
    gap: 120px;
  }

  .problem-grid,
  .with-who-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-grid {
    gap: 120px;
  }

  .pricing-grid {
    gap: 32px;
  }
}

@media (min-width: 1400px) and (max-width: 1919px) {
  .problem-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}