/* ═══════════════════════════════════════════
   Socialiang — Main Stylesheet
   ═══════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  /* Brand Accent — warm gold */
  --color-gold:        #c9a961;
  --color-gold-light:  #ddbf7a;
  --color-gold-dark:   #b59550;
  --color-gold-glow:   rgba(184, 145, 110, 0.10);
  --color-gold-border: rgba(184, 145, 110, 0.22);

  /* Neutrals */
  --color-bg:          #e9e6e4;
  --color-bg-alt:      #f3f1ef;
  --color-bg-card:     #ffffff;
  --color-bg-dark:     #2e2b28;

  /* Text */
  --color-text:        #2a2725;
  --color-text-soft:   #6b6764;
  --color-text-muted:  #a8a6a6;

  /* Borders */
  --color-border:      rgba(0, 0, 0, 0.08);
  --color-border-soft: rgba(0, 0, 0, 0.06);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  32px;
  --space-xl:  64px;
  --space-2xl: 120px;

  /* Radii */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}


/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background-color: var(--color-bg); color: var(--color-text); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── Grain ── */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-text-muted); border-radius: 3px; }


/* ══════════════════════════ LAYOUT ══════════════════════════ */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section { padding: var(--space-2xl) 0; }
.section--flush { padding: 0; }
.section--white { background: var(--color-bg-card); }
.section--alt { background: var(--color-bg-alt); }


