/* InKapa — main styles */

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, .display { font-family: var(--font-heading); }
.display { font-weight: 700; font-size: clamp(40px, 5.3vw, 76px); line-height: 1.02; letter-spacing: -2px; }
h1 { font-weight: 700; font-size: clamp(30px, 3.9vw, 56px); line-height: 1.05; letter-spacing: -1.5px; }
h2 { font-weight: 600; font-size: clamp(26px, 2.8vw, 40px); line-height: 1.15; letter-spacing: -1px; }
h3 { font-weight: 600; font-size: clamp(20px, 1.7vw, 24px); line-height: 1.25; letter-spacing: -0.5px; }
h4 { font-weight: 500; font-size: 18px; line-height: 1.3; }

.accent { color: var(--accent); }
.muted { color: var(--text-muted); }

.overline {
  font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 16px;
}

.body-l { font-size: 20px; font-weight: 500; line-height: 1.5; }
.caption { font-size: 13px; font-weight: 500; line-height: 1.4; letter-spacing: 0.2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px; letter-spacing: 0.3px;
  padding: 17px 30px; border-radius: var(--radius-pill);
  background: var(--accent); color: var(--on-accent);
  transition: filter .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.08); }
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-default);
}
.btn-outline:hover { border-color: var(--text-muted); filter: none; }
.btn-dark {
  background: var(--bg-base); color: var(--text-primary);
}
.btn-dark:hover { filter: brightness(1.3); }
.btn-sm { padding: 12px 22px; font-size: 14px; }

.link-more { color: var(--accent); font-weight: 700; font-size: 15px; }
.link-more:hover { text-decoration: underline; }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-surface-2); border: 1px solid var(--border-default);
  border-radius: var(--radius-chip); padding: 8px 14px;
  font-size: 13px; font-weight: 600; color: var(--text-primary);
}
.badge {
  display: inline-block; background: var(--accent); color: var(--on-accent);
  border-radius: var(--radius-chip); padding: 5px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.num-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 32px; padding: 0 10px;
  background: var(--accent); color: var(--on-accent);
  border-radius: var(--radius-chip);
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-default);
}
.header-inner { display: flex; align-items: center; gap: 32px; height: 88px; }
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 22px; }
.logo-plate {
  background: var(--text-primary); color: var(--bg-base);
  border-radius: 8px; padding: 3px 8px; font-size: 18px;
}
.nav { display: flex; align-items: center; gap: 28px; margin: 0 auto; }
.nav a, .nav-drop-toggle {
  font-size: 15px; font-weight: 600; color: var(--text-primary);
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 0;
}
.nav a:hover, .nav-drop-toggle:hover, .nav a.active { color: var(--accent); }
.nav-drop { position: relative; }
.nav-drop-toggle .chev { transition: transform .2s; width: 12px; height: 12px; }
.nav-drop.open .chev { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: -16px; min-width: 340px;
  background: var(--bg-surface); border: 1px solid var(--border-default);
  border-radius: 20px; padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.nav-drop.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 16px; border-radius: 12px; width: 100%;
}
.dropdown a:hover { background: var(--bg-surface-2); color: var(--text-primary); }
.dropdown .dd-title { font-weight: 700; font-size: 15px; }
.dropdown .dd-sub { display: block; font-size: 13px; color: var(--text-muted); font-weight: 500; margin-top: 3px; }
.dropdown .badge { font-size: 9px; padding: 4px 7px; flex-shrink: 0; }

.header-contact { text-align: right; margin-left: auto; }
.header-contact .phone { font-weight: 700; font-size: 16px; display: block; }
.header-contact .phone:hover { color: var(--accent); }
.header-contact .hours { font-size: 12px; color: var(--text-muted); }
.header .btn { padding: 14px 24px; }
.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.burger img { width: 24px; }

/* mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 68px 0 0 0; z-index: 99;
  background: var(--bg-base); padding: 24px; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 18px; font-weight: 600; border-bottom: 1px solid var(--border-default); }
.mobile-menu .mm-sub { font-size: 15px; color: var(--text-muted); padding-left: 16px; }
.mobile-menu .btn { margin-top: 24px; width: 100%; }

/* ---------- Sections ---------- */
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--bg-surface); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.section-head p { max-width: 420px; color: var(--text-muted); font-size: 17px; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 var(--section-py); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-default); border-radius: var(--radius-pill);
  padding: 9px 16px; font-size: 13px; font-weight: 600; color: var(--text-muted);
  margin-bottom: 28px;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero p.sub { margin: 24px 0 36px; font-size: 19px; color: var(--text-muted); max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stats .stat b { font-family: var(--font-heading); font-size: 32px; font-weight: 700; color: var(--accent); display: block; }
.hero-stats .stat span { font-size: 13px; color: var(--text-muted); }

.visual-card {
  position: relative; overflow: hidden;
  background: var(--bg-surface); border: 1px solid var(--border-default);
  border-radius: var(--radius-card-lg); padding: 32px;
  min-height: 480px; display: flex; flex-direction: column; justify-content: space-between;
}
.visual-card .glow {
  position: absolute; inset: 0; margin: auto; width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(200,255,46,.28) 0%, transparent 65%);
  pointer-events: none;
}
.visual-card .mg { width: 62%; margin: auto; filter: drop-shadow(0 0 40px rgba(200,255,46,.45)); }
.visual-card .vc-top { font-size: 13px; color: var(--text-muted); position: relative; }
.visual-card .vc-bottom { position: relative; }
.visual-card .vc-bottom b { display: block; font-size: 15px; }
.visual-card .vc-bottom span { font-size: 13px; color: var(--text-muted); }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-surface); border: 1px solid var(--border-default);
  border-radius: var(--radius-card); padding: 28px;
}
.section-alt .card { background: var(--bg-surface-2); }
.card h3 { margin: 20px 0 10px; }
.card p { color: var(--text-muted); font-size: 15px; }

/* process */
.process-card { position: relative; overflow: hidden; }
.process-card .big-num {
  font-family: var(--font-heading); font-weight: 700; font-size: 64px;
  color: var(--accent); opacity: .9; line-height: 1;
}
.process-card h3 { margin-top: 24px; }

/* sport cards */
.sport-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  min-height: 320px; padding: 0;
}
.sport-card .sc-visual {
  position: relative; flex: 1; min-height: 180px;
  background: radial-gradient(circle at 50% 60%, rgba(200,255,46,.16) 0%, transparent 70%), var(--bg-surface-2);
  display: flex; align-items: center; justify-content: center;
}
.sport-card .sc-visual img { width: 45%; max-width: 190px; filter: drop-shadow(0 0 26px rgba(200,255,46,.4)); }
.sport-card .badge { position: absolute; top: 16px; left: 16px; }
.sport-card .sc-body { padding: 24px 28px 28px; }
.sport-card .sc-body h3 { margin: 0 0 8px; }
.sport-card .sc-body p { margin-bottom: 16px; }
.sport-card:hover { border-color: var(--accent); }

