/* =========================
   ROOT & RESET
========================= */

:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #2f6fed;
  --border: rgba(15, 23, 42, 0.08);
  --radius: 14px;
  --container: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: var(--accent);
}

main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 20px;
}

/* =========================
   TYPOGRAPHY
========================= */

h1 {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

h2 {
  font-family: "Raleway", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

/* =========================
   HEADER
========================= */

header {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
}

#logo {
  height: 40px;
}

.brand-name {
  font-weight: 600;
}

.brand-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.top-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.95rem;
}

.lang-switch {
  color: var(--muted);
}

/* =========================
   HERO
========================= */

.hero {
  background: linear-gradient(135deg, #6c8ef5, #7ce0c9);
  color: white;
  padding: 80px 20px;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

.hero-photo {
  width: 160px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.hero-text p {
  margin-bottom: 10px;
}

.hero-lead {
  font-size: 1.2rem;
  opacity: 0.95;
}

.hero-services,
.hero-fields {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* =========================
   SECTIONS
========================= */

section {
  margin-bottom: 80px;
}

.intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px auto;
}

blockquote {
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

/* =========================
   CONTACT
========================= */

#contact a {
  display: inline-block;
  margin-bottom: 10px;
}

/* =========================
   FOOTER
========================= */

footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 40px 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-photo {
    width: 140px;
  }

  .top-nav {
    display: none;
  }
}
.lang-switch {
  display: flex;
  gap: 6px;
  align-items: center;
  font-weight: 500;
}

.lang-switch a {
  opacity: 0.6;
  transition: 0.2s ease;
}

.lang-switch a:hover {
  opacity: 1;
}

.lang-switch strong {
  font-weight: 700;
}
