/* ============================================================
   DANE DESIGN — styles.css
   Premium UK Web Design Agency
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --black: #0A0A0A;
  --black-soft: #111111;
  --black-card: #161616;
  --lime: #B5FF47;
  --lime-dim: rgba(181, 255, 71, 0.12);
  --white: #FFFFFF;
  --off-white: #F0EDE6;
  --grey-mid: #888888;
  --grey-dark: #444444;
  --red-pain: #FF3B3B;
}

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

/* ---- Base ---- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }
}

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

a {
  color: inherit;
}

ul {
  list-style: none;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--grey-dark);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--grey-mid);
}

/* ---- Scroll Progress Bar ---- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--lime), #78ffd6);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ---- Custom Cursor ---- */
#cursor {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, width 0.3s, height 0.3s, background 0.3s;
}

#cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(181, 255, 71, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, border-color 0.3s;
}

#cursor.hover {
  width: 14px;
  height: 14px;
  background: var(--lime);
}

#cursor-ring.hover {
  width: 48px;
  height: 48px;
  border-color: rgba(181, 255, 71, 0.3);
}

@media (pointer: coarse) {
  #cursor,
  #cursor-ring {
    display: none;
  }
}

/* ---- Screen Reader Only ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Container ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 max(5vw, 1.5rem);
}

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-fast {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reveal-fast.visible {
  opacity: 1;
}

/* ---- Hero line stagger ---- */
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-line:nth-child(1) { transition-delay: 0.1s; }
.hero-line:nth-child(2) { transition-delay: 0.25s; }
.hero-line:nth-child(3) { transition-delay: 0.4s; }

/* ---- Global Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.75em;
  background: var(--lime);
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.25s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #ceff6a;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.75em;
  background: transparent;
  color: var(--off-white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-lime {
  display: inline-block;
  text-align: center;
  padding: 0.9em 1.5em;
  background: var(--lime);
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-lime:hover {
  background: #ceff6a;
  transform: translateY(-2px);
}

.btn-outline {
  display: block;
  text-align: center;
  padding: 0.9em 1.5em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--off-white);
  text-decoration: none;
  border-radius: 3px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  transition: all 0.25s ease;
  cursor: pointer;
  background: transparent;
}

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

/* ---- Section Shared ---- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lime);
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.section-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--grey-mid);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  max-width: 500px;
  line-height: 1.65;
}

.text-lime {
  color: var(--lime);
}

/* ============================================================
   NAVIGATION
   ============================================================ */

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 max(5vw, 1.5rem);
  gap: 2rem;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  transition: color 0.2s;
}

.nav-logo:hover {
  color: var(--white);
}

.logo-accent {
  color: var(--lime);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  margin-left: auto;
}

.nav-links a {
  font-size: 0.88rem;
  color: var(--grey-mid);
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55em 1.25em;
  background: var(--lime);
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #ceff6a;
  transform: translateY(-1px);
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

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

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

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

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--lime);
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.8em 2em;
  background: var(--lime);
  color: var(--black) !important;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem !important;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.25s ease !important;
  margin-top: 1rem;
}

.mobile-cta:hover {
  background: #ceff6a;
  color: var(--black) !important;
}

/* ============================================================
   HERO
   ============================================================ */

#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7rem, 12vw, 10rem) max(5vw, 2rem) clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero-tag {
  display: inline-block;
  border: 1px solid rgba(181, 255, 71, 0.4);
  color: var(--lime);
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 0.4em 0.9em;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 14ch;
}

.hero-line--accent {
  color: var(--lime);
}

.hero-sub {
  color: var(--grey-mid);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.hero-sub strong {
  color: var(--off-white);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

/* ---- Hero Stats ---- */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--lime);
  font-weight: 800;
  line-height: 1;
}

.stat-suffix {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--lime);
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--grey-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--grey-dark);
  flex-shrink: 0;
}

/* ---- Hero Orbs ---- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.hero-orb--1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(circle, rgba(181, 255, 71, 0.07) 0%, transparent 70%);
  top: -10%;
  right: -10%;
  animation: floatOrb1 14s ease-in-out infinite;
}

.hero-orb--2 {
  width: clamp(200px, 35vw, 450px);
  height: clamp(200px, 35vw, 450px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  bottom: -5%;
  left: -5%;
  animation: floatOrb2 18s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -30px) scale(0.97); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(25px, -20px) scale(1.04); }
  70% { transform: translate(-15px, 30px) scale(0.96); }
}

/* ---- Hero Grid Overlay ---- */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