/* ---------- Pricing ---------- */
.price-card { display: flex; flex-direction: column; padding: 36px 32px; position: relative; }
.price-card .price { font-family: var(--font-heading); font-weight: 700; font-size: 34px; margin: 14px 0 26px; }
.price-card ul { flex: 1; margin-bottom: 30px; display: flex; flex-direction: column; gap: 12px; }
.price-card ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text-muted); }
.price-card ul li::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  background: url('../assets/icon-check.svg') center/contain no-repeat;
}
.price-card.featured { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.price-card.featured p, .price-card.featured ul li { color: rgba(13,13,13,.75); }
.price-card.featured ul li::before { filter: brightness(0); }
.price-card.featured .badge { position: absolute; top: 20px; right: 20px; background: var(--bg-base); color: var(--text-primary); }
.price-card .btn { width: 100%; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.g-tile {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  background: var(--bg-surface-2); border: 1px solid var(--border-default);
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
}
.g-tile.wide { grid-column: span 2; aspect-ratio: auto; }
.g-tile img { width: 52%; filter: drop-shadow(0 0 24px rgba(200,255,46,.38)); }
.g-tile .g-tag {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(13,13,13,.8); border-radius: var(--radius-chip);
  padding: 6px 12px; font-size: 12px; font-weight: 600;
}
.g-tile:nth-child(2n) { background: radial-gradient(circle at 50% 55%, rgba(200,255,46,.14), transparent 70%), var(--bg-surface-2); }
.g-tile:nth-child(2n) img { transform: rotate(-14deg); }
.g-tile:nth-child(3n) img { transform: rotate(10deg) scale(.9); }

/* ---------- Reviews ---------- */
.review-card { padding: 32px; display: flex; flex-direction: column; gap: 22px; }
.review-card .quote-mark { font-family: var(--font-heading); font-size: 40px; color: var(--accent); line-height: 1; }
.review-card blockquote { font-size: 17px; font-weight: 500; line-height: 1.55; flex: 1; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-author .ava {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-surface-2); border: 1px solid var(--border-default);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: var(--accent);
}
.review-author b { display: block; font-size: 15px; }
.review-author span { font-size: 13px; color: var(--text-muted); }

/* ---------- Blog cards ---------- */
.blog-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.blog-card .bc-visual {
  height: 190px; background: radial-gradient(circle at 50% 60%, rgba(200,255,46,.14), transparent 70%), var(--bg-surface-2);
  display: flex; align-items: center; justify-content: center;
}
.blog-card .bc-visual img { width: 34%; filter: drop-shadow(0 0 20px rgba(200,255,46,.35)); }
.blog-card .bc-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card .bc-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.blog-card .bc-meta .tag { color: var(--accent); font-size: 13px; font-weight: 700; }
.blog-card .bc-meta .date { font-size: 13px; color: var(--text-muted); }
.blog-card h3 { margin: 0 0 10px; font-size: 19px; }
.blog-card p { flex: 1; margin-bottom: 18px; }
.blog-card:hover { border-color: var(--accent); }

.featured-card { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; padding: 0; margin-bottom: var(--gap); }
.featured-card .fc-visual {
  min-height: 320px; background: radial-gradient(circle at 50% 55%, rgba(200,255,46,.2), transparent 70%), var(--bg-surface-2);
  display: flex; align-items: center; justify-content: center;
}
.featured-card .fc-visual img { width: 44%; filter: drop-shadow(0 0 32px rgba(200,255,46,.45)); }
.featured-card .fc-body { padding: 44px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.featured-card .fc-body h2 { font-size: clamp(24px, 2.2vw, 32px); }
.featured-card .fc-body p { color: var(--text-muted); }

/* blog filters */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-chip {
  border: 1px solid var(--border-default); border-radius: var(--radius-pill);
  padding: 10px 20px; font-size: 14px; font-weight: 600; color: var(--text-muted);
  transition: all .15s;
}
.filter-chip:hover { color: var(--text-primary); border-color: var(--text-muted); }
.filter-chip.active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

.pagination { display: flex; gap: 10px; justify-content: center; margin-top: 56px; }
.pagination a, .pagination span {
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--border-default); font-weight: 700; font-size: 14px;
}
.pagination .active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.pagination a:hover { border-color: var(--accent); color: var(--accent); }

.search-box { position: relative; max-width: 420px; }
.search-box input { width: 100%; }

/* ---------- Forms ---------- */
.input, input[type="text"], input[type="tel"], input[type="email"], textarea {
  width: 100%; background: var(--bg-surface-2); border: 1px solid var(--border-default);
  border-radius: var(--radius-input); padding: 15px 18px;
  color: var(--text-primary); font-size: 15px; outline: none;
  transition: border-color .15s;
}
input:focus, textarea:focus { border-color: var(--accent); }
input::placeholder, textarea::placeholder { color: var(--text-muted); }
label.field { display: block; margin-bottom: 18px; }
label.field > span { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text-muted); }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-muted); margin: 18px 0 22px; }
.checkbox-row input { width: 18px; height: 18px; accent-color: var(--accent); margin-top: 1px; flex-shrink: 0; }
.checkbox-row a { text-decoration: underline; }

.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg button {
  flex: 1; padding: 12px 16px; border-radius: var(--radius-input);
  border: 1px solid var(--border-default); font-size: 14px; font-weight: 600;
  background: var(--bg-surface-2); color: var(--text-muted);
}
.seg button.active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

.sport-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.sport-chips button {
  padding: 9px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-default); font-size: 13px; font-weight: 600; color: var(--text-muted);
}
.sport-chips button.active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

