/* ─── HERO ─── */
.sw-hero {
  padding: 30px 30px 0;
}

.sw-hero-inner {
  background: var(--bg-card);
  border-radius: var(--radius-section);
  padding: 30px 70px 40px;
  position: relative;
  overflow: hidden;
  min-height: 838px;
}

.sw-glow-tl {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 600px;
  height: 600px;
  background-image: url('assets/glow-green-tl.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.sw-glow-center {
  position: absolute;
  top: 200px;
  left: 400px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 227, 174, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.sw-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 5vw, 56px);
  line-height: 1.28;
  color: var(--white);
  text-transform: uppercase;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.sw-title-accent {
  color: var(--accent);
}

.sw-hero-image {
  width: 100%;
  height: 340px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.sw-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.sw-hero-subtitle {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.5;
  max-width: 600px;
}

.sw-hero-socials {
  display: flex;
  gap: 16px;
}

/* ─── STATS ─── */
.sw-stats-section {
  padding: 30px 30px 0;
}

.sw-stats-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-section);
  padding: 70px;
  position: relative;
  overflow: hidden;
}

.sw-stats-glow-right {
  position: absolute;
  top: -43px;
  right: -187px;
  width: 938px;
  height: 938px;
  background-image: url('assets/glow-ls-adv-right.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.sw-stats-glow-left {
  position: absolute;
  bottom: -284px;
  left: -420px;
  width: 940px;
  height: 940px;
  background-image: url('assets/glow-ls-adv-left.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.sw-stats-wrap .section-title {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sw-stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.sw-stat-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  width: calc((100% - 72px) / 4);
}

.sw-stat-accent {
  background: var(--accent);
}

.sw-stat-top {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sw-stat-num {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 1.1;
  color: var(--dark);
  text-transform: uppercase;
}

.sw-stat-card h3 {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.2;
  color: var(--dark);
  text-transform: uppercase;
}

.sw-stat-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sw-stat-line {
  height: 2px;
  background: var(--dark);
}

.sw-stat-bottom p {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.4;
}

/* ─── FEATURES ─── */
.sw-features-section {
  padding: 30px 30px 0;
}

.sw-features-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-section);
  padding: 70px;
  position: relative;
  overflow: hidden;
}

.sw-features-glow {
  position: absolute;
  left: calc(50% - 500px);
  bottom: -300px;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(145, 254, 2, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sw-features-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.sw-features-desc {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.5;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sw-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.sw-feature-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-card);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 260px;
}

.sw-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sw-feature-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0);
}

.sw-feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}

.sw-feature-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
}

.sw-features-cta {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.sw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
  padding: 15px 40px;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-accent:hover {
  opacity: 0.85;
}

.btn-arrow {
  width: 24px;
  height: 24px;
}

/* ─── ANALYTICS ─── */
.sw-analytics-section {
  padding: 100px 100px 0;
}

.sw-analytics-header {
  text-align: center;
  margin-bottom: 70px;
}

.sw-analytics-desc {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.5;
  margin-top: 20px;
}

.sw-analytics-photo {
  margin-bottom: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.sw-analytics-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
}

.sw-analytics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sw-analytics-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 146px;
}

.sw-analytics-num {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sw-analytics-num span {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--accent);
}

.sw-analytics-text h4 {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sw-analytics-text p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── CONTROL ─── */
.sw-control-section {
  padding: 30px 30px 0;
}

.sw-control-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-section);
  padding: 70px;
  position: relative;
  overflow: hidden;
}

.sw-control-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background-image: url('assets/glow-green-tl.svg');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.5;
}

.sw-control-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.sw-control-desc {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.5;
  margin-top: 20px;
}

.sw-control-photo {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.sw-control-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
}

.sw-control-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.sw-control-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-card);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 220px;
}

.sw-control-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sw-control-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0);
}

.sw-control-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}

.sw-control-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── ADMIN ─── */
.sw-admin-section {
  padding: 100px 100px 0;
}

.sw-admin-title {
  margin-bottom: 20px;
}

.sw-admin-desc {
  text-align: center;
  font-size: 17px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 70px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sw-admin-photo {
  margin-bottom: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.sw-admin-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
}

.sw-admin-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sw-admin-row {
  display: flex;
  gap: 20px;
}

.sw-admin-row .sw-admin-card {
  flex: 1;
}

.sw-admin-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 146px;
}

.sw-admin-num {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sw-admin-num span {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--accent);
}

.sw-admin-text h4 {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sw-admin-text p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .sw-stat-card {
    width: calc((100% - 48px) / 3);
    min-height: 240px;
  }

  .sw-stat-num {
    font-size: 36px;
  }

  .sw-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sw-analytics-text h4,
  .sw-admin-text h4 {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .sw-hero {
    padding: 15px 15px 0;
  }

  .sw-hero-inner {
    padding: 20px 20px 30px;
    min-height: auto;
  }

  .sw-title {
    margin-top: 30px;
  }

  .sw-hero-image {
    height: 200px;
  }

  .sw-hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .sw-stats-section {
    padding: 15px 15px 0;
  }

  .sw-stats-wrap {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sw-stat-card {
    width: 100%;
    min-height: auto;
    text-align: center;
    align-items: center;
  }

  .sw-stat-top {
    align-items: center;
  }

  .sw-stat-bottom {
    align-items: center;
  }

  .sw-stat-bottom p {
    text-align: center;
  }

  .sw-features-section {
    padding: 15px 15px 0;
  }

  .sw-features-wrap {
    padding: 30px 20px;
  }

  .sw-features-grid {
    grid-template-columns: 1fr;
  }

  .sw-analytics-section {
    padding: 60px 15px 0;
  }

  .sw-analytics-photo img {
    height: 200px;
  }

  .sw-analytics-grid {
    grid-template-columns: 1fr;
  }

  .sw-control-section {
    padding: 15px 15px 0;
  }

  .sw-control-wrap {
    padding: 30px 20px;
  }

  .sw-control-photo img {
    height: 180px;
  }

  .sw-control-grid {
    grid-template-columns: 1fr;
  }

  .sw-admin-section {
    padding: 60px 15px 0;
  }

  .sw-admin-photo img {
    height: 180px;
  }

  .sw-admin-row {
    flex-direction: column;
  }

  .sw-admin-card {
    min-height: auto;
  }

  .sw-admin-text h4 {
    font-size: 18px;
  }
}