/* ---- Scroll Hint ---- */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: max(5vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  color: var(--grey-mid);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--lime), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
  align-self: flex-end;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* Ensure hero content is above decorative elements */
#hero > *:not(.hero-orb):not(.hero-grid-overlay) {
  position: relative;
  z-index: 1;
}

/* ============================================================
   TRUST BAR
   ============================================================ */

.trust-bar {
  background: var(--black-soft);
  border-top: 1px solid rgba(181, 255, 71, 0.2);
  border-bottom: 1px solid rgba(181, 255, 71, 0.2);
  padding: 1.5rem 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--grey-mid);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.trust-icon {
  color: var(--lime);
  font-size: 0.7rem;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .trust-items {
    justify-content: flex-start;
  }
  .trust-item {
    width: calc(50% - 0.5rem);
  }
}

/* ============================================================
   SERVICES
   ============================================================ */

#services {
  background: var(--black);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.service-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.service-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--grey-dark);
  line-height: 1;
  font-weight: 800;
  padding-top: 0.15em;
  flex-shrink: 0;
}

.service-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.service-desc {
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: clamp(0.92rem, 1.4vw, 1rem);
}

.service-desc:last-of-type {
  margin-bottom: 1.2rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  color: var(--grey-mid);
  font-size: 0.92rem;
  line-height: 1.5;
  padding-left: 0;
}

.service-features li::before {
  content: '✦ ';
  color: var(--lime);
  font-size: 0.6rem;
  vertical-align: middle;
  margin-right: 0.3rem;
}

.service-cta-col {
  padding-top: 0.5rem;
  flex-shrink: 0;
}

.service-link {
  color: var(--lime);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(181, 255, 71, 0.3);
  padding: 0.6em 1.2em;
  border-radius: 2px;
  white-space: nowrap;
  transition: all 0.25s ease;
  display: inline-block;
}

.service-link:hover {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

@media (max-width: 900px) {
  .service-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-num {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 0;
  }

  .service-cta-col {
    padding-top: 0;
  }
}

/* ============================================================
   INTERACTIVE CV
   ============================================================ */

#interactive-cv {
  background: var(--black-soft);
  border-top: 1px solid rgba(181, 255, 71, 0.15);
  border-bottom: 1px solid rgba(181, 255, 71, 0.15);
}

.cv-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) max(5vw, 2rem);
}

/* ---- Pain Half ---- */
.cv-pain {
  position: sticky;
  top: 100px;
  align-self: start;
}

.cv-pain-label {
  display: block;
  color: var(--red-pain);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.cv-pain-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}

.cv-pain p {
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: clamp(0.92rem, 1.4vw, 1rem);
}

.cv-pain-stat {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-left: 3px solid var(--red-pain);
  background: rgba(255, 59, 59, 0.05);
}

.pain-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  color: var(--red-pain);
  line-height: 1;
  display: block;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pain-stat-text {
  color: var(--grey-mid);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---- Solution Half ---- */
.cv-solution-label {
  display: block;
  color: var(--lime);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.cv-solution-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--off-white);
  margin-bottom: 1.5rem;
}

.cv-solution-title em {
  color: var(--lime);
  font-style: normal;
}

