/* ─────────────────────────────────────────
   VideoQraft — Main Stylesheet
   Fonts:  Bricolage Grotesque (headings) · DM Sans (body)
   Colors: --orange #ff6900 · --green #1AAD64
           --ink #111 · --body #2C2C2C · --muted #6B6B6B
           --border #E8E4DC · --bg #FDFCFA · --bg-alt #F5F2EC
───────────────────────────────────────── */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: #2C2C2C; background: #FDFCFA; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4 { font-family: 'Bricolage Grotesque', sans-serif; color: #111; line-height: 1.08; letter-spacing: -0.03em; }

/* ─── UTILS ─── */
.container { max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem; }
.eyebrow { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #767676; margin-bottom: 0.6rem; }
.highlight { color: #ff6900; }
.link { font-size: 0.875rem; font-weight: 600; color: #111; border-bottom: 1.5px solid #111; padding-bottom: 1px; transition: color .2s, border-color .2s; display: inline; }
.link:hover { color: #ff6900; border-color: #ff6900; }
.tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #767676; background: #F5F2EC; border: 1px solid #E8E4DC; border-radius: 999px; padding: .2rem .7rem; }
.required { color: #ff6900; }
.optional { color: #8a8a8a; font-size: 0.8em; font-weight: 400; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }

.animate-up    { animation: fadeUp 0.7s cubic-bezier(.22,1,.36,1) both; }
.animate-right { animation: slideInRight 0.7s cubic-bezier(.22,1,.36,1) both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .36s; }
.delay-4 { animation-delay: .5s; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 600; padding: .8rem 1.6rem; border-radius: 8px; transition: all .2s ease; cursor: pointer; white-space: nowrap; }
.btn--full { width: 100%; }
.btn--primary { background: #ff6900; color: #fff; border: 2px solid #ff6900; box-shadow: 0 2px 12px rgba(255,105,0,.25); }
.btn--primary:hover { background: #e05a00; border-color: #e05a00; box-shadow: 0 4px 20px rgba(255,105,0,.35); transform: translateY(-1px); }
.btn--outline { background: transparent; color: #111; border: 2px solid #E8E4DC; }
.btn--outline:hover { background: #111; color: #fff; border-color: #111; transform: translateY(-1px); }
.btn--outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.25); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: #767676; border: 2px solid transparent; font-size: .85rem; }
.btn--ghost:hover { color: #111; }
.btn--cta { background: #fff; color: #ff6900; border: 2px solid #fff; box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn--cta:hover { background: #f0f0f0; border-color: #f0f0f0; transform: translateY(-1px); }

/* ─── LOGO ─── */
.logo { display: inline-flex; align-items: center; gap: 2px; font-family: 'Bricolage Grotesque', sans-serif; text-decoration: none; line-height: 1; }
.logo__video { font-size: 1.3rem; font-weight: 300; color: #111; letter-spacing: 0.01em; }
.logo__q-badge {
  display: inline-flex; align-items: center; justify-content: center;
  /* No background — the Q SVG IS the icon shape */
  margin: 0 5px; flex-shrink: 0;
}
.logo__q-svg { display: block; }
.logo__raft { font-size: 1.3rem; font-weight: 800; color: #111; letter-spacing: -0.02em; }
.logo--footer .logo__video { color: #fff; }
.logo--footer .logo__raft  { color: #fff; }

/* ─── HEADER ─── */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(253,252,250,.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid #E8E4DC; }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav__list { display: flex; align-items: center; gap: 2.25rem; }
.nav__list a { font-size: .875rem; font-weight: 500; color: #444; transition: color .2s; }
.nav__list a:hover { color: #ff6900; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; width: 36px; }
.nav__toggle span { display: block; height: 2px; background: #111; border-radius: 2px; transition: all .3s; }
.nav--open .nav__list { display: flex; flex-direction: column; position: fixed; inset: 64px 0 0 0; background: #FDFCFA; padding: 2rem 1.5rem; gap: 1.5rem; z-index: 99; align-items: flex-start; border-top: 1px solid #E8E4DC; }
.nav--open .nav__list a { font-size: 1.15rem; font-weight: 600; }

/* ─── HERO ─── */
.hero { background: #EDF9EE; padding: 5.5rem 0 4.5rem; overflow: hidden; position: relative; }
.hero::after { content: ''; position: absolute; top: -20%; right: -8%; width: 50%; height: 130%; background: radial-gradient(ellipse, rgba(255,105,0,.06) 0%, transparent 65%); pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero__media { display: flex; justify-content: center; align-items: flex-start; }
.hero__content h1 { font-size: clamp(2.6rem, 5.5vw, 4.25rem); font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -0.04em; }
.hero__content h1 em { font-style: normal; color: #ff6900; }
.hero__lead { font-size: 1.05rem; color: #444; margin-bottom: .75rem; line-height: 1.75; }
.hero__sub  { font-size: .95rem; color: #666; margin-bottom: .25rem; }
.hero__free { font-size: .95rem; margin-bottom: 1.25rem; }
.hero__checks { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 2rem; }
.hero__checks li { font-size: .875rem; font-weight: 500; color: #1AAD64; }
.hero__cta { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.hero__example { font-size: .875rem; font-weight: 600; color: #444; display: flex; align-items: center; gap: .35rem; transition: color .2s; }
.hero__example:hover { color: #ff6900; }

/* Slider */
.slider { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 3/4; width: 100%; max-width: 440px; background: #F5F2EC; box-shadow: 0 32px 72px rgba(0,0,0,.13), 0 4px 16px rgba(0,0,0,.06); }
.slider__track { display: flex; height: 100%; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.slider__item { min-width: 100%; height: 100%; }
.slider__item img,
.slider__item video { width: 100%; height: 100%; object-fit: cover; display: block; }
.slider__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.slider__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; transition: background .2s, transform .2s; border: none; }
.slider__dot--active { background: #fff; transform: scale(1.4); }

/* ─── INLINE UPLOAD FORM ─── */
.upload-form {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s cubic-bezier(.4,0,.2,1), opacity .35s ease, margin .4s ease;
  margin-top: 0;
}
.upload-form.is-open {
  max-height: 900px;
  opacity: 1;
  margin-top: 1.5rem;
}
.upload-form__intro {
  font-size: .95rem;
  color: #444;
  line-height: 1.7;
  padding: 1.25rem 1.5rem;
  background: rgba(255,105,0,.06);
  border-left: 3px solid #ff6900;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}
.upload-form__fields { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: #111; }
.form-group input,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: #111;
  background: #fff;
  border: 1.5px solid #E8E4DC;
  border-radius: 8px;
  padding: .75rem 1rem;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: #ff6900; box-shadow: 0 0 0 3px rgba(255,105,0,.12); }
.form-group textarea { resize: vertical; min-height: 80px; }

/* File upload */
.file-upload { display: block; cursor: pointer; }
.file-upload input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file-upload__face {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
  border: 2px dashed #E8E4DC; border-radius: 10px; padding: 1.75rem 1rem;
  background: #FDFCFA; color: #767676; font-size: .875rem; text-align: center;
  transition: border-color .2s, background .2s;
}
.file-upload:hover .file-upload__face,
.file-upload__face.has-file { border-color: #ff6900; background: rgba(255,105,0,.04); color: #ff6900; }
.file-upload__face svg { color: #8a8a8a; transition: color .2s; }
.file-upload:hover .file-upload__face svg { color: #ff6900; }
.file-upload__hint { font-size: .75rem; color: #bbb; }

.form-group--actions { flex-direction: row; gap: .75rem; align-items: center; margin-top: .5rem; }
.form-note { font-size: .75rem; color: #8a8a8a; text-align: center; }
.form-note a { color: #767676; border-bottom: 1px solid #ddd; }

/* ─── SERVICES ─── */
.services { padding: 6rem 0; background: #FDFCFA; }
.services__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid #E8E4DC;
  gap: 2rem;
}
.services__header h2 { font-size: clamp(2.25rem, 4.5vw, 3.25rem); font-weight: 800; }
.services__header h2 em { font-style: normal; color: #ff6900; }
.services__header-sub { font-size: .95rem; color: #666; max-width: 240px; text-align: right; line-height: 1.6; flex-shrink: 0; }

/* Service cards — mobile first */
.services__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

.service-card { background: #fff; border: 1px solid #E8E4DC; border-radius: 16px; overflow: hidden; transition: box-shadow .25s, transform .25s; }
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-3px); }

.service-card__media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #F5F2EC; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.service-card:hover .service-card__media img { transform: scale(1.04); }
.service-card__num {
  position: absolute; bottom: .75rem; left: .75rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem; font-weight: 800; color: rgba(255,255,255,.9);
  line-height: 1; letter-spacing: -0.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.service-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.service-card__body .tag { margin-bottom: .1rem; }
.service-card__body h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; }
.service-card__body p { font-size: .875rem; color: #666; line-height: 1.7; }
.service-card__body .link { margin-top: .25rem; }

/* ─── STATEMENT ─── */
.statement { padding: 4.5rem 0 2.5rem; background: #FDFCFA; border-top: 1px solid #E8E4DC; }
.statement__inner { text-align: center; max-width: 700px; margin-inline: auto; }
.statement__heading { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; letter-spacing: -.04em; color: #111; line-height: 1.08; }
.statement__heading em { font-style: normal; color: #ff6900; }

/* ─── GALLERY ─── */
.gallery { background: #FDFCFA; }
.gallery__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.gallery__item { overflow: hidden; aspect-ratio: 3/4; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__footer { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; padding: 3.5rem 0 3rem; text-align: center; border-bottom: 1px solid #E8E4DC; }
.gallery__tagline { font-size: 1rem; color: #666; line-height: 1.7; max-width: 440px; }

/* ─── ANCHOR TABS ─── */
.anchor-tabs { border-bottom: 1px solid #E8E4DC; background: rgba(253,252,250,.96); backdrop-filter: blur(8px); position: sticky; top: 64px; z-index: 90; }
.anchor-tabs__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.anchor-tab { display: flex; align-items: center; justify-content: center; padding: 1.15rem 1rem; font-size: .9rem; font-weight: 600; color: #767676; white-space: nowrap; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; text-align: center; }
.anchor-tab:hover, .anchor-tab.active { color: #111; border-bottom-color: #ff6900; }

/* ─── SPLIT SECTIONS ─── */
.split { padding: 6rem 0; background: #FDFCFA; }
.split--alt { background: #F5F2EC; }
.split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split__inner--reverse { direction: rtl; }
.split__inner--reverse > * { direction: ltr; }
.split__content h2 { font-size: clamp(2rem,3.5vw,2.75rem); font-weight: 800; margin-bottom: 1.25rem; }
.split__content p { color: #666; margin-bottom: 1rem; font-size: .95rem; line-height: 1.75; }
.split__content em { color: #111; font-style: italic; }
.split__media img { width: 100%; border-radius: 16px; object-fit: cover; }

.feature-block { display: flex; gap: 1rem; align-items: flex-start; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid #E8E4DC; }
.feature-block__icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,105,0,.08); display: flex; align-items: center; justify-content: center; color: #ff6900; }
.feature-block h4 { font-size: .95rem; font-weight: 700; color: #111; margin-bottom: .4rem; letter-spacing: -.01em; }
.feature-block p { font-size: .875rem; color: #666; margin: 0; }

.product-showcase { position: relative; border-radius: 16px; overflow: hidden; }
.product-showcase img { width: 100%; border-radius: 16px; }
.product-showcase__caption { position: absolute; bottom: 1.25rem; left: 1.25rem; background: rgba(253,252,250,.95); backdrop-filter: blur(8px); border-radius: 10px; padding: .65rem .9rem; font-size: .8rem; display: flex; flex-direction: column; gap: .1rem; border: 1px solid #E8E4DC; }
.product-showcase__caption strong { color: #111; }
.product-showcase__caption span { color: #767676; }

/* ─── STATS — dark ─── */
.stats { background: #111; padding: 6rem 0; position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; top: -30%; left: -10%; width: 50%; height: 160%; background: radial-gradient(ellipse, rgba(255,105,0,.08) 0%, transparent 65%); pointer-events: none; }
.stats__inner { position: relative; z-index: 1; }
.stats__eyebrow { color: #555; }
.stats__headline { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.stats__sub { font-size: .95rem; color: #666; max-width: 480px; margin-bottom: 3.5rem; line-height: 1.75; }
.stats__numbers { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid #222; border-radius: 16px; overflow: hidden; }
.stat { padding: 2.5rem; border-right: 1px solid #222; border-bottom: 1px solid #222; }
.stat:nth-child(3n) { border-right: none; }
.stat:nth-child(n+4) { border-bottom: none; }
.stat__number { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(3rem,6vw,5.5rem); font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.05em; margin-bottom: 1rem; }
.stat__number span { color: #ff6900; }
.stat p { font-size: .875rem; color: #555; line-height: 1.6; max-width: 200px; }

/* ─── PROCESS ─── */
.process { padding: 6rem 0; background: #FDFCFA; }
.process__header { text-align: center; max-width: 520px; margin: 0 auto 3.5rem; }
.process__header h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; margin-bottom: .75rem; }
.process__header p { font-size: .95rem; color: #666; }
.process__steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.process__steps::before { content: ''; position: absolute; top: 28px; left: calc(16.66% + 1rem); right: calc(16.66% + 1rem); height: 1px; background: #E8E4DC; z-index: 0; }
.process__step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 2rem; position: relative; z-index: 1; }
.process__step-num { width: 56px; height: 56px; border-radius: 50%; background: #111; color: #fff; font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; border: 3px solid #FDFCFA; box-shadow: 0 0 0 1px #E8E4DC; }
.process__step-num--accent { background: #ff6900; box-shadow: 0 0 0 1px #ff6900, 0 4px 20px rgba(255,105,0,.3); }
.process__step h4 { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; letter-spacing: -.01em; }
.process__step p { font-size: .875rem; color: #666; line-height: 1.7; }

/* ─── QUOTE / FOUNDER ─── */
.quote-section__bg { background-size: cover; background-position: center; padding: 7rem 0; position: relative; }
.quote-section__bg::before { content: ''; position: absolute; inset: 0; background: rgba(8,8,8,.82); }
.quote-section__inner {
  position: relative; z-index: 1;
  max-width: 760px; margin-inline: auto;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
.quote-section__eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #ff6900; margin: 0; }
.quote-section__stat-block { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.quote-section__big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(5.5rem, 14vw, 11rem);
  font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.06em;
}
.quote-section__big em { font-style: normal; color: #ff6900; }
.quote-section__context { font-size: 1rem; color: rgba(255,255,255,.45); letter-spacing: 0; }
.quote-section__rule { width: 3rem; height: 2px; background: rgba(255,255,255,.12); border-radius: 2px; }
.quote-section__blockquote { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.quote-section__blockquote > p {
  font-size: clamp(1rem, 2.2vw, 1.3rem); color: rgba(255,255,255,.75);
  line-height: 1.7; font-style: italic;
}
.quote-section__founder { display: flex; align-items: center; justify-content: center; gap: .85rem; }
.quote-section__founder img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.2); flex-shrink: 0; }
.quote-section__founder div { text-align: left; }
.founder__name { display: block; color: #fff; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: .95rem; }
.founder__title { font-size: .8rem; color: rgba(255,255,255,.4); }

/* ─── PRICING — dark ─── */
.pricing { padding: 6rem 0; background: #111; position: relative; overflow: hidden; }
.pricing::before { content: ''; position: absolute; bottom: -20%; right: -10%; width: 60%; height: 120%; background: radial-gradient(ellipse, rgba(255,105,0,.06) 0%, transparent 65%); pointer-events: none; }
.pricing__title { text-align: center; font-size: clamp(2rem,4vw,3.25rem); font-weight: 800; color: #fff; letter-spacing: -.04em; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.pricing__title span { color: #ff6900; }
.pricing__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; align-items: start; position: relative; z-index: 1; }
.pricing-card { background: #EDF9EE; border: 1px solid #C5EDD4; border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; gap: .75rem; transition: border-color .25s, box-shadow .25s, transform .25s; }
.pricing-card:hover { border-color: #ff6900; box-shadow: 0 8px 32px rgba(255,105,0,.18); transform: translateY(-3px); }
.pricing-card--featured { background: #FDFCFA; border-color: #ff6900; box-shadow: 0 8px 48px rgba(255,105,0,.2); transform: translateY(-8px); }
.pricing-card--featured:hover { border-color: #ff6900; box-shadow: 0 16px 56px rgba(255,105,0,.3); transform: translateY(-11px); }
.pricing-card__badge { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #ff6900; background: rgba(255,105,0,.1); border-radius: 999px; padding: .25rem .75rem; width: fit-content; }
.pricing-card h3 { font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; color: #111; }
.pricing-card__was { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.35rem; font-weight: 700; color: #cc3333; text-decoration: line-through; text-decoration-thickness: 2px; margin-bottom: .1rem; }
.pricing-card .btn--outline:hover { background: #ff6900; border-color: #ff6900; color: #fff; }
.pricing-card__price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 3.25rem; font-weight: 800; color: #111; line-height: 1; letter-spacing: -.05em; }
.pricing-card__desc { font-size: .875rem; color: #555; }
.pricing-card .btn { width: 100%; margin: .5rem 0; }
.pricing-card__features { display: flex; flex-direction: column; gap: .55rem; padding-top: .75rem; border-top: 1px solid #C5EDD4; }
.pricing-card--featured .pricing-card__features { border-color: #E8E4DC; }
.pricing-card__features li { font-size: .875rem; color: #444; display: flex; align-items: center; gap: .6rem; }
.pricing-card--featured .pricing-card__features li { color: #333; }
.pricing-card__features li::before { content: '✓'; color: #1AAD64; font-weight: 700; flex-shrink: 0; }

/* ─── FAQ ─── */
.faq { padding: 6rem 0; background: #FDFCFA; }
.faq__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.faq__header h2 { font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; margin-bottom: .75rem; }
.faq__header p { font-size: .9rem; color: #666; margin-bottom: 1.5rem; line-height: 1.7; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid #E8E4DC; }
.faq__item:first-child { border-top: 1px solid #E8E4DC; }
.faq__item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.35rem 0; font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 700; color: #111; cursor: pointer; letter-spacing: -.01em; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-family: 'DM Sans', sans-serif; font-size: 1.5rem; font-weight: 300; color: #767676; flex-shrink: 0; line-height: 1; }
.faq__item[open] summary::after { content: '−'; }
.faq__answer { padding-bottom: 1.35rem; }
.faq__answer p { font-size: .9rem; color: #666; margin-bottom: .5rem; line-height: 1.75; }

/* ─── BLOG ─── */
.blog { padding: 6rem 0; background: #F5F2EC; }
.blog__header { margin-bottom: 2.5rem; }
.blog__header h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; letter-spacing: -.03em; }
.blog__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.blog-card { background: #FDFCFA; border-radius: 16px; overflow: hidden; border: 1px solid #E8E4DC; transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); transform: translateY(-3px); }
.blog-card__img-link { display: block; overflow: hidden; aspect-ratio: 16/10; }
.blog-card__img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.blog-card:hover .blog-card__img-link img { transform: scale(1.06); }
.blog-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.blog-card h3 { font-size: .9rem; font-weight: 700; color: #111; line-height: 1.4; letter-spacing: -.01em; }
.blog-card h3 a { transition: color .2s; }
.blog-card h3 a:hover { color: #ff6900; }
.blog-card__meta { font-size: .78rem; color: #767676; }

/* ─── FOOTER ─── */
.footer { background: #111; color: #fff; }
.footer__cta-band { background: #ff6900; padding: 5rem 0; position: relative; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%); margin-bottom: -1px; }
.footer__cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 25% 60%, rgba(255,255,255,.1) 0%, transparent 60%); pointer-events: none; }
.footer__cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; padding-bottom: 3rem; }
.footer__cta-inner h2 { font-size: clamp(2rem,4vw,3.25rem); font-weight: 800; color: #fff; letter-spacing: -.04em; }
.footer__cta-inner p { color: rgba(255,255,255,.75); font-size: .95rem; }
.footer__main { background: #111; padding: 4rem 0 0; }
.footer__main-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer__brand p { font-size: .875rem; color: rgba(255,255,255,.35); margin-top: .75rem; }
.footer__contact h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .75rem; letter-spacing: -.01em; }
.footer__contact p { font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: .3rem; }
.footer__contact a { font-size: .9rem; color: #ff6900; font-weight: 600; }
.footer__contact a:hover { text-decoration: underline; }
.footer__bottom { display: flex; justify-content: flex-end; padding: 1.25rem 0; }
.footer__bottom p { font-size: .8rem; color: rgba(255,255,255,.2); }

/* ─── RESPONSIVE ─── */
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero__inner { gap: 2.5rem; }
  .blog__grid { grid-template-columns: repeat(2,1fr); }
  .gallery__grid { grid-template-columns: repeat(2,1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-3px); }
}

@media (max-width: 768px) {
  .nav__list { display: none; }
  .nav__toggle { display: flex; }

  .hero { padding: 3rem 0 2.5rem; }
  .hero::after { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__media { justify-content: center; }
  .slider { width: 100%; max-width: 100%; aspect-ratio: 4/3; border-radius: 14px; }

  .anchor-tabs__inner { grid-template-columns: repeat(2, 1fr); }
  .anchor-tab { font-size: .82rem; padding: 1rem .75rem; }

  .services__header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .services__header-sub { text-align: left; max-width: 100%; }
  .services__grid { grid-template-columns: 1fr; }

  .split__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .split__inner--reverse { direction: ltr; }

  .stats__numbers { grid-template-columns: repeat(2,1fr); }
  .stat { padding: 1.75rem; border-right: 1px solid #222; border-bottom: 1px solid #222; }
  .stat:nth-child(3n) { border-right: 1px solid #222; }
  .stat:nth-child(n+4) { border-bottom: 1px solid #222; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  .process__steps { grid-template-columns: 1fr; gap: 2rem; }
  .process__steps::before { display: none; }
  .process__step { align-items: flex-start; text-align: left; flex-direction: row; gap: 1.25rem; padding: 0; }
  .process__step-num { flex-shrink: 0; margin-bottom: 0; }

  .faq__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .blog__grid { grid-template-columns: 1fr; }
  .blog__grid .blog-card:nth-child(n+3) { display: none; }

  .footer__main-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery__grid { grid-template-columns: repeat(2,1fr); }
  .quote-section__inner { flex-direction: column; text-align: center; }

  .form-group--actions { flex-direction: column; }
  .form-group--actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { text-align: center; justify-content: center; }
  .stats__numbers { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid #222; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: 1px solid #222; }
  .stat:last-child { border-bottom: none; }
  .gallery__grid { grid-template-columns: repeat(2,1fr); }
}
