:root {
  --navy: #081b49;
  --blue: #075fca;
  --blue-dark: #034d9f;
  --blue-soft: #1973dc;
  --pale: #edf7ff;
  --line: #dce5ef;
  --ink: #101a30;
  --muted: #4f5b70;
  --white: #fff;
  --shadow: 0 7px 26px rgba(7, 54, 111, .09);
  --radius: 12px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, Arial, Helvetica, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: #f8fafc;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.site {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}
.container { width: min(1180px, calc(100% - 64px)); margin-inline: auto; }
.home-section { padding: 29px 0 8px; }
.section-title {
  margin: 0 0 20px;
  color: var(--navy);
  font: 700 29px/1.15 var(--font-display);
  letter-spacing: -.025em;
}
.site-header { height: 118px; display: flex; align-items: center; background: #fff; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 180px; }
.brand-wording { line-height: 1; }
.brand-name { color: var(--blue); font: 700 34px/.95 var(--font-display); letter-spacing: .02em; }
.brand-subtitle { display: block; margin-top: 7px; color: var(--blue-dark); font-size: 11px; font-weight: 700; }
.brand-mark { width: 43px; height: 43px; color: var(--blue); }
.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 44px; margin: 0; padding: 0; list-style: none; font-size: 15px; font-weight: 750; }
.nav-link { position: relative; display: inline-flex; align-items: center; min-height: 50px; padding: 0 16px; border: 2px solid transparent; transition: color .24s ease, border-color .24s ease; }
.nav-link:hover, .nav-link:focus-visible { color: var(--blue); }
.nav-link::before,
.nav-link::after { content: ""; position: absolute; inset: -2px; border: 2px solid var(--blue); opacity: 0; pointer-events: none; transition: clip-path .28s ease, opacity .2s ease; }
.nav-link::before { clip-path: inset(0 100% 100% 0); }
.nav-link::after { clip-path: inset(100% 0 0 100%); }
.nav-link:hover::before,
.nav-link:hover::after,
.nav-link:focus-visible::before,
.nav-link:focus-visible::after {
  clip-path: inset(0);
  opacity: 1;
}
.nav-link.active { color: var(--ink); }
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-soft));
  box-shadow: 0 7px 18px rgba(7, 95, 202, .18);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.phone-pill svg { width: 19px; height: 19px; }
.menu-toggle { display: none; }
.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 51%) minmax(0, 49%);
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(100deg, #f4faff 0%, #f1f8fd 48%, #dbeaf4 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 72px 44px 72px max(64px, calc((100vw - 1180px) / 2));
}
.hero-copy h1 {
  max-width: 490px;
  margin: 0 0 24px;
  color: var(--navy);
  font: 700 clamp(46px, 5vw, 64px)/1.02 var(--font-display);
  letter-spacing: -.045em;
}
.hero-copy h1 span { display: block; color: var(--blue); }
.hero-copy p { max-width: 450px; margin: 0 0 26px; color: #1f2b42; font-size: 16px; line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 51px;
  padding: 0 28px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(7, 95, 202, .16); }
