@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/img/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2') format('woff2');
}

:root {
  --accent: #2bbcea;
  --text: #333;
  --muted: #5f6b77;
  --light: #f4f8fb;
  --border: #e5eaf0;
  --footer-bg: #1f2c3a;
  --footer-text: #c9d3df;
}

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

body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 17.6px;
  line-height: 1.5;
  color: var(--text);
  background: #fff;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

header.site-header {
  background: #fff;
  border-bottom: 4px solid var(--accent);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #26b3e1;
  padding-left: 8px;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 72px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.4px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 2px 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.8px;
  margin: 4px 0;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  border-radius: 4px;
}

.nav-toggle.is-active span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 951px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle.is-active span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav a.active {
  color: #27b1e2;
  text-decoration: underline;
}

.nav a.cta {
  background: #2bbcea;
  color: #fff;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
}

.nav a.cta:hover {
  text-decoration: none;
  background: #27a9d3;
  color: #fff;
}

.nav .flag-img {
  height: 12px;
  width: auto;
  border-radius: 2px;
}

.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}

.lang-toggle {
  background: none;
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  color: var(--muted);
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  padding: 10px 12px;
  display: none;
  flex-direction: column;
  gap: 6px;
  min-width: max-content;
  max-width: 260px;
  z-index: 40;
}

.lang-menu a {
  padding: 6px 8px;
  border-radius: 4px;
  color: var(--muted);
  font-weight: 700;
}

.lang-menu a.active {
  color: #27b1e2;
  background: #e8f7fd;
}

.lang-dropdown:hover .lang-menu,
.lang-dropdown:focus-within .lang-menu,
.lang-menu.open {
  display: flex;
}

.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 140px 16px 120px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: 39.6px;
  font-weight: 700;
}

.hero p {
  margin: 0;
  font-size: 17.6px;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 60px;
  max-width: 820px;
  margin: 40px auto 60px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #444;
}

.feature i {
  color: var(--accent);
  font-size: 20px;
}

.section-title {
  text-align: center;
  font-size: 24.2px;
  font-weight: 700;
  margin: 0 auto 26px;
  color: var(--text);
  letter-spacing: 0.2px;
}

.divider {
  width: 200px;
  height: 1px;
  background: #d5dbe2;
  margin: 18px auto 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.country-note {
  text-align: center;
  color: var(--muted);
  margin: -10px 0 12px;
  font-size: 14px;
}

.country-group {
  display: none;
}

.country-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.country-flag img {
  height: 20px;
  width: auto;
  border-radius: 2px;
}

.country-title {
  font-weight: 700;
  font-size: 16px;
}

.country-meta {
  color: var(--muted);
  font-size: 14px;
  margin-left: auto;
}

.pricing-tabs {
  background: #f9fbfe;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.tab-list {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.tab-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn img {
  height: 12px;
  width: auto;
  border-radius: 2px;
}

.tab-btn.active {
  background: #2bbcea;
  color: #fff;
  border-color: #2bbcea;
}

.tab-btn:hover {
  border-color: #2bbcea;
  color: #27a9d3;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.card {
  background: #f6fafe;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 12px 24px;
  text-align: center;
  min-height: 320px;
}

.card img.logo-img {
  display: block;
  margin: 0 auto 18px;
  height: 90px;
  object-fit: contain;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 19.8px;
  font-weight: 700;
}

.card p {
  margin: 4px 0;
  font-size: 15.4px;
  line-height: 1.5;
  color: #555;
}

.card p strong {
  font-weight: 700;
}

.contact-card {
  text-align: center;
  padding: 40px 0 20px;
  color: #444;
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 19.8px;
  font-weight: 700;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px auto;
  background: #2bbcea;
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 15.4px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  text-decoration: none;
  background: #27a9d3;
  color: #fff;
}

.faq {
  padding: 10px 0 60px;
  color: #444;
}

.about-section {
  max-width: 840px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  font-size: 24.2px;
  margin: 12px 0 20px;
  font-weight: 700;
}

.faq h3 {
  font-size: 19.8px;
  margin: 24px 0 10px;
  font-weight: 700;
  text-align: center;
}

.faq p {
  font-size: 15.4px;
  line-height: 1.6;
  margin: 6px 0;
  text-align: left;
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto 20px;
  text-align: left;
}

.faq-accordion details {
  background: #f6fafe;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.faq-accordion summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq-accordion p {
  margin: 8px 0 0;
  text-align: left;
}

.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 36px 0 28px;
  text-align: center;
  font-size: 15.4px;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto 18px;
  text-align: left;
}

.footer a {
  color: var(--accent);
}

.footer .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer .footer-social a {
  color: var(--footer-text);
  font-size: 16px;
}

.footer .footer-social a:hover {
  color: var(--accent);
}

.footer .footer-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--footer-text);
}

.footer .footer-heading i {
  color: var(--accent);
  font-size: 17.6px;
}

.footer .footer-grid > div:not(:last-child) > div:not(.footer-heading) {
  padding-left: 12px;
}

.footer .footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 8px;
}

.footer .footer-brand p {
  margin: 6px 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 33px;
  }
  .hero {
    padding: 100px 16px 90px;
  }
  .logo {
    padding-left: 8px;
  }
  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer .footer-grid {
    grid-template-columns: 1fr;
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 950px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 12px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 74px;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    padding: 12px;
    flex-direction: column;
    gap: 12px;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 30;
  }
  .nav.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .topbar {
    align-items: center;
  }
}