/* ══════════════════════════ NAV ══════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); display: flex; align-items: center; padding: 0 40px;
  background: rgba(233, 230, 228, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border); transition: box-shadow 0.3s, height 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.05); height: 62px; }
.nav__inner { width: 100%; max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }

.nav__logo {
  height: 70px;
  width: auto;

}

.nav__mark { display: flex; align-items: center; gap: 12px; }
.nav__initials {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(160deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff;
  letter-spacing: -0.02em; transition: transform 0.25s;
  box-shadow: 0 2px 8px rgba(184, 145, 110, 0.2), inset 0 1px 0 rgba(255,255,255,0.18);
}
.nav__initials:hover { transform: scale(1.05); }
.nav__wordmark { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--color-text); letter-spacing: -0.01em; }
.nav__wordmark span { color: var(--color-gold); }

.nav__links { display: flex; gap: var(--space-lg); align-items: center; list-style: none; }
.nav__link { font-size: 0.85rem; font-weight: 500; color: var(--color-text-soft); letter-spacing: 0.02em; transition: color 0.25s; position: relative; }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--color-gold); transition: width 0.3s; }
.nav__link:hover { color: var(--color-text); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 26px;
  background: linear-gradient(160deg, var(--color-gold-light) 0%, var(--color-gold) 60%, var(--color-gold-dark) 100%);
  color: #fff; font-size: 0.82rem; font-weight: 600;
  border-radius: 100px; border: none; letter-spacing: 0.01em;
  transition: filter 0.25s, transform 0.2s;
  box-shadow: 0 3px 14px rgba(184, 145, 110, 0.22), inset 0 1px 0 rgba(255,255,255,0.18);
}
.nav__cta:hover { filter: brightness(1.06); transform: scale(1.03); }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; z-index: 1001; }
.nav__hamburger span { width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: 0.3s; }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ══════════════════════════ HERO (split) ══════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-height) + 40px) 40px 60px; position: relative; overflow: hidden;
  background: var(--color-bg-card);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(120px); animation: orbFloat 14s ease-in-out infinite; }
.hero__orb--1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(184,145,110,0.14), transparent 70%); top: -8%; right: -3%; }
.hero__orb--2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(168,166,166,0.12), transparent 70%); bottom: -5%; left: -6%; animation-delay: -5s; }
.hero__orb--3 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(184,145,110,0.06), transparent 70%); top: 45%; left: 50%; animation-delay: -9s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(25px,-18px) scale(1.04); }
  66% { transform: translate(-18px,12px) scale(0.96); }
}

.hero__inner { position: relative; z-index: 1; max-width: var(--max-width); margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero__text { max-width: 560px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 22px;
  background: var(--color-gold-glow); border: 1px solid var(--color-gold-border); border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; color: var(--color-gold-dark);
  margin-bottom: var(--space-lg); letter-spacing: 0.06em; text-transform: uppercase;
  animation: fadeUp 0.8s ease both;
}
.hero__badge::before { content: ''; width: 6px; height: 6px; background: var(--color-gold); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

.hero__title { font-family: var(--font-display); font-size: clamp(2.6rem,5.5vw,4.2rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 28px; color: var(--color-text); animation: fadeUp 0.8s 0.12s ease both; }
.hero__title em { font-style: italic; color: var(--color-gold); position: relative; }
.hero__title em::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 2px; background: var(--color-gold); opacity: 0.35; border-radius: 2px; }

.hero__subtitle { font-size: clamp(0.95rem,1.6vw,1.1rem); color: var(--color-text-soft); line-height: 1.75; margin-bottom: 40px; animation: fadeUp 0.8s 0.25s ease both; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.38s ease both; }

.hero__logo-side { display: flex; justify-content: center; align-items: center; animation: fadeUp 0.8s 0.2s ease both; }
.hero__logo-side { position: relative; }
.hero__logo-img { box-shadow: 0 24px 80px rgba(0,0,0,0.08); }

.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 1; animation: fadeUp 0.8s 0.6s ease both; }
.hero__scroll span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-text-muted); }
.hero__scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--color-text-muted), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.2; transform: scaleY(0.5); } }


/* ══════════════════════════ BUTTONS ══════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; border-radius: 100px; border: none; cursor: pointer; transition: all 0.3s; }
.btn--primary {
  padding: 15px 34px;
  background: linear-gradient(160deg, var(--color-gold-light) 0%, var(--color-gold) 55%, var(--color-gold-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(184, 145, 110, 0.22), inset 0 1px 0 rgba(255,255,255,0.16);
}
.btn--primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 145, 110, 0.28), inset 0 1px 0 rgba(255,255,255,0.16);
}
.btn--primary svg { transition: transform 0.25s; }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--secondary { padding: 15px 34px; background: transparent; color: var(--color-text); border: 1px solid var(--color-border); }
.btn--secondary:hover { border-color: var(--color-gold-border); background: var(--color-gold-glow); }
.btn__arrow { width: 18px; height: 18px; }


/* ══════════════════════════ STATS ══════════════════════════ */
.stats { padding: 56px 0; border-top: 1px solid var(--color-border-soft); border-bottom: 1px solid var(--color-border-soft); background: var(--color-bg-card); }
.stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; text-align: center; }
.stats__number { font-family: var(--font-display); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 700; color: var(--color-text); letter-spacing: -0.02em; }
.stats__number span { color: var(--color-gold); }
.stats__label { font-size: 0.78rem; color: var(--color-text-muted); margin-top: 4px; letter-spacing: 0.03em; }


/* ══════════════════════════ SECTION HEADERS ══════════════════════════ */
.section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-gold); margin-bottom: 18px; }
.section-label::before { content: ''; width: 22px; height: 1.5px; background: var(--color-gold); }
.section-title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 18px; color: var(--color-text); }
.section-desc { font-size: 1.02rem; color: var(--color-text-soft); line-height: 1.7; max-width: 520px; }


/* ══════════════════════════ PAINS ══════════════════════════ */
.pains__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: var(--space-xl); }
.pain-card { padding: 40px 32px; background: var(--color-bg-card); border: 1px solid var(--color-border-soft); border-radius: var(--radius); transition: all 0.4s; position: relative; overflow: hidden; }
.pain-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.pain-card:hover::before { transform: scaleX(1); }
.pain-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.07); border-color: var(--color-gold-border); }
.pain-card__icon { width: 52px; height: 52px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 1.3rem; }
.pain-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.pain-card__desc { font-size: 0.9rem; color: var(--color-text-soft); line-height: 1.65; }


