@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --primary: #FF2E93;
  --accent: #A259FF;
  --lime: #C6FF00;
  --bg: #FFFDF7;
  --surface: #FFF0F7;
  --text: #1C1430;
  --muted: #7A6E8A;
  --shadow-glow-primary: 0 0 40px rgba(255, 46, 147, 0.3);
  --shadow-glow-accent: 0 0 40px rgba(162, 89, 255, 0.3);
  --shadow-glow-lime: 0 0 40px rgba(198, 255, 0, 0.3);
  --header-height: 72px;
  --section-padding: 4rem 1.5rem;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', cursive;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

p {
  max-width: 65ch;
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--accent);
}

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   HEADER
   ======================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header.scrolled {
  background: rgba(255, 253, 247, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(122, 110, 138, 0.15);
  box-shadow: 0 2px 20px rgba(28, 20, 48, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.8rem;
  color: var(--text);
  letter-spacing: 0.05em;
  text-decoration: none;
  flex-shrink: 0;
}

.logo span {
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

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

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

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

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

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

  .nav-menu {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem;
    border-top: 1px solid var(--muted);
  }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary,
.btn-secondary,
.cta-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-glow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(255, 46, 147, 0.45);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}

.btn-secondary:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-2px);
}

.cta-button {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-glow-accent);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(162, 89, 255, 0.45);
  color: #fff;
}

.form-submit {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-glow-primary);
  width: 100%;
  margin-top: 0.5rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(255, 46, 147, 0.45);
}

/* ========================================
   PHOTO BACKGROUND OVERLAY
   ======================================== */

.has-photo-bg {
  position: relative;
  isolation: isolate;
}

.has-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85));
  z-index: 0;
}

.has-photo-bg > * {
  position: relative;
  z-index: 1;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-section .container {
  width: 100%;
}

.hero-content {
  max-width: 700px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  color: var(--lime);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary);
  opacity: 0.15;
  top: 10%;
  right: 5%;
  transform: rotate(15deg);
  z-index: 0;
}

.hero-decoration-2 {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--lime);
  opacity: 0.2;
  bottom: 15%;
  right: 20%;
  transform: rotate(-8deg);
  z-index: 0;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 8rem 2rem 6rem;
  }

  .hero-decoration {
    width: 300px;
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 10rem 3rem 8rem;
  }

  .hero-decoration {
    width: 400px;
    height: 400px;
    right: 8%;
  }

  .hero-decoration-2 {
    width: 180px;
    height: 180px;
  }
}

/* ========================================
   SECTION BASE
   ======================================== */

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header h2 span {
  color: var(--primary);
}

.section-header p {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  font-family: 'Bebas Neue', cursive;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 3rem;
  }
}

/* ========================================
   FEATURES SECTION (Asymmetric Grid)
   ======================================== */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 0;
  box-shadow: var(--shadow-glow-accent);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}

.feature-card:nth-child(2)::before {
  background: var(--primary);
}

.feature-card:nth-child(3)::before {
  background: var(--lime);
}

.feature-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 0 60px rgba(162, 89, 255, 0.35);
}

.feature-card:nth-child(2):hover {
  box-shadow: 0 0 60px rgba(255, 46, 147, 0.35);
}

.feature-card:nth-child(3):hover {
  box-shadow: 0 0 60px rgba(198, 255, 0, 0.35);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
  }

  .feature-card:nth-child(2) {
    transform: translateY(2rem);
  }

  .feature-card:nth-child(2):hover {
    transform: translateY(calc(2rem - 4px)) rotate(-0.5deg);
  }

  .feature-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 60%;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: 1.4fr 0.9fr 1fr;
    gap: 2.5rem;
  }

  .feature-card:nth-child(2) {
    transform: translateY(3rem);
  }

  .feature-card:nth-child(2):hover {
    transform: translateY(calc(3rem - 4px)) rotate(-0.5deg);
  }

  .feature-card:nth-child(3) {
    grid-column: auto;
    max-width: none;
    transform: translateY(1.5rem);
  }

  .feature-card:nth-child(3):hover {
    transform: translateY(calc(1.5rem - 4px)) rotate(-0.5deg);
  }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--bg);
  border: 2px solid var(--surface);
  padding: 2.5rem 2rem;
  border-radius: 0;
  transition: border-color var(--transition-base), transform var(--transition-base);
  position: relative;
}

.service-card:hover {
  border-color: var(--primary);
  transform: rotate(0.5deg);
}

.service-card:nth-child(even):hover {
  border-color: var(--accent);
  transform: rotate(-0.5deg);
}

.service-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 4rem;
  color: var(--surface);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
}

