/* =========================================================
   Sunny IT — Mediterranean tech aesthetic
   Palette: ink navy / cream / amber sun / muted terracotta
   ========================================================= */

:root {
  --ink: #0b1426;
  --ink-2: #0f1a30;
  --ink-3: #16223c;
  --cream: #f5efe3;
  --cream-2: #ebe3d2;
  --cream-soft: #fbf8f3;
  --amber: #f0b429;
  --amber-deep: #d99500;
  --terracotta: #c8633f;
  --slate: #5d6b85;
  --slate-2: #8693ac;
  --hair: rgba(245, 239, 227, 0.14);
  --hair-dark: rgba(11, 20, 38, 0.12);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', 'SFMono-Regular', ui-monospace, monospace;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--amber); color: var(--ink); }

/* Container */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Grain overlay — subtle texture for depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11, 20, 38, 0.72);
  border-bottom: 1px solid var(--hair);
  transition: padding 0.3s var(--ease);
}

.nav.scrolled { padding: 12px 0; }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
}

.brand__mark svg { width: 100%; height: 100%; }

.brand__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate-2);
  margin-top: 2px;
  display: block;
}

.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name strong { font-weight: 500; }

.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  font-size: 14px;
}

.nav__links a {
  position: relative;
  color: var(--cream-2);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--amber); }

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; gap: 14px; align-items: center; }

.lang-switch {
  display: flex;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  border: 1px solid var(--hair);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch a {
  padding: 6px 12px;
  color: var(--slate-2);
  transition: all 0.2s;
}

.lang-switch a.is-active {
  background: var(--amber);
  color: var(--ink);
}

.lang-switch a:not(.is-active):hover { color: var(--cream); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--amber);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s, background 0.2s;
}

.nav__cta:hover { background: var(--cream); transform: translateY(-1px); }

.nav__toggle { display: none; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border: 1px solid var(--hair);
    border-radius: 8px;
  }
  .nav__toggle svg { width: 18px; height: 18px; stroke: var(--cream); }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--hair);
    padding: 24px var(--gutter);
    gap: 18px;
  }
  .nav__cta span { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 160px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(800px 500px at 85% 0%, rgba(240, 180, 41, 0.18), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(200, 99, 63, 0.10), transparent 55%),
    var(--ink);
}

.hero__sun {
  position: absolute;
  top: -120px; right: -120px;
  width: 540px; height: 540px;
  pointer-events: none;
  opacity: 0.9;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 780px;
}

@media (max-width: 980px) {
  .hero { padding: 110px 0 60px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 7px 14px;
  border: 1px solid rgba(240, 180, 41, 0.3);
  border-radius: 999px;
  background: rgba(240, 180, 41, 0.06);
}

.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.2);
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(240, 180, 41, 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 360;
  margin: 28px 0 24px;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
}

.hero__lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--cream-2);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--amber);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(240, 180, 41, 0.4);
}

.btn--ghost {
  border-color: var(--hair);
  color: var(--cream);
}

.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn svg { width: 16px; height: 16px; }

.hero__trust {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--hair);
}

.trust-item { display: flex; flex-direction: column; gap: 4px; }

.trust-item strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.trust-item span {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-2);
}

@media (max-width: 980px) {
  .hero { padding: 110px 0 60px; }
}

/* =========================================================
   MARQUEE — partner logos / tech badges
   ========================================================= */
.marquee {
  background: var(--ink-2);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 28px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  align-items: center;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--slate-2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee__dot { color: var(--amber); }

/* =========================================================
   SECTIONS
   ========================================================= */
section { position: relative; }

.section {
  padding: clamp(80px, 12vw, 140px) 0;
}

.section--cream {
  background: var(--cream-soft);
  color: var(--ink);
}

.section--cream .eyebrow {
  color: var(--terracotta);
  border-color: rgba(200, 99, 63, 0.3);
  background: rgba(200, 99, 63, 0.06);
}

.section--cream .eyebrow::before {
  background: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(200, 99, 63, 0.2);
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

@media (max-width: 880px) {
  .section__head { grid-template-columns: 1fr; gap: 20px; }
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 360;
  margin-top: 20px;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
}

.section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
}

.section--cream .section__title em { color: var(--terracotta); }

.section__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream-2);
  max-width: 480px;
}

.section--cream .section__lead { color: var(--slate); }

/* =========================================================
   SERVICES — asymmetric grid
   ========================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service {
  position: relative;
  border: 1px solid var(--hair-dark);
  border-radius: 18px;
  padding: 32px;
  background: var(--cream);
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.service:hover {
  transform: translateY(-4px);
  border-color: var(--amber-deep);
}

/* Layout: feature card spans 3, regular spans 2 (3+3, then 2+2+2) */
.service--feature { grid-column: span 3; min-height: 320px; }
.service--reg { grid-column: span 2; }

@media (max-width: 980px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .service--feature, .service--reg { grid-column: span 1; }
  .service--feature:first-child { grid-column: span 2; }
}

@media (max-width: 560px) {
  .services { grid-template-columns: 1fr; }
  .service--feature:first-child { grid-column: span 1; }
}

.service__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--slate);
  margin-bottom: 18px;
}

