/* ===== THEME: MODERN CASINO BLACK–GOLD ===== */
:root {
  --primary-color: #0d6efd;     /* золотой */
  --accent-color: #C5A300;      /* глубокий золотой */
  --bg-color: #0D0D0D;          /* почти чёрный фон */
  --card-bg: #1A1A1A;           /* карточки */
  --text-color: #F5F5F5;        /* светлый текст */
  --text-secondary: #AAAAAA;    /* вторичный текст */
  --font-family: 'Poppins', sans-serif;
}

/* ===== BASE ===== */
body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.sw-header {
  background-color: #0b1f17;
  overflow: hidden;
  position: relative;
}

.sw-header-top {
  background: linear-gradient(90deg, #c00000 0%, rgba(192, 0, 0, 0.2) 100%);
}

/* === LOGO GLOW === */
.sw-logo-main {
  width: 90px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.sw-logo-glow {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.25) 0%, transparent 70%);
  filter: blur(25px);
  z-index: 1;
}

/* === LINKS === */
.sw-underline-hover {
  position: relative;
  text-decoration: none;
}

.sw-underline-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #c00000;
  transition: width 0.3s;
}

.sw-underline-hover:hover::after {
  width: 100%;
}

/* === CTA BUTTON === */
.sw-btn-cta {
  background: linear-gradient(135deg, #c00000, #ff3b3b);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
  transition: 0.3s;
}

.sw-btn-cta:hover {
  filter: brightness(1.15);
  transform: scale(1.03);
}

/* === DECOR === */
.sw-header-decor {
  pointer-events: none;
}

.sw-decor-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.sw-decor-circle-red {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.15), transparent 80%);
  top: -80px;
  left: 10%;
}

.sw-decor-circle-white {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 80%);
  bottom: -100px;
  right: 15%;
  filter: blur(80px);
}

.sw-decor-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 255, 128, 0.05), transparent 70%);
}
/* ===== HERO ===== */
.sw-hero {
  background-color: #072b1e;
  overflow: hidden;
  position: relative;
}

.sw-hero-bg {
  background: radial-gradient(circle at center, #093e29 0%, #041912 100%);
  z-index: 0;
}

.sw-hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1;
}

/* Текст */
.sw-hero-content {
  position: relative;
  z-index: 2;
}

.sw-hero-title {
  color: #fff;
  line-height: 1.2;
}

.sw-accent {
  color: #ff2e2e;
}

/* Описание */
.sw-hero-desc {
  color: #e2e2e2;
  max-width: 600px;
}

/* Карточки фичей */
.sw-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
  transition: all 0.3s ease;
  color: #fff;
  width: 140px;
}

.sw-feature-card i {
  color: #ff3c3c;
  display: block;
  margin-bottom: 6px;
}

.sw-feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

/* Кнопки */
.sw-btn-main {
  background: linear-gradient(135deg, #b80000, #ff3c3c);
  color: #fff !important;
  border: none;
  transition: 0.3s ease;
}

.sw-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px #ff3c3c66;
}

.sw-btn-outline {
  border: 2px solid #ff3c3c;
  color: #ff3c3c !important;
  background: transparent;
  transition: 0.3s ease;
}

.sw-btn-outline:hover {
  background: #ff3c3c;
  color: #fff !important;
}

/* Правая часть с орбами */
.sw-hero-visual {
  position: relative;
  z-index: 2;
}

