/* ─────────────────────────────────────────────
   FLUX — colorful, playful, blob aesthetics
   ───────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--color-text); text-decoration: none; transition: color .2s ease, opacity .2s ease; }
button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

/* ── Blob background ── */
.blobs { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.32; animation: blobMove 18s ease-in-out infinite; }
.blob-1 { width: 480px; height: 480px; background: var(--primary); top: -130px; left: -150px; }
.blob-2 { width: 380px; height: 380px; background: var(--secondary); top: 18%; right: -120px; animation-delay: -4s; }
.blob-3 { width: 320px; height: 320px; background: var(--accent); bottom: 25%; left: 22%; animation-delay: -8s; opacity: 0.22; }
.blob-4 { width: 280px; height: 280px; background: var(--yellow); top: 56%; left: -120px; animation-delay: -12s; opacity: 0.26; }
.blob-5 { width: 360px; height: 360px; background: var(--primary); bottom: -140px; right: 12%; animation-delay: -6s; }
@keyframes blobMove {
  0%,100% { transform: translate(0,0) scale(1); border-radius: 50%; }
  33% { transform: translate(40px,-30px) scale(1.1); border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  66% { transform: translate(-30px,20px) scale(0.95); border-radius: 40% 60% 60% 40% / 50% 50% 60% 40%; }
}

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 0.94rem; cursor: pointer; border: 0; transition: all .25s ease; font-family: var(--font-title); }
.btn-large { padding: 14px 30px; font-size: 1rem; }
.btn-gradient { background: var(--gradient-primary); background-size: 180% 180%; color: #fff; box-shadow: 0 10px 24px -8px color-mix(in srgb, var(--secondary) 50%, transparent); animation: gradShift 6s ease-in-out infinite; }
.btn-gradient:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 32px -10px color-mix(in srgb, var(--secondary) 60%, transparent); }
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.btn-ghost { background: transparent; color: var(--color-text); border: 2px solid var(--color-text); }
.btn-ghost:hover { background: var(--color-text); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(0,0,0,0.3); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.65); }
.btn-outline-white:hover { background: rgba(255,255,255,0.18); }

/* ── Gradient text ── */
.gradient-text { background: var(--gradient-primary); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: gradShift 8s ease-in-out infinite; }

/* ── Header ── */
.topbar { position: sticky; top: 0; z-index: 100; background: rgba(250,250,250,0.7); backdrop-filter: blur(14px); padding: 14px 0; transition: padding .25s ease, background .25s ease; }
.topbar.scrolled { background: rgba(255,255,255,0.92); padding: 10px 0; box-shadow: 0 4px 20px -10px rgba(0,0,0,0.08); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-family: var(--font-title); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; }
.nav { display: flex; gap: 26px; }
.nav a { font-size: 0.94rem; color: var(--color-text); font-weight: 500; position: relative; padding: 4px 0; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--gradient-primary); transform: scaleX(0); transition: transform .25s ease; }
.nav a:hover::after { transform: scaleX(1); }
.hamburger { display: none; background: transparent; border: 0; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-text); margin: 5px 0; border-radius: 2px; }
@media (max-width: 980px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(14px); flex-direction: column; padding: 18px 28px; box-shadow: 0 6px 16px -8px rgba(0,0,0,0.1); }
  .nav.open { display: flex; }
  .hamburger { display: block; }
  .topbar .btn { display: none; }
}

/* ── Hero ── */
.hero { padding: 100px 0 80px; min-height: 88vh; display: flex; align-items: center; position: relative; }
.hero-inner { text-align: center; max-width: 880px; margin: 0 auto; }
.hero-pill { display: inline-flex; align-items: center; padding: 7px 18px; border-radius: 999px; background: #fff; border: 1.5px solid color-mix(in srgb, var(--secondary) 40%, transparent); color: var(--primary); font-size: 0.86rem; font-weight: 600; margin-bottom: 28px; box-shadow: 0 4px 12px -6px color-mix(in srgb, var(--secondary) 40%, transparent); }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 800; line-height: 1.05; margin-bottom: 24px; }
.hero .lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--color-text-soft); margin: 0 auto 36px; max-width: 600px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

