:root {
  --sw-blue: #0d1b3d;
  --sw-sky: #2993e2;
  --sw-silver: #e9eef4;
  --sw-white: #ffffff;
  --sw-dark: #1c1f26;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--sw-dark);
  background: var(--sw-white);
  line-height: 1.6;
}

/* Container */
.sw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Header */
.sw-header {
  background: var(--sw-blue);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.sw-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sw-logo {
  font-size: 1.5rem;
  font-weight: 700;
}
.sw-logo span {
  color: var(--sw-sky);
}
.sw-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}
.sw-nav a:hover {
  color: var(--sw-sky);
}

/* HERO */
.sw-hero {
  background: linear-gradient(135deg, var(--sw-blue) 0%, #123165 100%);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}
.sw-hero-content h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}
.sw-hero-content p {
  max-width: 600px;
  margin: 0 auto 25px;
  opacity: 0.95;
}
.sw-btn-main {
  background: var(--sw-sky);
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.sw-btn-main:hover {
  background: #52b0f0;
}

/* OFFERS */
.sw-feature-fullhero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #e0f7ff, #c0e7ff);
  border-radius: 20px;
  padding: 100px 50px;
  overflow: hidden;
}

.sw-feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.sw-feature-text {
  max-width: 600px;
}

.sw-feature-text h3 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #0d1b3d;
}

.sw-feature-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1c1f26;
}

.sw-btn-feature {
  display: inline-block;
  padding: 14px 36px;
  background: #2993e2;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.sw-btn-feature:hover {
  background: #0d5fa8;
}

.sw-feature-logo img {
  max-width: 350px;
}

/* Декоративные круги */
.sw-deco-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.sw-circle1 {
  width: 250px;
  height: 250px;
  background: #2993e2;
  top: -50px;
  right: -50px;
}

.sw-circle2 {
  width: 150px;
  height: 150px;
  background: #0d5fa8;
  bottom: -30px;
  left: -30px;
}

/* GUIDE */
.sw-guide {
  background: #f0f8ff;
  padding: 80px 20px;
}

.sw-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #0d1b3d;
  font-weight: 700;
}

.sw-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.sw-guide-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1c1f26;
}

.sw-guide-list {
  list-style: none;
  padding: 0;
}

.sw-guide-list li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #dbefff;
  padding: 12px 16px;
  border-radius: 10px;
}

.sw-guide-list li span {
  font-size: 1.2rem;
}

/* RESPONSIBLE */
.sw-responsible-list {
  margin: 20px 0;
  padding-left: 20px;
  list-style: decimal;
}

.sw-responsible-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.sw-responsible-list li strong {
  color: #0d1b3d;
}
.sw-responsible {
  background: linear-gradient(135deg, #e0f7ff, #c0e7ff);
  padding: 80px 20px;
  border-radius: 20px;
  margin-top: 60px;
}

.sw-responsible-block {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.sw-responsible-icon span {
  font-size: 4rem;
  display: block;
  color: #2993e2;
}

.sw-responsible-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0d1b3d;
}

.sw-responsible-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1c1f26;
}
.gslyu-logos {
    flex: 1 1 300px;
    display: flex
;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}
.gslyu-logos img {
    height: 40px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
}


.sw-privacy {
  background: #f7f9fc;
  padding: 80px 20px;
  border-radius: 20px;
}

.sw-privacy-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1c1f26;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.sw-privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.sw-privacy-block {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.sw-privacy-block h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #0d1b3d;
}

.sw-step {
  display: inline-block;
  font-weight: 700;
  color: #ffffff;
  background: #2993e2;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
}

.sw-privacy-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #1c1f26;
}

.sw-final {
  background: #e6f0ff;
  border: 1px solid #c0d9ff;
}
@media (max-width: 900px) {
  .sw-feature-content {
    flex-direction: column-reverse;
  }
  .sw-responsible-block {
    flex-direction: column;
    text-align: center;
  }
  .sw-responsible-icon span {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  .sw-responsible-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .sw-responsible {
    padding: 60px 15px;
  }
}


.sw-footer {
  background: #0d1b3d;
  color: #fff;
  padding: 50px 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  text-align: center;
}

.gslyu-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}

.gslyu-logos a img {
  max-height: 50px;
  transition: transform 0.3s;
}

.gslyu-logos a img:hover {
  transform: scale(1.1);
}

.sw-footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.sw-footer-links a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 0.95rem;
}

.sw-footer-links a:hover {
  color: #2993e2;
}

.sw-footer-text {
  font-size: 0.9rem;
  opacity: 0.8;
}
/* === RESPONSIVE === */
@media (max-width: 900px) {
  .sw-guide-grid {
    grid-template-columns: 1fr;
  }
  .sw-hero-content h2 {
    font-size: 2rem;
  }
  .sw-header-inner {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .sw-container {
    padding: 40px 15px;
  }
  .sw-hero {
    padding: 80px 15px;
  }
  .sw-hero-content h2 {
    font-size: 1.8rem;
  }
  .sw-offer-card {
    padding: 20px;
  }
}
