/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }

/* === TOKEN === */
:root {
  --bg: #fbfaf7;
  --bg-alt: #f4f1ea;
  --bg-dark: #15151a;
  --ink: #1a1a1f;
  --ink-soft: #5a5a66;
  --ink-mute: #8b8b95;
  --line: #e9e5dd;
  --accent: #d4502a;
  --accent-dark: #b03e1d;
  --accent-soft: #fef0e9;
  --gold: #c9a96e;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 2px 8px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.06), 0 12px 32px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-sm: 8px;
  --container: 1200px;
  --serif: 'Fraunces', Georgia, serif;
}

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.section { padding: 110px 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--cta { background: var(--bg-dark); color: #fff; padding: 90px 0; }

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

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.section__head--light { color: #fff; }
.section__head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}
.section__head p {
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.section__head--light p { color: rgba(255,255,255,.7); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: 100px;
}
.eyebrow--light {
  background: rgba(212, 80, 42, .18);
  color: #ffb190;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .2s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: white;
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212,80,42,.35);
}
.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--secondary:hover {
  background: var(--ink);
  color: white;
}
.btn--ghost {
  background: var(--ink);
  color: white;
  padding: 10px 18px;
  font-size: 0.88rem;
}
.btn--ghost:hover { background: var(--accent); }
.btn--ghost-dark {
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: white;
}
.btn--ghost-dark:hover { background: white; color: var(--ink); border-color: white; }
.btn--full { width: 100%; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, .85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
}
.logo-text { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.btn { color: white; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: .25s;
}

@media (max-width: 880px) {
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 24px; gap: 18px; border-bottom: 1px solid var(--line); }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
}

/* === HERO === */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(212,80,42,.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(201,169,110,.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner { position: relative; text-align: center; max-width: 880px; margin: 0 auto; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero__badge .dot {
  width: 8px;
  height: 8px;
  background: #16a34a;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: .4 } }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero__sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 640px;
  margin: 0 auto;
}
.hero__stats > div {
  padding: 20px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.hero__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
}
.hero__stats span {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-mute);
  margin-top: 4px;
}
@media (max-width: 600px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* === TRUST === */
.trust {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.trust__label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  margin-bottom: 14px;
  font-weight: 600;
}
.trust__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.service-card ul {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.service-card li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}
.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* === TYPES === */
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .types-grid { grid-template-columns: 1fr; } }

.type-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.type-card--featured {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: scale(1.02);
}
.type-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  background: var(--bg-alt);
  border-radius: 100px;
  margin-bottom: 18px;
  align-self: flex-start;
}
.type-card--featured .type-card__tag { background: var(--accent); color: white; }
.type-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.type-card__desc {
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-size: 0.97rem;
}
.type-card--featured .type-card__desc { color: rgba(255,255,255,.75); }
.type-card__when {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 22px;
}
.type-card--featured .type-card__when { background: rgba(255,255,255,.08); }
.type-card__when strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  color: var(--accent);
}
.type-card--featured .type-card__when strong { color: #ffb190; }
.type-card__when p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.type-card--featured .type-card__when p { color: rgba(255,255,255,.85); }
.type-card__list {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.type-card--featured .type-card__list { border-color: rgba(255,255,255,.12); }
.type-card__list li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.type-card--featured .type-card__list li { color: rgba(255,255,255,.85); }

/* === PROCESS === */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 10%, var(--line) 90%, transparent);
  z-index: 0;
}
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; }
  .process::before { display: none; }
}
.process__step {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.process__num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}
.process__step h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.process__step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* === PORTFOLIO === */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 760px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-card {
  background: #1f1f25;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: .3s;
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
/* Live preview: real scaled screenshot of the demo site via iframe */
.portfolio-card__preview {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #17171c 0%, #23232b 100%);
}
/* shimmer placeholder finché l'anteprima (iframe) non è caricata */
.portfolio-card__preview::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.06) 45%, transparent 65%);
  background-size: 220% 100%;
  animation: previewShimmer 1.6s linear infinite;
  transition: opacity .4s;
}
.portfolio-card__preview.is-loaded::before { opacity: 0; animation: none; }
.portfolio-card__preview--reference::before { display: none; }
@keyframes previewShimmer { to { background-position: -220% 0; } }
.portfolio-card__preview iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 285.7%;   /* 100 / 0.35 */
  height: 285.7%;
  border: 0;
  transform: scale(0.35);
  transform-origin: 0 0;
  pointer-events: none;   /* clicks pass through to the card link */
  opacity: 0;
  transition: opacity .6s ease;
}
.portfolio-card__preview iframe.loaded { opacity: 1; }
/* subtle darkening + hover zoom for a "real product shot" feel */
.portfolio-card__preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 55%, rgba(0,0,0,.45));
  transition: opacity .3s;
}
.portfolio-card:hover .portfolio-card__preview iframe {
  transform: scale(0.365);
  transition: transform 1.2s ease;
}
.portfolio-card__category {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 1;
}
.portfolio-card__body { padding: 28px 32px 32px; }
.portfolio-card__body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 600;
}
.portfolio-card__body p {
  color: rgba(255,255,255,.65);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.portfolio-card__link {
  color: #ffb190;
  font-weight: 600;
  font-size: 0.92rem;
}

/* "E molto altro" call-to-action card (no preview) */
.portfolio-card--more {
  border: 1px dashed rgba(255,255,255,.22);
  background: transparent;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
}
.portfolio-card--more:hover {
  border-color: #ffb190;
  background: rgba(255,255,255,.03);
}
.portfolio-card--more .portfolio-card__body { padding: 40px 32px; }
.portfolio-card--more h3 { font-size: 1.7rem; }

/* Reference card (progetto reale, es. Voile Parfums) — niente iframe, preview brandizzata */
.portfolio-card__preview--reference {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(201,169,110,.28), transparent 55%),
    linear-gradient(135deg, #1b1620 0%, #2a2130 55%, #3a2a3a 100%);
}
.portfolio-card__preview--reference::after {
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35));
}
.portfolio-card__brand {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: #f3e9d6;
  text-align: center;
  padding: 0 20px;
}
.portfolio-card__category--live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(22,163,74,.16);
  color: #7ee2a8;
  border: 1px solid rgba(126,226,168,.35);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 100px;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52,211,153,.6);
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(52,211,153,.55); }
  70% { box-shadow: 0 0 0 7px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

/* CTA sezione prezzi (senza cifre) */
.prezzi-cta { text-align: center; margin-top: 8px; }
.prezzi-cta__note { color: var(--ink-mute); font-size: .9rem; margin-top: 14px; }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

.pricing-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card--featured {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 5px 14px;
  font-size: 0.74rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.pricing-card--featured .pricing-card__name { color: rgba(255,255,255,.65); }
.pricing-card__price {
  margin: 18px 0 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pricing-card__price .amount {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.pricing-card__price .period {
  font-size: 0.9rem;
  color: var(--ink-mute);
}
.pricing-card--featured .pricing-card__price .period { color: rgba(255,255,255,.55); }
.pricing-card__desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.12); }
.pricing-card ul {
  margin-bottom: 28px;
  flex: 1;
}
.pricing-card li {
  padding: 7px 0;
  font-size: 0.93rem;
  color: var(--ink-soft);
}
.pricing-card--featured li { color: rgba(255,255,255,.85); }
.pricing-card li.muted { color: var(--ink-mute); font-style: italic; }
.pricing-card--featured li.muted { color: rgba(255,255,255,.4); }

.maintenance {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  flex-wrap: wrap;
}
.maintenance h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 10px 0 4px;
}
.maintenance p { color: var(--ink-soft); }
.maintenance .btn--ghost-dark { border-color: var(--ink); color: var(--ink); }
.maintenance .btn--ghost-dark:hover { background: var(--ink); color: white; }

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 28px;
  transition: .2s;
}
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--accent); }
.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform .25s;
  font-weight: 300;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* === CTA === */
