:root {
  color-scheme: light;
  --primary: #0b243f;
  --accent: #c8a768;
  --text: #1a2233;
  --muted: #5a6a82;
  --bg: #f5f7fa;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e2e6ee;
  position: sticky;
  top: 0;
  z-index: 10;
}

.top-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.top-bar p {
  margin: 0;
}

.navbar {
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  gap: 1.5rem;
}

.logo span {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
}

.logo small {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.call-now {
  font-weight: 600;
  color: var(--primary);
}

.lang-toggle {
  border: 1px solid var(--primary);
  background: transparent;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  max-width: 1150px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.6rem;
  color: var(--primary);
  margin: 1rem 0 1.2rem;
}

.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-actions .primary {
  background: var(--primary);
  color: var(--white);
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  width: fit-content;
}

.hero-actions .secondary {
  color: var(--primary);
  font-weight: 600;
}

.hero-badges {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.hero-badges div {
  background: var(--white);
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid #e4e8f0;
  display: grid;
  gap: 0.15rem;
}

.hero-badges strong {
  color: var(--primary);
}

.hero-badges span {
  color: var(--muted);
  font-size: 0.9rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.hero-card {
  background: var(--white);
  padding: 2.1rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 44, 76, 0.08);
}

.hero-card h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
}

.card-contact {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e6ee;
  font-weight: 600;
}

.card-contact a {
  color: var(--primary);
  font-size: 1.15rem;
}

.services {
  background: var(--white);
  padding: 3.5rem 1.5rem;
}

.section-header {
  max-width: 1150px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--muted);
}

.service-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-grid article {
  background: #f1f4f8;
  padding: 1.6rem;
  border-radius: 12px;
  border: 1px solid #e4e8f0;
}

.service-grid h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.service-grid p {
  color: var(--muted);
}

.advantages {
  background: var(--bg);
  padding: 3.5rem 1.5rem;
}

.advantages-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.advantages-grid article {
  background: var(--white);
  padding: 1.6rem;
  border-radius: 12px;
  border: 1px solid #e4e8f0;
}

.advantages-grid h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.advantages-grid p {
  color: var(--muted);
}

.process {
  max-width: 1150px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.process-content h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.process-content p {
  color: var(--muted);
}

.process-highlight {
  margin-top: 1.5rem;
  background: #f9f5ee;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 10px;
}

.process-highlight p:first-child {
  font-weight: 600;
  color: var(--primary);
}

.process-steps {
  display: grid;
  gap: 1.25rem;
}

.process-steps div {
  background: var(--white);
  padding: 1.25rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.process-steps span {
  color: var(--accent);
  font-weight: 700;
}

.process-steps h3 {
  color: var(--primary);
  margin: 0.35rem 0;
}

.process-steps p {
  color: var(--muted);
}

.cta-strip {
  background: var(--primary);
  color: var(--white);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-button {
  background: var(--accent);
  color: var(--primary);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
}

.faq {
  background: var(--white);
  padding: 3.5rem 1.5rem 4rem;
}

.faq-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.faq-grid article {
  background: #f7f8fb;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e4e8f0;
}

.faq-grid h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.faq-grid p {
  color: var(--muted);
}

.contact {
  background: var(--white);
  padding: 3.5rem 1.5rem 4rem;
}

.contact-grid {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.contact-grid div {
  background: #f7f8fb;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e4e8f0;
}

.contact-grid h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-link {
  font-weight: 600;
  color: var(--primary);
  display: block;
}

.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 360px;
}

.footer-contact a {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-address {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
}

.mobile-call {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(11, 36, 63, 0.2);
  display: none;
  z-index: 20;
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .hero-actions .primary,
  .cta-button {
    width: 100%;
    text-align: center;
  }

  .cta-strip {
    text-align: center;
  }

  .nav-links {
    gap: 0.75rem;
  }

  .mobile-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 2rem);
  }
}
