/* ============================================
   EDITORA — Global Styles
   Brand: #000 bg, #FFF text, #C9A84C gold accent
   ============================================ */

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

:root {
  --black: #000000;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --gold-light: #E8C96B;
  --gray: #888888;
  --radius: 12px;
  --transition: 0.3s ease;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul { list-style: none; }

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.text-gold { color: var(--gold); }
.text-gray { color: var(--gray); }

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

/* --- Section --- */
section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
}

/* --- Gold separator --- */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 2rem 0;
}

.gold-line--center {
  margin: 2rem auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.navbar__logo span {
  color: var(--gold);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.navbar__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Language Switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 0.3rem 0.15rem;
}

.lang-switch__btn {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.lang-switch__btn.active {
  background: var(--gold);
  color: var(--black);
}

.lang-switch__btn:hover:not(.active) {
  color: var(--white);
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}

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

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

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

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

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

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

.hero__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.95);
  white-space: nowrap;
  position: relative;
  z-index: 2;
  max-width: 90vw;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__badge span:first-child {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}

/* ============================================
   STATS BANNER
   ============================================ */
.stats-banner {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.02);
}

.stat-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.03);
  transform: translateY(-4px);
}

.stat-card__number {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card__label {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--black);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  position: relative;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.02);
}

.step-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.step-card__number {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.step-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.step-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  stroke-width: 1.2px;
  fill: none;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   SERVICES / WHAT WE DO
   ============================================ */
.services {
  background: var(--black);
}

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

.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.02);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  stroke-width: 1.2px;
  fill: none;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.service-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.05);
}

/* ============================================
   PORTFOLIO / CAROUSEL
   ============================================ */
.portfolio {
  background: var(--black);
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  margin-top: 3rem;
}

.carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel__item {
  flex: 0 0 400px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.02);
}

.carousel__item--vertical {
  flex: 0 0 260px;
}

.carousel__item:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.carousel__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
}

.carousel__video--vertical {
  aspect-ratio: 9/16;
}

.carousel__video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.carousel__info {
  padding: 1.2rem 1.5rem;
}

.carousel__info h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.carousel__info p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Carousel Navigation */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-nav__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-nav__btn:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.carousel-nav__btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  stroke-width: 1.5px;
  fill: none;
}

/* ============================================
   TOOLS / LOGICIELS
   ============================================ */
.tools {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tools-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.5;
  transition: opacity var(--transition);
}

.tool-item:hover {
  opacity: 1;
}

.tool-item__icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  font-size: 1.5rem;
}

.tool-item__name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--transition);
  position: relative;
}

.pricing-card--featured {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.03);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.pricing-card__price-from {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.pricing-card__price-amount {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
}

.pricing-card--featured .pricing-card__price-amount {
  color: var(--gold);
}

.pricing-card__price-period {
  font-size: 0.9rem;
  color: var(--gray);
}

.pricing-card__price-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.pricing-card__features {
  margin-bottom: 2rem;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card__feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  stroke-width: 2px;
  fill: none;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.2rem;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  stroke: none;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--black);
}

.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--gold);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform var(--transition);
}

.faq-item__icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-section {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  max-width: 500px;
  margin: 0 auto 2.5rem;
  color: var(--gray);
  font-size: 1.1rem;
}

.cta-section .btn {
  position: relative;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: #0a0a0a;
  border-top: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
}

/* Decorative diagonal lines */
.footer__deco {
  position: absolute;
  top: -20px;
  width: 1px;
  height: 220px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.25;
  pointer-events: none;
}
.footer__deco--left  { left: 120px;  transform: rotate(-15deg); transform-origin: top; }
.footer__deco--right { right: 120px; transform: rotate(15deg);  transform-origin: top; }

.footer__main {
  padding: 80px 0 55px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}

/* Logo */
.footer__logo {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  display: inline-block;
  color: var(--white);
}
.footer__logo span { color: var(--gold); }

/* About text */
.footer__about {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

/* Social icons row */
.footer__socials {
  display: flex;
  gap: 0.6rem;
}
.footer__social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer__social svg { width: 15px; height: 15px; }
.footer__social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.07);
}

/* Column headings */
.footer__heading {
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.85rem;
}
.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 1px;
  background: var(--gold);
}

/* Link lists */
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition), gap var(--transition);
}
.footer__list a::before {
  content: '›';
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 1rem;
  line-height: 1;
}
.footer__list a:hover {
  color: rgba(255,255,255,0.85);
  gap: 10px;
}
.footer__list a:hover::before {
  opacity: 1;
}

/* Contact items */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.footer__contact-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(201,168,76,0.04);
}
.footer__contact-icon svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
}
.footer__contact-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 6px;
}
.footer__contact-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer__contact-value {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 22px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.22);
}
.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
}
.footer__bottom-links a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__bottom-links a:hover {
  color: var(--gold);
}

/* ============================================
   ANIMATIONS — Scroll Reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  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; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar__links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .hero__stat-number {
    font-size: 1.5rem;
  }

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

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

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

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

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

  .carousel__item {
    flex: 0 0 320px;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer__bottom .container {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stats-banner .container {
    grid-template-columns: 1fr;
  }

  .carousel__item {
    flex: 0 0 280px;
  }

  .tools-grid {
    gap: 1.5rem;
  }

  .tool-item__icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__deco { display: none; }
}
