/* ============================================================
   WeTestify — Shared Stylesheet
   Brand: Wine/Burgundy + Champagne accent
   Primary: #55273c  Accent: #c49a6c
   Fonts: Raleway (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --wine:              #55273c;
  --wine-dark:         #3a1829;
  --wine-mid:          #7a3558;
  --rose-bg:           #fdf5f7;
  --rose-pale:         #f7eaed;
  --white:             #ffffff;
  --text:              #2a1520;
  --grey:              #8a7080;
  --border:            #e8d5db;
  --champagne:         #c49a6c;
  --champagne-light:   #e8d0b0;

  --wine-gradient:     linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  --wine-gradient-h:   linear-gradient(140deg, var(--wine) 0%, var(--wine-mid) 55%, var(--wine-dark) 100%);
  --champagne-gradient: linear-gradient(90deg, #905e3a 0%, var(--champagne-light) 50%, #905e3a 100%);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; }

/* ── Utility ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Champagne divider line ── */
.gold-line {
  width: 56px;
  height: 3px;
  background: var(--champagne-gradient);
  border-radius: 2px;
  margin: 1rem auto;
}

/* ── SVG icon sizing inside icon containers ── */
.service-icon svg,
.why-icon svg {
  display: block;
}
.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--champagne-light);
}
.why-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--champagne-light);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--champagne);
  color: var(--wine-dark);
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--champagne-light);
  color: var(--wine-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196, 154, 108, 0.35);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* Light variant for non-hero contexts */
.btn-outline-wine {
  display: inline-block;
  background: transparent;
  color: var(--wine);
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  border: 2px solid var(--wine);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline-wine:hover {
  background: var(--wine);
  color: var(--white);
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.site-nav {
  background: var(--wine);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(58, 24, 41, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  /*line-height: 1;*/
}
.nav-logo-img {
  height: 140px;
  width: 220px;
  object-fit: contain;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--champagne-light);
}

/* Right cluster: lang + hamburger */
.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-toggle { display: flex; gap: 0.35rem; }
.lang-btn {
  background: transparent;
  border: 1.5px solid rgba(196, 154, 108, 0.5);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--wine-dark);
  border-color: var(--champagne);
  color: var(--champagne-light);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--champagne-light);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--wine-dark);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(196, 154, 108, 0.15);
}
.nav-drawer a {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(196, 154, 108, 0.1);
}
.nav-drawer a.active,
.nav-drawer a:hover { color: var(--champagne-light); }
.nav-drawer.open { display: flex; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.page-hero {
  background: var(--wine-gradient-h);
  color: var(--white);
  padding: 7rem 1.5rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(196,154,108,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.page-hero .eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne-light);
  margin-bottom: 1.2rem;
  position: relative;
}
.page-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  position: relative;
}
.page-hero h1 .accent {
  background: var(--champagne-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero .sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  opacity: 0.88;
  line-height: 1.78;
  position: relative;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   SECTION TITLES
════════════════════════════════════════ */
.section-title { text-align: center; margin-bottom: 3.5rem; }
.section-title .eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}
.section-title h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--wine);
  margin-bottom: 0.75rem;
}
.section-title p {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   TRUST STRIP
════════════════════════════════════════ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 1.5rem;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.trust-badge {
  color: var(--wine);
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: default;
}
.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--champagne);
  opacity: 0.5;
}
@media (max-width: 480px) {
  .trust-divider { display: none; }
  .trust-inner   { gap: 0.6rem 1.2rem; }
}

