:root {
  --blue: #0b3c5d;
  --blue-light: #1d70b8;
  --blue-soft: #e6f0f9;
  --gray: #f2f4f7;
  --gray-dark: #6b7280;
  --dark: #111827;
  --font-color: #1f2937;
}

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

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #1f2937;
  line-height: 1.6;
  background: #fff;
}

.backgroud-linear-gradient {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
}

.center {
  text-align: center;
}

.p-t-30 {
  padding-top: 30px;
}

.radius-3 {
  border-radius: 3%;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  font-family: "Inter", Arial, sans-serif;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

.hero {
  background: linear-gradient(120deg, var(--blue), var(--blue-light));
  color: white;
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.9rem;
  margin-bottom: 22px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 35px;
  max-width: 520px;
}

.btn {
  display: inline-block;
  background: white;
  color: var(--blue);
  padding: 15px 36px;
  border-radius: 40px;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.offers-container .btn {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 15px 36px;
  border-radius: 40px;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

section {
  padding: 90px 0;
}

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

.section-title h2 {
  font-size: 2.3rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--gray-dark);
  max-width: 600px;
  margin: auto;
}

.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.35s;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.card img {
  width: calc(100% - 24px);
  object-fit: cover;
  border-radius: 14px;
  margin: 12px auto 0;
  display: block;
}

.card-content {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.card h3 {
  color: var(--blue);
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
}

.card p {
  margin-bottom: 20px;
  color: #374151;
  font-size: 0.95rem;
}

.card a {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 600;
  color: var(--blue-light);
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 0.95rem;
  position: relative;
}

.card a::after {
  margin-left: 6px;
  transition: transform 0.2s;
  display: inline-block;
}

.card a:hover::after {
  transform: translateX(4px);
}

.offers-container a:hover {
  background: var(--blue-light);
  text-decoration: none;
}

.card {
  background: #fff;
  border-radius: 16px;
  transition: 0.35s;
  border: 1px solid #eef0f3;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.card h3 {
  color: var(--blue);
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.card-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  width: 100%;
}

.card-buttons .btn {
  flex: 1 1 auto;
  text-align: center;
  min-width: 120px;
}

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

.card-buttons .btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

.card-buttons .btn-secondary {
  background: #f3f4f6;
  color: var(--blue);
}

.card-buttons .btn-secondary:hover {
  background: var(--blue-soft);
  transform: translateY(-2px);
}

.why {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
}

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

.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card h3 {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 12px;
  font-weight: 700;
}

.why-card p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.6;
}

.cta {
  background: var(--blue-soft);
  color: var(--font-color);
  text-align: center;
  padding: 90px 20px;
}

.cta h2 {
  font-size: 2.2rem;
  color: var(--blue);
  margin-bottom: 18px;
}

.cta h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 40px;
}

.cta p {
  max-width: 880px;
  margin: 0 auto 26px;
  font-size: 1rem;
  color: #374151;
  line-height: 1.7;
}

.cta ul {
  list-style: none;
  max-width: 820px;
  margin: 20px auto 35px;
  padding: 0;
  text-align: left;
}

.cta ul li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.cta ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--blue-light);
  font-weight: 700;
}

.cta .btn {
  margin-top: 25px;
}

