/* DerPen — brend dizayn sistemi.
   Rənglər iOS tətbiqindəki `Theme.swift` ilə eyni hex dəyərləridir. */

:root {
  /* brend */
  --accent: #2E7FF0;
  --accent-deep: #1B5FC4;
  --accent-soft: #E6F0FE;
  --glow: #5AC8FA;
  --glow-warm: #7BE2FF;

  /* mətn */
  --ink: #0B1420;
  --body: #44545F;
  --muted: #8494A0;

  /* səthlər */
  --paper: #FFFFFF;
  --surface: #F2F6FA;
  --surface-2: #E7EEF6;
  --line: #DCE5EE;

  /* tünd */
  --steel: #0B1420;
  --steel-2: #16222F;
  --steel-line: #2A3A4B;

  /* status */
  --good: #30C07B;
  --warn: #F0A93B;

  /* ölçü */
  --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-xl: 28px; --r-pill: 999px;
  --gutter: clamp(16px, 5vw, 40px);
  --maxw: 1200px;

  --shadow-1: 0 4px 16px rgba(11,20,32,.07), 0 1px 4px rgba(11,20,32,.04);
  --shadow-2: 0 10px 34px rgba(11,20,32,.10), 0 2px 8px rgba(11,20,32,.05);
  --shadow-3: 0 22px 60px rgba(11,20,32,.16);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); color: var(--body);
  background: var(--surface); line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------------------------------------------------------------- şüşə */
.glass {
  background: rgba(255,255,255,.66);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: var(--shadow-1);
}
.glass-dark {
  background: rgba(11,20,32,.55);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,.14);
}

/* ---------------------------------------------------------------- başlıq */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(242,246,250,.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(220,229,238,.8);
}
.site-header .wrap { display: flex; align-items: center; gap: 18px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); font-size: 18px; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--accent), var(--glow));
  position: relative; box-shadow: 0 4px 12px rgba(46,127,240,.35);
}
.brand-mark::before, .brand-mark::after {
  content: ''; position: absolute; background: rgba(255,255,255,.95);
}
.brand-mark::before { left: 50%; top: 20%; bottom: 20%; width: 2px; transform: translateX(-50%); }
.brand-mark::after { top: 50%; left: 20%; right: 20%; height: 2px; transform: translateY(-50%); }
.brand-mark span {
  position: absolute; inset: 6px; border: 2px solid rgba(255,255,255,.9); border-radius: 4px;
}

.nav { display: flex; gap: 4px; margin-left: 8px; }
.nav a {
  padding: 8px 14px; border-radius: var(--r-pill); font-size: 14.5px;
  font-weight: 500; color: var(--body); transition: background .18s, color .18s;
}
.nav a:hover { background: var(--surface-2); color: var(--ink); }
.nav a.on { background: var(--accent-soft); color: var(--accent-deep); font-weight: 600; }

.header-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.lang { display: flex; gap: 2px; padding: 3px; background: var(--surface-2); border-radius: var(--r-pill); }
.lang a {
  padding: 5px 10px; border-radius: var(--r-pill); font-size: 12.5px; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: .03em;
}
.lang a.on { background: var(--paper); color: var(--accent-deep); box-shadow: var(--shadow-1); }

/* Mobil başlıq: iki sətir — brend/dil/zəng, altında sürüşən naviqasiya */
@media (max-width: 899px) {
  .site-header .wrap { flex-wrap: wrap; height: auto; padding-block: 10px; gap: 10px; }
  .nav {
    order: 3; width: 100%; margin-left: 0; overflow-x: auto; padding-bottom: 2px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { white-space: nowrap; background: var(--surface-2); }
  .nav a.on { background: var(--accent-soft); }
  .brand { font-size: 16.5px; }
  .call-icon { padding: 0; width: 40px; height: 40px; border-radius: 50%; }
  .call-icon span { display: none; }
}

/* ---------------------------------------------------------------- düymələr */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--r-pill); font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .16s, box-shadow .16s, background .16s;
  white-space: nowrap;
}
.btn:active { transform: scale(.975); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--glow)); color: #fff;
  box-shadow: 0 8px 22px rgba(46,127,240,.35);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(46,127,240,.45); }