/* ══════════════════════════ ABOUT ══════════════════════════ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__image { border-radius: var(--radius); overflow: hidden; position: relative; }
.placeholder-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 50%, var(--color-bg) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--color-text-muted); font-size: 0.8rem;
  border: 2px dashed var(--color-border); border-radius: var(--radius);
}
.placeholder-img svg { width: 40px; height: 40px; opacity: 0.35; }
.about__content .section-desc { margin-bottom: 28px; }
.about__list { list-style: none; margin-bottom: 32px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--color-text-soft); margin-bottom: 14px; }
.about__list li::before {
  content: '✓'; display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; background: var(--color-gold-glow); border: 1px solid var(--color-gold-border);
  border-radius: 50%; font-size: 0.7rem; color: var(--color-gold); flex-shrink: 0;
}


/* ══════════════════════════ SERVICES ══════════════════════════ */
.services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: var(--space-xl); }
.service-card { padding: 0; background: var(--color-bg-card); border: 1px solid var(--color-border-soft); border-radius: var(--radius); transition: all 0.4s; overflow: hidden; }
.service-card:hover { border-color: var(--color-gold-border); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.07); }

.service-card__image { width: 100%; aspect-ratio: 16/10; overflow: hidden; position: relative; }
.service-card__image img,
.service-card__image .placeholder-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card__image img { transform: scale(1.04); }

.service-card__body { padding: 32px 30px; }
.service-card__num { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--color-gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.service-card__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.service-card__desc { font-size: 0.9rem; color: var(--color-text-soft); line-height: 1.65; margin-bottom: 22px; }
.service-tag { display: inline-block; padding: 5px 14px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 100px; font-size: 0.72rem; color: var(--color-text-soft); font-weight: 600; letter-spacing: 0.02em; margin-right: 5px; margin-bottom: 5px; transition: all 0.25s; }
.service-card:hover .service-tag { border-color: var(--color-gold-border); color: var(--color-gold-dark); }


/* ══════════════════════════ TIMELINE ══════════════════════════ */
.process__inner { max-width: 860px; margin: 0 auto; }
.process__header { text-align: center; margin-bottom: 72px; }
.process__header .section-label { justify-content: center; }
.process__header .section-desc { margin: 0 auto; }

.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 32px; width: 1px; background: linear-gradient(to bottom, var(--color-text-muted), var(--color-border)); }
.timeline__step { display: flex; gap: 36px; align-items: flex-start; margin-bottom: 52px; }
.timeline__step:last-child { margin-bottom: 0; }
.timeline__dot {
  flex-shrink: 0; width: 65px; height: 65px; background: var(--color-bg-card);
  border: 2px solid var(--color-text-muted); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--color-text-soft);
  position: relative; z-index: 1; transition: all 0.35s;
}
.timeline__step:hover .timeline__dot { border-color: var(--color-gold); color: var(--color-gold); }
.timeline__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; margin-top: 6px; }
.timeline__desc { font-size: 0.9rem; color: var(--color-text-soft); line-height: 1.65; }


/* ══════════════════════════ TESTIMONIALS ══════════════════════════ */
.testimonials__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.testimonials__header { margin-bottom: var(--space-xl); }
.testimonials__header .section-label { justify-content: center; }
.testimonials__header .section-desc { margin: 0 auto; }

.testimonial-card { background: var(--color-bg-card); border: 1px solid var(--color-border-soft); border-radius: var(--radius); padding: 44px 40px; margin-bottom: 20px; text-align: left; transition: all 0.35s; }
.testimonial-card:hover { border-color: var(--color-gold-border); box-shadow: 0 12px 40px rgba(0,0,0,0.05); }
.testimonial-card__stars { color: var(--color-gold); font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 3px; }
.testimonial-card__text { font-size: 1.05rem; line-height: 1.75; color: var(--color-text-soft); margin-bottom: 22px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--color-bg);
  border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--color-text-soft); overflow: hidden;
}
.testimonial-card__name { font-weight: 600; font-size: 0.92rem; }
.testimonial-card__role { font-size: 0.78rem; color: var(--color-text-muted); margin-top: 2px; }