.service__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--amber);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.service__icon svg { width: 24px; height: 24px; }

.service__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin-bottom: 12px;
}

.service--feature .service__title { font-size: 30px; }

.service__desc {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(11, 20, 38, 0.08);
  color: var(--ink);
}

.service--feature {
  background: var(--ink);
  color: var(--cream);
  border-color: transparent;
}

.service--feature .service__num { color: var(--slate-2); }
.service--feature .service__icon { background: var(--amber); color: var(--ink); }
.service--feature .service__desc { color: var(--cream-2); }
.service--feature .tag { background: rgba(245, 239, 227, 0.1); color: var(--cream); }

.service--feature::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.18), transparent 60%);
  pointer-events: none;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
}

@media (max-width: 880px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .process { grid-template-columns: 1fr; }
}

.step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--hair);
  position: relative;
}

.step:last-child { border-right: none; }

@media (max-width: 880px) {
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--hair); }
}
@media (max-width: 520px) {
  .step { border-right: none; border-bottom: 1px solid var(--hair); }
  .step:last-child { border-bottom: none; }
}

.step__num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--amber);
  font-weight: 360;
  margin-bottom: 24px;
  font-variation-settings: 'SOFT' 100;
}

.step__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin-bottom: 10px;
}

.step__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-2);
}

/* =========================================================
   STACK — cloud expertise grid
   ========================================================= */
.stack {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 980px) {
  .stack { grid-template-columns: 1fr; gap: 40px; }
}

.stack__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stack__item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--hair-dark);
  transition: padding-left 0.3s var(--ease);
}

.stack__item:last-child { border-bottom: 1px solid var(--hair-dark); }

.stack__item:hover { padding-left: 12px; }

.stack__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--slate);
}

.stack__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.015em;
  font-weight: 500;
}

.stack__name span {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--slate);
  margin-top: 4px;
}

.stack__arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--hair-dark);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}

.stack__item:hover .stack__arrow {
  background: var(--ink);
  color: var(--amber);
  border-color: var(--ink);
}

.stack__arrow svg { width: 14px; height: 14px; }

/* =========================================================
   PLANS
   ========================================================= */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.plan {
  position: relative;
  border: 1px solid var(--hair);
  border-radius: 20px;
  padding: 36px;
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.plan:hover { transform: translateY(-4px); border-color: var(--amber); }

.plan--featured {
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  border-color: var(--amber);
}

.plan__badge {
  position: absolute;
  top: -12px; left: 36px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.plan__name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin-bottom: 6px;
}

.plan__tagline {
  font-size: 13px;
  color: var(--slate-2);
  margin-bottom: 28px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hair);
}

.plan__price strong {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan__price span { font-size: 13px; color: var(--slate-2); }

.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.plan__features li {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream-2);
}

.plan__features svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--amber);
}

.plan .btn { justify-content: center; width: 100%; }

/* =========================================================
   AREA — map / location
   ========================================================= */
.area {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

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

.area__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}

.area__visual svg { width: 100%; height: 100%; }

.villages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.village {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  background: var(--cream);
  border: 1px solid var(--hair-dark);
  border-radius: 999px;
  color: var(--ink);
}

.area__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.area__highlight::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--terracotta);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

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

.contact__info { padding-top: 12px; }

.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--hair);
  font-size: 15px;
}

.contact__channel:last-child { border-bottom: 1px solid var(--hair); }

.contact__channel__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(240, 180, 41, 0.12);
  color: var(--amber);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact__channel__icon svg { width: 18px; height: 18px; }

.contact__channel__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-2);
  display: block;
  margin-bottom: 2px;
}

.contact__channel a { color: var(--cream); transition: color 0.2s; }
.contact__channel a:hover { color: var(--amber); }

/* Form */
.form {
  background: var(--ink-2);
  border: 1px solid var(--hair);
  border-radius: 22px;
  padding: 40px;
}

@media (max-width: 600px) { .form { padding: 28px 22px; } }

.form__title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin-bottom: 8px;
}

.form__sub {
  color: var(--slate-2);
  font-size: 14px;
  margin-bottom: 28px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

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

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }

.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-2);
}

.field label .req { color: var(--amber); }

.field input,
.field select,
.field textarea {
  font: inherit;
  background: var(--ink);
  border: 1px solid var(--hair);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--cream);
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}

.field textarea { min-height: 130px; resize: vertical; font-family: inherit; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--ink-3);
}

.field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238693ac' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }

.checkbox-row {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 13px;
  color: var(--slate-2);
  margin-bottom: 20px;
  line-height: 1.5;
}

.checkbox-row input { margin-top: 3px; accent-color: var(--amber); }

.form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--amber);
  color: var(--ink);
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s var(--ease);
}

.form__submit:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -10px rgba(240, 180, 41, 0.5);
}

.form__submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form__feedback {
  display: none;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 16px;
}

.form__feedback.is-ok {
  display: block;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.form__feedback.is-err {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* Honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: var(--ink-2);
  border-top: 1px solid var(--hair);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__about p {
  color: var(--slate-2);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 320px;
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col li a { font-size: 14px; color: var(--cream-2); transition: color 0.2s; }
.footer__col li a:hover { color: var(--amber); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  color: var(--slate-2);
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
