:root {
  --brand-red: #d71920;
  --brand-dark: #121212;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  background: var(--brand-dark);
  color: #fff;
  font-size: 14px;
}
.topbar .container {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px 20px;
}
.contact-item { opacity: 0.9; }
.lang-toggle {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-red);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.brand-text small { color: var(--muted); }
.nav { display: flex; gap: 20px; }
.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}
.nav-link:hover { color: var(--brand-red); }

/* Hero */
.hero {
  background: linear-gradient(135deg, #fff 0%, #ffe9ea 100%);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  padding: 64px 0;
  text-align: center;
}
.hero-title {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  margin: 0 0 12px;
}
.hero-sub {
  color: var(--muted);
  margin: 6px 0;
}
.hero-cta { margin-top: 20px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.1s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-outline {
  border: 1px solid var(--brand-red);
  color: var(--brand-red);
  background: #fff;
}

/* Sections */
.section { padding: 56px 0; }
.section-alt { background: var(--bg-alt); }

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.info { list-style: none; padding: 0; margin: 0; }
.info li { padding: 8px 0; border-bottom: 1px dashed var(--border); }
.info li:last-child { border-bottom: 0; }

.bullets { list-style: none; padding: 0; margin: 16px 0 0; }
.bullets li { margin: 8px 0; }

/* Subsidiaries */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
}
.company-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.company-badge {
  display: inline-block;
  background: #fff5f5;
  color: var(--brand-red);
  border: 1px solid #ffd6d6;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Contact form */
.contact-form .form-row { display: grid; gap: 8px; margin-bottom: 12px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}
.form-note { color: var(--muted); font-size: 14px; }

/* Footer */
.footer {
  background: var(--brand-dark);
  color: #fff;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
  padding: 24px 0;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer a { color: #fff; text-decoration: none; opacity: 0.9; }
.footer a:hover { opacity: 1; }
.footer-brand { display: flex; align-items: center; gap: 12px; }