/* Kono Strama — conostrama.shop | site stylesheet */

:root {
  --navy: #10243c;
  --navy-2: #17324f;
  --blue: #2563a8;
  --blue-dark: #1d4f8c;
  --bg: #f4f6f9;
  --white: #ffffff;
  --border: #dde3ea;
  --border-soft: #eef2f7;
  --text: #1c2733;
  --text-soft: #3c4a58;
  --muted: #5b6a7a;
  --muted-2: #8b98a6;
  --sky: #c6d6ea;
  --sky-2: #9dbde0;
  --sky-3: #93b3d6;
  --green: #2f8f5b;
  --green-bg: #eaf5ee;
  --green-text: #1e6b41;
  --red: #b04242;
  --font-head: Archivo, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: Karla, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Cascadia Mono", Consolas, "Courier New", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); text-decoration: underline; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
ul { margin: 0; }
h1, h2, h3 { font-family: var(--font-head); }

@keyframes ksIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--font-mono); }

/* ---------- top promo bar ---------- */
.promo-bar {
  background: var(--navy);
  color: #cfe0f5;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 9px 24px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}
.promo-bar .dim { color: #7fa6d8; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 17px;
  flex-shrink: 0;
}
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; line-height: 1.1; color: var(--text); }
.brand-domain { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }

.main-nav { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.main-nav a {
  cursor: pointer; padding: 9px 12px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--text);
}
.main-nav a:hover, .main-nav a.active { background: var(--border-soft); color: var(--navy); text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.phone-pill {
  font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--navy);
  padding: 9px 12px; border: 1px solid var(--border); border-radius: 8px; white-space: nowrap;
}
.cart-pill {
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 8px; background: var(--blue); color: var(--white);
  font-weight: 600; font-size: 14px; border: none;
}
.cart-pill:hover { background: var(--blue-dark); text-decoration: none; }
.cart-count {
  min-width: 22px; height: 22px; border-radius: 11px; background: var(--white); color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; padding: 0 6px;
}

.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { display: block; width: 20px; height: 2px; background: var(--navy); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- hero ---------- */
.hero { background: var(--navy); color: var(--white); }
.hero .wrap {
  padding: 76px 24px 84px; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #8fb4e0;
  border: 1px solid rgba(143,180,224,0.35); padding: 7px 12px; border-radius: 999px;
}
.hero h1 {
  font-weight: 700; font-size: 54px; line-height: 1.06; letter-spacing: -0.025em;
  margin: 22px 0 18px;
}
.hero p.lead { font-size: 18px; line-height: 1.6; color: var(--sky); max-width: 560px; margin: 0 0 30px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  cursor: pointer; padding: 15px 26px; border-radius: 10px; font-family: var(--font-head);
  font-weight: 600; font-size: 16px; border: none; display: inline-block; text-align: center;
}
.btn:hover { text-decoration: none; }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { background: #dce8f7; color: var(--navy); }
.btn-outline-light { border: 1px solid rgba(255,255,255,0.35); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); color: var(--white); }
.btn-sm { padding: 12px 18px; font-size: 14px; border-radius: 9px; }

.hero-stats { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-head); font-size: 30px; font-weight: 700; }
.hero-stats .lbl { font-size: 13px; color: var(--sky-3); }

.hero-media { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.18); }
.hero-media img { width: 100%; height: 420px; object-fit: cover; }