/* ══════════════════════════ CTA ══════════════════════════ */
.cta { text-align: center; position: relative; overflow: hidden; background: var(--color-bg-dark); color: var(--color-bg-alt); }
.cta__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(184,145,110,0.08), transparent 70%); }
.cta__content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta__content .section-label { justify-content: center; }
.cta__content .section-label::after { content: ''; width: 22px; height: 1.5px; background: var(--color-gold); }
.cta__content .section-title { font-size: clamp(2rem,4.5vw,3.2rem); margin-bottom: 18px; color: var(--color-bg-alt); }
.cta__content .section-desc { margin: 0 auto 40px; max-width: 480px; color: var(--color-text-muted); }
.cta__star { display: block; margin: 0 auto 16px; width: 36px; height: 36px; fill: var(--color-gold); opacity: 0.25; animation: starTwinkle 3s ease-in-out infinite; }


/* ══════════════════════════ FOOTER ══════════════════════════ */
.footer { padding: 56px 0 36px; border-top: 1px solid var(--color-border-soft); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(160deg, var(--color-gold-light) 0%, var(--color-gold) 60%, var(--color-gold-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}
.footer__name { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.footer__tagline { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 2px; }
.footer__links { display: flex; gap: 28px; list-style: none; }
.footer__links a { color: var(--color-text-soft); font-size: 0.82rem; transition: color 0.25s; }
.footer__links a:hover { color: var(--color-gold); }
.footer__bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--color-border-soft); text-align: center; font-size: 0.72rem; color: var(--color-text-muted); }


/* ══════════════════════════ ANIMATIONS ══════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }


/* ══════════════════════════
   DECORATIVE STAR ELEMENTS
   (één gecombineerd blok — voorkomt conflicterende left/right)
   ══════════════════════════ */

.deco-stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.deco-star {
  position: absolute;
  fill: var(--color-gold);
  opacity: 0.08;
  animation: starTwinkle 4s ease-in-out infinite;
}

/* Elke ster krijgt OFWEL left OFWEL right — nooit beide */
.deco-star--1 { width: 28px; top: 18%; right: 8%;  animation-delay: 0s;   }
.deco-star--2 { width: 18px; top: 55%; left:  5%;  animation-delay: -1.5s;}
.deco-star--3 { width: 22px; bottom: 20%; right: 12%; animation-delay: -3s; }

@keyframes starTwinkle {
  0%, 100% { opacity: 0.06; transform: scale(1) rotate(0deg); }
  50%      { opacity: 0.14; transform: scale(1.15) rotate(15deg); }
}

/* Star in hero badge */
.hero__badge-star {
  width: 14px; height: 14px;
  fill: var(--color-gold);
}
.hero__badge::before { display: none; }

/* Star near hero logo */
.hero__star {
  position: absolute;
  top: -12px; right: -16px;
  width: 32px; height: 32px;
  fill: var(--color-gold);
  opacity: 0.5;
  animation: starTwinkle 3s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(184, 145, 110, 0.3));
}

/* Star on pain cards */
.pain-card__icon { position: relative; }
.pain-card__star {
  position: absolute;
  top: -6px; right: -8px;
  width: 14px; height: 14px;
  fill: var(--color-gold);
  opacity: 0;
  transition: opacity 0.35s;
}
.pain-card:hover .pain-card__star { opacity: 0.6; }

/* Star on about image */
.about__image { position: relative; }
.about__star {
  position: absolute;
  top: -14px; right: -14px;
  width: 28px; height: 28px;
  fill: var(--color-gold);
  opacity: 0.35;
  animation: starTwinkle 5s ease-in-out infinite;
}

/* Star near section headers */
.section__star {
  position: absolute;
  top: 0; right: -40px;
  width: 20px; height: 20px;
  fill: var(--color-gold);
  opacity: 0.3;
  animation: starTwinkle 4s ease-in-out infinite -2s;
}