.sw-orb-red,
.sw-orb-white {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.sw-orb-red {
  width: 160px;
  height: 160px;
  background: #ff3c3c33;
  top: 10%;
  left: 20%;
  animation: pulseRed 6s ease-in-out infinite;
}

.sw-orb-white {
  width: 220px;
  height: 220px;
  background: #ffffff11;
  bottom: 0;
  right: 10%;
  animation: pulseWhite 7s ease-in-out infinite;
}

.sw-hero-icon {
  font-size: 5rem;
  position: relative;
  z-index: 3;
}

/* Эффект света */
.sw-light-left,
.sw-light-right {
  position: absolute;
  width: 120px;
  height: 280px;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 1;
}

.sw-light-left {
  background: #ff3c3c44;
  top: 10%;
  left: -40px;
}

.sw-light-right {
  background: #ffffff33;
  bottom: -40px;
  right: -60px;
}

/* Анимации */
@keyframes pulseRed {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes pulseWhite {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.age-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.age-popup-content {
  background: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 20px #000;
}
.age-popup-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.age-popup-buttons button {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.btn-yes {
  background: #0d6efd;
  color: #fff;
}
.btn-yes:hover {
  background: #084298;
}
.btn-no {
  background: #dc3545;
  color: #fff;
}
.btn-no:hover {
  background: #a71d2a;
}
.age-popup.hide {
  opacity: 0;
  visibility: hidden;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 9998;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
  font-size: 0.95rem;
  opacity: 1;
  transition: 0.4s;
}
.cookie-banner p {
  margin: 0;
  max-width: 80%;
}
.btn-cookie {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.btn-cookie:hover {
  background: #084298;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}

/* === Иллюстрация === */
.sw-hero-img {
  position: relative;
}

.sw-hero-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,215,0,0.3), transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: orbGlow 6s ease-in-out infinite;
}

@keyframes orbGlow {
  0%,100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}

.sw-hero-icon {
  z-index: 2;
  text-shadow: 0 0 25px rgba(255,215,0,0.6);
}

/* === Подсветки === */
.sw-hero-glow-left,
.sw-hero-glow-right {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.35;
  background: radial-gradient(circle, rgba(255,215,0,0.25), transparent 70%);
  z-index: 0;
}

.sw-hero-glow-left {
  top: -100px;
  left: -150px;
  animation: floatLeft 10s ease-in-out infinite;
}

.sw-hero-glow-right {
  bottom: -100px;
  right: -150px;
  animation: floatRight 10s ease-in-out infinite;
}

@keyframes floatLeft {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(15px,10px); }
}

@keyframes floatRight {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-15px,-10px); }
}
/* ===== OFFER CARD ===== */
.sw-offers {
  background: #041912;
  position: relative;
}

.sw-section-title {
  letter-spacing: 1px;
  color: #fff;
}

/* Основной блок */
.sw-offer-block {
  position: relative;
  background: #072b1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.sw-offer-block:hover {
  transform: scale(1.01);
  box-shadow: 0 0 50px rgba(255, 0, 0, 0.1);
}

/* Фоновые эффекты */
.sw-offer-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #093e29 0%, #041912 60%);
  z-index: 0;
}

.sw-offer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  z-index: 1;
}

/* Контент */
.sw-offer-inner {
  position: relative;
  z-index: 2;
}

.sw-offer-logo img {
  max-width: 200px;
  filter: drop-shadow(0 0 10px #ff3c3c66);
}

.sw-offer-title {
  color: #ff3c3c;
}

/* Списки */
.sw-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sw-offer-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  color: #d9d9d9;
}

.sw-offer-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff3c3c;
  font-weight: bold;
}

/* Дисклеймер */
.sw-offer-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ff3c3c;
  font-size: 0.95rem;
}

.sw-offer-disclaimer a {
  color: #ff9999;
}

.sw-footer-note {
  color: #aaaaaa;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}
/* ===== RESPONSIBLE GAMING ===== */
.sw-responsible-luxury {
  background: radial-gradient(circle at top, #140a0a, #072b1e);
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.sw-glow-bg {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 120%;
  height: 140%;
  background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
  transform: translateX(-50%);
  z-index: 0;
  filter: blur(80px);
}

/* ==== TITLES ==== */
.sw-title-lux {
  font-size: 2.8rem;
  background: linear-gradient(90deg, #ff3c3c, #fff8dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.sw-subtitle-lux {
  max-width: 720px;
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ==== GRID STRUCTURE ==== */
.sw-responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  z-index: 1;
  position: relative;
}

/* ==== PANELS ==== */
.sw-panel {
  background: linear-gradient(160deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  min-height: 250px;
}

.sw-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212,175,55,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.sw-panel:hover::before {
  opacity: 1;
}

.sw-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
}

.sw-panel-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  text-align: center;
  transition: transform 0.4s ease;
}

.sw-panel:hover .sw-panel-content {
  transform: translateY(-6px);
}

/* ==== ICONS ==== */
.sw-icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(212,175,55,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ff3c3c;
  box-shadow: inset 0 0 10px rgba(212,175,55,0.3);
  transition: all 0.4s ease;
}

.sw-panel:hover .sw-icon-circle {
  background: rgba(212,175,55,0.25);
  transform: scale(1.1);
}

/* ==== TEXT ==== */
.sw-panel h5 {
  color: #ff3c3c;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.sw-panel p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==== INFO BOX ==== */
.sw-info-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  max-width: 780px;
  color: rgba(255,255,255,0.75);
  transition: background 0.4s ease;
}

.sw-info-box:hover {
  background: rgba(255,255,255,0.08);
}

.sw-info-box h5 {
  color: #ff3c3c;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* ==== LINKS ==== */
.sw-links-lux a {
  color: #ff3c3c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.sw-links-lux a:hover {
  color: #fff;
}

.sw-footer-note {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.sw-slots-rev {
  background: linear-gradient(180deg, #08140a 0%, #0c1a10 100%);
  color: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.sw-slots-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(255,0,0,0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ==== TITLES ==== */
.sw-title-slots {
  font-size: 2.6rem;
  background: linear-gradient(90deg, #ff2e2e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.sw-subtitle-slots {
  max-width: 720px;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ==== IMAGE HERO ==== */
.sw-slots-visual {
  position: relative;
}

.sw-slots-visual img {
  border: 2px solid rgba(255,255,255,0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.sw-slots-visual img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(255,0,0,0.25);
}

.sw-slots-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 60%;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
  filter: blur(40px);
  transform: translateX(-50%);
}

/* ==== GRID ==== */
.sw-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.sw-slot-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(0,0,0,0.2));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.sw-slot-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(255,0,0,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.sw-slot-card:hover::before {
  opacity: 1;
}

.sw-slot-card h3 {
  color: #ff4444;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.sw-slot-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  line-height: 1.6;
}

/* ==== WARNING BOX ==== */
.sw-warning-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,0,0,0.2);
  color: #ffdddd;
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 720px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.sw-warning-box strong {
  color: #ff4c4c;
}

/* ==== EFFECTS ==== */
.sw-slot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255,255,255,0.05);
}
/* ===== FOOTER ===== */
.sw-footer-forest {
  background: linear-gradient(180deg, #061b12 0%, #020c07 100%);
  position: relative;
  overflow: hidden;
}

.sw-footer-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 0, 0, 0.1), transparent 70%);
  z-index: 0;
}

.sw-footer-forest .container {
  position: relative;
  z-index: 1;
}

.text-accent {
  color: #ff3b3b;
}

/* Логотип */
.sw-footer-logo-img {
  height: 60px;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
}

.sw-footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  margin: 0 auto;
}

/* Ссылки */
.sw-footer-links li {
  margin-bottom: 0.4rem;
}

.sw-footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Сертификаты */
.sw-seals-grid {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.sw-seals-grid img {
  width: 46px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
}

.sw-seals-grid img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Разделитель и подпись */
.sw-footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
}

.sw-footer-copy {
  color: rgba(255, 255, 255, 0.6);
}

.sw-footer-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}
.seal-img {
    max-height: 55px;
    transition: transform 0.3s, filter 0.3s;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sw-hero h1 { font-size: 2rem; }
  .sw-hero p { font-size: 1rem; }
  .sw-offer-card { margin-bottom: 20px; }
}
/* === Responsible Gaming (List Style) === */
.sw-responsible {
  position: relative;
  background: linear-gradient(160deg, #001a0f 0%, #01371c 60%, #002512 100%);
  padding: 100px 0;
  color: #f5f5f5;
  overflow: hidden;
}

.sw-responsible::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.08), transparent 70%),
              radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05), transparent 70%);
  pointer-events: none;
}