.hero-card-float { position: relative; max-width: 380px; margin: 30px auto 0; padding: 4px; border-radius: 22px; background: var(--gradient-tri); background-size: 200% 200%; animation: gradShift 6s ease-in-out infinite, floatY 4s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-card-inner { background: #fff; border-radius: 18px; padding: 24px; text-align: left; }
.hero-card-tag { display: inline-block; padding: 4px 12px; border-radius: 999px; background: color-mix(in srgb, var(--primary) 12%, transparent); color: var(--primary); font-size: 0.78rem; font-weight: 600; margin-bottom: 10px; }
.hero-card-inner strong { display: block; font-family: var(--font-title); font-size: 1.3rem; margin-bottom: 12px; }
.hero-card-stats { display: flex; gap: 14px; font-size: 0.84rem; color: var(--color-text-soft); }

/* ── Marquee ── */
.marquee-section { padding: 24px 0 40px; }
.marquee { overflow: hidden; padding: 8px 0; }
.marquee-track { display: inline-flex; gap: 14px; white-space: nowrap; }
.marquee-right .marquee-track { animation: scrollRight 32s linear infinite; }
.marquee-left .marquee-track { animation: scrollLeft 32s linear infinite; }
@keyframes scrollRight { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollLeft { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.tag-pill { display: inline-block; padding: 9px 18px; border-radius: 999px; font-weight: 600; font-size: 0.92rem; color: #fff; font-family: var(--font-title); }
.tag-violet { background: var(--primary); }
.tag-coral { background: var(--secondary); }
.tag-mint { background: var(--accent); }
.tag-amber { background: var(--yellow); }

/* ── Sections ── */
.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 60px; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 14px; }
.section-head .section-sub { color: var(--color-text-soft); font-size: 1.04rem; }
.eyebrow { display: inline-block; padding: 6px 16px; border-radius: 999px; background: color-mix(in srgb, var(--primary) 12%, white); color: var(--primary); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }

/* ── Grid ── */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3 { grid-template-columns: 1fr; } }

/* ── Service cards ── */
.svc-card { background: #fff; border-radius: 18px; padding: 30px; border: 1px solid var(--color-card-border); border-top: 3px solid var(--primary); transition: transform .3s ease, background .3s ease; position: relative; }
.svc-card:hover { transform: translateY(-6px); }
.svc-card .svc-icon { width: 56px; height: 56px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: transform .3s ease; }
.svc-card:hover .svc-icon { transform: rotate(-4deg) scale(1.05); }
.svc-card .svc-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; }
.svc-card h3 { font-size: 1.16rem; font-weight: 700; margin-bottom: 8px; }
.svc-card p { color: var(--color-text-soft); font-size: 0.94rem; }

.svc-violet { border-top-color: var(--primary); }
.svc-violet .svc-icon { background: color-mix(in srgb, var(--primary) 10%, white); color: var(--primary); }
.svc-violet:hover { background: color-mix(in srgb, var(--primary) 5%, white); }

.svc-coral { border-top-color: var(--secondary); }
.svc-coral .svc-icon { background: color-mix(in srgb, var(--secondary) 12%, white); color: var(--secondary); }
.svc-coral:hover { background: color-mix(in srgb, var(--secondary) 6%, white); }

.svc-mint { border-top-color: var(--accent); }
.svc-mint .svc-icon { background: color-mix(in srgb, var(--accent) 12%, white); color: var(--accent); }
.svc-mint:hover { background: color-mix(in srgb, var(--accent) 6%, white); }

.svc-amber { border-top-color: var(--yellow); }
.svc-amber .svc-icon { background: color-mix(in srgb, var(--yellow) 14%, white); color: var(--yellow); }
.svc-amber:hover { background: color-mix(in srgb, var(--yellow) 7%, white); }

/* ── Showcase (masonry-ish) ── */
.showcase { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.show-card { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 3; cursor: pointer; transition: transform .35s ease; }
.show-card:nth-child(odd) { aspect-ratio: 4 / 3.4; }
.show-card:hover { transform: translateY(-6px); }
.show-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.show-card:hover .show-img { transform: scale(1.06); }
.show-overlay { position: absolute; inset: 0; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; background: linear-gradient(180deg, transparent 30%, rgba(26,26,46,0.85) 100%); color: #fff; opacity: 0; transition: opacity .3s ease; }
.show-card:hover .show-overlay { opacity: 1; }
.show-cat { padding: 4px 12px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); border-radius: 999px; font-size: 0.74rem; font-weight: 600; width: fit-content; }
.show-overlay h3 { color: #fff; font-size: 1.3rem; }
.show-overlay p { font-size: 0.92rem; opacity: 0.9; }
.show-link { color: var(--accent); font-weight: 600; font-size: 0.94rem; margin-top: 6px; }
.show-badge { position: absolute; top: 16px; right: 16px; padding: 6px 14px; border-radius: 999px; background: var(--gradient-primary); color: #fff; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; z-index: 2; }
@media (max-width: 760px) { .showcase { grid-template-columns: 1fr; } }

/* ── Features ── */
.section-features { padding-bottom: 60px; }
.feat-list { display: flex; flex-direction: column; gap: 60px; }
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feat-row-right { direction: rtl; }
.feat-row-right > * { direction: ltr; }
.feat-num { display: inline-block; padding: 4px 14px; border-radius: 999px; background: var(--gradient-primary); color: #fff; font-family: var(--font-title); font-weight: 700; font-size: 0.86rem; margin-bottom: 14px; }
.feat-body h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; margin-bottom: 12px; }
.feat-body p { color: var(--color-text-soft); font-size: 1.02rem; line-height: 1.7; }

/* Geometric illos */
.feat-illo { position: relative; aspect-ratio: 1; max-width: 360px; margin: 0 auto; }
.shape { position: absolute; opacity: 0.92; }
.shape-circle { width: 60%; height: 60%; border-radius: 50%; top: 8%; left: 12%; background: var(--primary); animation: spinSlow 20s linear infinite; }
.shape-square { width: 40%; height: 40%; border-radius: 18px; bottom: 6%; right: 8%; background: var(--secondary); animation: floatY 5s ease-in-out infinite; }
.shape-triangle { width: 0; height: 0; border-left: 36px solid transparent; border-right: 36px solid transparent; border-bottom: 64px solid var(--accent); top: 18%; right: 12%; transform: rotate(20deg); animation: floatY 6s ease-in-out 1s infinite; }
.shape-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--yellow); top: 60%; left: 18%; box-shadow: 0 0 0 8px color-mix(in srgb, var(--yellow) 30%, transparent); animation: floatY 4s ease-in-out 0.5s infinite; }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Per-feature illo variations */
.feat-illo-1 .shape-circle { background: var(--secondary); }
.feat-illo-1 .shape-square { background: var(--accent); }
.feat-illo-1 .shape-triangle { border-bottom-color: var(--primary); }
.feat-illo-2 .shape-circle { background: var(--accent); }
.feat-illo-2 .shape-square { background: var(--yellow); }
.feat-illo-2 .shape-triangle { border-bottom-color: var(--secondary); }
.feat-illo-3 .shape-circle { background: var(--yellow); }
.feat-illo-3 .shape-square { background: var(--primary); }
.feat-illo-3 .shape-triangle { border-bottom-color: var(--accent); }

@media (max-width: 800px) {
  .feat-row, .feat-row-right { grid-template-columns: 1fr; gap: 28px; direction: ltr; }
  .feat-illo { max-width: 280px; }
}

/* ── Testimonials ── */
.testi-card { background: #fff; border-radius: 18px; padding: 28px; position: relative; transition: transform .25s ease; border: 1px solid transparent; }
.testi-card::before { content: ''; position: absolute; inset: 0; border-radius: 18px; padding: 2px; background: var(--gradient-primary); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0.5; }
.testi-card:hover { transform: translateY(-4px); }
.testi-card:hover::before { opacity: 1; }
.testi-violet::before { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.testi-coral::before { background: linear-gradient(135deg, var(--secondary), var(--yellow)); }
.testi-mint::before { background: linear-gradient(135deg, var(--accent), var(--primary)); }
.testi-amber::before { background: linear-gradient(135deg, var(--yellow), var(--secondary)); }
.testi-card .stars { color: var(--yellow); letter-spacing: 2px; margin-bottom: 12px; font-size: 1rem; }
.testi-card p { color: var(--color-text); font-size: 0.96rem; line-height: 1.7; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-weight: 700; font-size: 1rem; }
.testi-violet .testi-avatar { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.testi-coral .testi-avatar { background: linear-gradient(135deg, var(--secondary), var(--yellow)); }
.testi-mint .testi-avatar { background: linear-gradient(135deg, var(--accent), var(--primary)); }
.testi-amber .testi-avatar { background: linear-gradient(135deg, var(--yellow), var(--secondary)); }
.testi-meta strong { display: block; font-size: 0.94rem; }
.testi-meta span { display: block; font-size: 0.82rem; color: var(--color-text-soft); }

/* ── Numbers band ── */
.numbers-band { padding: 30px 0 60px; }
.numbers-inner { background: var(--gradient-tri); background-size: 200% 200%; animation: gradShift 8s ease-in-out infinite; padding: 70px 50px; border-radius: 28px; color: #fff; text-align: center; box-shadow: 0 30px 80px -30px color-mix(in srgb, var(--secondary) 50%, transparent); }
.numbers-inner h2 { color: #fff; margin-bottom: 36px; font-size: clamp(1.8rem, 3.6vw, 2.4rem); }
.cipher-hl { font-style: italic; opacity: 0.92; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.num-block strong { display: block; font-family: var(--font-title); font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1; margin-bottom: 6px; }
.num-block span { font-size: 0.92rem; opacity: 0.9; font-weight: 500; }
@media (max-width: 700px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .numbers-inner { padding: 48px 24px; }
}

/* ── Timeline ── */
.timeline { max-width: 880px; margin: 0 auto; position: relative; padding: 20px 0; }
.tl-spine { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--primary), var(--secondary), var(--accent), var(--yellow)); transform: translateX(-50%); border-radius: 2px; }
.tl-item { position: relative; width: 50%; padding: 24px 36px; }
.tl-left { left: 0; text-align: right; }
.tl-right { left: 50%; }
.tl-dot { position: absolute; top: 24px; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-family: var(--font-title); font-size: 1.1rem; z-index: 2; border: 4px solid var(--color-background); }
.tl-left .tl-dot { right: -25px; }
.tl-right .tl-dot { left: -25px; }
.tl-dot-violet { background: var(--primary); }
.tl-dot-coral { background: var(--secondary); }
.tl-dot-mint { background: var(--accent); }
.tl-dot-amber { background: var(--yellow); }
.tl-content { background: #fff; padding: 22px 26px; border-radius: 16px; box-shadow: 0 6px 18px -10px rgba(0,0,0,0.1); display: inline-block; max-width: 100%; }
.tl-content h3 { font-size: 1.18rem; margin-bottom: 6px; }
.tl-content p { color: var(--color-text-soft); font-size: 0.94rem; }
@media (max-width: 800px) {
  .timeline { padding-left: 24px; }
  .tl-spine { left: 20px; transform: none; }
  .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding: 18px 0 18px 36px; }
  .tl-item .tl-dot { left: -10px !important; right: auto !important; width: 40px; height: 40px; }
}

/* ── CTA band ── */
.cta-band { position: relative; padding: 100px 0; background: var(--gradient-tri); background-size: 200% 200%; animation: gradShift 8s ease-in-out infinite; color: #fff; text-align: center; overflow: hidden; }
.cta-shape { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 18% 30%, rgba(255,255,255,0.18), transparent 30%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.16), transparent 30%); }
.cta-inner h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: #fff; margin-bottom: 14px; }
.cta-hl { font-style: italic; opacity: 0.94; }
.cta-inner p { font-size: 1.06rem; margin-bottom: 36px; opacity: 0.94; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
.section-faq { padding: 90px 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: 14px; padding: 22px 28px; border: 1.5px solid transparent; transition: all .25s ease; }
.faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 1.02rem; padding-right: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.6rem; line-height: 1; color: var(--primary); transition: transform .25s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; color: var(--color-text-soft); line-height: 1.7; }
.faq-violet[open] { border-color: color-mix(in srgb, var(--primary) 30%, transparent); background: color-mix(in srgb, var(--primary) 5%, white); }
.faq-coral[open] { border-color: color-mix(in srgb, var(--secondary) 30%, transparent); background: color-mix(in srgb, var(--secondary) 5%, white); }
.faq-mint[open] { border-color: color-mix(in srgb, var(--accent) 30%, transparent); background: color-mix(in srgb, var(--accent) 5%, white); }
.faq-amber[open] { border-color: color-mix(in srgb, var(--yellow) 35%, transparent); background: color-mix(in srgb, var(--yellow) 6%, white); }

/* ── Contact ── */
.section-contact { padding-bottom: 130px; }
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 48px; }
.contact-card { display: flex; flex-direction: column; gap: 6px; padding: 24px 22px; border-radius: 18px; background: #fff; transition: transform .25s ease, box-shadow .25s ease; border-top: 4px solid var(--primary); }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px -12px rgba(0,0,0,0.12); }
.cc-icon { font-size: 1.6rem; line-height: 1; }
.contact-card strong { font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--color-text-soft); }
.contact-card span { font-size: 0.96rem; color: var(--color-text); }
.cc-violet { border-top-color: var(--primary); }
.cc-violet .cc-icon { color: var(--primary); }
.cc-coral { border-top-color: var(--secondary); }
.cc-coral .cc-icon { color: var(--secondary); }
.cc-mint { border-top-color: var(--accent); }
.cc-mint .cc-icon { color: var(--accent); }
.cc-amber { border-top-color: var(--yellow); }
.cc-amber .cc-icon { color: var(--yellow); }
@media (max-width: 900px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .contact-cards { grid-template-columns: 1fr; } }

.contact-form { background: #fff; border-radius: 22px; padding: 38px 36px; display: flex; flex-direction: column; gap: 18px; max-width: 720px; margin: 0 auto; box-shadow: 0 20px 50px -28px rgba(0,0,0,0.12); }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
.contact-form .field span { font-size: 0.78rem; font-weight: 600; color: var(--color-text-soft); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 16px; background: color-mix(in srgb, var(--primary) 2%, #fafafa); border: 1.5px solid transparent; border-radius: 10px; font-family: inherit; font-size: 0.96rem; color: var(--color-text); transition: border-color .2s ease, background .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 0.92rem; min-height: 1.2em; text-align: center; }
.form-status.success { color: #15803d; }
.form-status.error { color: #dc2626; }
.contact-form .btn { align-self: center; }
@media (max-width: 600px) { .contact-form .row { grid-template-columns: 1fr; } .contact-form { padding: 26px 22px; } }

/* ── Footer (dark) ── */
.site-footer { background: #1a1a2e; color: rgba(255,255,255,0.7); padding: 70px 0 0; position: relative; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin: 14px 0 18px; max-width: 320px; line-height: 1.7; }
.footer-logo { font-family: var(--font-title); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; display: inline-block; }
.footer-col h4 { color: #fff; font-size: 0.86rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col span, .footer-col p { display: block; color: rgba(255,255,255,0.6); font-size: 0.94rem; margin-bottom: 10px; transition: color .2s ease; }
.footer-col a:hover { color: var(--secondary); }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.footer-social a { display: inline-block; padding: 6px 14px; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; font-size: 0.78rem; }
.footer-social a:hover { border-color: var(--secondary); color: var(--secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.copyright, .footer-tagline { color: rgba(255,255,255,0.5); font-size: 0.84rem; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }

/* ── Reveal ── */
.reveal { transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Footer brand override */
.site-footer .logo,
.footer-logo,
.footer-brand,
.site-footer .brand-name,
.site-footer h3.logo {
  background: linear-gradient(135deg, var(--secondary), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
.footer-logo img { background: none !important; }
