:root {
  --bg: #f6f8fc;
  --bg-alt: #eef3fb;
  --surface: #ffffff;
  --surface-2: #f9fbff;
  --text: #142033;
  --muted: #60708a;
  --line: #dbe4f0;
  --primary: #0f62fe;
  --primary-dark: #0b4fd1;
  --accent: #0f172a;
  --success: #0b8f6a;
  --shadow: 0 20px 60px rgba(18, 35, 66, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fc 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(246, 248, 252, 0.85);
  border-bottom: 1px solid rgba(219, 228, 240, 0.8);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover {
  background: #f8fbff;
}

.hero {
  padding: 5.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #eaf1ff;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.hero-text {
  max-width: 60ch;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 1.5rem;
}

.hero-points {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text);
  font-weight: 600;
}

.hero-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.05rem;
  color: var(--success);
  font-size: 1.25rem;
  line-height: 1;
}

.hero-card {
  position: relative;
}

.hero-card-inner {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.7rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.mini-label {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.lead-form input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font: inherit;
  color: var(--text);
}

.lead-form input:focus {
  outline: 2px solid rgba(15, 98, 254, 0.15);
  border-color: var(--primary);
}

.form-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-strip {
  padding: 1rem 0 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card,
.info-card,
.step-card,
.feature-card,
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.5rem;
}

.stat-card h3 {
  margin: 0 0 0.4rem;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(238, 243, 251, 0.65) 0%, rgba(246, 248, 252, 0) 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.services-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.info-card,
.feature-card {
  padding: 1.5rem;
}

.info-card h3,
.feature-card h3,
.step-card h3,
.price-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.info-card p,
.feature-card p,
.step-card p,
.price-card ul,
.price-card li {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step-card {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.step-number {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  background: #eaf1ff;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid rgba(15, 98, 254, 0.25);
  transform: translateY(-4px);
}

.price-tag {
  margin: 0 0 0.75rem;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.price-card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  flex-grow: 1;
}

.price-card li + li {
  margin-top: 0.4rem;
}

.cta-section {
  padding-top: 1rem;
}

.cta-box {
  background: linear-gradient(135deg, #0f172a 0%, #16345f 100%);
  color: #fff;
  border-radius: 32px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-box .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.cta-box h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 58ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.cta-box .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.site-footer {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  letter-spacing: -0.03em;
}

.footer-grid p {
  margin: 0.35rem 0;
  color: var(--muted);
}

.footer-bottom {
  padding-top: 1.25rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-col p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Language selector styling */
.footer-lang select {
  margin-top: 0.25rem;
  width: 100%;
  padding: 0.85rem 1rem;
  padding-right: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  color: var(--text);
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2360708a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
}

.footer-lang select:focus {
  outline: 2px solid rgba(15, 98, 254, 0.15);
  border-color: var(--primary);
}

.footer-lang select:hover {
  border-color: #c7d4e5;
}

/* Footer bottom */
.footer-bottom {
  padding-top: 1.25rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}


.lead-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font: inherit;
  color: var(--text);

  /* Remove default OS styling */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Custom dropdown arrow */
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2360708a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;

  cursor: pointer;
}

.form-alert {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-alert-success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@media (max-width: 1080px) {
  .hero-grid,
  .footer-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .services-grid,
  .why-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .stats-grid,
  .services-grid,
  .why-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-card-inner,
  .cta-box,
  .stat-card,
  .info-card,
  .step-card,
  .feature-card,
  .price-card {
    padding: 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }
}
@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}