/* GoSolid Generated Site — v2 */
:root {
  --primary: #2563eb;
  --accent: #1e40af;
  --text: #111827;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --border: #e5e7eb;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.12);
  --max-w: 1100px;
  --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-top: .85rem; padding-bottom: .85rem;
}
.logo { font-size: 1.2rem; font-weight: 800; color: var(--primary); letter-spacing: -.3px; }
.header-nav { display: flex; align-items: center; gap: 1.5rem; }
.header-nav a { font-size: .9rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition); }
.header-nav a:hover { color: var(--primary); text-decoration: none; }
.header-phone a {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; font-size: .95rem; color: var(--primary);
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  padding: .45rem 1rem; border-radius: 999px;
  transition: background var(--transition);
}
.header-phone a:hover { background: color-mix(in srgb, var(--primary) 18%, transparent); text-decoration: none; }
.lang-switch a {
  font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  color: var(--text-muted); border: 1px solid var(--border);
  padding: .3rem .65rem; border-radius: var(--radius);
  transition: all var(--transition);
}
.lang-switch a:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 520px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .18; z-index: 0;
}
.hero-content { position: relative; z-index: 1; padding: 5rem 0; max-width: 640px; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900; color: #fff; line-height: 1.15;
  margin-bottom: 1rem; letter-spacing: -.5px;
}
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.88); margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--primary); font-weight: 700;
  padding: .9rem 1.75rem; border-radius: 999px; font-size: 1rem;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); text-decoration: none; }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #fff; font-weight: 600;
  padding: .9rem 1.75rem; border-radius: 999px; font-size: 1rem;
  border: 2px solid rgba(255,255,255,.6);
  transition: background var(--transition), border-color var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; text-decoration: none; }

/* ── About ── */
.about { background: var(--bg-alt); }
.about-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center;
}
.about-text h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; }
.rating-badge {
  display: flex; flex-direction: column; align-items: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm); text-align: center; min-width: 140px;
}
.rating-badge .stars { font-size: 1.4rem; letter-spacing: 2px; margin-bottom: .35rem; }
.rating-badge .score { font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.rating-badge .reviews { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }

/* ── Services ── */
.services h2 { font-size: 1.75rem; font-weight: 800; text-align: center; margin-bottom: 2.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.25rem;
  text-align: center; box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .icon { font-size: 2.2rem; margin-bottom: .75rem; display: block; }
.service-card .name { font-weight: 600; font-size: .95rem; color: var(--text); }

/* ── Contact ── */
.contact { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: .5rem; }
.contact-intro { color: var(--text-muted); margin-bottom: 2rem; }

/* Info block */
.contact-info-block { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.info-row { display: flex; align-items: center; gap: .75rem; font-size: .95rem; }
.info-row .info-icon { font-size: 1.2rem; flex-shrink: 0; }
.info-row a { color: var(--text); font-weight: 500; }
.info-row a:hover { color: var(--primary); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: .7rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: .95rem; font-family: inherit;
  background: #fff; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--primary); color: #fff; font-weight: 700;
  padding: .9rem 2rem; border-radius: 999px; font-size: 1rem;
  border: none; cursor: pointer; font-family: inherit;
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
}
.btn-submit:hover { background: var(--accent); transform: translateY(-1px); }
.form-feedback {
  display: none; padding: 1rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; margin-top: .5rem;
}
.form-feedback.success { background: #dcfce7; color: #16a34a; display: block; }
.form-feedback.error   { background: #fee2e2; color: #dc2626; display: block; }

/* ── Footer ── */
.site-footer {
  background: var(--text); color: rgba(255,255,255,.65);
  padding: 1.75rem 0; font-size: .85rem;
}
.site-footer .container {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: .75rem;
}
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: #fff; }
.footer-links { display: flex; gap: 1.25rem; }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #1f2937; color: #fff;
  padding: 1rem 1.5rem; z-index: 400;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem; font-size: .9rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-banner.hidden { display: none; }
.cookie-actions { display: flex; gap: .5rem; }
.btn-cookie {
  padding: .5rem 1.1rem; border-radius: 999px;
  font-weight: 600; font-size: .85rem; cursor: pointer; border: none; font-family: inherit;
}
.btn-cookie-accept { background: var(--primary); color: #fff; }
.btn-cookie-decline {
  background: transparent; color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hero { min-height: 420px; }
  .hero-content { padding: 3.5rem 0; }
  .about-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .rating-badge { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
}