/* ════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════ */
.services-section {
  background: var(--rose-bg);
  padding: 5.5rem 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(85, 39, 60, 0.07);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--champagne-gradient);
  border-radius: 18px 18px 0 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(85, 39, 60, 0.14);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.service-icon {
  width: 58px;
  height: 58px;
  background: var(--wine-gradient);
  box-shadow: 0 4px 16px rgba(85, 39, 60, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.22rem;
  color: var(--wine);
  line-height: 1.3;
}
.service-card > p {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.72;
}

/* ════════════════════════════════════════
   WHY US SECTION
════════════════════════════════════════ */
.why-section { padding: 5.5rem 1.5rem; background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 14px;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: default;
}
.why-card:hover {
  background: var(--rose-pale);
  box-shadow: 0 4px 20px rgba(85, 39, 60, 0.06);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--wine-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(85, 39, 60, 0.22);
}

.why-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: var(--wine);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.why-card p { color: var(--grey); font-size: 0.9rem; line-height: 1.6; }

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
  background: var(--wine);
  color: var(--white);
  text-align: center;
  padding: 5.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(196,154,108,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
  position: relative;
}
.cta-banner h2 .accent {
  background: var(--champagne-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-banner > p {
  opacity: 0.88;
  margin-bottom: 2.2rem;
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-banner .hero-actions { position: relative; }

/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */
.story-section { padding: 5.5rem 1.5rem; background: var(--white); }

.about-layout {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 780px;
  margin: 0 auto;
}

.about-story .eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}
.about-story h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--wine);
  margin-bottom: 0.25rem;
}
.about-story p {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.about-story p:last-child { margin-bottom: 0; }

.about-team .eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.25rem;
  display: block;
}
.about-team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 600px) {
  .about-team-cards { grid-template-columns: 1fr; }
}

.qa-consulting-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--champagne);
  background: var(--rose-pale);
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.qa-consulting-note p {
  color: var(--grey);
  font-size: 0.88rem;
  margin: 0;
}
.qa-consulting-note a {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--wine);
  text-decoration: none;
  white-space: nowrap;
}
.qa-consulting-note a:hover { color: var(--champagne); }

.about-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--champagne);
  text-decoration: none;
  transition: opacity 0.2s;
}
.about-linkedin-link:hover { opacity: 0.75; }
.about-linkedin-link svg { width: 14px; height: 14px; flex-shrink: 0; }

.about-consultant-link {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wine);
  text-decoration: none;
  transition: opacity 0.2s;
}
.about-consultant-link:hover { opacity: 0.7; }

.team-section { padding: 5.5rem 1.5rem; background: var(--rose-bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 680px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2.75rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(85, 39, 60, 0.08);
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.team-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--champagne-gradient);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--wine-gradient);
  border: 3px solid var(--champagne);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  color: var(--champagne-light);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.team-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: var(--wine);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.team-card .role {
  color: var(--champagne);
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.85rem;
}
.team-card p { color: var(--grey); font-size: 0.9rem; line-height: 1.65; }

.values-section { padding: 5.5rem 1.5rem; background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.value-card {
  background: var(--rose-pale);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.value-card:hover {
  border-color: var(--wine);
  background: var(--white);
  box-shadow: 0 6px 24px rgba(85, 39, 60, 0.1);
}
.value-card .val-icon {
  width: 48px;
  height: 48px;
  background: var(--wine-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  box-shadow: 0 3px 12px rgba(85, 39, 60, 0.2);
}
.value-card .val-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--champagne-light);
  display: block;
}
.value-card h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: var(--wine);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.value-card p { color: var(--grey); font-size: 0.85rem; line-height: 1.6; }

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-section { padding: 5.5rem 1.5rem; background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: var(--wine);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--wine-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--champagne-light);
  display: block;
}
.contact-text strong {
  display: block;
  color: var(--wine);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.contact-text span,
.contact-text a {
  color: var(--grey);
  font-size: 0.93rem;
  line-height: 1.6;
}
.contact-text a:hover { color: var(--wine); }

.contact-services-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--rose-pale);
  border-radius: 14px;
  border-left: 4px solid var(--champagne);
}
.contact-services-box p {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--wine);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.75rem;
}
.contact-services-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-services-box li {
  color: var(--grey);
  font-size: 0.88rem;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.55;
}
.contact-services-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--champagne);
}

.contact-form {
  background: var(--white);
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(85, 39, 60, 0.1);
  border: 1.5px solid var(--border);
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--wine);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(196, 154, 108, 0.18);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--champagne);
  color: var(--wine-dark);
  padding: 0.95rem 2rem;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-submit-btn:hover {
  background: var(--champagne-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 154, 108, 0.3);
}
.form-submit-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--wine-dark);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem;
}
.form-success .success-icon {
  width: 56px;
  height: 56px;
  background: var(--wine-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.form-success .success-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--champagne-light);
  display: block;
}
.form-success h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: var(--wine);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--grey); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--wine-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-img {
  height: 200px;
  width: auto;
  display: block;
}
.about-logo-img {
  height: 160px;
  width: auto;
  display: block;
  margin: 0 auto 1.5rem;
  
}
.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.72;
  line-height: 1.7;
  max-width: 260px;
}
@media (max-width: 768px) {
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  color: var(--champagne-light);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}
.footer-col-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--champagne);
  margin: 1rem 0 0.4rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  transition: color 0.2s, opacity 0.2s;
}
.footer-col ul li a:hover { color: var(--champagne-light); }

