:root {
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --bg: #f3f4f6;
  --text-main: #111827;
  --text-muted: #6b7280;
  --card-bg: #ffffff;
  --border-soft: #e5e7eb;
  --danger: #b91c1c;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  border-bottom: 1px solid var(--border-soft);
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Logo navbar */
.logo-img {
  height: 56px;
  width: auto;
}

.brand-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--accent-dark);
}

main {
  flex: 1;
}

.section {
  padding: 2.5rem 1rem;
}

.section-alt {
  background: #ffffff;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

/* Hero logo */
.hero-logo {
  height: 140px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(10px 20px 6px rgba(0, 0, 0, 0.55));
  transition: filter 1.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: #e0f2fe;
  color: #075985;
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 160px;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: #e5e7eb;
  color: #374151;
}

.btn-secondary:hover {
  background: #d1d5db;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-card {
  background: radial-gradient(circle at top, #dbeafe, #eff6ff 40%, #ffffff);
  border-radius: 1.5rem;
  padding: 1.4rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  border: 1px solid #dbeafe;
}

.hero-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hero-checklist {
  list-style: none;
  font-size: 0.85rem;
  color: #111827;
  margin-bottom: 1rem;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.hero-check {
  font-size: 1rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  background: #fef9c3;
  color: #854d0e;
}

/* Sections */
.section-header {
  margin-bottom: 1.4rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.grid {
  display: grid;
  gap: 1.2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Cards */
.card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.card-ghost {
  border-style: dashed;
  background: #f9fafb;
}

.card-title {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1rem 0.55rem;
  font-size: 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #f9fafb;
  color: #374151;
  margin-bottom: 0.4rem;
}

/* Timeline */
.timeline {
  border-left: 2px solid var(--border-soft);
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.timeline-item {
  margin-bottom: 0.8rem;
  position: relative;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  border: 2px solid #eff6ff;
  position: absolute;
  left: -1.16rem;
  top: 0.2rem;
}

.timeline-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.timeline-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonial {
  font-size: 0.9rem;
  color: #111827;
}

.testimonial-text {
  margin-bottom: 0.4rem;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact & footer */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  font-size: 0.94rem;
}

.contact-list li {
  margin-bottom: 0.45rem;
}

.contact-label {
  font-weight: 600;
}

.highlight {
  color: var(--accent);
  font-weight: 700;
}

.map-placeholder {
  border-radius: 1rem;
  border: 1px dashed var(--border-soft);
  padding: 1.1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: #f9fafb;
}

.cta-final {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

footer {
  border-top: 1px solid var(--border-soft);
  background: #ffffff;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav-right {
    display: none;
  }

  .section {
    padding: 1.8rem 1rem;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .hero-logo {
    height: 110px;
  }
}

/* Dark navbar */
header {
  background: #000 !important;
  border-bottom: none !important;
}

.nav,
.nav * {
  color: #fff !important;
}

.nav-cta {
  background: #1d4ed8 !important;
  color: #fff !important;
}

.logo-img {
  filter: brightness(0) invert(1);
}

/* Red background */
body {
  background: #b30000 !important;
}

/* Hero text black */
.hero-title,
.hero-subtitle,
.hero-note {
  color: #000 !important;
}

/* Menu */
.main-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-menu a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 500;
}

.main-menu a:hover {
  text-decoration: underline;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #111;
  border-radius: 6px;
  padding: 0.5rem;
  top: 1.6rem;
  white-space: nowrap;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.dropdown-content a {
  display: block;
  padding: 0.35rem 0.8rem;
  color: #fff !important;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Language switch */
.lang-switch {
  margin-left: 1rem;
  border-left: 1px solid #fff;
  padding-left: 1rem;
}

.lang-switch a {
  color: #fff !important;
  font-weight: 600;
}
