:root {
  --black: #121212;
  --black-deep: #0a0a0a;
  --grey-dark: #2b2b2b;
  --grey: #6b6b6b;
  --grey-light: #f2f2f2;
  --white: #ffffff;
  --red: #c8202b;
  --red-dark: #9c1922;
  --blue: #2f7fd6;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.12);
  --font-heading: 'Fredoka', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--grey-dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--black);
  margin: 0 0 16px;
  line-height: 1.2;
}

p { margin: 0 0 16px; }

a { color: inherit; text-decoration: none; }

.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 8px 20px rgba(200,32,43,0.35); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-phone { background: var(--red); color: var(--white); padding: 10px 18px; font-size: 0.92rem; }
.btn-phone:hover { background: var(--red-dark); }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black-deep);
  border-bottom: 3px solid var(--red);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--white); }
.brand-logo { width: 46px; height: 46px; object-fit: cover; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; font-family: var(--font-heading); }
.brand-text strong { font-size: 1.02rem; }
.brand-text small { color: var(--grey); font-size: 0.72rem; letter-spacing: 0.03em; }

.main-nav { display: flex; gap: 26px; }
.main-nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.94rem;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--red); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--white); border-radius: 2px; }

/* Hero */
.hero {
  background: radial-gradient(circle at 80% 20%, #1c1c1c 0%, var(--black-deep) 60%);
  color: var(--white);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(200,32,43,0) 0%, rgba(200,32,43,0.08) 100%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}
.eyebrow {
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }
.hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.7rem); max-width: 620px; }
.hero-lead { color: #d5d5d5; max-width: 520px; font-size: 1.05rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0; }
.hero-badges { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-badges li { font-size: 0.9rem; color: #cfcfcf; position: relative; padding-left: 20px; }
.hero-badges li::before { content: "✓"; color: var(--red); position: absolute; left: 0; font-weight: 700; }

.hero-media { display: flex; justify-content: center; }
.hero-logo {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--grey-light); }
.section-title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.section-title.center { text-align: center; }
.section-lead { color: var(--grey); max-width: 640px; }
.section-lead.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 44px;
}
.cards-grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  display: block;
  background: var(--white);
  border: 1px solid #eaeaea;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.14); }
.card-static { cursor: default; }
.card-static:hover { transform: none; box-shadow: var(--shadow); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--white); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card-icon-red { background: linear-gradient(135deg, var(--red-dark), var(--black)); }
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { color: var(--grey); font-size: 0.94rem; margin: 0; }
.card p a { color: var(--red); font-weight: 600; text-decoration: underline; }

/* Callout / fine print */
.callout {
  background: #fff4f4;
  border: 1px solid #f2c6c9;
  border-left: 4px solid var(--red);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 32px;
  color: var(--grey-dark);
  font-size: 0.94rem;
}
.callout strong { color: var(--red-dark); }
.fine-print {
  color: var(--grey);
  font-size: 0.8rem;
  margin-top: 20px;
}
.fine-print a { color: var(--red); text-decoration: underline; }
.center { text-align: center; }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.about-logo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--black-deep);
  padding: 10px;
}
.feature-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.feature-list li { padding-left: 26px; position: relative; color: var(--grey-dark); }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* Partner logos */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--white);
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.partner-logo img {
  max-height: 56px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Zone chips */
.zone-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.zone-chips span {
  background: var(--grey-light);
  border: 1px solid #e2e2e2;
  color: var(--black);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.92rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  margin: 0;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
}
.review p { font-style: italic; color: var(--grey-dark); }
.review cite { color: var(--grey); font-size: 0.88rem; font-style: normal; }

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 12px; color: var(--grey-dark); }
.contact-list .icon { color: var(--red); flex-shrink: 0; }
.contact-list .piva { color: var(--grey); font-size: 0.88rem; padding-left: 32px; }

.contact-form {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  gap: 16px;
}
.form-row { display: grid; gap: 6px; }
.form-row label { font-size: 0.88rem; font-weight: 600; color: var(--black); }
.form-row input, .form-row select, .form-row textarea {
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}
.form-note { font-size: 0.88rem; color: var(--red-dark); min-height: 1.2em; margin: 0; }

/* Footer */
.site-footer { background: var(--black-deep); color: #cfcfcf; padding: 56px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { width: 60px; height: 60px; border-radius: 8px; margin-bottom: 12px; object-fit: cover; }
.footer-brand p { color: #9c9c9c; font-size: 0.9rem; }
.footer-links h4, .footer-contacts h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }
.footer-links a { display: block; color: #b8b8b8; padding: 6px 0; font-size: 0.92rem; }
.footer-links a:hover { color: var(--red); }
.footer-contacts p { color: #b8b8b8; font-size: 0.92rem; margin: 0 0 8px; }
.footer-contacts a:hover { color: var(--red); }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 0.82rem; color: #7a7a7a; }

/* Floating call button (mobile) */
.fab-call {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(200,32,43,0.5);
  z-index: 60;
}
.fab-call .icon { width: 24px; height: 24px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lead, .hero h1 { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-badges { justify-content: center; }
  .hero-media { order: -1; }
  .hero-logo { max-width: 220px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 260px; margin: 0 auto; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .btn-phone { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .fab-call { display: flex; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-deep);
    padding: 16px 20px 24px;
    border-bottom: 3px solid var(--red);
    gap: 6px;
  }
}