/* ---------- CTA / contact section ---------- */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-lines { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.contact-line { display: flex; align-items: center; gap: 16px; }
.contact-line .ic {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: var(--bg-surface-2); border: 1px solid var(--border-default);
  display: flex; align-items: center; justify-content: center;
}
.contact-line .ic img { width: 22px; }
.contact-line b { display: block; font-size: 15px; }
.contact-line span { font-size: 13px; color: var(--text-muted); }
.form-card { background: var(--bg-surface); border: 1px solid var(--border-default); border-radius: var(--radius-card-lg); padding: 36px; }
.form-card h3 { margin-bottom: 24px; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 16px; }

/* lime CTA banner */
.lime-banner {
  background: var(--accent); color: var(--on-accent);
  border-radius: 36px; padding: 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.lime-banner h2 { color: var(--on-accent); }
.lime-banner p { color: rgba(13,13,13,.7); margin-top: 14px; font-size: 17px; }
.lime-banner form { display: flex; gap: 12px; flex-wrap: wrap; }
.lime-banner input {
  flex: 1; min-width: 180px; background: rgba(13,13,13,.08);
  border: 1px solid rgba(13,13,13,.25); color: var(--on-accent);
}
.lime-banner input::placeholder { color: rgba(13,13,13,.5); }
.lime-banner input:focus { border-color: var(--on-accent); }
.lime-banner .btn { background: var(--bg-base); color: var(--text-primary); }

/* ---------- Contacts / map ---------- */
.map-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--gap); }
.map-card {
  position: relative; min-height: 380px; border-radius: var(--radius-card-lg); overflow: hidden;
  background:
    radial-gradient(circle at 60% 45%, rgba(200,255,46,.1), transparent 50%),
    repeating-linear-gradient(0deg, transparent 0 59px, rgba(255,255,255,.045) 59px 60px),
    repeating-linear-gradient(90deg, transparent 0 59px, rgba(255,255,255,.045) 59px 60px),
    var(--bg-surface);
  border: 1px solid var(--border-default);
}
.map-pin {
  position: absolute; top: 42%; left: 56%; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.map-pin .pin-label {
  background: var(--accent); color: var(--on-accent);
  border-radius: var(--radius-pill); padding: 8px 16px; font-size: 13px; font-weight: 700;
}
.map-pin img { width: 34px; filter: drop-shadow(0 4px 12px rgba(200,255,46,.5)); }
.contact-card { padding: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact-card .row { display: flex; gap: 14px; align-items: flex-start; }
.contact-card .row img { width: 20px; margin-top: 3px; flex-shrink: 0; }
.contact-card .row b { font-size: 16px; }
.contact-card .row span { color: var(--text-muted); font-size: 14px; display: block; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { display: flex; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 28px; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { opacity: .5; }

/* ---------- Specs table ---------- */
.specs { border: 1px solid var(--border-default); border-radius: var(--radius-card); overflow: hidden; }
.specs .row { display: grid; grid-template-columns: 1fr 1.6fr; gap: 24px; padding: 22px 30px; border-bottom: 1px solid var(--border-default); }
.specs .row:last-child { border-bottom: none; }
.specs .row:nth-child(odd) { background: var(--bg-surface); }
.specs .row b { font-size: 15px; }
.specs .row span { color: var(--text-muted); font-size: 15px; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--border-default); border-radius: var(--radius-card); margin-bottom: 14px; background: var(--bg-surface); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 30px; text-align: left;
  font-family: var(--font-heading); font-weight: 500; font-size: 17px; color: var(--text-primary);
}
.faq-q .fq-ic {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--border-default);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 18px; font-weight: 500; transition: all .2s;
}
.faq-item.open .fq-ic { background: var(--accent); color: var(--on-accent); border-color: var(--accent); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 30px 26px; color: var(--text-muted); font-size: 15px; max-width: 720px; }

/* ---------- Delivery ---------- */
.delivery-card { display: flex; flex-direction: column; }
.delivery-card .dc-ic {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(200,255,46,.1); border: 1px solid rgba(200,255,46,.3);
  display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
}
.delivery-card .dc-ic img { width: 26px; }
.delivery-card .dc-foot {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border-default);
  display: flex; justify-content: space-between; gap: 12px; font-size: 13px;
}
.delivery-card .dc-foot b { color: var(--accent); }
.delivery-card .dc-foot span { color: var(--text-muted); }
.hero-stat-cards { display: flex; gap: var(--gap); }
.hero-stat-cards .card { text-align: left; min-width: 170px; }
.hero-stat-cards .card b { font-family: var(--font-heading); font-size: 40px; font-weight: 700; color: var(--accent); display: block; margin-bottom: 6px; }
.hero-stat-cards .card span { font-size: 13px; color: var(--text-muted); }
.city-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; align-items: center; }
.city-tags .ct-label { font-size: 14px; color: var(--text-muted); margin-right: 6px; }