.cv-solution > p {
  color: var(--grey-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: clamp(0.92rem, 1.4vw, 1rem);
}

.cv-solution > p strong {
  color: var(--off-white);
  font-weight: 500;
}

/* ---- CV Benefits ---- */
.cv-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cv-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  color: var(--lime);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.cv-benefit strong {
  color: var(--off-white);
  display: block;
  margin-bottom: 0.25rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.cv-benefit p {
  color: var(--grey-mid);
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ---- CV Automation ---- */
.cv-automation {
  background: var(--lime-dim);
  border: 1px solid rgba(181, 255, 71, 0.25);
  border-radius: 4px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
  position: relative;
}

.automation-badge {
  position: absolute;
  top: -0.7rem;
  left: 1.5rem;
  background: var(--lime);
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2em 0.7em;
  border-radius: 2px;
  letter-spacing: 0.05em;
}

.cv-automation h4 {
  color: var(--off-white);
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cv-automation p {
  color: var(--grey-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ---- CV Live Example ---- */
.cv-live-example {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cv-see-it {
  color: var(--grey-mid);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.cv-example-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  gap: 1rem;
}

.cv-example-link:hover {
  border-color: var(--lime);
  background: rgba(181, 255, 71, 0.05);
}

.example-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lime);
  flex-shrink: 0;
}

.example-title {
  color: var(--off-white);
  font-family: 'Syne', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  flex: 1;
}

.example-arrow {
  font-size: 1.4rem;
  color: var(--lime);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .cv-section-inner {
    grid-template-columns: 1fr;
  }

  .cv-pain {
    position: static;
  }
}

/* ============================================================
   PRICING
   ============================================================ */

#pricing {
  background: var(--black);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(3rem, 5vw, 4rem);
}

.pricing-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: clamp(2rem, 3.5vw, 3rem);
  flex: 1;
  min-width: min(100%, 380px);
  max-width: 480px;
  position: relative;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* NO overflow: hidden. NO fixed height. */

.pricing-card--featured {
  border-color: rgba(181, 255, 71, 0.4);
  box-shadow: 0 0 0 1px rgba(181, 255, 71, 0.15),
              0 20px 60px rgba(181, 255, 71, 0.08);
}

.pricing-badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25em 1em;
  border-radius: 2px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.price-plan {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey-mid);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.price-display {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.price-from {
  font-size: 1rem;
  color: var(--grey-mid);
  font-family: 'Syne', sans-serif;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--off-white);
  font-weight: 800;
  line-height: 1;
}

.pricing-card--featured .price-amount {
  color: var(--lime);
}

.price-period {
  font-size: 0.9rem;
  color: var(--grey-mid);
  align-self: flex-end;
  padding-bottom: 0.3rem;
}

.price-summary {
  color: var(--grey-mid);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price-features li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--grey-mid);
  font-size: 0.95rem;
  line-height: 1.5;
}

.price-features li span {
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  color: var(--grey-dark);
  font-size: 0.82rem;
  line-height: 1.65;
  max-width: 680px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: 0 1rem;
}

/* ============================================================
   SOCIAL PROOF
   ============================================================ */

.social-proof {
  background: var(--black-soft);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 0;
}

.testimonial {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: 6px;
  height: auto;
  transition: border-color 0.25s ease;
}

.testimonial:hover {
  border-color: rgba(181, 255, 71, 0.2);
}

.testimonial p {
  color: var(--off-white);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  font-style: italic;
  position: relative;
}

.testimonial p::before {
  content: '"';
  color: var(--lime);
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.6em;
  margin-right: 0.1em;
  font-family: 'Syne', sans-serif;
  font-style: normal;
}

.testimonial footer {
  margin-top: 1.25rem;
}

cite {
  color: var(--grey-mid);
  font-size: 0.85rem;
  font-style: normal;
  display: block;
}

@media (max-width: 900px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT
   ============================================================ */

#contact {
  background: var(--black-soft);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  margin-top: 0.75rem;
}

.contact-info > p {
  color: var(--grey-mid);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  font-size: clamp(0.92rem, 1.4vw, 1rem);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--grey-mid);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--lime);
}

.contact-location {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--grey-mid);
  font-size: 0.95rem;
}

