/* ==========================================================================
   KROM Int. — Web Development Agency
   Clean white + red. Poppins (display) / Open Sans (body).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --red:        #E11D2A;
  --red-dark:   #B3141F;
  --red-soft:   #FFF1F2;
  --red-tint:   #FFE4E6;

  /* Ink / neutrals */
  --ink:        #111114;
  --slate:      #5A5A66;
  --slate-2:    #8A8A95;
  --white:      #FFFFFF;
  --paper:      #FAFAFA;
  --paper-2:    #F4F4F6;
  --border:     #ECECEF;
  --border-2:   #E0E0E5;

  /* Type */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body:    'Open Sans', system-ui, sans-serif;
  --font-logo:    'Cinzel', Georgia, 'Times New Roman', serif;

  /* Layout */
  --container: 1180px;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(17,17,20,.06), 0 1px 1px rgba(17,17,20,.04);
  --shadow-md: 0 10px 30px rgba(17,17,20,.08);
  --shadow-lg: 0 24px 60px rgba(17,17,20,.12);
  --shadow-red: 0 12px 30px rgba(225,29,42,.28);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.12; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--paper { background: var(--paper); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; max-width: 18ch; }
.section-intro { color: var(--slate); font-size: 18px; max-width: 56ch; margin-top: 18px; }
.section-head { margin-bottom: 56px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap; min-height: 48px;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--ghost { background: var(--white); color: var(--ink); border-color: var(--border-2); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--light:hover { background: rgba(255,255,255,.22); }
.btn--block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-logo); font-weight: 700; font-size: 20px; letter-spacing: .04em; }
.brand__mark {
  position: relative; width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(145deg, #ff3b3b 0%, var(--red) 55%, var(--red-dark) 100%);
  display: grid; place-items: center; box-shadow: var(--shadow-red);
  flex: none; overflow: hidden;
}
.brand__mark::after {
  content: ""; position: absolute; top: -40%; left: -30%; width: 42%; height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent);
  transform: translateX(-160%) skewX(-18deg);
  animation: markShine 5s ease-in-out infinite;
}
.brand__k { position: relative; color: #fff; font-family: var(--font-logo); font-weight: 800; font-size: 23px; line-height: 1; padding-left: .02em; }
.brand__sub { color: var(--red); }

/* Wordmark "O" with orbiting dot (international signal) */
.brand__o {
  position: relative; display: inline-block; width: .72em; height: .72em;
  border: .14em solid currentColor; border-radius: 50%; box-sizing: border-box;
  margin: 0 .02em; vertical-align: -.06em;
}
.brand__o i { position: absolute; inset: -.2em; animation: brandOrbit 3.4s linear infinite; }
.brand__o i::before {
  content: ""; position: absolute; top: -.02em; left: 50%;
  width: .22em; height: .22em; margin-left: -.11em; border-radius: 50%; background: var(--red);
}
@keyframes markShine {
  0% { transform: translateX(-160%) skewX(-18deg); }
  55%, 100% { transform: translateX(320%) skewX(-18deg); }
}
@keyframes brandOrbit { to { transform: rotate(360deg); } }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--slate);
  position: relative; padding: 6px 0; transition: color .2s var(--ease);
}
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--red); transition: width .25s var(--ease); }
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }

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

/* Language switcher */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1.5px solid var(--border-2); border-radius: 999px;
  padding: 9px 14px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--ink);
  transition: border-color .2s var(--ease);
}
.lang__btn:hover { border-color: var(--ink); }
.lang__btn svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.lang.is-open .lang__btn svg.chev { transform: rotate(180deg); }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 168px;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-6px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__opt {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  background: none; border: 0; border-radius: 9px; padding: 10px 12px;
  font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--ink);
}
.lang__opt:hover { background: var(--paper-2); }
.lang__opt.is-active { color: var(--red); font-weight: 600; }
.lang__opt .flag { font-size: 18px; line-height: 1; }
.lang__opt .check { margin-left: auto; width: 16px; height: 16px; color: var(--red); opacity: 0; }
.lang__opt.is-active .check { opacity: 1; }

/* Mobile nav toggle */
.nav-toggle { display: none; width: 46px; height: 46px; border: 1.5px solid var(--border-2); border-radius: 12px; background: var(--white); align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding: 92px 0 84px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(8px);
  background: radial-gradient(circle at 30% 30%, var(--red-tint), transparent 70%);
}
.hero__blob--1 { width: 520px; height: 520px; right: -160px; top: -120px; opacity: .8; }
.hero__blob--2 { width: 360px; height: 360px; left: -140px; bottom: -120px; background: radial-gradient(circle at 30% 30%, var(--red-soft), transparent 70%); }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .35;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 30%, transparent 75%);
}
.hero__inner { position: relative; z-index: 1; max-width: 860px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; background: var(--white);
  border: 1px solid var(--border); border-radius: 999px; padding: 7px 16px 7px 8px;
  font-size: 13px; font-weight: 600; font-family: var(--font-display); color: var(--slate); box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.hero__badge .dot { width: 9px; height: 9px; border-radius: 50%; background: #21c45d; box-shadow: 0 0 0 4px rgba(33,196,93,.18); }
.hero h1 { font-size: clamp(36px, 6.2vw, 68px); font-weight: 800; letter-spacing: -.03em; }
.hero h1 .accent { color: var(--red); }
.hero__lead { font-size: clamp(17px, 2.2vw, 21px); color: var(--slate); margin-top: 24px; max-width: 60ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 24px 36px; margin-top: 46px; }
.hero__meta-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--slate); font-weight: 500; }
.hero__meta-item svg { width: 20px; height: 20px; color: var(--red); flex: none; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 40px 28px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 4vw, 46px); color: var(--ink); letter-spacing: -.03em; }
.stat__num span { color: var(--red); }
.stat__label { color: var(--slate); font-size: 14px; margin-top: 6px; font-weight: 500; }

