@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
  --color-blue: #1F5EFF;
  --color-orange: #FF6B00;
  --color-dark: #0A1733;
  --color-slate: #3A4250;
  --color-offwhite: #F7F9FC;
  --color-mint: #2ED7C4;
  --color-text: #111827;
  --color-muted: #6B7280;

  --font-primary: "Inter", sans-serif;
  --font-secondary: "DM Sans", sans-serif;

  --shadow-soft: 0 12px 32px rgba(10, 23, 51, 0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background-color: var(--color-offwhite);
  color: var(--color-text);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  border-radius: var(--radius-md);
}

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

p {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-secondary);
  color: var(--color-dark);
  margin: 0 0 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.6rem;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.button-primary {
  background-color: var(--color-blue);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.button-primary:hover,
.button-primary:focus {
  transform: translateY(-2px);
}

.button-secondary {
  background-color: #fff;
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
}

.section {
  padding: 5.5rem 0;
}

.section-light {
  background-color: #fff;
}

.section-dark {
  background-color: var(--color-dark);
  color: #fff;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: #fff;
}

.badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(31, 94, 255, 0.1);
  color: var(--color-blue);
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.grid {
  display: grid;
  gap: 2.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.split {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-dark {
  background: rgba(10, 23, 51, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-item {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.stat-item h3 {
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
}

.list-check {
  display: grid;
  gap: 1rem;
}

.list-check li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.02rem;
  color: var(--color-slate);
}

.list-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-mint);
  font-weight: 600;
}

.process-steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.process-step {
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 23, 51, 0.08);
  background: #fff;
  padding: 1.8rem;
  position: relative;
}

.process-step span {
  position: absolute;
  top: -1.1rem;
  left: 1.6rem;
  background: var(--color-orange);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.faq {
  display: grid;
  gap: 1.2rem;
}

.faq details {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow-soft);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--color-blue);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.4rem;
}

.form-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-weight: 600;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid rgba(10, 23, 51, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font-size: 1rem;
  background: #fff;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(31, 94, 255, 0.12);
}

.form-group textarea {
  min-height: 160px;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 1.2rem;
}

.contact-meta div {
  min-width: 200px;
}

.contact-meta strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.site-header {
  background: rgba(247, 249, 252, 0.96);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 23, 51, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-image {
  height: 48px;
  width: auto;
  border-radius: 12px;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(10, 23, 51, 0.15);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  background: #fff;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: var(--color-dark);
  width: 20px;
  height: 2px;
  border-radius: 999px;
  position: absolute;
  transition: all 0.2s ease;
}

.nav-toggle-label span {
  position: relative;
}

.nav-toggle-label span::before {
  content: "";
  top: -6px;
}

.nav-toggle-label span::after {
  content: "";
  top: 6px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-nav ul {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.primary-nav a {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 1rem;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--color-blue);
}

.nav-cta {
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: var(--color-blue);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.nav-close {
  display: none;
}

.hero {
  padding: 6.5rem 0 5.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-slate);
  margin-bottom: 1.8rem;
}

.hero-stats {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 2.5rem;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.hero-stats h3 {
  font-size: 2.2rem;
  color: var(--color-blue);
}

.highlight-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.highlight-metric strong {
  font-size: 2rem;
  color: var(--color-blue);
}

.table-style {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.table-style th,
.table-style td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(10, 23, 51, 0.08);
  text-align: left;
}

.table-style th {
  background: rgba(31, 94, 255, 0.08);
  font-weight: 600;
}

.quote-box {
  background: rgba(255, 255, 255, 0.92);
  border-left: 6px solid var(--color-orange);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  background: var(--color-dark);
  color: #fff;
  padding: 4rem 0 3rem;
}

.footer-top {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 3rem;
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 16px;
}

.footer-nav,
.footer-legal {
  display: grid;
  gap: 0.9rem;
}

.footer-nav a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--color-mint);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.6rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 360px;
  background: #fff;
  color: var(--color-text);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-slate);
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
}

.cookie-actions a {
  font-weight: 600;
  color: var(--color-blue);
}

.cookie-actions button {
  flex: 1;
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.4rem;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    background: var(--color-dark);
    flex-direction: column;
    padding: 100px 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    gap: 2.5rem;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 1.6rem;
    width: 100%;
  }

  .primary-nav a {
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle-label {
    display: inline-flex;
  }

  .nav-close {
    display: inline-flex;
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    color: #fff;
    font-size: 2.4rem;
    cursor: pointer;
  }

  .nav-toggle:checked ~ .primary-nav {
    transform: translateX(0);
  }

  .nav-toggle:checked + .nav-toggle-label span {
    background: transparent;
  }

  .nav-toggle:checked + .nav-toggle-label span::before {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-label span::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    padding-top: 5.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 640px) {
  body {
    font-size: 0.97rem;
  }

  .container {
    padding: 0 1.2rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .form-card {
    padding: 2rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .cookie-actions {
    flex-direction: column;
  }
}