:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-soft: #dbeafe;
  --color-accent: #f97316;
  --color-accent-dark: #ea580c;
  --color-accent-soft: #ffedd5;
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-text: #0f172a;
  --color-text-secondary: #475569;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --max-width: 1200px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(92%, var(--max-width));
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1rem;
  z-index: 1000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--color-text);
}

.logo:hover {
  text-decoration: none;
}

.logo-mark-img {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  padding: 0.5rem;
  font-size: 1.5rem;
  line-height: 1;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  z-index: 99;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--color-bg);
  color: var(--color-primary-dark);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.btn-accent {
  background-color: var(--color-accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
}

.btn-outline {
  background: transparent;
  color: currentColor;
  border: 2px solid currentColor;
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.05);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.section-subtitle {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.hero {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: white;
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero .lead {
  opacity: 0.95;
  margin: 0 0 1.75rem;
  font-size: 1.2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

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

  .hero-image {
    order: -1;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.card-body h3 a {
  color: inherit;
}

.card-body p {
  margin: 0 0 1.25rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  flex: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: var(--color-primary-soft);
}

.icon-blue {
  background: var(--color-primary-soft);
}

.icon-orange {
  background: var(--color-accent-soft);
}

.service-card {
  text-align: center;
  padding: 2rem 1.25rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-blue {
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
}

.badge-orange {
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
}

.trust-bar {
  background: var(--color-bg);
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.trust-list .icon {
  color: var(--color-primary);
  margin-right: 0.35rem;
}

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

.step {
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.cta-section {
  background: var(--color-primary);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.cta-section h2 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}

.cta-section p {
  margin: 0 auto 1.5rem;
  opacity: 0.95;
  max-width: 600px;
}

.page-header {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.page-header p {
  margin: 0 auto;
  opacity: 0.95;
  max-width: 700px;
  font-size: 1.1rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 1.5rem;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-image {
  min-height: 170px;
  background: var(--color-bg);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 170px;
}

.service-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  margin: 0.5rem 0 0.75rem;
  font-size: 1.25rem;
}

.service-content h3 a {
  color: inherit;
}

.service-content p {
  margin: 0 0 1rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  flex: 1;
}

@media (max-width: 768px) {
  .service-item {
    grid-template-columns: 1fr;
  }

  .service-image {
    order: -1;
  }

  .service-image img {
    aspect-ratio: 16 / 9;
    max-height: 200px;
  }
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 1.6rem;
  margin: 2rem 0 0.75rem;
  color: var(--color-primary-dark);
}

.article-content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.article-content p,
.article-content li {
  color: var(--color-text-secondary);
}

.article-content ol,
.article-content ul {
  padding-left: 1.5rem;
  margin: 0 0 1.25rem;
}

.article-content li {
  margin-bottom: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.contact-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.contact-card p {
  margin: 0;
  color: var(--color-muted);
}

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

.form-group label {
  font-weight: 500;
  font-size: 0.95rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0.75rem 0 0;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.search-form input,
.search-form select {
  width: 100%;
}

@media (max-width: 768px) {
  .search-form {
    grid-template-columns: 1fr;
  }
}

input, textarea, select {
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  width: 100%;
  color: var(--color-text);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
  font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-col > p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: white;
  margin: 0 0 1rem;
  font-size: 1rem;
}

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

.footer-col li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-col a {
  color: #cbd5e1;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 50;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}

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

.policy-page {
  padding: 3rem 0;
}

.policy-page article {
  max-width: 800px;
  margin: 0 auto;
}

.policy-page h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.policy-page h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--color-primary-dark);
}

.policy-page p,
.policy-page li {
  color: var(--color-text-secondary);
}

.policy-page ul {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}

.policy-page li {
  margin-bottom: 0.5rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 0.75rem;
}

.faq-icon {
  transition: transform 0.2s ease;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer p {
  margin: 0;
  color: var(--color-muted);
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media print {
  .cookie-banner,
  .mobile-menu,
  .mobile-menu-btn {
    display: none !important;
  }
}