/* ---------- Article ---------- */
.article-layout { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: start; }
.article-sidebar { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 36px; }
.toc a { display: block; padding: 9px 0 9px 16px; border-left: 2px solid var(--border-default); font-size: 14px; color: var(--text-muted); }
.toc a:hover, .toc a.active { color: var(--accent); border-left-color: var(--accent); }
.share-row { display: flex; gap: 10px; }
.share-row a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-default);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
}
.share-row a:hover { border-color: var(--accent); color: var(--accent); }
.article-body { max-width: 720px; }
.article-body .lead { font-size: 20px; font-weight: 500; line-height: 1.55; margin-bottom: 40px; }
.article-body h2 { margin: 48px 0 20px; font-size: 28px; }
.article-body p { color: #cfcfcf; margin-bottom: 20px; }
.article-body ul { margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; }
.article-body ul li { position: relative; padding-left: 26px; color: #cfcfcf; }
.article-body ul li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
}
.callout {
  border-left: 3px solid var(--accent); background: var(--bg-surface);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 24px 28px; margin: 28px 0;
}
.callout .co-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--accent); display: block; margin-bottom: 8px; }
.callout p { margin: 0; }
.article-figure { margin: 32px 0; }
.article-figure .fig-visual {
  height: 280px; border-radius: var(--radius-card); border: 1px solid var(--border-default);
  background: radial-gradient(circle at 50% 55%, rgba(200,255,46,.14), transparent 70%), var(--bg-surface);
  display: flex; align-items: center; justify-content: center;
}
.article-figure .fig-visual img { width: 26%; filter: drop-shadow(0 0 22px rgba(200,255,46,.4)); }
.article-figure figcaption { font-size: 13px; color: var(--text-muted); margin-top: 12px; }
.article-cta {
  background: var(--accent); color: var(--on-accent); border-radius: var(--radius-card-lg);
  padding: 36px 40px; margin: 48px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.article-cta h3 { color: var(--on-accent); margin: 0 0 6px; }
.article-cta p { color: rgba(13,13,13,.7); margin: 0; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 40px; }
.tag-row span { background: var(--bg-surface-2); border: 1px solid var(--border-default); border-radius: var(--radius-chip); padding: 7px 14px; font-size: 13px; color: var(--text-muted); }
.article-head { max-width: 820px; margin-bottom: 48px; }
.article-head .tag { color: var(--accent); font-weight: 700; font-size: 14px; display: inline-block; margin-bottom: 18px; }
.article-author { display: flex; align-items: center; gap: 14px; margin: 28px 0; }
.article-author .ava {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: var(--on-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
}
.article-cover {
  height: 380px; border-radius: var(--radius-card-lg); border: 1px solid var(--border-default);
  background: radial-gradient(circle at 50% 55%, rgba(200,255,46,.18), transparent 70%), var(--bg-surface);
  display: flex; align-items: center; justify-content: center; margin-bottom: 72px;
}
.article-cover img { width: 22%; filter: drop-shadow(0 0 34px rgba(200,255,46,.45)); }

/* ---------- Modals ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.7); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-surface); border: 1px solid var(--border-default);
  border-radius: var(--radius-card-lg); padding: 40px; width: 100%; max-width: 480px;
  position: relative; max-height: 92vh; overflow-y: auto;
}
.modal-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-default); display: flex; align-items: center; justify-content: center; }
.modal-close:hover { border-color: var(--accent); }
.modal-close img { width: 14px; }
.modal h3 { font-size: 26px; margin-bottom: 10px; }
.modal .modal-sub { color: var(--text-muted); font-size: 15px; margin-bottom: 28px; }
.modal .btn { width: 100%; }
.modal.success { text-align: center; }
.success-ic {
  width: 84px; height: 84px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center; margin: 12px auto 28px;
}
.success-ic img { width: 36px; filter: brightness(0); }
.modal.success .actions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border-default); padding: 72px 0 0; background: var(--bg-base); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin: 18px 0 24px; max-width: 280px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-default);
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700;
}
.socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col .fc-title { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--text-muted); }
.footer-col a:hover { color: var(--accent); }
.footer-col .fc-text { font-size: 14px; color: var(--text-muted); }
.footer-bottom {
  border-top: 1px solid var(--border-default); padding: 24px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted);
}
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .cta-grid, .map-grid, .featured-card { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .article-sidebar { position: static; }
  .lime-banner { grid-template-columns: 1fr; padding: 48px 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .header-contact { display: none; }
  .header .btn { display: none; }
  .burger { display: flex; margin-left: auto; }
  .header-inner { height: 68px; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-tile.wide { grid-column: span 2; }
  .section-head { margin-bottom: 36px; }
  .visual-card { min-height: 360px; }
  .hero { padding-top: 40px; }
  .hero-stats { gap: 28px; }
  .lime-banner form { flex-direction: column; }
  .lime-banner .btn { width: 100%; }
  .modal { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stat-cards { flex-direction: column; }
  .featured-card .fc-body { padding: 28px 24px; }
  .specs .row { grid-template-columns: 1fr; gap: 6px; padding: 18px 22px; }
  .article-cta { padding: 28px 24px; }
}
