:root {
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --primary: #0056b3;
  --primary-soft: #e3f0ff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --max-width: 1120px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 220px;
}

.brand img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 1.3rem;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
}
.nav-links a:hover { color: var(--primary); text-decoration: none; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav-phone { color: var(--muted); font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 1.05rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.1s ease, border-color 0.1s ease;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 86, 179, 0.18);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0, 86, 179, 0.25); text-decoration: none; }

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: #ffffff;
}
.btn-outline:hover { background: var(--primary-soft); text-decoration: none; }

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.6rem 1rem 3.2rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.2rem;
  align-items: center;
  padding: 3.2rem 1.2rem;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;

  /* Hero background image */
  background-image: url("./hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Light overlay for readability on top of the image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 480px at 50% 28%, rgba(255,255,255,0.92), rgba(255,255,255,0.70));
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

h1 {
  font-size: clamp(2.15rem, 3vw + 1.1rem, 2.95rem);
  line-height: 1.08;
  margin: 0 0 0.9rem;
}

.lead {
  font-size: 1.02rem;
  max-width: 38rem;
  color: var(--muted);
  margin: 0 0 1.45rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.badge {
  padding: 0.22rem 0.72rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

.hero-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.55rem 1.35rem;
  border: 1px solid var(--border);
}

.hero-card h2 { font-size: 1.15rem; margin: 0 0 0.55rem; }
.hero-card p { margin: 0 0 1rem; color: var(--muted); }

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}
.checklist li::before {
  content: "✓";
  margin-right: 0.45rem;
  font-weight: 900;
  color: var(--primary);
}

.section { padding: 2.1rem 0 0; }
.section-header { margin-bottom: 1.2rem; }
.section-header h2 { margin: 0.2rem 0 0.35rem; font-size: 1.5rem; }
.section-subtitle { margin: 0; color: var(--muted); max-width: 42rem; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.25rem 1.15rem;
  background: #ffffff;
}

.card h3 { margin: 0 0 0.55rem; font-size: 1.12rem; }
.card p { margin: 0 0 0.9rem; color: var(--muted); }
.card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }

.pills { display:flex; flex-wrap:wrap; gap:0.4rem; margin-top:0.8rem; }
.pill { border: 1px solid var(--border); border-radius: 999px; padding: 0.2rem 0.65rem; font-size: 0.82rem; color: var(--muted); background: #fff; }

.keyword-list {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  columns: 2;
  column-gap: 1.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.keyword-list li { margin-bottom: 0.25rem; }

.faq { display: grid; gap: 0.8rem; margin-top: 0.4rem; }
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.95rem 1rem;
  background: #fff;
}
.faq-q { font-weight: 800; margin-bottom: 0.25rem; }
.faq-a { color: var(--muted); }

.cta {
  margin-top: 2.6rem;
  padding: 1.55rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--primary-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}

footer {
  border-top: 1px solid var(--border);
  margin-top: 2.6rem;
  padding: 1.6rem 1rem 2.1rem;
  font-size: 0.86rem;
  color: var(--muted);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { color: var(--muted); font-weight: 650; }

/* Contact form */
.contact-form { max-width: none; width: 100%; }
.form-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items:start; }
.form-row { display:flex; flex-direction:column; gap:0.28rem; margin-bottom:0.9rem; }
.form-row label { font-size: 0.82rem; font-weight: 800; color: var(--text); }
.form-row input, .form-row textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.72rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.15);
}
.form-hint { font-size: 0.8rem; color: var(--muted); margin: -0.35rem 0 0.9rem; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display:none; }
  .form-grid { grid-template-columns: 1fr; }
  .keyword-list { columns: 1; }
}


/* --- Recent project (Elite Bikes) --- */
.project-highlights ul{
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.project-highlights li{
  margin: 0.35rem 0;
}
.project-proof{
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--border);
}
.project-proof-title{
  font-weight: 900;
  margin-bottom: 0.25rem;
}
.project-proof-text{
  color: var(--muted);
  margin: 0;
}
@media (max-width: 900px){
  #projects .grid-2{ grid-template-columns: 1fr; }
}