/* ==========================================================================
   Services
   ========================================================================== */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative; overflow: hidden;
}
.service::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--red); transition: width .4s var(--ease); }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.service:hover::after { width: 100%; }
.service__icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--red-soft); color: var(--red);
  display: grid; place-items: center; margin-bottom: 22px; transition: background .3s var(--ease), color .3s var(--ease);
}
.service:hover .service__icon { background: var(--red); color: var(--white); }
.service__icon svg { width: 26px; height: 26px; }
.service h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.service p { color: var(--slate); font-size: 15px; }

/* ==========================================================================
   Work / Portfolio
   ========================================================================== */
.work__filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.filter {
  border: 1.5px solid var(--border-2); background: var(--white); color: var(--slate);
  border-radius: 999px; padding: 9px 18px; font-family: var(--font-display); font-weight: 500; font-size: 14px;
  transition: all .25s var(--ease);
}
.filter:hover { color: var(--ink); border-color: var(--ink); }
.filter.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }

.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--white); border: 1px solid var(--border);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.project:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project__art { position: absolute; inset: 0; z-index: 0; }
.project__art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,12,0) 30%, rgba(10,10,12,.86) 100%); }
.project__art .mono { position: absolute; right: 22px; top: 22px; font-family: var(--font-display); font-weight: 800; font-size: 40px; color: rgba(255,255,255,.16); letter-spacing: -.04em; }
.project__body { position: relative; z-index: 1; padding: 26px; }
.project__tag {
  display: inline-block; background: rgba(255,255,255,.16); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.28); color: #fff; font-family: var(--font-display);
  font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.project h3 { font-size: 23px; font-weight: 700; }
.project p { color: rgba(255,255,255,.82); font-size: 14.5px; margin-top: 8px; }
.project__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: #fff; }
.project__link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.project:hover .project__link svg { transform: translate(3px,-3px); }