.cta {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .cta { grid-template-columns: 1fr; gap: 40px; } }

.cta__text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  margin: 14px 0 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.cta__text p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 20px; }
.cta__hint {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

.cta__form {
  background: white;
  color: var(--ink);
  padding: 36px;
  border-radius: var(--radius-lg);
}
.cta__form h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 22px;
  font-weight: 600;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.cta__form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--ink);
}
.form-row label { margin-bottom: 0; }
.cta__form input,
.cta__form select,
.cta__form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 400;
  font-size: 0.95rem;
  background: var(--bg);
  transition: .15s;
}
.cta__form input:focus,
.cta__form select:focus,
.cta__form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: white;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  font-weight: 400;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.form-check input { width: auto; margin-top: 3px; }
.form-check a { color: var(--accent); text-decoration: underline; }
.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-top: 14px;
}

/* === FOOTER === */
.footer {
  background: #0a0a0e;
  color: rgba(255,255,255,.7);
  padding: 70px 0 30px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr; gap: 36px; } }
.footer__brand .nav__logo { color: white; margin-bottom: 18px; }
.footer__brand .logo-mark { background: white; color: var(--ink); }
.footer__brand p { font-size: 0.95rem; line-height: 1.6; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 540px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
.footer__cols h4 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer__cols li {
  padding: 5px 0;
  font-size: 0.92rem;
}
.footer__cols a:hover { color: white; }
.footer__bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__legal { display: flex; gap: 18px; }
.footer__legal a:hover { color: white; }

/* === SCROLL ANIM === */
@media (prefers-reduced-motion: no-preference) {
  .service-card, .type-card, .process__step, .portfolio-card, .pricing-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .6s ease forwards;
  }
  .service-card:nth-child(1) { animation-delay: .05s; }
  .service-card:nth-child(2) { animation-delay: .1s; }
  .service-card:nth-child(3) { animation-delay: .15s; }
  .service-card:nth-child(4) { animation-delay: .2s; }
  .service-card:nth-child(5) { animation-delay: .25s; }
  .service-card:nth-child(6) { animation-delay: .3s; }
  .service-card:nth-child(7) { animation-delay: .35s; }
  .service-card:nth-child(8) { animation-delay: .4s; }
  .service-card:nth-child(9) { animation-delay: .45s; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
