:root {
  --primary: #ac191b;
  --secondary: #f8be17;
  --orange: #f39104;
  --dark: #454545;
  --black: #252525;
  --light: #f5f5f5;
  --white: #fafafa;
  --shadow: 0 18px 40px rgba(37, 37, 37, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 2rem, var(--max)); margin: 0 auto; }
.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }
.eyebrow {
  display: inline-block;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(248,190,23,.18);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
}
.section-title {
  margin: .9rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}
.section-text,
.lead {
  color: #5f5f5f;
  max-width: 70ch;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.35rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 10px 24px rgba(172, 25, 27, .18);
}
.btn:hover { transform: translateY(-2px); }
.btn.secondary {
  background: var(--secondary);
  color: var(--black);
  box-shadow: none;
}
.btn.outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.grid { display: grid; gap: 1.5rem; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four-col { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,250,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(69,69,69,.08);
}
.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 800;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.brand-text small {
  display: block;
  color: #777;
  font-size: .78rem;
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-links a {
  font-weight: 700;
  /* color: var(--dark); */
}
.nav-links a.active,
.nav-links a:hover { color: var(--primary); }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
}
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(248,190,23,.28), transparent 35%), linear-gradient(135deg, #ffffff 0%, #fff8eb 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -110px auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(172,25,27,.06);
  filter: blur(20px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 5rem;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: .92;
  margin: .75rem 0 1.2rem;
}
.hero h1 .accent { color: var(--primary); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.5rem; }
.hero-visual img {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  border-radius: 32px;
  box-shadow: 0 28px 50px rgba(37,37,37,.14);
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 2rem;
}
.badge {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-weight: 700;
}
.feature-card,
.testimonial,
.branch-card,
.price-card,
.partner-card,
.info-card {
  padding: 1.5rem;
}
.feature-card h3,
.branch-card h3,
.price-card h3,
.info-card h3 {
  margin-top: .25rem;
  margin-bottom: .65rem;
}
.feature-icon,
.stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(248,190,23,.18);
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.testimonial {
  border-left: 5px solid var(--secondary);
}
.testimonial p { color: #666; }
.testimonial .name { font-weight: 800; margin-top: 1rem; }
.branch-card img,
.partner-card img,
.photo-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}
.branch-meta {
  color: #777;
  font-weight: 700;
  margin-bottom: 1rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.stat-card {
  padding: 1.4rem;
  text-align: center;
}
.stat-card h3 {
  margin: .4rem 0;
  font-size: 2rem;
  color: var(--primary);
}
.partners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.partner-card {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
  margin: 0;
  border-radius: 0;
}
.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.price-card.featured {
  background: linear-gradient(160deg, var(--primary), #7d1013);
  color: var(--white);
}
.price {
  font-size: 2.4rem;
  font-weight: 900;
  margin: .5rem 0;
}
.price-card ul,
.check-list,
.contact-list,
.simple-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.price-card li,
.check-list li,
.simple-list li {
  padding: .55rem 0;
  border-bottom: 1px solid rgba(69,69,69,.08);
}
.price-card.featured li { border-color: rgba(250,250,250,.18); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
}
.sticky-card {
  position: sticky;
  top: 105px;
  padding: 1.5rem;
}
.text-block {
  margin-bottom: 2rem;
}
.text-block h3 { margin-bottom: .5rem; }
.text-block p { color: #616161; }
.lang-block {
  padding: 1.4rem;
  border-left: 5px solid var(--secondary);
}
.cta-banner {
  background: linear-gradient(135deg, var(--primary), #711013);
  color: var(--white);
  padding: 2rem;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.25rem;
  align-items: center;
}
.cta-banner p { color: rgba(250,250,250,.86); }
.page-hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #fff9ef, #fff);
}
.page-hero .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
}
.page-hero img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.site-footer {
  margin-top: 4rem;
  background: var(--black);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 2rem;
  padding: 3rem 0;
}
.footer-grid p,
.footer-grid li,
.footer-grid a { color: rgba(250,250,250,.82); }
.footer-bottom {
  border-top: 1px solid rgba(250,250,250,.12);
  padding: 1rem 0 1.4rem;
  color: rgba(250,250,250,.72);
  font-size: .92rem;
}
.contact-form {
  display: grid;
  gap: .9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(69,69,69,.16);
  font: inherit;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.notice {
  font-size: .9rem;
  color: #7b7b7b;
}
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.photo-card { padding: .8rem; }
.photo-card img { height: 220px; margin-bottom: 0; }

@media (max-width: 980px) {
  .hero-inner,
  .page-hero .container,
  .content-grid,
  .cta-banner,
  .footer-grid,
  .two-col,
  .three-col,
  .four-col,
  .stats,
  .pricing,
  .partners,
  .photo-strip {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 82px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
}