/* WhatsApp floating button + mini popup */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25D366;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  z-index: 9999;
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}
.wa-float svg{
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* WhatsApp button + teaser */
.wa-widget{
  position: fixed !important;
  right: 18px;
  bottom: 90px;
  width: 280px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  padding: 14px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  font-size: 14px;
}

.wa-widget.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wa-widget.is-hidden{
  display: none;
}

.wa-title{
  font-weight: 800;
  margin: 0 28px 6px 0;
}

.wa-text{
  color: rgba(0,0,0,.72);
  margin-bottom: 10px;
  line-height: 1.35;
}

.wa-cta{
  display: inline-block;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
}

.wa-close{
  position: absolute;
  right: 10px;
  top: 8px;
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: rgba(0,0,0,.45);
}

.wa-float{
  position: fixed !important;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25D366;
  box-shadow: 0 10px 25px rgba(0,0,0,.20);
  z-index: 10001;
  transition: transform .15s ease, box-shadow .15s ease;
}

.wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.wa-float svg{
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (max-width: 480px){
  .wa-float{ right: 14px; bottom: 14px; width: 52px; height: 52px; }
  .wa-widget{ right: 14px; bottom: 78px; width: 270px; }
}

/* Cookie banner */
.cookie-banner{
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 560px;
  margin-left: auto;
  z-index: 10002;
  background: #111;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
  display: none;
  padding: 18px;
}
.cookie-banner.is-visible{ display: block; }
.cookie-inner{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.cookie-text{
  font-size: 15px;
  line-height: 1.5;
  opacity: .96;
}
.cookie-actions{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn{
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  background: #0b63ce;
  color: #fff;
}
.cookie-link{
  color: #fff;
  opacity: .92;
  text-decoration: underline;
  font-size: 14px;
}
@media (max-width: 640px){
  .cookie-banner{
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}


.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.35rem}
@media (max-width: 980px){.grid-3{grid-template-columns:1fr}}
.card ul.checklist{margin:0}
.card .btn{margin-top:0.9rem}


.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.35rem; }
.pricing-grid { align-items: stretch; }
.pricing-card, .service-mini { position: relative; }
.pricing-card.featured { border-color: var(--primary); box-shadow: 0 14px 34px rgba(0, 86, 179, 0.10); }
.popular-badge {
  position: absolute;
  top: -0.75rem;
  right: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}
.plan-label { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.35rem; }
.price-tag { font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 0.9rem; }
.price-tag span { font-size: 0.9rem; font-weight: 700; color: var(--muted); }
.price-tag.small { font-size: 1.55rem; }
.plan-btn { margin-top: 1rem; width: 100%; }
.extra-services { margin-top: 1.35rem; }
.pricing-note {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--muted);
}
.contact-quick-actions { display:flex; flex-wrap:wrap; gap:0.75rem; margin-top:1rem; }

@media (max-width: 980px) {
  .hero, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .nav { flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 680px) {
  .nav-phone { display:none; }
  main { padding-top: 1rem; }
  .cta { padding: 1.2rem 1rem; }
}


/* Optimized contact section */
.cta-optimized {
  display: grid !important;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr) !important;
  gap: 2rem;
  align-items: start;
}
.cta-optimized .cta-lead { grid-column: 1; }
.cta-optimized .cta-form-wrap { grid-column: 2; align-self: start; }
.cta-optimized > * {
  min-width: 0;
}
.cta-optimized .cta-lead,
.cta-optimized .cta-form-wrap {
  width: 100%;
}
.cta-lead {
  max-width: none;
  padding-right: 0.5rem;
}
.cta-title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.9rem, 1.5vw + 1.2rem, 2.6rem);
  line-height: 1.08;
}
.cta-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}
.contact-info-block {
  margin-top: 1rem;
  color: var(--muted);
}
.contact-info-block p {
  margin: 0.15rem 0;
}
.contact-primary-cta {
  margin-top: 1.1rem;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.28);
  padding: 0.82rem 1.2rem;
  font-size: 0.96rem;
}
.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.34);
  text-decoration: none;
}
.cta-sub {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.trust-line {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}
.cta-form-wrap {
  width: 100%;
  min-width: 0;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  padding: 1rem;
  backdrop-filter: blur(6px);
}
.cta-form-wrap .contact-form {
  max-width: none;
}
.divider {
  text-align: center;
  margin: 0.1rem 0 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.divider span {
  display: inline-block;
  padding: 0 0.45rem;
}
.btn-form-submit {
  min-width: 180px;
}
@media (max-width: 900px) {
  .cta-optimized {
    grid-template-columns: 1fr !important;
  }
  .cta-form-wrap {
    padding: 0.9rem;
  }
}


/* Contact section hard fix across all languages */
#contact.cta-optimized,
section.cta.cta-optimized#contact {
  display: grid !important;
  grid-template-columns: minmax(300px, 1fr) minmax(420px, 1fr) !important;
  gap: 2rem !important;
  align-items: start !important;
}
#contact.cta-optimized > .cta-lead,
section.cta.cta-optimized#contact > .cta-lead {
  grid-column: 1 !important;
  max-width: none !important;
}
#contact.cta-optimized > .cta-form-wrap,
section.cta.cta-optimized#contact > .cta-form-wrap {
  grid-column: 2 !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  align-self: start !important;
  background: rgba(255,255,255,0.72) !important;
  border: 1px solid rgba(255,255,255,0.70) !important;
  border-radius: 18px !important;
  padding: 1rem !important;
  backdrop-filter: blur(6px) !important;
}
#contact .contact-form {
  width: 100% !important;
  max-width: none !important;
}
#contact .form-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  align-items: start !important;
}
#contact .form-row {
  display: flex !important;
  flex-direction: column !important;
}
#contact .form-row input,
#contact .form-row textarea {
  width: 100% !important;
  box-sizing: border-box !important;
}
@media (max-width: 900px) {
  #contact.cta-optimized,
  section.cta.cta-optimized#contact {
    grid-template-columns: 1fr !important;
  }
  #contact.cta-optimized > .cta-lead,
  #contact.cta-optimized > .cta-form-wrap,
  section.cta.cta-optimized#contact > .cta-lead,
  section.cta.cta-optimized#contact > .cta-form-wrap {
    grid-column: auto !important;
  }
}
@media (max-width: 720px) {
  #contact .form-grid {
    grid-template-columns: 1fr !important;
  }
}