.contact-page {
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.info-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.info-card h3,
.contact-form h3 {
  color: var(--blue);
  font-size: 1.5rem;
}

.info-card h3 {
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.info-item .why-icon {
  margin: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  font-size: 20px;
}

.info-item .label {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.info-item a {
  color: var(--font-color);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.info-item a:hover {
  color: var(--blue-light);
}

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.3s;
  background: #f9fafb;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  background: #fff;
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.contact-form .btn {
  border: none;
  cursor: pointer;
  align-self: flex-start;
  background: var(--blue);
  color: white;
}

.map-section {
  padding: 0;
  line-height: 0;
}

.map-container iframe {
  filter: grayscale(10%) contrast(1.1);
}


.hero-small {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  padding: 80px 0;
  color: white;
  text-align: center;
}

.hero-small h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.trust-stats {
  padding: 50px 0;
  background: var(--gray);
  border-bottom: 1px solid #e5e7eb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item p {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gray-dark);
  letter-spacing: 1px;
}

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

.process-step {
  text-align: center;
}

.process-step .why-icon {
  margin: 0 auto 25px;
  background: var(--blue);
  color: white;
  font-weight: 800;
}

.process-step h3 {
  color: var(--blue);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.faq {
  background: var(--blue-soft);
}

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

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item summary {
  font-weight: 700;
  color: var(--blue);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "↓";
  color: var(--blue-light);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "↑";
}

.faq-content {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--gray);
  color: var(--font-color);
}

@media (max-width: 900px) {

  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

footer {
  background: var(--dark);
  color: #d1d5db;
  padding: 70px 0;
}

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

footer h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
}


.partners {
  background: var(--gray);
  padding: 80px 0;
  overflow: hidden;
}

.partners-carousel {
  margin-top: 40px;
  position: relative;
  width: 100%;
}

.partners-track {
  display: flex;
  width: max-content;
  animation: partnersScroll 40s linear infinite;
}

.partners-set {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 80px;
  padding: 0 40px;
}

.partners-set img {
  height: 50px;
  width: auto;
  transition: all 0.4s ease;
  object-fit: contain;
}

.partners-set img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

@keyframes partnersScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}

@media (max-width: 900px) {

  .hero-grid,
  .offers,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .cta {
    padding: 70px 20px;
  }

  .cta h2 {
    font-size: 1.9rem;
  }

  .cta ul {
    text-align: left;
  }

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

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


.process {

}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 60px;
}

.process-step {
  text-align: center;
  padding: 0 10px;
}

.process-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.process-step:hover .process-icon {
  transform: translateY(-6px);
  background: var(--blue);
  color: #fff;
}

.process-step h3 {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 14px;
  font-weight: 700;
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--font-color);
  max-width: 320px;
  margin: 0 auto;
}


@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
}

.about {
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  left: -200px;
  top: 100px;
  width: 420px;
  height: 420px;

  opacity: 0.6;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(calc(100% - 50%), 1fr) minmax(calc(100% - 50%), 1fr);
  gap: 80px;
  align-items: flex-start;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--font-color);
}

.about-text p {
  margin-bottom: 26px;
}

.about-text strong {
  color: var(--blue);
  font-weight: 700;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.about-checklist li {
  position: relative;
  padding: 18px 22px 18px 56px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  font-weight: 600;
  transition: 0.3s ease;
}

.about-checklist li::before {
  content: "✓";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.about-checklist li:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.footer-nav ul,
.footer-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.footer-nav li,
.footer-nav .menu-item {
  margin: 0 !important;
  padding: 0 !important;
}

footer {
  background: var(--dark);
  color: #d1d5db;
  padding: 70px 0 40px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: start;
}

footer h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 1.1rem;
  font-weight: 700;
}

footer .footer-grid p {
  color: #9ca3af;
  line-height: 1.7;
  max-width: 320px;
}

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

.footer-menu-list li {
  margin-bottom: 10px;
}

.footer-menu-list a {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-menu-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

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

.footer-contact li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #9ca3af;
}

.footer-contact strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-contact a {
  color: #9ca3af;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-copy {
  width: 100%;
  border-top: 1px solid #1f2937;
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
  font-size: 0.85rem;
  color: white;
}

.footer-copy p {
  width: 100%;
  color: white;
}

.footer-copy a {
  color: var(--blue-light);
  text-decoration: none;
  font-weight: 600;
}

.footer-copy a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  footer p {
    margin: 0 auto;
  }

  .footer-menu-list a:hover {
    transform: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  height: 80px;
}

.site-header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

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

.site-header .logo {
  display: flex;
  align-items: center;
}

.site-logo {
  max-height: 150px;
  width: auto;
  display: block;
}

.main-nav .menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.main-nav .menu-item {
  position: relative;
}

.main-nav .menu-item a {
  display: flex;
  align-items: center;

  padding: 10px 0;
  text-decoration: none;

  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);

  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.main-nav .menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--blue-light);
  transition: width 0.3s ease;
}

.main-nav .menu-item a:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

.main-nav .menu-item a:hover::after {
  width: 100%;
}

.main-nav .current-menu-item>a,
.main-nav .current_page_item>a {
  color: var(--blue);
  font-weight: 700;
}

.main-nav .current-menu-item>a::after,
.main-nav .current_page_item>a::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav .menu {
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }

  .main-nav .menu-item a {
    padding: 14px 0;
    font-size: 1.1rem;
  }
}

.main-nav .menu-item a,
.main-nav .menu-item a::after {
  transition: all 0.3s ease;
}

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

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}


.toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #333;
  color: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  z-index: 9999;
  opacity: 0;
  animation: toast-in 0.4s forwards, toast-out 0.4s 10s forwards;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.toast.success {
  background: #28a745;
}

.toast.error {
  background: #dc3545;
}

@keyframes toast-in {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
}

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

  .hero-grid img {
    display: none;
  }
}

.policy {
  background: linear-gradient(120deg, var(--blue), var(--blue-light));
  color: white;

}

.policy p {
  padding-top: 20px;
  padding-bottom: 20px;
}

.policy li {
  margin-left: 20px;
}