.btn-ghost { background: var(--paper); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-1); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-dark { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); backdrop-filter: blur(12px); }
.btn-dark:hover { background: rgba(255,255,255,.2); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ---------------------------------------------------------------- hero */
.hero { position: relative; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,20,32,.92) 0%, rgba(11,20,32,.72) 42%, rgba(11,20,32,.25) 100%);
}
.hero-inner { position: relative; padding: clamp(56px, 10vw, 110px) 0 clamp(48px, 8vw, 96px); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px; color: var(--glow-warm);
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; margin-bottom: 18px;
}
.hero h1 {
  color: #fff; font-size: clamp(32px, 6vw, 58px); font-weight: 700;
  white-space: pre-line; margin-bottom: 18px; text-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.hero p.lead { color: rgba(255,255,255,.84); font-size: clamp(15px, 2vw, 18px); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 42px; max-width: 620px; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 16px 18px; border-radius: var(--r-md); }
.stat b { display: block; color: #fff; font-size: clamp(20px, 3vw, 27px); font-weight: 700; letter-spacing: -.02em; }
.stat span { color: rgba(255,255,255,.66); font-size: 12.5px; }

/* ---------------------------------------------------------------- bölmə */
.section { padding: clamp(48px, 7vw, 86px) 0; }
.section-head { margin-bottom: 30px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(23px, 3.4vw, 34px); font-weight: 700; }
.section-head p { color: var(--muted); font-size: 15px; margin-top: 6px; }
.section-link { color: var(--accent); font-weight: 600; font-size: 14.5px; display: inline-flex; gap: 5px; align-items: center; }

/* ---------------------------------------------------------------- kartlar */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-1);
  transition: transform .2s cubic-bezier(.2,.8,.3,1), box-shadow .2s;
  display: flex; flex-direction: column;
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.8,.3,1); }
a.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: 16.5px; font-weight: 650; }
.card-body .sub { color: var(--muted); font-size: 13px; flex: 1; }

.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 10px; border-radius: var(--r-pill); font-size: 10px; font-weight: 800;
  letter-spacing: .07em; color: #fff;
}
.badge-new { background: var(--accent); }
.badge-popular { background: var(--warn); }
.chip-series {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  padding: 5px 10px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; color: #fff;
  background: rgba(11,20,32,.62); backdrop-filter: blur(8px);
}

.price { display: flex; align-items: baseline; gap: 5px; }
.price small { color: var(--muted); font-size: 10.5px; font-weight: 600; text-transform: lowercase; }
.price b { color: var(--ink); font-size: 19px; font-weight: 700; font-variant-numeric: tabular-nums; }
.price span { color: var(--muted); font-size: 11.5px; }

.dots { display: flex; }
.dots i { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--paper); margin-left: -5px; box-shadow: 0 1px 3px rgba(11,20,32,.18); }
.dots i:first-child { margin-left: 0; }

.metrics { display: flex; gap: 8px; flex-wrap: wrap; }
.metric {
  display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px;
  background: var(--accent-soft); color: var(--accent-deep);
  border-radius: var(--r-pill); font-size: 11.5px; font-weight: 650;
}

.divider { height: 1px; background: var(--line); }

/* ---------------------------------------------------------------- keyfiyyət / addımlar */
.feature { padding: 22px; border-radius: var(--r-lg); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-1); }
.feature .icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  margin-bottom: 14px; font-size: 21px;
}
.feature h3 { font-size: 16.5px; margin-bottom: 6px; }
.feature p { font-size: 13.5px; color: var(--muted); }

.step { position: relative; padding: 22px; border-radius: var(--r-lg); background: var(--paper); border: 1px solid var(--line); }
.step .n {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--glow)); color: #fff;
  font-weight: 800; font-size: 14px; margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(46,127,240,.32);
}

/* ---------------------------------------------------------------- rəylər */
.quote { padding: 22px; border-radius: var(--r-lg); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-1); display: flex; flex-direction: column; gap: 14px; }
.quote-head { display: flex; align-items: center; gap: 11px; }
.quote-head img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--paper); box-shadow: var(--shadow-1); }
.quote-head b { display: block; color: var(--ink); font-size: 14.5px; }
.quote-head span { color: var(--muted); font-size: 11.5px; }
.stars { color: var(--warn); font-size: 12px; letter-spacing: 1px; }
.quote p { font-size: 14px; color: var(--body); }

