* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

:root {
  
  --brand-green: #22c55e;
  --brand-blue: #3b82f6;

  
  --ink: #0b1220;
  --text: #111827;
  --muted: #4b5563;
  --muted-2: #6b7280;
  --border: rgba(17, 24, 39, 0.10);
  --surface: #ffffff;
  --surface-2: #f6f7fb;

  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.18);

  
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;

  --container: 1120px;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
}

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

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.15s ease;
  z-index: 2000;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(59,130,246,0.55);
  outline-offset: 2px;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--surface-2);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 1.1rem + 2vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.10);
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.82rem;
}

.btn {
  padding: 0.85rem 1.15rem;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
  color: #fff;
  box-shadow: 0 10px 25px rgba(34,197,94,0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(59,130,246,0.22);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.18);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.26);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(17, 24, 39, 0.18);
  color: var(--text);
}

.btn-outline:hover {
  border-color: rgba(17, 24, 39, 0.30);
  background: rgba(15, 23, 42, 0.04);
  transform: translateY(-1px);
}

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.80);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(14px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.header.is-scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-sm);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 12px;
}

.logo_square {
  width: 132px;
  height: auto;
}

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

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 650;
  font-size: 0.95rem;
  opacity: 0.88;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.nav a:hover,
.nav a.active {
  opacity: 1;
  color: #0b3aa6;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.50);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 1999;
  transform: translateX(105%);
  transition: transform 0.22s ease;
  box-shadow: -18px 0 60px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
}

.mobile-menu-sidebar.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.mobile-menu-close {
  background: transparent;
  border: 1px solid rgba(17, 24, 39, 0.14);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 12px;
}

.mobile-menu-nav {
  padding: 16px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.mobile-menu-link:hover {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(17, 24, 39, 0.18);
}

.mobile-menu-cta {
  margin-top: 8px;
  width: 100%;
}

body.mobile-menu-open { overflow: hidden; }

.hero {
  position: relative;
  padding: 132px 0 70px; 
  background: radial-gradient(900px 420px at 10% 20%, rgba(34,197,94,0.25), transparent 60%),
              radial-gradient(800px 420px at 90% 20%, rgba(59,130,246,0.25), transparent 60%),
              linear-gradient(180deg, #071023, #0b1220 70%);
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.18;
  pointer-events: none;
}

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

.hero-grid {
  display: flex;
  gap: 42px;
  align-items: center;
  height: 80vh;
}

.hero h1 {
  font-size: clamp(2.2rem, 1.2rem + 3.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 16px;
}

.hero p {
  color: rgba(255,255,255,0.82);
  max-width: 60ch;
  font-size: 1.1rem;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(34,197,94,0.25), rgba(59,130,246,0.25));
  opacity: 0;
  transition: opacity 0.18s ease;
}

.service-card > * { position: relative; z-index: 1; }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(59, 130, 246, 0.25);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(59,130,246,0.18));
  border: 1px solid rgba(59, 130, 246, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.service-icon i { color: #0b3aa6; }

.service-card h3 {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.process-step .chip { margin-bottom: 12px; }

.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }

.process-step p { color: var(--muted); }

.cases-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-blue));
}

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

.case-card h3 {
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 10px 0 10px;
}

.case-card p { color: var(--muted); }

.case-list {
  margin-top: 12px;
  padding-left: 18px;
  color: var(--muted);
}

.case-list li { margin: 6px 0; }

.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.benefit-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 12px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,197,94,0.16), rgba(59,130,246,0.16));
  border: 1px solid rgba(59, 130, 246, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i { color: #0b3aa6; }

.benefit-content h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  line-height: 1.25;
}

.benefit-content p { color: var(--muted); font-size: 0.96rem; }

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

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}

.faq details + details { margin-top: 12px; }

.faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.faq summary::after {
  content: "+";
  font-size: 1.2rem;
  opacity: 0.7;
}

.faq p {
  margin-top: 10px;
  color: var(--muted);
}

.cta-section {
  padding: 88px 0;
  background: radial-gradient(700px 400px at 10% 30%, rgba(34,197,94,0.25), transparent 60%),
              radial-gradient(700px 400px at 90% 30%, rgba(59,130,246,0.25), transparent 60%),
              linear-gradient(180deg, #071023, #0b1220 75%);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.cta-copy h2 {
  font-size: clamp(1.8rem, 1.1rem + 2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cta-copy p {
  margin-top: 10px;
  color: rgba(255,255,255,0.82);
}

.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.contact-cards {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.contact-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-card__title {
  font-weight: 850;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.96);
}

.contact-card__link {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}

.contact-card__link:hover {
  text-decoration: underline;
}

.contact-card__text {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  margin-top: 2px;
}

.contact-form {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 750;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.error-message {
  display: none;
  margin-top: 6px;
  color: #b91c1c;
  font-weight: 650;
  font-size: 0.9rem;
}

.warning-message {
  display: none;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 14px;
  background: #ffedd5;
  border: 1px solid #fdba74;
  color: #9a3412;
  font-weight: 700;
}

.success-message {
  display: none;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 14px;
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
  font-weight: 700;
}

.form-hint {
  margin-top: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}

.footer {
  background: #070c16;
  color: rgba(255,255,255,0.86);
  padding: 56px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 22px;
}

.footer-section h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.footer-section p,
.footer-section a {
  color: rgba(255,255,255,0.76);
  text-decoration: none;
}

.footer-section a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  color: rgba(255,255,255,0.70);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.disclaimer {
  display: inline-flex;
  margin-top: 12px;
}

.terms_acceptance { width: auto !important; }

.services-grid,
.process-grid,
.cases-grid,
.benefits-grid {
  display: grid;
  gap: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-trust {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  font-size: 0.92rem;
  backdrop-filter: blur(10px);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,197,94,0.14), rgba(59,130,246,0.14));
  border: 1px solid rgba(59,130,246,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.service-icon i { color: #0b3aa6; }

.case-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.case-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,197,94,0.14), rgba(59,130,246,0.14));
  border: 1px solid rgba(59,130,246,0.16);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.case-icon i { color: #0b3aa6; }

.case-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 10px;
}

.case-highlight {
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.18);
  color: #0b3aa6;
  font-weight: 800;
}

.cases-cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.process-step__num {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(34,197,94,0.18), rgba(59,130,246,0.18));
  border: 1px solid rgba(59,130,246,0.20);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #0b3aa6;
  margin-bottom: 12px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}

.checkbox input { margin-top: 3px; }

.contact-surface {
  margin-top: 14px;
}

.terms_acceptance {
  width: 5% !important;
}

@media (prefers-reduced-motion: reduce){
*, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1024px){
.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

.footer-content { grid-template-columns: 1fr; }
}

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

.mobile-menu-toggle { display: inline-flex; }

.header-actions .btn { display: none; }

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

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

@media (max-width: 480px){
.logo_square { width: 120px; }

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

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

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

.mobile-menu-sidebar { width: 100vw; }
}