.footer-bottom {
  border-top: 1px solid rgba(196, 154, 108, 0.18);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.5;
  max-width: 1100px;
  margin: 0 auto;
}

/* ════════════════════════════════════════
   LEGAL PAGES (disclaimer, privacy)
════════════════════════════════════════ */
.legal-page {
  min-height: 100vh;
  background: var(--rose-bg);
  padding: 5rem 1.5rem 4rem;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wine);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: opacity 0.2s;
}
.legal-back:hover { opacity: 0.7; }
.legal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.legal-header-text { flex: 1; }
.legal-logo {
  height: 120px;
  width: auto;
  flex-shrink: 0;
}
.legal-page h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--wine);
  margin-bottom: 0.5rem;
}
.legal-subtitle {
  font-size: 0.88rem;
  color: var(--grey);
  margin: 0.4rem 0 0;
}
.legal-page h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 0.6rem;
}
.legal-page p,
.legal-page li {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.78;
  margin-bottom: 0.5rem;
}
.legal-page ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.legal-page a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page a:hover { opacity: 0.7; }
.legal-placeholder {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
  font-size: 0.82rem;
  font-style: italic;
  color: #856404;
}

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.65s ease both; }
.fade-up-1 { animation: fadeUp 0.65s 0.15s ease both; }
.fade-up-2 { animation: fadeUp 0.65s 0.30s ease both; }
.fade-up-3 { animation: fadeUp 0.65s 0.45s ease both; }

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal:nth-child(2) { transition-delay: 0.12s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.24s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.36s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.48s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.60s; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
/* Drawer lang toggle (mobile drawer only) */
.drawer-lang {
  display: none;
  gap: 0.5rem;
  padding: 0.85rem 0 0.25rem;
  border-top: 1px solid rgba(196, 154, 108, 0.15);
  margin-top: 0.25rem;
}
.nav-drawer.open .drawer-lang { display: flex; }

@media (max-width: 768px) {
  .nav-links      { display: none; }
  .hamburger      { display: flex; }
  .lang-toggle    { display: none; }
  .footer-grid    { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .page-hero      { padding: 5rem 1.5rem 4rem; }
  .contact-form   { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .hero-actions   { flex-direction: column; align-items: center; }
  .team-grid      { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════
   CONSULTANT PAGE
════════════════════════════════════════ */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196, 154, 108, 0.15);
  border: 1px solid rgba(196, 154, 108, 0.4);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne-light);
  margin-bottom: 1.5rem;
  cursor: default;
}
.availability-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.consultant-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0A66C2;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-linkedin svg { width: 16px; height: 16px; fill: var(--white); flex-shrink: 0; }
.btn-linkedin:hover {
  background: #004182;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 102, 194, 0.35);
}

/* Stats strip */
.profile-stats {
  background: var(--white);
  padding: 2.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--wine);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.76rem;
  color: var(--grey);
  margin-top: 0.3rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Skills & Tools */
.skills-section { background: var(--rose-bg); padding: 5rem 1.5rem; }
.skill-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}
.skill-group {
  background: var(--white);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1.5px solid var(--border);
}
.skill-group h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wine);
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.skill-tag {
  background: var(--rose-pale);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
  cursor: default;
}
.skill-tag:hover { border-color: var(--champagne); background: var(--white); }
.skill-tag.highlight {
  background: var(--wine);
  color: var(--champagne-light);
  border-color: var(--wine);
  font-weight: 700;
}

