:root {
  --blue: #0066b3;
  --dark: #0a1729;
  --light: #f5f9fc;
  --text: #1a2533;
  --green: #157a55;
  --shadow: 0 14px 40px rgba(13, 27, 42, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 14px;
  padding: 8px 6%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar a { color: #9be0ff; font-weight: 700; }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
  padding: 16px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--blue);
}
.logo span { color: var(--green); }

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 700;
}
nav a { color: #1a2533; padding: 4px 0; }
nav a:hover { color: var(--blue); }
nav a.active {
  color: var(--blue);
  border-bottom: 3px solid var(--blue);
  padding-bottom: 4px;
}

.header-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  background: var(--blue);
  border: 0;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  -webkit-tap-highlight-color: rgba(0,102,179,0.3);
  display: none;
  align-items: center;
  justify-content: center;
}
.menu-toggle:hover { background: var(--green); }

.btn {
  background: var(--blue);
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 999px;
  display: inline-block;
  font-weight: 800;
  box-shadow: var(--shadow);
  border: 0;
  cursor: pointer;
  font-size: 15px;
}
.btn:hover { background: #004d8a; }
.btn.alt { background: var(--green); }
.btn.alt:hover { background: #0f5c40; }

.hero {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(10, 23, 41, .92), rgba(10, 23, 41, .55)),
    url('https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=1400&q=70') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 6%;
  color: #fff;
}
.hero.home { min-height: 620px; }
.hero-content { max-width: 780px; }

.eyebrow {
  color: #9be0ff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 14px;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 24px;
  color: inherit;
}
h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.2;
  color: var(--dark);
  margin: 0 0 20px;
}
h3 { color: var(--dark); margin: 0 0 12px; font-size: 22px; }

p { margin: 0 0 18px; }
.hero p { font-size: 18px; max-width: 680px; color: #f0f4f8; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }

.breadcrumb {
  padding: 18px 6%;
  background: var(--light);
  font-size: 14px;
  color: #4a5868;
}
.breadcrumb a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 36px 6%;
  background: var(--light);
}
.trust-card {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 800;
  color: var(--dark);
}

section { padding: 70px 6%; }
.section-light { background: var(--light); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #fff; padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow); height: 100%; }
.card strong { color: var(--blue); }

.service-hero {
  border-radius: var(--radius);
  padding: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--dark), var(--blue));
  box-shadow: var(--shadow);
}
.service-hero h2 { color: #fff; }
.service-hero p { color: #e8f0f8; }

ul { margin: 0; padding-left: 20px; }
li { margin-bottom: 10px; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e8eef3;
}
.price-table th { background: var(--dark); color: #fff; }

.cta {
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 60px 30px;
  box-shadow: var(--shadow);
}
.cta h2 { color: #fff; }
.cta p { color: #f0f8ff; }

input, textarea, select {
  width: 100%;
  padding: 16px;
  border: 1px solid #c8d3e0;
  border-radius: 14px;
  margin-bottom: 14px;
  font-size: 16px;
  font-family: inherit;
}
textarea { min-height: 130px; }
label { display: block; margin-bottom: 6px; font-weight: 700; color: var(--dark); }

footer {
  background: var(--dark);
  color: #dbe7f1;
  padding: 42px 6%;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
}
footer a { color: #dbe7f1; text-decoration: underline; }
.small { font-size: 14px; color: #8a98a8; }

.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  margin: 0 8px 8px 0;
  font-size: 13px;
}

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff !important;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 18px;
  box-shadow: var(--shadow);
}

/* ==========================================================
   MOBILE - DRAWER LATERAL (ca în screenshot)
   FIX: drawer DEASUPRA tuturor, FĂRĂ overlay
========================================================== */
@media (max-width: 900px) {
  
  .topbar {
    font-size: 12px;
    padding: 6px 5%;
  }
  
  header {
    padding: 12px 5%;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
  }
  
  .logo {
    font-size: 20px;
    flex: 1;
  }
  
  /* Hamburger button - dreapta sus, albastru cu linii albe */
  .menu-toggle {
    display: flex;
    z-index: 99999;
    position: relative;
  }
  
  .header-cta {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  /* DRAWER LATERAL - ALBASTRU INCHIS */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background: var(--dark);
    box-shadow: -5px 0 30px rgba(0,0,0,0.4);
    flex-direction: column;
    align-items: stretch;
    padding: 70px 0 30px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 99998;
    overflow-y: auto;
  }
  
  nav.active {
    right: 0;
  }
  
  /* LINK-URI in drawer - text ALB pe fundal albastru inchis */
  nav a {
    display: block;
    width: 100%;
    padding: 18px 26px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    -webkit-tap-highlight-color: rgba(155,224,255,0.3);
  }
  
  nav a:hover {
    background: rgba(155,224,255,0.1);
    color: #9be0ff;
  }
  
  nav a.active {
    background: rgba(0,102,179,0.3);
    color: #9be0ff;
    border-left: 4px solid #9be0ff;
    padding-left: 22px;
    font-weight: 900;
  }
  
  nav a:active {
    background: var(--blue);
    color: #fff !important;
  }
  
  /* Hero si restul */
  .hero {
    min-height: 480px;
    padding: 60px 6%;
  }
  .hero.home { min-height: 540px; }
  
  .trust, .grid-2, .grid-3, footer .footer-grid {
    grid-template-columns: 1fr;
  }
  section { padding: 50px 6%; }
  h1 { font-size: clamp(28px, 6vw, 40px); }
  h2 { font-size: clamp(22px, 5vw, 30px); }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn,
  .hero-actions .phone-cta {
    text-align: center;
    width: 100%;
  }
  
  .service-hero { padding: 28px; }
  .price-table { font-size: 13px; }
  .price-table th, .price-table td { padding: 10px 8px; }
}

@media (max-width: 480px) {
  .topbar {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .logo { font-size: 18px; }
  .header-cta { padding: 7px 12px; font-size: 12px; }
}
