/*
Theme Name: Sticker.Partners Neon
Theme URI: https://sticker.partners/
Author: Sticker.Partners
Author URI: https://sticker.partners/
Description: Neon performance marketing agency theme (EN/RU). Clean, editable, SEO-ready.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sticker-partners
*/

/* =========================
   CSS RESET
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #070b14;
  color: #e6ecff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =========================
   VARIABLES (NEON CORE)
   ========================= */
:root {
  --bg-main: #070b14;
  --bg-card: #0c1220;

  --neon-purple: #7b2eff;
  --neon-blue: #4cc9f0;
  --neon-cyan: #00f5ff;

  --text-main: #e6ecff;
  --text-muted: #9aa4c7;

  --border-soft: rgba(123, 46, 255, 0.25);
  --radius: 14px;
}

/* =========================
   GLOBAL ELEMENTS
   ========================= */
a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* =========================
   HEADER
   ========================= */
.site-header {
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  max-height: 64px;
  transition: transform 0.3s ease;
}

.site-logo img:hover {
  transform: scale(1.05);
}

/* =========================
   HERO
   ========================= */
.hero {
  position: relative;
  padding: 120px 0 140px;
  text-align: center;
}

.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;

  background: linear-gradient(
    90deg,
    var(--neon-blue),
    var(--neon-cyan),
    var(--neon-purple)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 25px rgba(76, 201, 240, 0.35),
    0 0 45px rgba(123, 46, 255, 0.25);
}

.hero-subtitle {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 40px;
  color: var(--text-muted);
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(
    90deg,
    var(--neon-purple),
    var(--neon-blue)
  );
  color: #fff;
  box-shadow:
    0 0 20px rgba(123, 46, 255, 0.4),
    0 0 40px rgba(76, 201, 240, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 30px rgba(123, 46, 255, 0.6),
    0 0 60px rgba(76, 201, 240, 0.4);
}

/* =========================
   SECTIONS
   ========================= */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* =========================
   CARDS
   ========================= */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  padding: 32px;
  box-shadow:
    inset 0 0 25px rgba(76, 201, 240, 0.05),
    0 0 25px rgba(123, 46, 255, 0.1);
}

/* =========================
   FOOTER
   ========================= */
.site-footer {
  padding: 60px 0;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  color: var(--text-muted);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  .hero {
    padding: 90px 0 110px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .site-logo img {
    max-height: 52px;
  }
}

/* =========================
   FOOTER (Sticker.Partners)
   ========================= */

.sp-footer {
  position: relative;
  background: radial-gradient(
      80% 120% at 50% 0%,
      rgba(123, 46, 255, 0.15),
      transparent 70%
    ),
    #070b14;
  border-top: 1px solid rgba(123, 46, 255, 0.25);
  padding: 80px 0 40px;
}

.sp-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* ---------- TOP ---------- */

.sp-footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.sp-footer__brand {
  display: inline-flex;
  align-items: center;
}

.sp-footer__brand img {
  max-height: 72px;
  width: auto;
  filter: drop-shadow(0 0 25px rgba(123, 46, 255, 0.5));
}

.sp-footer__title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(
    90deg,
    #4cc9f0,
    #00f5ff,
    #7b2eff
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- CTA ---------- */

.sp-footer__ctaTitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.sp-footer__ctaText {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sp-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.sp-footer__link {
  font-weight: 500;
  color: #e6ecff;
  position: relative;
}

.sp-footer__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #7b2eff,
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sp-footer__link:hover::after {
  opacity: 1;
}

.sp-footer__dot {
  opacity: 0.4;
}

/* ---------- MID ---------- */

.sp-footer__mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.sp-footer__menu {
  display: flex;
  gap: 24px;
  list-style: none;
}

.sp-footer__menu a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.sp-footer__menu a:hover {
  color: #e6ecff;
}

/* ---------- LANG SWITCH ---------- */

.sp-footer__lang {
  display: flex;
  gap: 10px;
}

.sp-langBtn {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(123, 46, 255, 0.12);
  color: #e6ecff;
  border: 1px solid rgba(123, 46, 255, 0.35);
  cursor: pointer;
  transition: all 0.25s ease;
}

.sp-langBtn:hover {
  background: rgba(123, 46, 255, 0.35);
  box-shadow: 0 0 20px rgba(123, 46, 255, 0.45);
}

/* ---------- BOTTOM ---------- */

.sp-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(123, 46, 255, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}

.sp-footer__note {
  opacity: 0.7;
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px) {
  .sp-footer {
    padding: 60px 0 32px;
  }

  .sp-footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .sp-footer__brand {
    justify-content: center;
  }

  .sp-footer__contacts {
    justify-content: center;
  }

  .sp-footer__mid {
    flex-direction: column;
    gap: 24px;
  }

  .sp-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================
   Sticker.Partners Layout Fix
   ========================= */

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

.sp-main {
  overflow-x: hidden;
}

/* =========================
   Header / Logo
   ========================= */

.sp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    180deg,
    rgba(10,12,25,0.85),
    rgba(10,12,25,0.55)
  );
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sp-brand img,
.custom-logo {
  height: 56px;
  width: auto;
}

@media (min-width: 768px) {
  .sp-brand img,
  .custom-logo {
    height: 72px;
  }
}

/* =========================
   Hero
   ========================= */

.sp-hero {
  padding: 96px 0 120px;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(122,72,255,0.25), transparent 70%),
    radial-gradient(40% 40% at 80% 20%, rgba(0,224,255,0.2), transparent 60%);
}

.sp-hero__title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.sp-hero__subtitle {
  max-width: 720px;
  font-size: 18px;
  color: hsl(var(--muted-foreground));
  margin-bottom: 32px;
}

.sp-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================
   Buttons
   ========================= */

.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  transition: all .25s ease;
  border: 1px solid transparent;
}

.sp-btn--primary {
  background: linear-gradient(135deg, #7a48ff, #00e0ff);
  color: #0b0f1a;
  box-shadow: 0 0 40px rgba(122,72,255,.35);
}

.sp-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 60px rgba(122,72,255,.6);
}

.sp-btn--ghost {
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

.sp-btn--ghost:hover {
  background: rgba(255,255,255,0.06);
}

/* =========================
   Info blocks
   ========================= */

.sp-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 32px;
  margin-top: 64px;
}

.sp-h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sp-p {
  color: hsl(var(--muted-foreground));
}

/* =========================
   Cards
   ========================= */

.sp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
  margin-top: 56px;
}

.sp-card {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.sp-card__t {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sp-card__p {
  color: hsl(var(--muted-foreground));
}

/* =========================
   Contact form
   ========================= */

.sp-contact {
  padding: 120px 0;
}

.sp-form {
  max-width: 720px;
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.sp-field__label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: hsl(var(--muted-foreground));
}

.sp-input,
.sp-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
}

.sp-input:focus,
.sp-textarea:focus {
  outline: none;
  border-color: #7a48ff;
  box-shadow: 0 0 0 2px rgba(122,72,255,0.25);
}

.sp-note {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
}
body { outline: 10px solid red !important; }