.sw-section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ff3b3b;
  text-align: center;
  text-shadow: 0 0 15px rgba(255, 59, 59, 0.4);
  margin-bottom: 1rem;
}

.sw-responsible-intro {
  font-size: 1.1rem;
  color: #d2e6db;
  text-align: center;
  margin-bottom: 60px;
}

/* === LIST === */
.sw-responsible-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.sw-responsible-item {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ff3b3b;
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 25px 25px 25px 70px;
  transition: all 0.35s ease;
  overflow: hidden;
}

.sw-responsible-item::before {
  content: attr(data-icon);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  background: radial-gradient(circle, #ff3b3b 0%, #8b0000 85%);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(255, 59, 59, 0.4);
  transition: 0.3s ease;
}

.sw-responsible-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(6px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.sw-responsible-item:hover::before {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 59, 59, 0.6);
}

.sw-responsible-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.sw-responsible-item p {
  font-size: 0.95rem;
  color: #d9f0e5;
  line-height: 1.6;
  margin: 0;
}

.sw-responsible-item p a {
  color: #ff4f4f;
  text-decoration: none;
  font-weight: 600;
}

.sw-responsible-item p a:hover {
  color: #fff;
  text-decoration: underline;
}

.sw-responsible-item:last-child {
  border-left-color: #fff;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 59, 59, 0.08));
}

/* === Responsive === */
@media (max-width: 768px) {
  .sw-responsible-item {
    padding: 20px 20px 20px 65px;
  }

  .sw-responsible-item::before {
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
  }
}
.sw-contact {
  background-color: #0b1d14; /* тёмно-зелёный фон */
  color: #ffffff;
  padding: 80px 0;
  position: relative;
}

.sw-contact .sw-section-title {
  color: #ff2b2b; /* акцент — элегантный красный */
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sw-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.sw-contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
}

.sw-contact-info h3 {
  color: #ff2b2b;
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}

.sw-contact-info p {
  margin: 0;
  line-height: 1.8;
}

.sw-contact-info a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}
.sw-contact-info a:hover {
  color: #ff2b2b;
}

/* === FORM === */
.sw-contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sw-contact-form label {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
}

.sw-contact-form input,
.sw-contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  margin-bottom: 20px;
  transition: 0.3s;
}

.sw-contact-form input:focus,
.sw-contact-form textarea:focus {
  outline: none;
  border-color: #ff2b2b;
  background: rgba(255, 255, 255, 0.15);
}

.sw-contact-form button {
  background: #ff2b2b;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 8px;
  transition: 0.3s;
}

.sw-contact-form button:hover {
  background: #ffffff;
  color: #0b1d14;
}