/* ---------------------------------------------------------------- kalkulyator */
.calc { display: grid; gap: 22px; padding: clamp(20px, 3vw, 30px); border-radius: var(--r-xl); }
@media (min-width: 860px) { .calc { grid-template-columns: 1.25fr .95fr; align-items: start; } }
.field { margin-bottom: 18px; }
.field-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.field-head label { font-size: 13px; color: var(--muted); font-weight: 500; }
.field-head output { font-size: 15px; color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }
input[type=range] { width: 100%; accent-color: var(--accent); height: 22px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 8px 14px; border-radius: var(--r-pill); border: 1px solid var(--line);
  background: var(--paper); color: var(--body); font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all .16s;
}
.pill:hover { border-color: var(--accent); color: var(--accent-deep); }
.pill[aria-pressed=true] {
  background: linear-gradient(135deg, var(--accent), var(--glow)); color: #fff;
  border-color: transparent; box-shadow: 0 6px 16px rgba(46,127,240,.3);
}
.calc-result { background: var(--accent-soft); border-radius: var(--r-lg); padding: 22px; }
.calc-result .total { font-size: clamp(30px, 5vw, 40px); font-weight: 800; color: var(--accent-deep); font-variant-numeric: tabular-nums; letter-spacing: -.03em; }
.calc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 13.5px; }
.stepper { display: inline-flex; align-items: center; gap: 14px; }
.stepper button {
  width: 32px; height: 32px; border-radius: 50%; border: 0; background: var(--accent-soft);
  color: var(--accent-deep); font-size: 17px; font-weight: 700; cursor: pointer; line-height: 1;
}
.stepper button:hover { background: #d4e4fd; }
.stepper b { min-width: 26px; text-align: center; font-variant-numeric: tabular-nums; color: var(--ink); }

/* ---------------------------------------------------------------- işlər */
.work { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-1); }
.work img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.3,1); }
.work:hover img { transform: scale(1.06); }
.work-info { position: absolute; inset: auto 0 0 0; padding: 18px; background: linear-gradient(transparent, rgba(11,20,32,.88)); color: #fff; }
.work-info b { display: block; font-size: 17px; font-weight: 650; }
.work-info span { font-size: 12px; opacity: .8; }

.work-row { display: grid; gap: 22px; align-items: start; padding: 20px; border-radius: var(--r-xl); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-1); }
@media (min-width: 820px) { .work-row { grid-template-columns: 1.1fr 1fr; } }
/* Üç bərabər kvadrat — hər ölçüdə proqnozlaşdırılan.
   `align-items: start` olmasa grid elementi şaquli dartılır və aspect-ratio işləmir. */
.work-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; align-items: start; }
.work-gallery img { border-radius: var(--r-md); aspect-ratio: 1; object-fit: cover; width: 100%; height: auto; }
.mark { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 15px; }

/* ---------------------------------------------------------------- əlaqə */
.contact-grid { display: grid; gap: 18px; }
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-tile { padding: 22px; border-radius: var(--r-lg); display: flex; gap: 14px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-1); }
.contact-tile .icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex: none; font-size: 18px; }
.contact-tile b { color: var(--ink); display: block; font-size: 15px; }
.contact-tile span { color: var(--muted); font-size: 13.5px; }

.form { display: grid; gap: 12px; }
.form input, .form textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--r-md); border: 1px solid var(--line);
  background: var(--paper); font-size: 15px; color: var(--ink); font-family: inherit;
}
.form input:focus, .form textarea:focus { outline: 2px solid var(--accent); outline-offset: -1px; border-color: transparent; }
.form textarea { min-height: 92px; resize: vertical; }

