/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --orange: #ff6b00;
  --red: #bf362d;
  --dark: #0f1e2e;
  --slate: #2c3e50;
  --wine: #7e3f3f;
  --cream: #f4f2e7;
  --white: #ffffff;
  --radius-card: 16px;
  --radius-pill: 100px;
  --shadow: 0 8px 40px rgba(15, 30, 46, .12);
  --shadow-hover: 0 16px 48px rgba(15, 30, 46, .18);
  --separator: 1px solid rgba(44, 62, 80, .08);
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--cream);
}
html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track { background: var(--cream); }
html::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

::selection {
  background: var(--orange);
  color: var(--dark);
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--slate);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

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

/* ============================================
   FOCUS & ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 16px;
  display: inline-block;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
h3 { font-size: 1.25rem; font-weight: 700; }

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header p {
  margin-top: 16px;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--slate);
  opacity: 0.8;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

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

.btn-outline-dark {
  background: transparent;
  color: var(--slate);
  border: 2px solid rgba(44, 62, 80, .2);
}
.btn-outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--separator);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .logo { color: var(--dark); }
.logo .logo-accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.navbar.scrolled .nav-links a { color: var(--wine); }
.navbar.scrolled .nav-links a:hover { color: var(--orange); }

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  background: var(--orange) !important;
  color: var(--dark) !important;
  border-radius: var(--radius-pill) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: #e86000 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 107, 0, .3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-menu.active { display: flex; opacity: 1; }
.mobile-menu a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}
.mobile-menu a:hover { color: var(--orange); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, .15) 0%, rgba(191, 54, 45, .08) 50%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, .08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}
.hero h1 { color: var(--white); margin-bottom: 24px; font-weight: 900; }
.hero-subtitle {
  color: rgba(255, 255, 255, .55);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .3);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { opacity: 1; top: 6px; }
  50% { opacity: 0.2; top: 18px; }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: var(--white);
  padding: 80px 0;
  border-bottom: var(--separator);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item .stat-number {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   PREVENTION
   ============================================ */
.prevention {
  background: var(--cream);
  padding: 100px 0;
}
.prevention-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.prevention-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.prevention-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
}
.prevention-card .card-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.badge-u15 { background: linear-gradient(135deg, #ff6b00, #ff9a44); color: var(--dark); }
.badge-adulte { background: var(--dark); color: var(--white); }

.prevention-card .card-audience {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 16px;
}
.prevention-card h3 { margin-bottom: 16px; color: var(--dark); }
.prevention-card .card-themes { margin-bottom: 20px; }
.prevention-card .card-themes li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--slate);
}
.prevention-card .card-themes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.6;
}
.prevention-card .card-duration {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  opacity: 0.6;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.prevention-card .card-duration svg {
  width: 16px;
  height: 16px;
  stroke: var(--slate);
  opacity: 0.6;
}

.blockquote-section {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
blockquote {
  position: relative;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--slate);
  padding: 40px 48px;
  background: var(--white);
  border-radius: var(--radius-card);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
  line-height: 1.8;
}
blockquote::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  left: 24px;
  font-size: 4rem;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.2;
  line-height: 1;
  font-style: normal;
}
@media (max-width: 768px) {
  .prevention-cards { grid-template-columns: 1fr; }
  blockquote { padding: 32px 24px; }
}

/* ============================================
   COACHING
   ============================================ */
.coaching {
  background: var(--dark);
  padding: 100px 0;
}
.coaching .section-header { color: var(--white); }
.coaching .section-header p { color: rgba(255, 255, 255, .55); }

.coaching-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.coaching-pillar {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  transition: all var(--transition);
}
.coaching-pillar:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, .3);
}
.coaching-pillar .pillar-icon { width: 48px; height: 48px; margin-bottom: 20px; }
.coaching-pillar .pillar-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.coaching-pillar h3 { color: var(--white); margin-bottom: 12px; }
.coaching-pillar p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .5);
  font-weight: 300;
  line-height: 1.7;
}
.coaching-cta { text-align: center; }
@media (max-width: 768px) {
  .coaching-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--white);
  padding: 100px 0;
}
.timeline {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 60px;
  right: 60px;
  height: 2px;
  border-top: 2px dashed rgba(44, 62, 80, .15);
}
.timeline-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.timeline-step .step-number {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.timeline-step:hover .step-number {
  background: var(--orange);
  color: var(--dark);
}
.timeline-step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.timeline-step p { font-size: 0.85rem; color: var(--slate); opacity: 0.65; }

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    gap: 32px;
    padding-left: 48px;
  }
  .timeline::before {
    top: 0; bottom: 0; left: 37px; right: auto;
    width: 2px; height: auto;
    border-top: none;
    border-left: 2px dashed rgba(44, 62, 80, .15);
  }
  .timeline-step { text-align: left; padding: 0; }
  .timeline-step .step-number {
    position: absolute;
    left: -48px;
    top: 0;
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
    margin: 0;
  }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--cream);
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 360px;
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  background: linear-gradient(135deg, var(--orange), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,.15) 0%, transparent 60%);
}
.about-photo .initials {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .85);
  letter-spacing: 4px;
  z-index: 1;
}
.about-content .eyebrow { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 24px; }
.about-content p { margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }

.about-references {
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--separator);
}
.about-references p {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  opacity: 0.7;
}
.about-social {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.about-social a:hover { background: var(--orange); color: var(--dark); }
.about-social a svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 240px; aspect-ratio: 1; }
}

/* ============================================
   NEWS
   ============================================ */
.news {
  background: var(--white);
  padding: 100px 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.news-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
}
.news-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, var(--dark), var(--slate));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card-image .placeholder-icon {
  opacity: 0.2;
}
.news-card-image .placeholder-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}
.news-card-body {
  padding: 24px;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--slate);
  opacity: 0.5;
  font-weight: 500;
}
.news-card-category {
  background: var(--orange);
  color: var(--dark);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-card-body h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.4;
}
.news-card-body h3 a { color: var(--dark); }
.news-card-body h3 a:hover { color: var(--orange); }
.news-card-excerpt {
  font-size: 0.85rem;
  color: var(--slate);
  opacity: 0.65;
  line-height: 1.7;
  margin-bottom: 16px;
}
.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-card-readmore {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
}
.news-card-readmore:hover { text-decoration: underline; }

/* Share buttons */
.share-buttons {
  display: flex;
  gap: 6px;
}
.share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 62, 80, .06);
  transition: all var(--transition);
}
.share-btn:hover { background: var(--orange); }
.share-btn svg {
  width: 14px;
  height: 14px;
  stroke: var(--slate);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.share-btn:hover svg { stroke: var(--dark); }

.news-cta { text-align: center; }
.news-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--slate);
  opacity: 0.5;
}
.news-empty svg {
  width: 64px;
  height: 64px;
  stroke: var(--slate);
  fill: none;
  stroke-width: 1;
  opacity: 0.3;
  margin-bottom: 16px;
}

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

/* ============================================
   SINGLE NEWS
   ============================================ */
.single-news {
  padding: 140px 0 80px;
  background: var(--cream);
}
.single-news-content {
  max-width: 780px;
  margin: 0 auto;
}
.single-news-content .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 32px;
}
.single-news-content .back-link:hover { text-decoration: underline; }
.single-news-content .back-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}
.single-news-header {
  margin-bottom: 32px;
}
.single-news-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--dark);
}
.single-news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--slate);
  opacity: 0.6;
}
.single-news-featured {
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 40px;
}
.single-news-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-news-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--slate);
}
.single-news-body p { margin-bottom: 20px; }
.single-news-body h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  color: var(--dark);
}
.single-news-body h3 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
  color: var(--dark);
}
.single-news-body a { color: var(--orange); font-weight: 600; }
.single-news-body a:hover { text-decoration: underline; }
.single-news-body blockquote {
  margin: 32px 0;
}
.single-news-body ul, .single-news-body ol {
  margin: 16px 0;
  padding-left: 24px;
}
.single-news-body li {
  margin-bottom: 8px;
  list-style: disc;
}

.single-news-share {
  margin-top: 48px;
  padding-top: 32px;
  border-top: var(--separator);
  display: flex;
  align-items: center;
  gap: 16px;
}
.single-news-share span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate);
}
.single-news-share .share-btn {
  width: 40px;
  height: 40px;
}
.single-news-share .share-btn svg { width: 18px; height: 18px; }

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--white);
  padding: 100px 0;
}
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: var(--separator); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-question .chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question .chevron svg {
  width: 24px;
  height: 24px;
  stroke: var(--slate);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.faq-item.active .faq-question .chevron { transform: rotate(180deg); }
.faq-item.active .faq-question .chevron svg { stroke: var(--orange); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--slate);
  opacity: 0.75;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--dark);
  padding: 100px 0;
}
.contact .section-header { color: var(--white); }
.contact .section-header p { color: rgba(255, 255, 255, .5); }
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, .25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, .09);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='rgba(255,255,255,.5)' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group select option { background: var(--dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  padding: 16px 32px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  background: var(--orange);
  color: var(--dark);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 52px;
  font-family: inherit;
}
.btn-submit:hover {
  background: #e86000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 0, .3);
}
.btn-submit.loading { pointer-events: none; opacity: 0.8; }
.btn-submit .spinner {
  display: none;
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
}
.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.contact-info { padding-top: 12px; }
.contact-info h3 { color: var(--white); margin-bottom: 24px; font-size: 1.3rem; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info-item .info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 107, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-item .info-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .7);
}
.contact-info-item .info-text a {
  color: var(--orange);
  font-weight: 600;
}
.contact-info-item .info-text a:hover { text-decoration: underline; }
.contact-info-item .info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
}

/* Form success */
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success .check-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 107, 0, .15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success .check-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2.5;
}
.form-success h3 { color: var(--white); margin-bottom: 8px; }
.form-success p { color: rgba(255, 255, 255, .5); font-size: 0.9rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 6px; display: block; }
.footer-brand .slogan {
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, .35);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .4);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .25);
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
@media (max-width: 768px) {
  .footer-content { flex-direction: column; text-align: center; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