/* gradient arts */
.art--avtor  { background: linear-gradient(135deg, #161485, #3b2fb8 60%, #6f63e6); }
.art--wce    { background: linear-gradient(135deg, #7a1f5a, #d6336c 55%, #ff8fa3); }
.art--clean  { background: linear-gradient(135deg, #0b7a5b, #16a34a 55%, #6ee7a3); }
.art--hydro  { background: linear-gradient(135deg, #0b7a5b, #0fb37e 55%, #5fe0b0); }
.art--stilla { background: linear-gradient(135deg, #b3141f, #e11d2a 55%, #ff6a4d); }
.art--shop   { background: linear-gradient(135deg, #4a2b8c, #7b3fd1 60%, #c08bff); }
.art--saas   { background: linear-gradient(135deg, #0f2a4a, #1f5fa8 60%, #5fa8e0); }
.art--brand  { background: linear-gradient(135deg, #1a1a1f, #3a3a44 60%, #6a6a78); }

.project.is-hidden { display: none; }
.project__shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Pricing strip
   ========================================================================== */
.price-strip { padding: 24px 0; }
.price-strip__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  background: var(--ink); color: #fff; border-radius: 24px; padding: 34px 42px;
  position: relative; overflow: hidden;
}
.price-strip__inner::before {
  content: ""; position: absolute; right: -60px; top: -70px; width: 250px; height: 250px;
  border-radius: 50%; background: radial-gradient(circle, rgba(225,29,42,.4), transparent 70%);
}
.price-strip__copy { position: relative; z-index: 1; }
.price-strip__title { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; max-width: 24ch; }
.price-strip__text { color: rgba(255,255,255,.72); font-size: 16px; margin-top: 10px; max-width: 56ch; }
.price-strip__chip {
  position: relative; z-index: 1; flex: none; text-align: center;
  background: var(--red); border-radius: 18px; padding: 16px 28px; box-shadow: var(--shadow-red);
}
.price-strip__from-label { display: block; font-family: var(--font-display); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.price-strip__from { display: block; font-family: var(--font-display); font-weight: 800; font-size: 32px; color: #fff; line-height: 1.15; }

/* ==========================================================================
   Process
   ========================================================================== */
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step { position: relative; padding-top: 8px; }
.step__num {
  width: 52px; height: 52px; border-radius: 14px; background: var(--ink); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 20px; display: grid; place-items: center;
  margin-bottom: 22px; position: relative; z-index: 1;
}
.step:nth-child(1) .step__num { background: var(--red); }
.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 9px; }
.step p { color: var(--slate); font-size: 15px; }
.step::before {
  content: ""; position: absolute; left: 52px; top: 26px; right: -24px; height: 2px;
  background: linear-gradient(90deg, var(--border-2), transparent);
}
.step:last-child::before { display: none; }

/* ==========================================================================
   Why / value
   ========================================================================== */
.why { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.why__list { display: grid; gap: 22px; margin-top: 32px; }
.why__item { display: flex; gap: 16px; }
.why__item .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; flex: none; }
.why__item .ic svg { width: 22px; height: 22px; }
.why__item h4 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin-bottom: 4px; }
.why__item p { color: var(--slate); font-size: 15px; }
.why__card {
  background: var(--ink); color: var(--white); border-radius: 24px; padding: 44px;
  position: relative; overflow: hidden;
}
.why__card::before { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(225,29,42,.5), transparent 70%); }
.why__card .quote { font-family: var(--font-display); font-size: 24px; font-weight: 600; line-height: 1.4; position: relative; }
.why__card .quote .accent { color: var(--red); }
.why__card .person { margin-top: 28px; display: flex; align-items: center; gap: 14px; position: relative; }
.why__card .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--red); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.why__card .person b { display: block; font-family: var(--font-display); font-weight: 600; }
.why__card .person span { color: rgba(255,255,255,.6); font-size: 14px; }
.why__sig { display: flex; flex-direction: column; gap: 3px; }
.brand__word--card { font-family: var(--font-logo); font-weight: 700; letter-spacing: .04em; color: #fff; font-size: 18px; display: inline-flex; align-items: center; line-height: 1; }
.why__sig-role { color: rgba(255,255,255,.6); font-size: 14px; font-family: var(--font-body); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: start; }
.contact__info .section-title { font-size: clamp(28px,3.4vw,40px); }
.contact__channels { display: grid; gap: 18px; margin-top: 36px; }
.channel { display: flex; gap: 16px; align-items: center; }
.channel .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); color: var(--red); display: grid; place-items: center; flex: none; }
.channel .ic svg { width: 22px; height: 22px; }
.channel b { font-family: var(--font-display); display: block; font-size: 15px; }
.channel span { color: var(--slate); font-size: 15px; }

.form {
  background: var(--white); border: 1px solid var(--border); border-radius: 22px;
  padding: 36px; box-shadow: var(--shadow-md);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border-2); border-radius: 12px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px var(--red-soft); }
.field input::placeholder, .field textarea::placeholder { color: var(--slate-2); }
.form__note { font-size: 13px; color: var(--slate); margin-top: 14px; text-align: center; }
.form__success {
  display: none; text-align: center; padding: 30px 10px;
}
.form__success.is-visible { display: block; }
.form__success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--red-soft); color: var(--red); display: grid; place-items: center; margin: 0 auto 18px; }
.form__success .ok svg { width: 32px; height: 32px; }
.form__success h3 { font-size: 22px; margin-bottom: 8px; }
.form__success p { color: var(--slate); }
.form.is-sent .form__fields { display: none; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { background: var(--ink); color: var(--white); border-radius: 28px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(225,29,42,.4), transparent 70%); }
.cta-band::before { left: -100px; top: -120px; }
.cta-band::after { right: -100px; bottom: -140px; }
.cta-band__inner { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; max-width: 20ch; margin: 0 auto; }
.cta-band p { color: rgba(255,255,255,.72); font-size: 18px; margin: 18px auto 32px; max-width: 52ch; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--white); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand p { color: var(--slate); font-size: 15px; margin-top: 18px; max-width: 32ch; }
.footer__col h4 { font-family: var(--font-display); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-2); margin-bottom: 18px; }
.footer__col a { display: block; color: var(--ink); font-size: 15px; padding: 6px 0; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--red); }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--ink); transition: all .2s var(--ease); }
.footer__social a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--border); color: var(--slate); font-size: 14px; }
.footer__bottom a { color: var(--slate); }
.footer__bottom a:hover { color: var(--red); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .section { padding: 72px 0; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .step::before { display: none; }
  .why { grid-template-columns: 1fr; gap: 40px; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 720px) {
  .nav, .header__actions .btn--primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .header__inner { height: 64px; }
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .services__grid, .work__grid { grid-template-columns: 1fr; }
  .form { padding: 24px; }
  .form__row { grid-template-columns: 1fr; }
  .price-strip__inner { flex-direction: column; align-items: flex-start; gap: 22px; padding: 28px 24px; }
  .price-strip__chip { align-self: stretch; }
  .why__card { padding: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  /* Mobile menu panel */
  .nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; left: 0; right: 0; top: 64px;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 14px 18px 22px; box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__link { padding: 13px 6px; font-size: 17px; border-bottom: 1px solid var(--border); }
  .nav.is-open .nav__link::after { display: none; }
}

@media (max-width: 380px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--border); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