/* Experience timeline */
.experience-section { background: var(--white); padding: 5rem 1.5rem; }
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 1.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 2.5rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -6px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--champagne);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--champagne);
}
.timeline-item.current .timeline-dot {
  background: var(--wine);
  box-shadow: 0 0 0 2px var(--wine);
}
.timeline-period {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.2rem;
}
.timeline-item.current .timeline-period { color: var(--wine); }
.timeline-role {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: var(--wine);
  font-size: 1rem;
  margin-bottom: 0.15rem;
  line-height: 1.35;
}
.timeline-company {
  font-size: 0.86rem;
  color: var(--grey);
  margin-bottom: 0.55rem;
  font-style: italic;
}
.timeline-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.55rem;
}
.timeline-bullets li {
  font-size: 0.86rem;
  color: var(--text);
  padding-left: 1rem;
  position: relative;
  line-height: 1.55;
}
.timeline-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--champagne);
}
.timeline-tools {
  font-size: 0.76rem;
  color: var(--grey);
  background: var(--rose-pale);
  border-radius: 6px;
  padding: 4px 10px;
  display: inline-block;
  line-height: 1.5;
}
.timeline-tools strong { color: var(--wine); font-weight: 700; }

/* Certifications & Education */
.cert-section { background: var(--rose-bg); padding: 5rem 1.5rem; }
.cert-edu-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}
.cert-list { display: flex; flex-direction: column; gap: 0.75rem; }
.cert-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cert-card:hover {
  border-color: var(--wine);
  box-shadow: 0 4px 16px rgba(85, 39, 60, 0.08);
}
.cert-icon {
  width: 36px;
  height: 36px;
  background: var(--wine-gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cert-icon svg { width: 18px; height: 18px; stroke: var(--champagne-light); display: block; }
.cert-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--wine);
  font-size: 0.87rem;
  line-height: 1.3;
  margin-bottom: 0.1rem;
}
.cert-date { font-size: 0.74rem; color: var(--grey); }

.edu-block {
  background: var(--white);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1.5px solid var(--border);
}
.edu-block h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wine);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.edu-item { margin-bottom: 1rem; }
.edu-item:last-child { margin-bottom: 0; }
.edu-degree {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--wine);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}
.edu-school { font-size: 0.82rem; color: var(--grey); }

/* Sectors */
.sectors-section { background: var(--white); padding: 4rem 1.5rem; }
.sector-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  max-width: 700px;
  margin: 0 auto;
}
.sector-tag {
  background: var(--rose-pale);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 0.5rem 1.25rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--wine);
  cursor: default;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.sector-tag:hover {
  border-color: var(--wine);
  background: var(--white);
  box-shadow: 0 2px 10px rgba(85, 39, 60, 0.08);
}

@media (max-width: 768px) {
  .stats-inner { gap: 2rem; }
  .cert-edu-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .stat-value { font-size: 2rem; }
  .consultant-links { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.how-section {
  background: var(--wine);
  padding: 5.5rem 1.5rem;
}
.how-section .eyebrow { color: var(--champagne-light); }
.how-section .section-title h2 {
  color: var(--white);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 2.1rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(196,154,108,0.35);
  z-index: 0;
}
.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-number {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: var(--wine);
  border: 2px solid rgba(196,154,108,0.6);
  color: var(--champagne);
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 2;
}
.how-step h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
}
.how-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
}
@media (max-width: 768px) {
  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-steps::before { display: none; }
}
@media (max-width: 480px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   SERVICES PAGE — PLANS
════════════════════════════════════════ */
.plans-section {
  background: var(--rose-bg);
  padding: 5.5rem 1.5rem;
}

.domain-note {
  max-width: 960px;
  margin: -1rem auto 3rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--champagne);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  color: var(--grey);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.6;
}
.domain-note svg {
  width: 18px;
  height: 18px;
  stroke: var(--champagne);
  flex-shrink: 0;
  margin-top: 1px;
}
.domain-note strong { color: var(--wine); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1060px;
  margin: 0 auto;
  align-items: stretch;
}