.service-card:hover .service-number {
  color: rgba(255, 46, 147, 0.15);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  position: relative;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .service-card:nth-child(2) {
    margin-top: 3rem;
  }

  .service-card:nth-child(3) {
    margin-top: -1.5rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 2.5rem;
  }

  .service-card:nth-child(2) {
    margin-top: 4rem;
  }

  .service-card:nth-child(3) {
    margin-top: 1rem;
  }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  z-index: -1;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.about-highlight {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .about-image {
    transform: rotate(-2deg);
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
  }

  .about-image {
    margin-left: -2rem;
  }
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
  background: var(--text);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item:nth-child(2) .stat-number {
  color: var(--primary);
}

.stat-item:nth-child(3) .stat-number {
  color: var(--accent);
}

.stat-item:nth-child(4) .stat-number {
  color: var(--lime);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .stat-item:nth-child(2) {
    transform: translateY(1rem);
  }

  .stat-item:nth-child(4) {
    transform: translateY(1rem);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    gap: 3rem;
  }

  .stat-item:nth-child(2) {
    transform: translateY(1.5rem);
  }

  .stat-item:nth-child(4) {
    transform: translateY(1.5rem);
  }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonial-section {
  background-size: cover;
  background-position: center;
  padding: 5rem 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 0;
  position: relative;
  transition: transform var(--transition-base);
}

.testimonial-card:hover {
  transform: rotate(-0.5deg) translateY(-3px);
}

.testimonial-card:nth-child(2) {
  border-left: 4px solid var(--primary);
}

.testimonial-card:nth-child(3) {
  border-left: 4px solid var(--accent);
}

.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: 'Bebas Neue', cursive;
  font-size: 3rem;
  color: var(--primary);
  line-height: 0;
  vertical-align: -0.5em;
  margin-right: 0.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 0;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testimonial-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
  }

  .testimonial-card:nth-child(2) {
    margin-top: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 2.5rem;
  }

  .testimonial-card:nth-child(2) {
    margin-top: 3rem;
  }

  .testimonial-card:nth-child(3) {
    margin-top: 1.5rem;
  }
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  background: var(--text);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary);
  opacity: 0.08;
  top: -50px;
  left: -50px;
  transform: rotate(25deg);
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--accent);
  opacity: 0.08;
  bottom: -40px;
  right: -40px;
  transform: rotate(-15deg);
}

.cta-section h2 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section h2 span {
  color: var(--lime);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-section .cta-button {
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 8rem 3rem;
  }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-row .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 1.4rem;
  text-align: center;
  color: var(--primary);
  margin-top: 0.1rem;
}

.contact-row .label {
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.contact-row .value {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--surface);
  padding: 2rem;
  border-radius: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  width: 100%;
}

.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--muted);
  border-radius: 0;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(162, 89, 255, 0.15);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }

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

  .contact-form {
    padding: 2.5rem;
    transform: rotate(0.5deg);
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
  }

  .contact-form {
    padding: 3rem;
  }
}

/* ========================================
   POLICY PAGES
   ======================================== */

.policy-page {
  padding: 4rem 1.5rem;
}

.policy-page .container {
  max-width: 800px;
}

.policy-page h1 {
  margin-bottom: 0.5rem;
}

.policy-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.policy-page h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.policy-page h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.policy-page p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.policy-page ul,
.policy-page ol {
  color: var(--muted);
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.policy-page li {
  margin-bottom: 0.5rem;
}

.policy-page a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 768px) {
  .policy-page {
    padding: 5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .policy-page {
    padding: 6rem 3rem;
  }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition-base);
}

.footer-col ul a:hover {
  color: var(--primary);
}

.footer-brand .logo {
  color: #fff;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  transition: border-color var(--transition-base), color var(--transition-base), background var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 46, 147, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .footer {
    padding: 5rem 2rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 6rem 3rem 2.5rem;
  }

  .footer-grid {
    gap: 3rem;
  }
}

/* ========================================
   COOKIE POPUP
   ======================================== */

.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  background: var(--text);
  color: #fff;
  padding: 1.5rem;
  border-radius: 0;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.cookie-popup.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-popup p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

.cookie-popup a {
  color: var(--lime);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-accept {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 0;
  transition: background var(--transition-base);
}

.cookie-accept:hover {
  background: #e0267f;
}

.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.6rem 1.5rem;
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 0;
  transition: border-color var(--transition-base), color var(--transition-base);
}

.cookie-decline:hover {
  border-color: #fff;
  color: #fff;
}

@media (min-width: 768px) {
  .cookie-popup {
    left: auto;
    max-width: 420px;
    flex-direction: row;
    align-items: center;
  }

  .cookie-popup p {
    flex: 1;
  }

  .cookie-buttons {
    flex-direction: column;
    flex-shrink: 0;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-lime { color: var(--lime); }
.text-muted { color: var(--muted); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   ASYMMETRIC DECORATIVE ELEMENTS
   ======================================== */

.deco-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.deco-blob--pink {
  background: var(--primary);
  opacity: 0.06;
}

.deco-blob--purple {
  background: var(--accent);
  opacity: 0.06;
}

.deco-blob--lime {
  background: var(--lime);
  opacity: 0.08;
}

.deco-line {
  position: absolute;
  width: 120px;
  height: 3px;
  background: var(--primary);
  opacity: 0.3;
  pointer-events: none;
}

.deco-line--accent {
  background: var(--accent);
}

.deco-line--lime {
  background: var(--lime);
}

/* ========================================
   BROKEN GRID OFFSETS (desktop)
   ======================================== */

@media (min-width: 1024px) {
  .offset-up-1 { transform: translateY(-2rem); }
  .offset-up-2 { transform: translateY(-4rem); }
  .offset-down-1 { transform: translateY(2rem); }
  .offset-down-2 { transform: translateY(4rem); }
  .offset-left-1 { transform: translateX(-2rem); }
  .offset-right-1 { transform: translateX(2rem); }
  .rotate-slight-left { transform: rotate(-2deg); }
  .rotate-slight-right { transform: rotate(2deg); }
}

/* ========================================
   SCROLL ANIMATIONS (respects reduced motion)
   ======================================== */

@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   SELECTION & SCROLLBAR
   ======================================== */

::selection {
  background: var(--primary);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--muted);
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}