.btn-primary { color: #fff; background: var(--blue); }
.btn-secondary { color: var(--blue); background: rgba(255,255,255,.78); }
.btn svg { width: 20px; height: 20px; }
.hero-media {
  position: relative;
  min-height: 560px;
  background:
    linear-gradient(90deg, rgba(235,246,253,.8) 0%, rgba(235,246,253,0) 22%),
    url("assets/sjaj-hero-sofa.webp") center right / cover no-repeat,
    linear-gradient(135deg, #e7f2f9, #bad7e8);
}
.hero-badge {
  position: absolute;
  right: 7%;
  bottom: 8%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 142px;
  aspect-ratio: 1;
  padding: 19px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #0764d1, #0352ac);
  box-shadow: 0 15px 30px rgba(0, 69, 145, .2);
  text-align: center;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.55;
}
.hero-badge svg { width: 28px; height: 28px; margin: 0 auto 5px; }
.card-grid { display: grid; gap: 12px; }
.benefit-grid { grid-template-columns: repeat(4, 1fr); }
.service-grid { grid-template-columns: repeat(5, 1fr); }
.price-grid { grid-template-columns: repeat(6, 1fr); gap: 10px; }
.info-card, .price-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(23, 59, 96, .025);
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.info-card:hover, .price-card:hover { transform: translateY(-2px); border-color: #bfd4ec; box-shadow: 0 10px 25px rgba(23, 59, 96, .07); }
.info-card { min-height: 220px; padding: 25px 15px 18px; }
.service-grid .info-card { min-height: 245px; padding-inline: 12px; }
.icon { width: 48px; height: 48px; margin: 0 auto 13px; color: var(--blue); }
.info-card h3 { margin: 0 0 10px; color: var(--navy); font-size: 14px; font-weight: 800; line-height: 1.35; }
.info-card p { margin: 0; color: #39465d; font-size: 12px; line-height: 1.65; }
.services-section { padding-top: 28px; }
.prices-section { padding: 45px 0 30px; }
.price-card { min-height: 186px; padding: 18px 8px 14px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.price-card .icon { width: 45px; height: 45px; margin-bottom: 12px; }
.price-card h3 { min-height: 39px; margin: 0 0 5px; color: var(--navy); font-size: 12px; line-height: 1.3; }
.price { margin-top: auto; color: var(--blue); font-size: 18px; font-weight: 850; white-space: nowrap; }
.price-note { margin: 19px 0 0; color: #26334a; text-align: center; font-size: 13px; line-height: 1.55; }
.cta-area { padding: 16px 0; background: #f1f9ff; }
.cta-box { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 24px; min-height: 111px; padding: 19px 36px; border-radius: 9px; background: linear-gradient(105deg, #e3f3ff, #edf7ff); }
.cta-icon { width: 65px; height: 65px; color: var(--blue); }
.cta-copy h2 { margin: 0 0 2px; color: var(--navy); font: 700 24px/1.2 var(--font-display); }
.cta-copy p { margin: 0; color: #24344f; font-size: 14px; }
.cta-box .btn { min-width: 220px; }
.home-footer { color: #fff; background: linear-gradient(135deg, #0755ab, #0167ce); }
.footer-grid { display: grid; grid-template-columns: .9fr 1.1fr 1fr; gap: 0; height: 263px; padding: 44px 0 27px; }
.footer-column { min-height: 192px; padding: 0 42px; }
.footer-column:first-child { padding-left: 0; }
.footer-column + .footer-column { border-left: 1px solid rgba(255,255,255,.15); }
.footer-brand { margin: 0 0 2px; font: 400 32px/1 var(--font-display); }
.footer-small { margin: 0 0 17px; font-size: 12px; opacity: .95; }
.footer-text { margin: 0; font-size: 13px; line-height: 1.8; }
.footer-column h3 { margin: 0 0 17px; font-size: 14px; font-weight: 800; }
.contact-row { display: flex; gap: 13px; margin: 0 0 14px; font-size: 13px; }
.contact-row svg { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 2px; }
.contact-row strong { display: block; margin-bottom: 2px; }
.contact-row a { color: inherit; transition: opacity .2s ease; }
.contact-row a:hover { opacity: .78; }
.socials { display: flex; gap: 13px; margin-top: 18px; }
.social { display: grid; place-items: center; width: 31px; height: 31px; border: 0; border-radius: 50%; color: #fff; background: rgba(0,82,179,.5); box-shadow: 0 0 18px rgba(71,199,226,.28); }
.social-facebook { background: #159ec0; }
.social svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.social-facebook svg { width: 16px; height: 20px; fill: currentColor; stroke: none; }
.privacy-link { display: inline-block; margin-top: 14px; color: #fff; font-size: 13px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.copyright { display: flex; align-items: center; justify-content: center; gap: 18px; height: 50px; padding: 0; border-top: 1px solid rgba(255,255,255,.16); text-align: center; font-size: 11px; opacity: .92; }
.copyright a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 3px solid rgba(25,115,220,.35); outline-offset: 3px; }
@media (max-width: 930px) {
  .container { width: calc(100% - 40px); }
  .site-header { height: auto; padding: 22px 0; }
  .header-inner { flex-wrap: wrap; }
  .main-nav { order: 3; width: 100%; }
  .nav-list { justify-content: center; }
  .home-hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 52px 42px 40px; }
  .hero-media { min-height: 440px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-box { grid-template-columns: 65px 1fr; }
  .cta-box .btn { grid-column: 1 / -1; width: 100%; }
  .footer-column { padding-inline: 24px; }
}
@media (max-width: 620px) {
  body { padding: 0; }
  .site { border: 0; border-radius: 0; }
  .container { width: calc(100% - 32px); }
  .site-header { padding: 18px 0 16px; }
  .header-inner { position: relative; justify-content: space-between; gap: 12px; }
  .brand { min-width: auto; justify-content: center; }
  .brand-name { font-size: 30px; }
  .brand-subtitle { margin-top: 5px; font-size: 10px; }
  .brand-mark { width: 36px; height: 36px; }
  .phone-pill { min-height: 42px; padding-inline: 14px; font-size: 12px; }
  .phone-pill svg { width: 17px; height: 17px; }
  .menu-toggle { position: relative; display: inline-grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(7,95,202,.22); border-radius: 8px; background: #fff; color: var(--blue); box-shadow: 0 6px 16px rgba(7,95,202,.12); cursor: pointer; }
  .menu-toggle span { position: absolute; display: block; width: 20px; height: 2px; border-radius: 99px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle span:nth-child(1) { transform: translateY(-7px); }
  .menu-toggle span:nth-child(3) { transform: translateY(7px); }
  .site-header.menu-open .menu-toggle span:nth-child(1) { transform: rotate(45deg); }
  .site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg); }
  .main-nav { position: absolute; top: calc(100% + 8px); right: 16px; left: 16px; z-index: 20; display: none; margin: 0; }
  .site-header.menu-open .main-nav { display: block; }
  .nav-list { display: grid; align-items: stretch; justify-items: stretch; justify-content: stretch; gap: 4px; width: 100%; padding: 8px; border: 1px solid rgba(7,95,202,.14); border-radius: 10px; background: #fff; box-shadow: 0 16px 36px rgba(8,27,73,.18); }
  .nav-list li { width: 100%; }
  .nav-link { display: flex; justify-content: flex-start; justify-self: stretch; width: 100%; min-height: 42px; padding: 0 16px; border: 0; border-radius: 7px; color: var(--navy); font-size: 14px; font-weight: 800; }
  .nav-link:hover, .nav-link:focus-visible { color: #fff; background: var(--blue); }
  .nav-link::before, .nav-link::after { display: none; }
  .nav-link:hover::before, .nav-link:hover::after, .nav-link:focus-visible::before, .nav-link:focus-visible::after { clip-path: inset(0); opacity: 1; }
  .hero-copy { padding: 40px 24px 32px; text-align: center; }
  .hero-copy h1 { max-width: 350px; margin-inline: auto; font-size: 42px; line-height: 1.12; letter-spacing: -.035em; }
  .hero-copy p { max-width: 330px; margin-inline: auto; font-size: 14px; line-height: 1.72; }
  .hero-actions { justify-content: center; }
  .hero-media { min-height: 330px; background-position: center right 16%; }
  .hero-badge { width: 108px; right: 6%; bottom: 7%; font-size: 11px; }
  .btn { width: 100%; }
  .home-section { padding-top: 31px; }
  .section-title { margin-bottom: 18px; text-align: center; font-size: 27px; }
  .benefit-grid, .service-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { gap: 14px; }
  .info-card, .service-grid .info-card { min-height: auto; padding: 25px 22px 23px; }
  .info-card p { max-width: 290px; margin-inline: auto; }
  .price-card { min-height: 168px; }
  .price-note { font-size: 12px; }
  .cta-box { grid-template-columns: 1fr; gap: 14px; padding: 25px 20px; text-align: center; }
  .cta-icon { margin: auto; }
  .cta-copy h2 { font-size: 23px; }
  .home-footer { background: linear-gradient(135deg, #0755ab, #0167ce); }
  .footer-grid { grid-template-columns: 1fr 1fr; column-gap: 18px; row-gap: 0; height: auto; padding: 24px 0 0; }
  .footer-column { min-height: auto; padding: 0 0 18px; text-align: left; }
  .footer-column:first-child {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    padding-bottom: 20px;
    text-align: center;
  }
  .footer-column + .footer-column {
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.14);
    border-left: 0;
  }
  .footer-brand { font-size: 29px; }
  .footer-small { margin-bottom: 11px; font-size: 11px; }
  .footer-text { max-width: 220px; font-size: 12px; line-height: 1.62; }
  .socials { justify-content: center; gap: 10px; margin-top: 14px; }
  .social { width: 30px; height: 30px; background: rgba(0,82,179,.48); }
  .social svg { width: 16px; height: 16px; }
  .social-facebook { background: #159ec0; }
  .footer-column h3 { margin-bottom: 12px; font-size: 13px; }
  .contact-row {
    width: 100%;
    gap: 8px;
    margin-bottom: 10px;
    text-align: left;
    font-size: 11px;
    line-height: 1.45;
  }
  .contact-row svg { flex: 0 0 15px; width: 15px; height: 15px; margin-top: 1px; }
  .privacy-link { margin-top: 8px; padding: 0; font-size: 12px; }
  .copyright {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 4px;
    height: auto;
    padding: 12px 0 14px;
    font-size: 11px;
    line-height: 1.5;
  }
}
@media (max-width: 370px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-column { text-align: center; }
  .footer-column + .footer-column { padding-top: 18px; }
  .contact-row { justify-content: center; text-align: left; width: min(250px, 100%); margin-inline: auto; }
  .footer-text { margin-inline: auto; }
}