.contact-icon {
  color: var(--lime);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-services-note {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

.contact-services-note > p {
  color: var(--grey-mid);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.contact-services-note ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-services-note li {
  color: var(--grey-mid);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-services-note li::before {
  content: '✦ ';
  color: var(--lime);
  font-size: 0.6rem;
  margin-right: 0.3rem;
  vertical-align: middle;
}

/* ---- Form ---- */
.contact-form-wrapper {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.form-group--full {
  margin-bottom: 1rem;
}

label {
  color: var(--grey-mid);
  font-size: 0.82rem;
  display: block;
  margin-bottom: 0.4rem;
  font-family: 'DM Sans', sans-serif;
}

.optional {
  color: var(--grey-dark);
  font-style: italic;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--off-white);
  padding: 0.8em 1rem;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  margin-top: 0.4rem;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder {
  color: var(--grey-dark);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(181, 255, 71, 0.15);
  outline: none;
}

input.error,
select.error,
textarea.error {
  border-color: var(--red-pain);
  box-shadow: 0 0 0 3px rgba(255, 59, 59, 0.12);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select option {
  background: var(--black-card);
  color: var(--off-white);
}

textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

.btn-submit {
  width: 100%;
  padding: 1em 2em;
  background: var(--lime);
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  margin-top: 1rem;
}

.btn-submit:hover {
  background: #ceff6a;
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

#form-success {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(181, 255, 71, 0.1);
  border: 1px solid rgba(181, 255, 71, 0.3);
  border-radius: 3px;
  color: var(--lime);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.footer-top {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-brand {
  max-width: 280px;
}

.footer-tagline {
  color: var(--grey-mid);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-reg {
  color: var(--grey-dark);
  font-size: 0.78rem;
  margin-top: 0.5rem;
}

.footer-nav {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey-mid);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--grey-dark);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
  line-height: 1.4;
}

.footer-col a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p,
.footer-bottom a {
  color: var(--grey-dark);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--lime);
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

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

  .hamburger {
    display: flex;
  }

  .scroll-hint {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-nav {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }

  .cv-example-link {
    flex-direction: column;
    align-items: flex-start;
  }

  .example-arrow {
    align-self: flex-end;
  }
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== OUR WORK ===================== */
.our-work {
  background: var(--black);
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(3rem, 5vw, 4rem);
  align-items: stretch;
}

/* Work card */
.work-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.work-card:hover {
  border-color: rgba(181, 255, 71, 0.3);
}

.work-card-preview {
  position: relative;
  background: #0e1a12;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.work-card:hover .work-card-overlay { opacity: 1; }

.work-visit-btn {
  background: var(--lime);
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7em 1.5em;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
}
.work-visit-btn:hover { background: #ceff6a; }

/* CSS mockup */
.work-card-mockup {
  width: 100%;
  max-width: 360px;
  background: #111;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.mockup-bar {
  background: #1a1a1a;
  padding: 0.5rem 0.75rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.mockup-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: inline-block;
}
.mockup-bar span:first-child { background: rgba(181,255,71,0.5); }
.mockup-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mockup-line {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  width: 100%;
}
.mockup-line--title {
  height: 14px;
  width: 60%;
  background: rgba(181,255,71,0.2);
}
.mockup-line--short { width: 45%; }
.mockup-blocks {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.mockup-block {
  flex: 1;
  height: 50px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
}

/* Work card info */
.work-card-info {
  padding: clamp(1.5rem, 2.5vw, 2rem);
}
.work-card-meta {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.work-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
  border: 1px solid rgba(181,255,71,0.3);
  padding: 0.2em 0.6em;
  border-radius: 2px;
}
.work-card-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--off-white);
  margin-bottom: 0.6rem;
}
.work-card-desc {
  color: var(--grey-mid);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.work-link {
  color: var(--lime);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  transition: opacity 0.2s;
}
.work-link:hover { opacity: 0.75; }

/* CTA card */
.work-cta-card {
  background: var(--lime-dim);
  border: 1px solid rgba(181,255,71,0.2);
  border-radius: 6px;
  padding: clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.work-cta-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lime);
  font-family: 'Syne', sans-serif;
}
.work-cta-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--off-white);
  line-height: 1.2;
}
.work-cta-card p {
  color: var(--grey-mid);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

/* Interactive CV intro block */
.cv-intro {
  background: var(--black-soft);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.cv-intro-body {
  color: var(--grey-mid);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.8;
  max-width: 780px;
  margin-top: 1.25rem;
}

/* Personal branding → Interactive CV bridge note */
.service-bridge-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--lime-dim);
  border-left: 2px solid var(--lime);
  color: var(--grey-mid);
  font-size: 0.9rem;
  line-height: 1.65;
  border-radius: 0 3px 3px 0;
}
.inline-link {
  color: var(--lime);
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.inline-link:hover { opacity: 0.75; }

/* ===================== PITCH EXAMPLES ===================== */
.pitch-examples {
  margin: 1.75rem 0;
}
.pitch-examples-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
  margin-bottom: 1rem;
}
.pitch-example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pitch-example {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 1.1rem 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  transition: border-color 0.25s ease;
}
.pitch-example:hover {
  border-color: rgba(181,255,71,0.2);
}
.pitch-example-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pitch-example strong {
  display: block;
  color: var(--off-white);
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}
.pitch-example p {
  color: var(--grey-mid);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

@media (max-width: 640px) {
  .pitch-example-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== FAQ ===================== */
#faq {
  background: var(--black-soft);
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.faq-list {
  max-width: 820px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  text-align: left;
  color: var(--off-white);
  font-family: 'Syne', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 700;
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: var(--lime);
}
.faq-question[aria-expanded="true"] {
  color: var(--lime);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--off-white);
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transition: background 0.2s ease, transform 0.35s ease, opacity 0.25s ease;
}
.faq-icon::before {
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon {
  border-color: var(--lime);
  transform: rotate(45deg);
}
.faq-question[aria-expanded="true"] .faq-icon::before,
.faq-question[aria-expanded="true"] .faq-icon::after {
  background: var(--lime);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer.open {
  max-height: 600px;
}
.faq-answer p {
  color: var(--grey-mid);
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.8;
  padding-bottom: 1.5rem;
}

#form-error {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,59,59,0.08);
  border: 1px solid rgba(255,59,59,0.3);
  border-radius: 3px;
  color: #ff6b6b;
  font-size: 0.9rem;
}