/* ---------- usp strip ---------- */
.usp-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.usp-strip .wrap { padding: 34px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usp-item { display: flex; gap: 12px; align-items: flex-start; }
.usp-dot { width: 8px; height: 8px; border-radius: 4px; background: var(--blue); margin-top: 7px; flex-shrink: 0; }
.usp-title { font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.usp-text { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- generic section ---------- */
.section { padding: 72px 24px 20px; }
.section.tight { padding: 64px 24px; }
.section.pad-lg { padding: 70px 24px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 30px; }
.kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.section-head h2 { font-weight: 700; font-size: 36px; letter-spacing: -0.02em; margin: 10px 0 0; color: var(--text); }
.section-link { cursor: pointer; font-weight: 600; color: var(--blue); font-size: 15px; }

/* ---------- service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
}
.card-link { cursor: pointer; }
.card-link:hover { border-color: var(--blue); text-decoration: none; }

.service-card { padding: 26px; }
.service-card .s-num { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); }
.service-card .s-title { font-family: var(--font-head); font-weight: 600; font-size: 20px; margin: 12px 0 10px; color: var(--navy); }
.service-card .s-text { font-size: 15px; line-height: 1.6; color: var(--muted); }
.service-card .s-from { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--blue); }

/* ---------- calculator ---------- */
.calc-box { background: var(--white); border: 1px solid var(--border); border-radius: 16px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.calc-form { padding: 40px; }
.calc-form h2 { font-weight: 700; font-size: 30px; letter-spacing: -0.02em; margin: 10px 0 8px; color: var(--text); }
.calc-form > p { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0 0 26px; }
.field-grid { display: grid; gap: 16px; }
.field-grid label.block { display: grid; gap: 6px; font-size: 14px; font-weight: 600; color: var(--navy); }
.field-grid input[type="text"], .field-grid input[type="number"], .field-grid input[type="tel"],
.field-grid input[type="email"], .field-grid input[type="date"], .field-grid select, .field-grid textarea {
  padding: 12px; border: 1px solid var(--border); border-radius: 8px; background: #f8fafc; color: var(--text); width: 100%;
}
.field-grid label.check { display: flex; gap: 10px; align-items: center; font-size: 15px; color: var(--text); }
.field-grid label.check input { width: 18px; height: 18px; }

.calc-result { padding: 40px; background: var(--navy); color: var(--white); display: flex; flex-direction: column; justify-content: center; }
.calc-result .r-lbl { font-size: 14px; color: var(--sky-2); }
.calc-result .r-price { font-family: var(--font-head); font-weight: 700; font-size: 44px; letter-spacing: -0.02em; margin: 8px 0 4px; }
.calc-result .r-hours { font-size: 14px; color: var(--sky-2); margin-bottom: 22px; }
.calc-result .r-list { border-top: 1px solid rgba(255,255,255,0.18); padding-top: 20px; display: grid; gap: 10px; font-size: 14px; color: var(--sky); }
.calc-result .r-list div { display: flex; justify-content: space-between; }
.calc-result .btn { margin-top: 26px; }

/* ---------- steps ---------- */
.steps-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-section h2 { font-weight: 700; font-size: 34px; letter-spacing: -0.02em; margin: 0 0 34px; color: var(--text); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { border-left: 2px solid var(--border); padding: 4px 0 4px 18px; }
.step.active { border-left-color: var(--blue); }
.step .st-num { font-family: var(--font-mono); color: var(--muted-2); font-size: 13px; }
.step.active .st-num { color: var(--blue); }
.step .st-title { font-family: var(--font-head); font-weight: 600; font-size: 18px; margin: 8px 0; color: var(--text); }
.step .st-text { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ---------- blog / post cards ---------- */
.post-card { overflow: hidden; display: flex; flex-direction: column; }
.post-thumb { height: 160px; overflow: hidden; position: relative; background: var(--border-soft); }
.post-thumb.tall { height: 190px; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 22px; }
.post-list .post-body { padding: 26px; }
.post-tag { font-family: var(--font-mono); font-size: 11px; color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; }
.post-tag-row { display: flex; gap: 12px; align-items: center; font-family: var(--font-mono); font-size: 11px; color: var(--blue); text-transform: uppercase; letter-spacing: 0.06em; }
.post-tag-row .read { color: var(--muted-2); }
.post-title { font-family: var(--font-head); font-weight: 600; font-size: 19px; margin: 10px 0 8px; color: var(--navy); line-height: 1.3; }
.post-list .post-title { font-size: 22px; }
.post-lead { font-size: 14px; color: var(--muted); line-height: 1.6; }
.post-list .post-lead { font-size: 15px; line-height: 1.65; }
.post-more { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--blue); }

/* ---------- reviews ---------- */
.reviews-section { background: var(--border-soft); border-top: 1px solid var(--border); }
.reviews-section h2 { font-weight: 700; font-size: 34px; letter-spacing: -0.02em; margin: 0 0 30px; color: var(--text); }
.review-card { padding: 26px; }
.review-stars { color: var(--blue); font-size: 15px; letter-spacing: 0.14em; }
.review-text { font-size: 15px; line-height: 1.65; color: var(--text); margin: 14px 0 16px; }
.review-name { font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.review-meta { font-size: 13px; color: var(--muted-2); }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--navy); border-radius: 16px; padding: 46px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; color: var(--white); }
.cta-banner h2 { font-weight: 700; font-size: 32px; letter-spacing: -0.02em; margin: 0 0 12px; }
.cta-banner p { font-size: 16px; color: var(--sky); line-height: 1.6; margin: 0; }
.cta-actions { display: grid; gap: 12px; }
.cta-actions a { text-align: center; padding: 15px; border-radius: 10px; font-family: var(--font-head); font-weight: 600; }
.cta-actions a.solid { background: var(--white); color: var(--navy); }
.cta-actions a.outline { border: 1px solid rgba(255,255,255,0.35); color: var(--white); }
.cta-actions a:hover { text-decoration: none; opacity: 0.92; }

/* ---------- page header (breadcrumb + title) ---------- */
.page-head { background: var(--white); border-bottom: 1px solid var(--border); }
.page-head .wrap { padding: 54px 24px; }
.crumb { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.page-head h1 { font-weight: 700; font-size: 44px; letter-spacing: -0.025em; margin: 14px 0 12px; color: var(--text); }
.page-head p { font-size: 17px; color: var(--muted); max-width: 780px; line-height: 1.6; margin: 0; }

/* ---------- services list page ---------- */
.services-list { display: grid; gap: 20px; }
.service-row { padding: 32px; display: grid; grid-template-columns: 0.9fr 1.4fr 0.5fr; gap: 30px; align-items: start; }
.service-row .sr-num { font-family: var(--font-mono); font-size: 12px; color: var(--blue); }
.service-row h2 { font-family: var(--font-head); font-weight: 600; font-size: 24px; margin: 10px 0 8px; color: var(--navy); }
.service-row .sr-unit { font-size: 14px; color: var(--muted-2); }
.service-row .sr-long { font-size: 15px; line-height: 1.7; color: var(--text-soft); margin: 0 0 14px; }
.service-row ul { padding-left: 20px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.service-row .sr-price-col { text-align: right; }
.service-row .sr-price { font-family: var(--font-head); font-weight: 700; font-size: 26px; color: var(--navy); }

/* ---------- pricing page ---------- */
.price-tier { padding: 30px; }
.price-tier.featured { background: var(--navy); color: var(--white); border: 1px solid var(--navy); }
.price-tier .pt-head { display: flex; justify-content: space-between; align-items: center; }
.price-tier .pt-title { font-family: var(--font-head); font-weight: 600; font-size: 20px; }
.price-tier .pt-badge { font-size: 11px; background: var(--blue); padding: 4px 8px; border-radius: 5px; font-family: var(--font-mono); }
.price-tier .pt-price { font-family: var(--font-head); font-weight: 700; font-size: 36px; margin: 12px 0 6px; }
.price-tier .pt-unit { font-size: 14px; color: var(--muted-2); margin-bottom: 18px; }
.price-tier.featured .pt-unit { color: var(--sky-2); }
.price-tier ul { padding-left: 18px; font-size: 15px; color: var(--muted); line-height: 1.9; }
.price-tier.featured ul { color: var(--sky); }

.price-table { overflow: hidden; }
.price-table-head { padding: 24px 28px; border-bottom: 1px solid var(--border); font-family: var(--font-head); font-weight: 600; font-size: 20px; }
.price-row { display: grid; grid-template-columns: 1.6fr 1fr 0.8fr; gap: 20px; padding: 16px 28px; border-bottom: 1px solid var(--border-soft); font-size: 15px; align-items: center; }
.price-row .pr-item { font-weight: 600; color: var(--navy); }
.price-row .pr-note { color: var(--muted); }
.price-row .pr-price { text-align: right; font-family: var(--font-head); font-weight: 600; }
.price-foot { padding: 18px 28px; font-size: 14px; color: var(--muted); }

.quote-callout { background: var(--border-soft); border: 1px solid var(--border); border-radius: 14px; padding: 30px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.quote-callout .qc-title { font-family: var(--font-head); font-weight: 600; font-size: 20px; margin-bottom: 6px; }
.quote-callout .qc-text { font-size: 15px; color: var(--muted); }

/* ---------- shop ---------- */
.shop-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.shop-filter { cursor: pointer; padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 600; border: 1px solid var(--border); background: var(--white); color: var(--text); }
.shop-filter.active { background: var(--navy); color: var(--white); }

.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-thumb { height: 150px; overflow: hidden; background: var(--border-soft); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 10px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.06em; }
.product-name { font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--navy); line-height: 1.35; }
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.55; flex: 1; }
.product-price-row { display: flex; align-items: baseline; justify-content: space-between; margin-top: 4px; }
.product-price { font-family: var(--font-head); font-weight: 700; font-size: 20px; }
.product-stock { font-size: 12px; color: var(--green); }
.product-add { cursor: pointer; text-align: center; padding: 11px; border-radius: 9px; background: var(--blue); color: var(--white); font-weight: 600; font-size: 14px; border: none; width: 100%; }
.product-add:hover { background: var(--blue-dark); }

.info-strip { margin-top: 34px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-strip .is-title { font-family: var(--font-head); font-weight: 600; margin-bottom: 6px; }
.info-strip .is-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---------- cart ---------- */
.cart-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: start; }
.cart-line { display: grid; grid-template-columns: 64px 1fr auto auto; gap: 18px; padding: 18px 22px; border-bottom: 1px solid var(--border-soft); align-items: center; }
.cart-line .cl-thumb { height: 56px; width: 64px; border-radius: 8px; overflow: hidden; background: var(--border-soft); }
.cart-line .cl-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .cl-name { font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--navy); }
.cart-line .cl-price { font-size: 13px; color: var(--muted-2); }
.cart-line .cl-remove { cursor: pointer; font-size: 13px; color: var(--red); font-weight: 600; background: none; border: none; padding: 0; }
.qty-box { display: flex; align-items: center; gap: 4px; border: 1px solid var(--border); border-radius: 8px; padding: 4px; }
.qty-box button { cursor: pointer; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 6px; font-weight: 700; color: var(--navy); background: none; border: none; font-size: 16px; }
.qty-box button:hover { background: var(--border-soft); }
.qty-box .qty-val { min-width: 28px; text-align: center; font-weight: 600; }
.cart-line .cl-sum { font-family: var(--font-head); font-weight: 700; font-size: 17px; min-width: 90px; text-align: right; }

.cart-panel { padding: 22px; display: grid; gap: 14px; }
.cart-panel .cp-title { font-family: var(--font-head); font-weight: 600; font-size: 18px; }

.summary-card { padding: 26px; display: grid; gap: 12px; }
.summary-card .sc-title { font-family: var(--font-head); font-weight: 600; font-size: 18px; }
.summary-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--muted); }
.summary-total { border-top: 1px solid var(--border); padding-top: 12px; display: flex; justify-content: space-between; align-items: baseline; }
.summary-total .lbl { font-weight: 600; }
.summary-total .val { font-family: var(--font-head); font-weight: 700; font-size: 26px; }
.consent-note { font-size: 12px; color: var(--muted-2); line-height: 1.55; }

.empty-box { padding: 50px; text-align: center; }
.empty-box .eb-title { font-family: var(--font-head); font-weight: 600; font-size: 22px; }
.empty-box p { color: var(--muted); margin: 10px 0 22px; }

.success-box { border: 1px solid var(--green); padding: 40px; text-align: center; }
.success-box .sb-title { font-family: var(--font-head); font-weight: 700; font-size: 26px; color: var(--navy); }
.success-box p { font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 560px; margin: 12px auto 22px; }

.inline-success { background: var(--green-bg); border: 1px solid var(--green); border-radius: 10px; padding: 18px; font-size: 15px; color: var(--green-text); }
.inline-error { background: #fbeaea; border: 1px solid var(--red); border-radius: 10px; padding: 18px; font-size: 15px; color: #8a2f2f; }

/* ---------- forms (contact) ---------- */
.form-card { padding: 32px; display: grid; gap: 16px; }
.form-card .fc-title { font-family: var(--font-head); font-weight: 600; font-size: 22px; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.span2 { grid-column: span 2; }
.consent-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.5; }
.consent-check input { margin-top: 3px; width: 17px; height: 17px; flex-shrink: 0; }

.contact-card { border-radius: 14px; padding: 32px; display: grid; gap: 14px; }
.contact-card.dark { background: var(--navy); color: var(--white); }
.contact-card .cc-title { font-family: var(--font-head); font-weight: 600; font-size: 22px; }
.contact-card .cc-text { font-size: 15px; color: var(--sky); line-height: 1.7; }
.contact-card .cc-text a { color: var(--white); font-weight: 600; }
.contact-card .cc-foot { border-top: 1px solid rgba(255,255,255,0.18); padding-top: 14px; font-size: 14px; color: var(--sky-2); line-height: 1.6; }

.map-card { overflow: hidden; }
.map-placeholder {
  height: 260px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px;
  background: linear-gradient(135deg, #e7edf5 25%, #dde8f2 25%, #dde8f2 50%, #e7edf5 50%, #e7edf5 75%, #dde8f2 75%, #dde8f2 100%);
  background-size: 28px 28px; text-align: center; padding: 20px;
}
.map-pin { width: 34px; height: 34px; border-radius: 50% 50% 50% 0; background: var(--blue); transform: rotate(-45deg); box-shadow: 0 4px 10px rgba(16,36,60,0.25); }
.map-addr { font-family: var(--font-mono); font-size: 12px; color: var(--text-soft); background: var(--white); padding: 6px 10px; border-radius: 6px; }
.map-link { font-size: 13px; font-weight: 600; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; }
.about-story { padding: 34px; }
.about-story h2 { font-family: var(--font-head); font-weight: 600; font-size: 26px; margin: 0 0 14px; }
.about-story p { font-size: 16px; line-height: 1.75; color: var(--text-soft); margin: 0 0 14px; }
.about-story p:last-child { margin-bottom: 0; }
.about-side { display: grid; gap: 16px; }
.company-card { background: var(--navy); color: var(--white); border-radius: 14px; padding: 28px; }
.company-card .cc-name { font-family: var(--font-head); font-weight: 600; font-size: 19px; margin-bottom: 14px; }
.company-card .cc-details { display: grid; gap: 8px; font-size: 15px; color: var(--sky); line-height: 1.5; }
.cert-card { padding: 28px; }
.cert-card .cc-title { font-family: var(--font-head); font-weight: 600; font-size: 19px; margin-bottom: 12px; }
.cert-card ul { padding-left: 18px; font-size: 15px; color: var(--muted); line-height: 1.9; }

.team-card { overflow: hidden; }
.team-photo { height: 170px; overflow: hidden; background: var(--border-soft); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 18px; }
.team-info .t-name { font-family: var(--font-head); font-weight: 600; font-size: 17px; }
.team-info .t-role { font-size: 13px; color: var(--blue); margin: 4px 0 8px; }
.team-info .t-note { font-size: 14px; color: var(--muted); line-height: 1.55; }

.cities-card { padding: 34px; }
.cities-card h2 { font-family: var(--font-head); font-weight: 600; font-size: 24px; margin: 0 0 18px; }
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; font-size: 15px; color: var(--text-soft); }
.city-pill { padding: 10px 14px; background: var(--bg); border-radius: 8px; }
.cities-card > p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 18px 0 0; }

/* ---------- article ---------- */
.article-wrap { max-width: 820px; margin: 0 auto; padding: 54px 24px 70px; }
.back-link { cursor: pointer; font-family: var(--font-mono); font-size: 12px; color: var(--blue); }
.article-wrap h1 { font-weight: 700; font-size: 40px; line-height: 1.15; letter-spacing: -0.025em; margin: 12px 0 16px; color: var(--text); }
.article-lead { font-size: 19px; line-height: 1.65; color: var(--text-soft); margin: 0 0 26px; }
.article-media { height: 300px; border-radius: 14px; overflow: hidden; margin-bottom: 34px; }
.article-media img { width: 100%; height: 100%; object-fit: cover; }
.article-body { display: grid; gap: 22px; }
.article-body h2 { font-family: var(--font-head); font-weight: 600; font-size: 26px; letter-spacing: -0.015em; color: var(--navy); margin: 12px 0 12px; }
.article-body p { font-size: 17px; line-height: 1.75; color: #2c3a48; margin: 0; }
.article-body ul { padding-left: 22px; font-size: 17px; line-height: 1.9; color: #2c3a48; }
.article-quote { border-left: 3px solid var(--blue); background: var(--white); padding: 20px 24px; font-size: 17px; line-height: 1.7; color: var(--navy); border-radius: 0 10px 10px 0; }
.article-cta { margin-top: 40px; background: var(--navy); color: var(--white); border-radius: 14px; padding: 32px; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; }
.article-cta .ac-title { font-family: var(--font-head); font-weight: 600; font-size: 21px; margin-bottom: 6px; }
.article-cta .ac-text { font-size: 15px; color: var(--sky); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 900px; margin: 0 auto; padding: 40px 24px 70px; display: grid; gap: 12px; }
.faq-item { border-radius: 12px; padding: 22px 24px; }
.faq-q { cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; background: none; border: none; width: 100%; text-align: left; padding: 0; }
.faq-q .fq-text { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--navy); }
.faq-q .fq-sign { color: var(--blue); font-size: 20px; font-weight: 700; }
.faq-a { font-size: 16px; line-height: 1.7; color: var(--text-soft); margin: 14px 0 0; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .fq-sign::before { content: "\2212"; }
.faq-q .fq-sign::before { content: "+"; }
.faq-q .fq-sign { font-size: 0; }
.faq-q .fq-sign::before { font-size: 20px; }

/* ---------- legal ---------- */
.legal-wrap { max-width: 880px; margin: 0 auto; padding: 40px 24px 70px; }
.legal-card { padding: 40px; display: grid; gap: 20px; }
.legal-updated { font-size: 14px; color: var(--muted-2); }
.legal-card h2 { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: var(--navy); margin: 8px 0 10px; }
.legal-card p { font-size: 16px; line-height: 1.75; color: var(--text-soft); margin: 0; }
.legal-card ul { padding-left: 22px; font-size: 16px; line-height: 1.85; color: var(--text-soft); }

/* ---------- sitemap page ---------- */
.sitemap-group { padding: 26px; }
.sitemap-group .sg-title { font-family: var(--font-head); font-weight: 600; font-size: 18px; margin-bottom: 12px; }
.sitemap-group .sg-links { display: grid; gap: 8px; }
.sitemap-group .sg-links a { font-size: 15px; color: var(--blue); }

/* ---------- 404 ---------- */
.notfound { max-width: 700px; margin: 0 auto; padding: 100px 24px; text-align: center; }
.notfound .nf-code { font-family: var(--font-mono); font-size: 15px; color: var(--blue); }
.notfound h1 { font-weight: 700; font-size: 40px; margin: 14px 0; color: var(--text); }
.notfound p { font-size: 16px; color: var(--muted); margin: 0 0 26px; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: var(--sky); margin-top: auto; }
.footer-grid { padding: 56px 24px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .fb-mark { width: 36px; height: 36px; border-radius: 9px; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; }
.footer-brand .fb-name { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--white); }
.footer-col p { font-size: 14px; line-height: 1.7; margin: 0 0 14px; }
.footer-legalinfo { font-size: 13px; line-height: 1.7; color: var(--sky-3); }
.footer-heading { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--white); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; font-size: 14px; }
.footer-links a { color: var(--sky); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); }
.footer-bottom .wrap { padding: 18px 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--sky-3); }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 60; display: none; justify-content: center;
}
.cookie-banner.show { display: flex; }
.cookie-inner {
  max-width: 980px; width: 100%; background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 18px 40px rgba(16,36,60,0.18); padding: 22px 26px; display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center; animation: ksIn 0.25s ease-out;
}
.cookie-inner h3 { font-family: var(--font-head); font-weight: 600; font-size: 17px; margin: 0 0 6px; }
.cookie-inner p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button { cursor: pointer; padding: 12px 18px; border-radius: 9px; font-weight: 600; font-size: 14px; }
.cookie-actions .necessary { border: 1px solid var(--border); color: var(--navy); background: var(--white); }
.cookie-actions .necessary:hover { background: var(--border-soft); }
.cookie-actions .accept { background: var(--blue); color: var(--white); border: none; }
.cookie-actions .accept:hover { background: var(--blue-dark); }

/* ---------- generic photo placeholder (fallback, unused when real photos present) ---------- */
.ph { background-color: #e7edf5; background-image: repeating-linear-gradient(135deg, rgba(37,99,168,0.10) 0 10px, rgba(37,99,168,0) 10px 20px); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; padding-bottom: 40px; }
  .hero-media img { height: 280px; }
  .usp-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-box { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-row .sr-price-col { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); flex-direction: column; padding: 10px 24px 16px; gap: 2px; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .phone-pill { display: none; }
  .hero h1 { font-size: 36px; }
  .hero p.lead { font-size: 16px; }
  .hero-stats { gap: 20px; }
  .usp-strip .wrap { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .section-head h2, .page-head h1 { font-size: 28px; }
  .form-row2 { grid-template-columns: 1fr; }
  .span2 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; padding: 40px 24px 20px; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .cookie-inner { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; }
  .quote-callout { grid-template-columns: 1fr; text-align: left; }
  .article-cta { grid-template-columns: 1fr; text-align: left; }
  .cta-banner .cta-actions { grid-template-columns: 1fr; }
}