/* ---------------------------------------------------------------- məhsul detalı */
.product-hero { display: grid; gap: 26px; }
@media (min-width: 900px) {
  .product-hero { grid-template-columns: 1.05fr .95fr; align-items: start; }
  /* Sağ sütun uzundur — qalereya sürüşdürdükcə görünən qalsın */
  .product-hero > div:first-child { position: sticky; top: 88px; }
}
.gallery-main { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; background: var(--surface-2); box-shadow: var(--shadow-2); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 10px; }
.gallery-thumbs button { width: 74px; height: 58px; border-radius: var(--r-sm); overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; background: none; }
.gallery-thumbs button[aria-pressed=true] { border-color: var(--accent); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.swatches { display: flex; flex-wrap: wrap; gap: 14px; }
.swatch { text-align: center; width: 72px; }
.swatch i { display: block; width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 6px; border: 1px solid var(--line); }
.swatch span { font-size: 11px; color: var(--muted); }

.spec-table { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.spec-table div { display: flex; justify-content: space-between; gap: 16px; padding: 13px 16px; font-size: 14px; }
.spec-table div + div { border-top: 1px solid var(--line); }
.spec-table dt, .spec-table .k { color: var(--muted); }
.spec-table .v { color: var(--ink); font-weight: 600; text-align: right; }

.buybar { margin-top: 30px; padding: 16px 20px; border-radius: var(--r-xl); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
@media (max-width: 620px) { .buybar > div:last-child { width: 100%; } .buybar .btn { flex: 1; } }

/* ---------------------------------------------------------------- kataloq filtri */
.filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 26px; }
.search { position: relative; flex: 1; min-width: 220px; }
.search input { width: 100%; padding: 12px 16px 12px 40px; border-radius: var(--r-pill); border: 1px solid var(--line); background: var(--paper); font-size: 14.5px; font-family: inherit; }
.search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }

/* ---------------------------------------------------------------- alt */
.site-footer { background: var(--steel); color: rgba(255,255,255,.72); padding: 52px 0 28px; margin-top: 40px; }
.site-footer .brand { color: #fff; }
.footer-grid { display: grid; gap: 28px; margin-bottom: 32px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: 14px; margin-bottom: 12px; letter-spacing: .02em; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; }
.footer-bottom { border-top: 1px solid var(--steel-line); padding-top: 20px; font-size: 12.5px; color: rgba(255,255,255,.45); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------------------------------------------------------------- görünəndə */
/* JS işləmirsə (və ya observer gec qalırsa) məzmun görünən qalmalıdır —
   ona görə gizlətmə yalnız `.js` sinfi qoyulduqda tətbiq olunur. */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s cubic-bezier(.2,.8,.3,1), transform .6s cubic-bezier(.2,.8,.3,1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ================================================================
   Responsivlik — dar ekranlarda sıxlıq və oxunaqlılıq
   ================================================================ */

/* planşet */
@media (max-width: 899px) {
  .product-hero { gap: 20px; }
  .work-row { padding: 16px; }
  .calc { gap: 18px; }
  /* Sticky zolaq öz konteynerinin məzmununu (rənglər, seçimlər) örtürdü —
     normal axında qalır; zəng düyməsi onsuz da başlıqda həmişə görünür. */
  .section-head { margin-bottom: 22px; }
}

/* telefon */
@media (max-width: 620px) {
  .grid { gap: 12px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }

  .card-body { padding: 12px; gap: 6px; }
  .card-body h3 { font-size: 14.5px; }
  .card-body .sub { font-size: 12px; }
  .price b { font-size: 16px; }
  .chip-series { font-size: 10px; padding: 4px 8px; right: 8px; bottom: 8px; }
  .badge { font-size: 9px; padding: 4px 8px; top: 8px; left: 8px; }
  .dots i { width: 14px; height: 14px; }

  /* kalkulyator tək sütun, nəticə əvvəl gəlmir */
  .calc { padding: 18px; }
  .calc-result { padding: 18px; }

  /* texniki cədvəl: uzun dəyər alt sətrə keçsin */
  .spec-table div { flex-direction: column; gap: 3px; padding: 11px 14px; }
  .spec-table .v { text-align: left; }


  /* qalereya kiçik şəkilləri */
  .gallery-thumbs button { width: 60px; height: 48px; }

  /* rəng nümunələri */
  .swatch { width: 62px; }
  .swatch i { width: 38px; height: 38px; }

  /* əlaqə kartları */
  .contact-tile { padding: 16px; gap: 12px; }
  .contact-tile .icon { width: 36px; height: 36px; }

  /* alt */
  .site-footer { padding: 40px 0 22px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* çox dar (SE) */
@media (max-width: 380px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; }
}

/* geniş ekran */
@media (min-width: 1500px) {
  :root { --maxw: 1320px; }
}

/* uzun mətnlər heç vaxt daşmasın */
h1, h2, h3, p, span, b, a { overflow-wrap: anywhere; }
.spec-table .v, .card-body h3 { overflow-wrap: break-word; }

/* Çap: animasiya vəziyyətindən asılı olmayaraq hər şey görünsün */
@media print {
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .site-header, .site-footer, .btn { box-shadow: none; }
}
