@font-face{font-family:'Inter';font-style:normal;font-weight:400 900;font-display:swap;src:url('fonts/Inter-LatinExt.woff2') format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:'Inter';font-style:normal;font-weight:400 900;font-display:swap;src:url('fonts/Inter-Latin.woff2') format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  line-height: 1.7;
  background: #fff;
  min-width: 0;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img,
svg,
iframe {
  max-width: 100%;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.scrolling-strip {
  width: 100%;
  overflow: hidden;
  background: #2563eb;
  padding: 10px 0;
  position: relative;
}

.strip-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}

.strip-track span {
  display: inline-block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 12px;
}

.strip-track span:nth-child(even) {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-tag {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-header h2 span {
  color: #2563eb;
}

.section-header p {
  color: #64748b;
  font-size: 1.1rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  color: #2563eb;
}

.logo span {
  color: #2563eb;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #2563eb;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #0f172a;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #2563eb 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 span {
  background: linear-gradient(135deg, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 36px;
}

.hero .btn {
  margin: 0 8px 12px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  font-family: inherit;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* About */
.about {
  padding: 100px 0;
  background: #f8fafc;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.about-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: all 0.3s;
  border: 1px solid #f1f5f9;
  min-width: 0;
}

.about-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.about-icon {
  width: 52px;
  height: 52px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-icon svg {
  width: 26px;
  height: 26px;
  color: #2563eb;
}

.about-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.about-card p {
  color: #64748b;
  font-size: 0.95rem;
}

/* Services */
.services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s;
  min-width: 0;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: #dbeafe;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.service-card > p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-features li {
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
}

/* Why Us */
.why-us {
  padding: 100px 0;
  background: #f8fafc;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.why-item {
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
  min-width: 0;
}

.why-item:hover {
  border-color: #dbeafe;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.why-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #dbeafe;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.why-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.why-item p {
  color: #64748b;
  font-size: 0.92rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: #dbeafe;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 64px;
  height: 64px;
  background: #2563eb;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.step-content p {
  color: #64748b;
  font-size: 0.9rem;
}

/* Contact */
.contact {
  padding: 100px 0;
  background: #f8fafc;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 40px auto 0;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 20px 18px;
  transition: all 0.3s;
}

.info-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  border-color: #dbeafe;
}

.info-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item strong {
  display: block;
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 3px;
}

.info-item p {
  color: #64748b;
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}

.phone-link {
  color: inherit;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 36px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1e293b;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  resize: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: #dc2626;
}

.contact-form input.error:focus,
.contact-form select.error:focus,
.contact-form textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.contact-form .form-error {
  display: block;
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 4px;
  min-height: 18px;
}

.contact-form .form-submit {
  width: 100%;
  margin-top: 4px;
}

.contact-form .form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  display: none;
}

.contact-form .form-status.success {
  display: block;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.contact-form .form-status.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.recaptcha-wrap {
  margin-bottom: 20px;
}

.recaptcha-wrap .form-error {
  display: none;
}

#recaptchaError {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 6px;
}

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

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

/* Footer */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1e293b;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.payment-methods li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.payment-methods li svg,
.payment-methods li img {
  flex-shrink: 0;
  height: 32px;
  width: auto;
}

.footer-brand .logo {
  font-size: 1.3rem;
  color: #2563eb;
}

.footer-brand .logo span {
  color: #2563eb;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-heading {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  white-space: nowrap;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  font-size: 0.9rem;
  margin-bottom: 10px;
  cursor: default;
  transition: color 0.3s;
}

.footer-links .payment-methods li {
  margin-bottom: 0;
}

.footer-links li:hover {
  color: #cbd5e1;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 24px 28px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

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

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

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

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

  .process-steps::before {
    display: none;
  }

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

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

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

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

  .btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .container {
    padding: 0 18px;
  }
}

/* Legal Page */
.error-section {
  padding: 100px 0;
  text-align: center;
}

.error-section h1 {
  font-size: 6rem;
  color: #2563eb;
  margin-bottom: 8px;
  line-height: 1.1;
}

.error-section p {
  font-size: 1.15rem;
  color: #64748b;
  margin-bottom: 32px;
}

.error-section .btn-primary {
  background: #2563eb;
  color: #fff;
}

.error-section .btn-outline {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.error-section .btn-outline:hover {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.error-section .btn + .btn {
  margin-left: 12px;
}

.legal-page { max-width: 880px; margin: 100px auto 60px; padding: 0 24px; }
.legal-page h1 { font-size: 2rem; color: #0f172a; margin-bottom: 8px; }
.legal-page .last-update { color: #64748b; font-size: 0.9rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.3rem; color: #0f172a; margin: 44px 0 16px; padding-bottom: 8px; border-bottom: 2px solid #2563eb; }
.legal-page h3 { font-size: 1.05rem; color: #1e293b; margin: 28px 0 10px; }
.legal-page p { color: #475569; font-size: 0.95rem; line-height: 1.9; margin-bottom: 12px; }
.legal-page ul, .legal-page ol { padding-left: 24px; margin: 10px 0 16px; }
.legal-page li { color: #475569; font-size: 0.95rem; line-height: 1.8; margin-bottom: 6px; }
.legal-page .section {
  scroll-margin-top: 80px; padding-bottom: 16px; margin-bottom: 16px; }
.legal-page strong { color: #0f172a; }
.legal-page .back-link { display: inline-block; margin-bottom: 24px; color: #2563eb; text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.legal-page .back-link:hover { text-decoration: underline; }
.legal-page .info-box { background: #f8fafc; border-left: 4px solid #2563eb; padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 16px 0; }
.legal-page .info-box p { margin: 0; font-size: 0.9rem; }
.legal-update-note { margin-top: 20px; font-size: 0.85rem; color: #94a3b8; }
.legal-page .toc { background: #f8fafc; border-radius: 12px; padding: 24px 28px; margin: 24px 0 36px; }
.legal-page .toc h3 { margin-top: 0; }
.legal-page .toc ul { list-style: none; padding: 0; margin: 0; }
.legal-page .toc li { margin-bottom: 8px; }
.legal-page .toc a { color: #2563eb; text-decoration: none; font-weight: 500; }
.legal-page .toc a:hover { text-decoration: underline; }
.legal-page .table-wrap { overflow-x: auto; margin: 16px 0; }
.legal-page table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.legal-page th, .legal-page td { text-align: left; padding: 10px 14px; border: 1px solid #e2e8f0; }
.legal-page th { background: #f1f5f9; color: #0f172a; font-weight: 600; }
.legal-page td { color: #475569; }
.legal-page tr:nth-child(even) td { background: #f8fafc; }
.footer-links a { color: #94a3b8; text-decoration: none; }
.footer-links a:hover { color: #cbd5e1; text-decoration: underline; }
@media (max-width: 768px) { .legal-page { margin: 80px auto 40px; } }

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}