/* Star in CTA */
.cta__star {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 36px; height: 36px;
  fill: var(--color-gold);
  opacity: 0.25;
  margin-bottom: 16px;
  animation: starTwinkle 3s ease-in-out infinite;
}

/* Star in contact form card */
.contact-form__star {
  position: absolute;
  top: -12px; right: -12px;
  width: 28px; height: 28px;
  fill: var(--color-gold);
  opacity: 0.25;
  animation: starTwinkle 3s ease-in-out infinite;
}


/* ══════════════════════════ RESPONSIVE ══════════════════════════ */
@media (max-width: 1024px) {
  .pains__grid, .services__grid { grid-template-columns: repeat(2,1fr); }
  .stats__grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__image { max-width: 500px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__text { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__logo-side { order: -1; }
  .hero__logo-img { max-width: 340px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .nav { padding: 0 24px; }
  .nav__links {
    display: none; position: fixed; inset: 0;
    background: rgba(233,230,228,0.97); backdrop-filter: blur(30px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 28px; list-style: none; z-index: 999;
  }
  .nav__links.open { display: flex; }
  .nav__links .nav__link { font-size: 1.15rem; color: var(--color-text); }
  .nav__hamburger { display: flex; }
  .nav__wordmark { display: none; }
  .hero { padding-top: calc(var(--nav-height) + 24px); min-height: auto; padding-bottom: 60px; }
  .hero__logo-img { max-width: 260px; }
  .pains__grid, .services__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .testimonial-card { padding: 32px 24px; }
  .timeline::before { left: 26px; }
  .timeline__dot { width: 53px; height: 53px; font-size: 0.9rem; }
  .timeline__step { gap: 24px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

@media (max-width: 420px) {
  .hero__title { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}


/* ══════════════════════════
   CONTACT PAGE
   ══════════════════════════ */
.contact-hero {
  padding: calc(var(--nav-height) + 64px) 0 48px;
  position: relative;
}
.contact-hero__inner {
  position: relative;
  max-width: 700px;
}
.contact-hero__star {
  position: absolute;
  top: 0; right: -60px;
  width: 28px; height: 28px;
  fill: var(--color-gold);
  opacity: 0.35;
  animation: starTwinkle 4s ease-in-out infinite;
}

.contact-section { padding-top: 40px; }

.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: start;
}

/* Form styles */
.contact-form__wrap {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 48px 44px;
  border: 1px solid var(--color-border-soft);
}

.form-group { margin-bottom: 24px; }

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

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-input::placeholder { color: var(--color-text-muted); }
.form-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-glow);
}
.form-input--error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8a6a6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 42px;
}

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

.contact-form__submit {
  width: 100%;
  justify-content: center;
  padding: 16px 34px;
  margin-top: 8px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 16px;
}

/* Success state */
.contact-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 40px;
  gap: 16px;
}
.contact-form__success-icon {
  width: 56px; height: 56px;
  color: var(--color-gold);
}
.contact-form__success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
.contact-form__success p {
  color: var(--color-text-soft);
  font-size: 1rem;
}

/* Sidebar info cards */
.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}

.contact-info__star {
  position: absolute;
  top: -10px; right: -10px;
  width: 22px; height: 22px;
  fill: var(--color-gold);
  opacity: 0.35;
  animation: starTwinkle 4s ease-in-out infinite -1s;
}

.contact-info__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-info__item:last-child { margin-bottom: 0; }

.contact-info__icon {
  width: 40px; height: 40px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}

.contact-info__value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.25s;
}
a.contact-info__value:hover { color: var(--color-gold); }

.contact-info__list {
  list-style: none;
}
.contact-info__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-text-soft);
  margin-bottom: 12px;
}
.contact-info__list li:last-child { margin-bottom: 0; }
.contact-info__list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--color-gold-glow);
  border: 1px solid var(--color-gold-border);
  border-radius: 50%;
  font-size: 0.65rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Contact page responsive */
@media (max-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-hero__star { display: none; }
}

@media (max-width: 768px) {
  .contact-form__wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}