.plan-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 4px 20px rgba(85, 39, 60, 0.07);
  border: 1.5px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.plan-card:hover {
  box-shadow: 0 12px 36px rgba(85, 39, 60, 0.13);
  transform: translateY(-4px);
}
.plan-card.plan-highlighted {
  border-color: var(--wine);
  box-shadow: 0 8px 32px rgba(85, 39, 60, 0.16);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wine-gradient);
  color: var(--champagne-light);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.plan-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--wine);
}
.plan-tagline {
  color: var(--grey);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.plan-users {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--rose-pale);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.76rem;
  color: var(--wine);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.plan-users svg {
  width: 13px;
  height: 13px;
  stroke: var(--wine);
}

.plan-price { margin-bottom: 0.25rem; }
.plan-price .currency {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--wine);
  vertical-align: super;
  line-height: 1;
}
.plan-price .amount {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--wine);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.plan-price .period {
  font-size: 0.88rem;
  color: var(--grey);
  font-weight: 500;
}
.plan-price-contact {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 0.25rem;
}
.price-vat {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.05em;
  vertical-align: super;
  margin-left: 0.2rem;
}
.plans-terms {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 2rem;
  opacity: 0.8;
}
.plan-setup {
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 1.4rem;
}
.plan-setup strong { color: var(--text); font-weight: 600; }

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 1.25rem;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}
.plan-feature svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.plan-feature.included svg { stroke: var(--champagne); }
.plan-feature.excluded {
  color: var(--grey);
  opacity: 0.6;
}
.plan-feature.excluded svg { stroke: var(--grey); }

.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
}

.btn-plan-select {
  display: block;
  width: 100%;
  background: var(--champagne);
  color: var(--wine-dark);
  padding: 0.8rem 1.25rem;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.btn-plan-select:hover {
  background: var(--champagne-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 154, 108, 0.35);
}

.btn-plan-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  background: transparent;
  color: var(--wine);
  padding: 0.72rem 1.25rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.btn-plan-info svg {
  width: 14px;
  height: 14px;
  stroke: var(--wine);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.btn-plan-info:hover { border-color: var(--wine); background: var(--rose-pale); }
.btn-plan-info.open svg { transform: rotate(180deg); }

.plan-details {
  display: none;
  border-top: 1px solid var(--border);
  margin-top: 1.1rem;
  padding-top: 1.1rem;
}
.plan-details.open { display: block; }

.plan-detail-block { margin-bottom: 0.85rem; }
.plan-detail-block:last-child { margin-bottom: 0; }
.plan-detail-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.plan-detail-text {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.65;
}

.plans-footer-note {
  max-width: 960px;
  margin: 2.5rem auto 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--wine);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.87rem;
  color: var(--grey);
  line-height: 1.7;
}
.plans-footer-note strong { color: var(--wine); }

/* ════════════════════════════════════════
   SERVICES PAGE — ONE-SHOT
════════════════════════════════════════ */
.oneshot-section {
  background: var(--white);
  padding: 5.5rem 1.5rem;
}

.oneshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.oneshot-card {
  background: var(--rose-pale);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.oneshot-card:hover {
  border-color: var(--wine);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(85, 39, 60, 0.1);
}

.oneshot-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.oneshot-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--wine-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(85, 39, 60, 0.2);
}
.oneshot-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--champagne-light);
  display: block;
}
.oneshot-header-text { display: flex; flex-direction: column; gap: 0.15rem; }

.oneshot-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: var(--wine);
  font-size: 1.05rem;
  margin: 0;
}
.oneshot-price {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--champagne);
  margin: 0;
  line-height: 1;
}
.oneshot-price span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--grey);
}
.oneshot-desc {
  color: var(--grey);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.oneshot-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.oneshot-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
}
.oneshot-features li svg {
  width: 14px;
  height: 14px;
  stroke: var(--champagne);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ════════════════════════════════════════
   RESPONSIVE — SERVICES PAGE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .plans-grid,
  .oneshot-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .plan-card { padding: 1.75rem 1.25rem; }
  .oneshot-card { padding: 1.75rem 1.25rem; }
}

/* ════════════════════════════════════════
   AUDIENCE SPLIT — homepage hero
════════════════════════════════════════ */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.hero-price-hint {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.01em;
  margin: 0;
}

/* ════════════════════════════════════════
   SINGLE-PAGE LAYOUT — SCROLL OFFSET
════════════════════════════════════════ */
section[id] {
  scroll-margin-top: 80px;
}

/* Team grid rendered inside story-section on single-page layout */
.story-section .team-grid {
  margin-top: 0;
}
.story-section .team-grid .team-card {
  background: var(--rose-pale);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .fade-up, .fade-up-1, .fade-up-2, .fade-up-3 {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}
