:root {
  --green: #1b8f5a;
  --green-dark: #0d5136;
  --green-deep: #092f22;
  --lime: #9bc53d;
  --ink: #18211d;
  --muted: #68736d;
  --soft: #f2f5f3;
  --line: #dfe6e2;
  --white: #fff;
  --shadow: 0 18px 55px rgba(13, 52, 36, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: var(--green); }
.section { padding: 100px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: var(--white); background: var(--green-deep); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; }
h2 { margin: 12px 0 18px; font: 700 clamp(34px, 4vw, 52px)/1.1 "Roboto Condensed", sans-serif; }
h3 { font-size: 21px; }
p { color: var(--muted); line-height: 1.8; }
.section-dark p { color: rgba(255,255,255,.68); }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: .25s ease;
}
.btn-primary { color: var(--white); background: var(--green); }
.btn-primary:hover { background: #137648; transform: translateY(-2px); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.35); background: transparent; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.topbar { color: rgba(255,255,255,.8); background: var(--green-deep); font-size: 12px; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; }
.topbar-items, .topbar-social { display: flex; align-items: center; gap: 24px; }
.topbar span, .topbar a { display: flex; align-items: center; gap: 7px; }
.topbar .icon { width: 14px; height: 14px; color: #69d39d; }
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(18,59,42,.08);
  background: rgba(255,255,255,.97);
  box-shadow: 0 5px 25px rgba(22,50,38,.04);
  backdrop-filter: blur(12px);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 48px; height: 48px; }
.logo-text { display: grid; line-height: 1; }
.logo-text strong { color: var(--green-deep); font: 700 22px "Roboto Condensed", sans-serif; letter-spacing: .02em; }
.logo-text span { margin-top: 6px; color: var(--green); font-size: 9px; font-weight: 800; letter-spacing: .32em; }
.nav { display: flex; align-items: center; gap: 27px; }
.nav > a, .dropdown > button {
  padding: 32px 0;
  border: 0;
  color: #344139;
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.nav > a:hover, .nav > a.active, .dropdown > button:hover { color: var(--green); }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 72px;
  left: -24px;
  width: 290px;
  padding: 12px;
  border-top: 3px solid var(--green);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .2s ease;
}
.dropdown.open .dropdown-menu { opacity: 1; pointer-events: auto; transform: none; }
@media (min-width: 851px) and (hover: hover) {
  .dropdown:hover .dropdown-menu { opacity: 1; pointer-events: auto; transform: none; }
}
.dropdown-menu a { display: block; padding: 13px 14px; color: #445048; font-size: 13px; font-weight: 700; }
.dropdown-menu a:hover { color: var(--green); background: var(--soft); }
.nav-phone { display: flex; align-items: center; gap: 10px; padding-left: 22px; border-left: 1px solid var(--line); }
.nav-phone .call-dot { display: grid; width: 39px; height: 39px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); }
.nav-phone small { display: block; color: var(--muted); font-size: 10px; }
.nav-phone strong { color: var(--green-deep); font-size: 13px; }
.menu-toggle { position: relative; z-index: 112; display: none; width: 46px; height: 46px; padding: 10px; border: 0; border-radius: 4px; color: var(--green-deep); background: none; cursor: pointer; }
.menu-toggle .icon { width: 26px; height: 26px; }
.menu-close { display: none; font-size: 34px; font-weight: 300; line-height: 1; }
.menu-backdrop { position: fixed; z-index: 98; inset: 0; display: none; padding: 0; border: 0; background: rgba(4,27,19,.55); }

.hero { position: relative; height: min(720px, calc(100vh - 122px)); min-height: 610px; overflow: hidden; background: var(--green-deep); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.slide.active { opacity: 1; }
.slide::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4,27,19,.94) 0%, rgba(4,31,21,.76) 42%, rgba(4,27,19,.18) 75%, rgba(4,27,19,.35) 100%);
}
.slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-content {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: var(--white);
}
.hero-content > * { max-width: 700px; }
.hero-kicker { display: flex; align-items: center; gap: 12px; color: #80dea9; font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-kicker::before { width: 40px; height: 2px; content: ""; background: #80dea9; }
.hero h1 { margin: 20px 0; font: 700 clamp(48px, 6vw, 78px)/.98 "Roboto Condensed", sans-serif; }
.hero p { max-width: 640px; margin-bottom: 0; color: rgba(255,255,255,.76); font-size: 17px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 22px; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.9); font-size: 12px; font-weight: 800; letter-spacing: .02em; }
.hero-points i { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: var(--green-deep); background: #80dea9; font-size: 11px; font-style: normal; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; }
.hero-controls { position: absolute; z-index: 5; right: max(20px, calc((100vw - 1180px)/2)); bottom: 38px; display: flex; align-items: center; gap: 10px; }
.hero-dot { width: 34px; height: 3px; padding: 0; border: 0; background: rgba(255,255,255,.3); cursor: pointer; transition: .25s; }
.hero-dot.active { width: 62px; background: #65ce94; }
.hero-index { position: absolute; z-index: 4; bottom: 30px; left: max(20px, calc((100vw - 1180px)/2)); color: rgba(255,255,255,.7); font: 700 14px "Roboto Condensed"; letter-spacing: .18em; }
.hero-index strong { color: var(--white); font-size: 30px; }

.trust-strip { position: relative; z-index: 8; margin-top: -34px; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 5px; background: var(--white); box-shadow: var(--shadow); }
.trust-item { display: flex; min-height: 94px; align-items: center; gap: 16px; padding: 20px 25px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-icon { display: grid; width: 43px; height: 43px; flex: 0 0 auto; place-items: center; color: var(--green); background: #eaf6ef; }
.trust-item strong { display: block; color: var(--green-deep); font-size: 14px; }
.trust-item span { color: var(--muted); font-size: 11px; }

.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 80px; }
.about-visual { position: relative; min-height: 550px; }
.about-main { width: 88%; height: 500px; object-fit: cover; }
.about-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 230px;
  padding: 30px;
  color: var(--white);
  background: var(--green);
}
.about-card strong { display: block; font: 700 58px "Roboto Condensed"; }
.about-card span { font-size: 13px; font-weight: 700; line-height: 1.5; }
.about-badge { position: absolute; top: 35px; right: 5px; display: grid; width: 110px; height: 110px; place-items: center; border: 8px solid var(--white); border-radius: 50%; color: var(--white); background: var(--green-deep); text-align: center; font-size: 11px; font-weight: 800; }
.check-list { display: grid; gap: 13px; margin: 27px 0 34px; }
.check { display: flex; align-items: center; gap: 12px; color: #344139; font-size: 14px; font-weight: 700; }
.check i { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-style: normal; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { position: relative; min-height: 410px; overflow: hidden; background: var(--green-deep); box-shadow: 0 10px 35px rgba(12,41,29,.12); }
.product-card img { width: 100%; height: 100%; object-fit: cover; opacity: .73; transition: .5s ease; }
.product-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgba(5,33,23,.96), transparent 74%); }
.product-card:hover img { opacity: .9; transform: scale(1.05); }
.product-card-content { position: absolute; z-index: 2; right: 25px; bottom: 26px; left: 25px; color: var(--white); }
.product-no { color: #7bdca7; font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.product-card h3 { margin: 9px 0 12px; font: 700 25px/1.15 "Roboto Condensed"; }
.product-card p { margin-bottom: 18px; color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.6; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #8de1b3; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.why-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.why-intro { padding: 52px; color: var(--white); background: var(--green-deep); }
.why-intro h2 { font-size: 43px; }
.why-intro p { color: rgba(255,255,255,.65); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature { padding: 30px; border: 1px solid var(--line); background: var(--white); transition: .25s; }
.feature:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-icon { display: grid; width: 52px; height: 52px; margin-bottom: 22px; place-items: center; color: var(--green); background: #eaf6ef; }
.feature h3 { margin-bottom: 10px; }
.feature p { margin: 0; font-size: 13px; line-height: 1.7; }

.process-wrap { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.process-wrap::before { position: absolute; top: 42px; right: 9%; left: 9%; height: 1px; content: ""; border-top: 1px dashed rgba(255,255,255,.3); }
.process-step { position: relative; z-index: 2; text-align: center; }
.step-no { display: grid; width: 84px; height: 84px; margin: 0 auto 24px; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #91e3b5; background: var(--green-deep); font: 700 24px "Roboto Condensed"; }
.process-step h3 { margin-bottom: 10px; font-size: 17px; }
.process-step p { font-size: 12px; line-height: 1.6; }

.stats { padding: 60px 0; color: var(--white); background: var(--green); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat { padding: 5px 30px; border-right: 1px solid rgba(255,255,255,.22); text-align: center; }
.stat:last-child { border: 0; }
.stat strong { display: block; font: 700 clamp(29px, 3vw, 44px) "Roboto Condensed"; }
.stat span { color: rgba(255,255,255,.78); font-size: 11px; font-weight: 700; text-transform: uppercase; }

.policy-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.policy-image { position: relative; height: 520px; }
.policy-image img { width: 100%; height: 100%; object-fit: cover; }
.policy-overlay { position: absolute; right: 25px; bottom: 25px; left: 25px; padding: 24px; color: var(--white); background: rgba(5,48,32,.92); }
.policy-overlay strong { display: block; margin-bottom: 5px; font: 700 21px "Roboto Condensed"; }
.policy-overlay span { color: rgba(255,255,255,.68); font-size: 12px; }

.cta { position: relative; overflow: hidden; padding: 75px 0; color: var(--white); background: var(--green-deep); }
.cta::after { position: absolute; top: -120px; right: -70px; width: 390px; height: 390px; border: 70px solid rgba(255,255,255,.035); border-radius: 50%; content: ""; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta h2 { max-width: 700px; margin: 0; font-size: clamp(34px, 4vw, 52px); }
.cta-actions { display: flex; gap: 10px; flex-shrink: 0; }

.page-hero { position: relative; padding: 110px 0 95px; overflow: hidden; color: var(--white); background: var(--green-deep); }
.page-hero::after { position: absolute; inset: 0; content: ""; opacity: .17; background: url("images/hero-fabrika.png") center/cover; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin: 15px 0 18px; font: 700 clamp(46px, 6vw, 72px)/1 "Roboto Condensed"; }
.breadcrumb { display: flex; gap: 9px; color: rgba(255,255,255,.55); font-size: 12px; font-weight: 700; }
.breadcrumb a { color: #7edca8; }
.content-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 65px; }
.content-grid h2 { font-size: 44px; }
.history-box { padding: 35px; border-left: 4px solid var(--green); background: var(--soft); }
.history-year { color: var(--green); font: 700 40px "Roboto Condensed"; }
.sidebar-card { margin-bottom: 22px; padding: 30px; color: var(--white); background: var(--green-deep); }
.sidebar-card h3 { font: 700 24px "Roboto Condensed"; }
.sidebar-card p { color: rgba(255,255,255,.65); font-size: 13px; }
.side-links a { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 12px; font-weight: 700; }
.side-links a:hover { color: #79d9a4; }
.detail-image { width: 100%; height: 440px; margin-bottom: 38px; object-fit: cover; }
.detail-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 35px; }
.detail-box { padding: 30px; border: 1px solid var(--line); }
.detail-box ul { margin: 0; padding: 0; list-style: none; }
.detail-box li { padding: 10px 0 10px 22px; position: relative; color: var(--muted); font-size: 13px; border-bottom: 1px solid var(--line); }
.detail-box li::before { position: absolute; left: 0; color: var(--green); content: "✓"; font-weight: 800; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { padding: 36px; border: 1px solid var(--line); background: var(--white); }
.service-card .feature-icon { margin-bottom: 24px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; }
.contact-panel { padding: 42px; color: var(--white); background: var(--green-deep); }
.contact-line { display: flex; gap: 17px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-line .icon { flex: 0 0 auto; color: #72d8a0; }
.contact-line small { display: block; margin-bottom: 6px; color: rgba(255,255,255,.5); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.contact-line strong { font-size: 13px; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 800; text-transform: uppercase; }
.field input, .field textarea { width: 100%; padding: 16px; border: 1px solid var(--line); outline: none; background: #fafcfb; }
.field input:focus, .field textarea:focus { border-color: var(--green); }
.field textarea { min-height: 145px; resize: vertical; }
.form-status { display: none; padding: 13px; color: #146a43; background: #eaf7f0; font-size: 13px; }
.map { height: 420px; border: 0; filter: grayscale(.25); }

.site-footer { color: rgba(255,255,255,.65); background: #061d15; }
.footer-main { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1.2fr; gap: 55px; padding: 75px 0 55px; }
.footer-logo .logo-text strong { color: var(--white); }
.footer-main p { color: rgba(255,255,255,.5); font-size: 12px; }
.footer-main h4 { margin: 0 0 24px; color: var(--white); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: grid; gap: 13px; }
.footer-links a { font-size: 12px; }
.footer-links a:hover { color: #79d9a4; }
.footer-contact { display: grid; gap: 17px; font-size: 12px; line-height: 1.6; }
.footer-bottom { display: flex; min-height: 70px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.09); font-size: 10px; }
.floating-actions { position: fixed; z-index: 90; right: 20px; bottom: 22px; display: grid; gap: 10px; }
.float-btn { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; color: var(--white); box-shadow: 0 8px 25px rgba(0,0,0,.22); }
.float-btn.whatsapp { background: #25d366; }
.float-btn.phone { background: var(--green-deep); }
.float-btn .icon { width: 23px; height: 23px; }

@media (max-width: 1100px) {
  .nav { gap: 15px; }
  .nav-phone { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { min-height: 430px; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > div:nth-child(3) { display: none; }
}

@media (max-width: 850px) {
  .topbar { display: none; }
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; }
  body.menu-open .menu-toggle { color: var(--green); background: var(--soft); }
  body.menu-open .menu-icon { display: none; }
  body.menu-open .menu-close, body.menu-open .menu-backdrop { display: block; }
  .nav {
    position: fixed;
    z-index: 110;
    top: 72px;
    right: 0;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    width: min(380px, 88vw);
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: clamp(8px, 2dvh, 18px) 22px clamp(12px, 2dvh, 24px);
    background: var(--white);
    box-shadow: -10px 20px 40px rgba(0,0,0,.12);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(105%);
    transition: .3s ease;
  }
  .nav.open { transform: none; }
  .nav > a, .dropdown > button { display: flex; width: 100%; min-height: clamp(44px, 7dvh, 54px); align-items: center; padding: 0 6px; text-align: left; border-bottom: 1px solid var(--line); }
  .nav > a { flex: 0 0 auto; }
  .dropdown { width: 100%; flex: 0 0 auto; }
  .dropdown-toggle { display: flex; align-items: center; justify-content: space-between; }
  .dropdown-toggle span { transition: transform .2s ease; }
  .dropdown.open .dropdown-toggle span { transform: rotate(180deg); }
  .dropdown-menu { position: static; display: block; width: 100%; max-height: 0; padding: 0 0 0 12px; border: 0; background: var(--soft); box-shadow: none; opacity: 0; overflow: hidden; visibility: hidden; pointer-events: none; transform: none; transition: max-height .25s ease, opacity .2s ease, padding .25s ease; }
  .dropdown-menu a { display: flex; min-height: clamp(36px, 5.8dvh, 46px); align-items: center; padding: 0 14px; border-bottom: 1px solid rgba(18,59,42,.08); font-size: clamp(11px, 1.8dvh, 13px); }
  .dropdown.open .dropdown-menu { max-height: 220px; padding-top: clamp(2px, .6dvh, 5px); padding-bottom: clamp(2px, .6dvh, 5px); opacity: 1; visibility: visible; pointer-events: auto; }
  .hero { height: 650px; min-height: 0; }
  .hero h1 { font-size: 56px; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-grid, .why-grid, .policy-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { order: 2; }
  .process-wrap { grid-template-columns: 1fr 1fr; row-gap: 35px; }
  .process-wrap::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 35px 0; }
  .stat:nth-child(2n) { border: 0; }
  .stat:last-child { grid-column: 1 / -1; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .service-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 74px 0; }
  .logo-mark { width: 40px; height: 40px; }
  .logo-text strong { font-size: 19px; }
  .hero { height: 620px; }
  .hero h1 { font-size: 43px; }
  .hero p { font-size: 14px; }
  .hero-points { gap: 10px 16px; margin-top: 18px; }
  .hero-points span { font-size: 11px; }
  .hero-actions, .cta-actions { width: 100%; flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-controls { display: none; }
  .trust-strip { margin-top: 0; }
  .trust-inner, .product-grid, .feature-grid, .process-wrap, .detail-columns, .service-grid, .form-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .about-main { width: 100%; height: 400px; }
  .about-card { width: 190px; padding: 24px; }
  .about-badge { display: none; }
  .why-intro, .contact-panel { padding: 30px; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat { padding: 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .stat:last-child { grid-column: auto; }
  .policy-image { height: 430px; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-main > div:nth-child(3) { display: block; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
  .field.full { grid-column: auto; }
}
