/* Simple, modern styles */
:root {
  --bg: #f7f9fc;
  --card: #ffffff;
  --muted: #6b7280;
  --accent: #301a61;
  --accent-600: #642b77;
  --radius: 12px;
  --container: 1100px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: var(--bg);
  color: #0b1220;
  -webkit-font-smoothing: antialiased;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #0b1220;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

h1,
h2,
h3 {
  color: var(--accent);
  font-variant: small-caps;
  font-weight: 700;
}

h3 {
  font-size: 1.7rem;
  margin: 0.5rem 0;
}
p {
  line-height: 1.5;
}
section > h2 {
  text-align: center;
  font-variant: small-caps;
  font-size: 2rem;
}
strong {
  color: var(--accent);
  font-weight: bold;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem 0 2rem 0.5rem;
}
.site-header {
  background: transparent;
  padding: 1rem 0;
}
.site-header .container {
  display: flex;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}
.logo {
  width: 7rem;
  height: 7rem;
}
.brand-name {
  font-weight: 600;
  font-size: 2.8rem;
  margin-left: 0.5rem;
  margin-right: 1rem;
  color: #5f5f5f;
}
.main-nav a {
  margin-left: 1rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 1.3rem;
}
.main-nav .cta {
  background: var(--accent);
  color: white;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  margin-right: 3rem;
}
.hero {
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), transparent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: center;
}
.hero h1 {
  font-size: 2.8rem;
  margin: 0 0 0.6rem;
}

.lead {
  color: var(--muted);
  margin: 0 0 1.2rem;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 500;
}
.btn {
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn.primary {
  background: var(--accent);
  color: #fff;
}
.btn.disabled {
  background: var(#5f5f5f);
  color: #fff;
  cursor: not-allowed;
}
.btn.outline {
  background: transparent;
  border-color: rgba(11, 18, 32, 0.08);
  color: var(--accent);
}
a#download {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  cursor: pointer;
}
a#download img {
  width: 256px;
}
.phone-svg {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.12);
}
.features {
  padding: 2rem 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: var(--card);
  padding: 1.2rem;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.06);
  margin: 0 1rem;
}
.card h3 {
  text-align: center;
}
.card p {
  text-align: justify;
}
.screens {
  padding: 2rem 0;
}
.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.screen {
  background: transparent;
}
.screen-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #e6eefc, #f7fbff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.contact-cta {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.06), transparent);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}
.contact-cta h2 {
  text-align: left;
}
.site-footer {
  padding: 2rem 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links a {
  margin-left: 1rem;
  color: var(--muted);
  text-decoration: none;
}
.lang-switch {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
}
.lang-switch img {
  width: 28px;
  height: 28px;
  display: block;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .screens-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
