/* =========================
   HERO SECTION
   ========================= */
.sd-hero{
  position: relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 100px 24px 64px;
  color: var(--sd-white);
  background: radial-gradient(1200px 600px at 70% 20%, rgba(255,79,216,.15), transparent 60%),
              radial-gradient(900px 500px at 20% 80%, rgba(0,212,255,.18), transparent 60%),
              linear-gradient(135deg, var(--sd-bg-1), var(--sd-bg-2));
  overflow:hidden;
}
.sd-hero::before{
  content:"";
  position:absolute; inset:-200px;
  background: conic-gradient(from 0deg, #0000, rgba(255,79,216,.25), #0000 35%, rgba(0,212,255,.25));
  filter: blur(60px);
  animation: sd-bg-rotate 18s linear infinite;
}

.contact-hero-section{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction: column;
  padding: 100px 24px 64px;
  color: var(--sd-white);
  background: radial-gradient(1200px 600px at 70% 20%, rgba(255,79,216,.15), transparent 60%),
              radial-gradient(900px 500px at 20% 80%, rgba(0,212,255,.18), transparent 60%),
              linear-gradient(135deg, var(--sd-bg-1), var(--sd-bg-2));
  overflow:hidden;
}
.contact-hero-section::before{
  content:"";
  position:absolute; inset:-200px;
  background: conic-gradient(from 0deg, #0000, rgba(255,79,216,.25), #0000 35%, rgba(0,212,255,.25));
  filter: blur(60px);
  animation: sd-bg-rotate 18s linear infinite;
}
.contact-hero-section > * {
  position: relative;
  z-index: 1;
}

.contact-content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info {
  flex: 1;
  padding-right: 20px;
}

.contact-form-container {
  flex: 1;
  min-width: 400px;
}

.contact-hero-section .section-title {
  text-align: center !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}

/* Hero Video Grid */
.hero-video-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px !important;
  margin: 110px 0 0 !important;
  width: 150% !important;
  max-width: 150% !important;
  position: relative;
  z-index: 1;
  padding: 0 60px !important;
  left: 50%;
  transform: translateX(-50%);
}

.hero-video-item {
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: none !important;
  position: relative;
  isolation: isolate;
  z-index: 1;
}

.hero-video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(139, 90, 150, 0.4);
  z-index: 100;
  will-change: transform, box-shadow;
}

.hero-video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
  border-radius: 8px;
}

.hero-video-item:hover .hero-video-overlay {
  opacity: 1;
  pointer-events: auto;
}

.hero-play-button {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a79a8;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.hero-video-item:hover .hero-play-button {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.sd-hero__inner{
  position:relative; z-index:1;
  text-align:center; max-width:920px; width:100%;
}
.sd-brand{
  font-family: "Pacifico", "Segoe Script", system-ui, sans-serif;
  font-size: clamp(52px, 8vw, 120px);
  line-height: .95; margin:100px 0 48px;
  color:#fff;
  font-weight: 300;
  text-shadow:
     0 0 5px rgba(139,90,150,1),
     0 0 15px rgba(139,90,150,.9),
     0 0 30px rgba(139,90,150,.8),
     0 0 50px rgba(139,90,150,.7),
     0 0 80px rgba(107,76,122,.6),
     0 0 120px rgba(107,76,122,.5);
}
.sd-tagline{
  letter-spacing:.25em;
  text-transform:uppercase;
  opacity:.9;
  font-weight:500;
  font-size: clamp(14px, 2.2vw, 22px);
  margin:0 0 28px;
}

.sd-cta{
  display:inline-flex; align-items:center; justify-content:center; gap:12px;
  padding:20px 36px; border-radius:0; font-weight:700;
  color:#ffffff; text-decoration:none; font-size: 16px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255,255,255,.08) 15%, 
    rgba(255,255,255,.08) 85%, 
    transparent 100%);
  backdrop-filter: blur(6px);
  border: none;
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}
.sd-cta::before{
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.sd-cta:hover::before{
  left: 100%;
}
.sd-cta:hover{ 
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(255,79,216,.15), rgba(0,212,255,.15));
  box-shadow: 0 15px 40px rgba(255,79,216,.2), 0 0 30px rgba(255,255,255,0.1);
  text-shadow: 0 0 25px rgba(255,255,255,0.8);
}
.sd-cta:active{ transform: translateY(-1px); }
.sd-cta__icon{ font-size:22px; }

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 50px;
}

.sd-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.sd-cta-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.sd-cta-secondary:hover::before {
  left: 100%;
}

.sd-cta-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.sd-cta-secondary:active {
  transform: translateY(-1px);
}

.sd-cta-secondary__icon {
  font-size: 18px;
}

.sd-eq{
  margin:25px auto 0; height:28px; width:120px;
  display:flex; align-items:flex-end; justify-content:space-between; gap:10px;
  opacity:.9;
}
.sd-eq span{
  width: 4px; height:6px; background: linear-gradient(var(--sd-magenta), var(--sd-cyan));
  border-radius:2px; box-shadow: var(--sd-glow);
  animation: sd-eq 1.2s ease-in-out infinite;
}
.sd-eq span:nth-child(2){ animation-delay:.1s}
.sd-eq span:nth-child(3){ animation-delay:.2s}
.sd-eq span:nth-child(4){ animation-delay:.3s}
.sd-eq span:nth-child(5){ animation-delay:.4s}

.sd-about-frame{
  margin:50px auto 0; 
  width:100%;
  max-width:1000px;
  padding: 0 20px;
}
.sd-about{
  text-align:justify; 
  width:100%;
  padding: 20px;
}
.sd-about-title{
  font-size: clamp(24px, 4vw, 36px);
  font-weight:600;
  color:var(--sd-white);
  margin:0 0 24px;
  text-shadow: 0 0 15px rgba(255,255,255,.3);
  text-align:center;
}
.sd-about-text{
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.6;
  color:rgba(255,255,255,.9);
  margin:0;
  text-shadow: 0 0 10px rgba(255,255,255,.2);
}

/* Audio Waveform Visualization */
.hero-waveform {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 3px;
  opacity: 0.8;
}

.waveform-bar {
  width: 4px;
  background: linear-gradient(to top, #FF6B9D, #E91E63);
  border-radius: 2px;
  animation: waveform 1.5s ease-in-out infinite;
}

.waveform-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.waveform-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.waveform-bar:nth-child(3) { height: 15px; animation-delay: 0.2s; }
.waveform-bar:nth-child(4) { height: 45px; animation-delay: 0.3s; }
.waveform-bar:nth-child(5) { height: 25px; animation-delay: 0.4s; }
.waveform-bar:nth-child(6) { height: 40px; animation-delay: 0.5s; }
.waveform-bar:nth-child(7) { height: 18px; animation-delay: 0.6s; }
.waveform-bar:nth-child(8) { height: 30px; animation-delay: 0.7s; }
.waveform-bar:nth-child(9) { height: 22px; animation-delay: 0.8s; }

/* =================
   NAVIGATION
   ================= */
.sd-topbar{
  position: absolute; top: 20px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  transition: all 0.3s ease;
  will-change: transform;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.sd-topbar .sd-nav{
  position:absolute; left:50%; transform:translateX(-50%);
}
.sd-nav{display:flex; gap:8px; list-style:none; margin:0; padding:0;}
.sd-nav a{
  color:#EDEBFF; text-decoration:none; font-weight:500; opacity:.9;
  padding: 10px 18px; border-radius: 20px;
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
  margin: 4px;
  z-index: 1;
  isolation: isolate;
}
.sd-nav a::before{
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: -1;
}
.sd-nav a:hover::before{
  left: 100%;
}
.sd-nav a:hover{
  opacity:1; 
  background: linear-gradient(135deg, rgba(255,79,216,.15), rgba(0,212,255,.15));
  color: #fff;
  text-shadow: 0 0 15px rgba(255,255,255,.4), 0 0 25px rgba(255,79,216,.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,79,216,.2), 0 4px 10px rgba(0,212,255,.2);
  z-index: 100;
  will-change: transform, opacity, box-shadow;
}

/* Sticky Navigation */
.sd-topbar.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  background: radial-gradient(1200px 600px at 70% 20%, rgba(255,79,216,.15), transparent 60%),
              radial-gradient(900px 500px at 20% 80%, rgba(0,212,255,.18), transparent 60%),
              linear-gradient(135deg, var(--sd-bg-1), var(--sd-bg-2)) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(32, 22, 45, 0.3);
  z-index: 9999;
  padding: 10px 24px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sd-topbar.sticky .sd-nav a {
  padding: 8px 16px;
}

.sd-topbar.sticky .sd-lang {
  gap: 10px;
}

.sd-topbar.sticky .sd-pill {
  padding: 8px 12px;
  transform: scale(0.9);
  font-size: 13px;
}

.sd-topbar.sticky .sd-pill:hover {
  transform: scale(0.94) translateY(-2px);
}

.sd-lang{display:flex; gap:10px; align-items:center; margin-left:auto;}

.sd-pill {
  transform: scale(0.9);
}
.sd-pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px; border-radius:999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  border:1px solid rgba(255,255,255,.12);
  color:var(--sd-white); text-decoration:none; font-weight:600;
  position: relative; overflow: hidden;
  transition: all 0.3s ease;
}
.sd-pill::before{
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.sd-pill:hover::before{
  left: 100%;
}
.sd-pill:hover{
  transform: translateY(-2px) scale(1.05);
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 6px 20px rgba(255,255,255,.1);
  text-shadow: 0 0 10px rgba(255,255,255,.3);
}
.sd-pill--accent{
  background: rgba(255,79,216,.16);
  border-color: rgba(255,79,216,.35);
}
.sd-pill--accent:hover{
  background: rgba(255,79,216,.25);
  border-color: rgba(255,79,216,.5);
  box-shadow: 0 6px 20px rgba(255,79,216,.3), 0 0 15px rgba(255,79,216,.2);
}
.sd-flag{font-size:16px; line-height:1;}

/* Language Switcher */
.language-switcher {
  grid-column: 3;
  justify-self: end;
}

.lang-toggle {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lighter) 50%, var(--primary-light) 100%);
  border: none;
  border-radius: var(--radius-large);
  padding: 8px 15px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(138, 121, 168, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 35px;
}

.lang-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.lang-toggle:hover::before {
  left: 100%;
}

.lang-toggle:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(138, 121, 168, 0.5);
  background: linear-gradient(135deg, #9d8bb6 0%, var(--accent-purple) 50%, #9d8bb6 100%);
}

.lang-flag {
  font-size: 16px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  animation: flagWave 2s ease-in-out infinite;
}

.lang-text {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =================
   STATS SECTION
   ================= */
.stats-section {
  background: transparent;
  padding: clamp(30px, 6vw, 40px) var(--content-padding);
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 15px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 20px 15px;
  background: rgba(138, 121, 168, 0.03);
   color: #fff !important;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(138, 121, 168, 0.1);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  animation: countUp 0.8s ease forwards;
  opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(138, 121, 168, 0.05), transparent);
  transition: left 0.6s;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(138, 121, 168, 0.06);
  border-color: rgba(138, 121, 168, 0.2);
  box-shadow: 0 8px 20px rgba(138, 121, 168, 0.15);
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: 10px;
  transition: transform var(--transition-fast);
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
  color: var(--primary-lighter);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-description {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 300;
  line-height: 1.4;
}

/* =================
   TESTIMONIALS SECTION
   ================= */
.testimonials-section {
  background: #ffffff;
  padding: clamp(10px, 2vw, 20px) 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.testimonial-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-large);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: 0 8px 25px rgba(138, 121, 168, 0.1);
  border: 1px solid rgba(138, 121, 168, 0.1);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  max-height: 150px;
  display: flex;
  align-items: center;
}

.testimonial-content {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  flex-wrap: wrap;
}

.testimonial-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.testimonial-right {
  flex: 1;
}

.testimonial-text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.4;
  color: var(--text-dark);
  font-style: italic;
  text-align: left;
  margin: 0;
  position: relative;
  z-index: 2;
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(138, 121, 168, 0.2);
  box-shadow: 0 3px 10px rgba(138, 121, 168, 0.15);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 5px 0;
}

.author-title {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin: 0 0 10px 0;
}

.author-rating {
  display: flex;
  gap: 3px;
}

.author-rating i {
  color: #ffd700;
  font-size: 0.9rem;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(138, 121, 168, 0.25);
}

/* Compact Testimonial Styles */
.testimonial-card-compact {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-large);
  padding: 20px;
  box-shadow: 0 8px 25px rgba(138, 121, 168, 0.1);
  border: 1px solid rgba(138, 121, 168, 0.1);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.testimonial-content-compact {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  flex-wrap: wrap;
}

.author-photo-compact {
  width: clamp(80px, 12vw, 140px);
  height: clamp(80px, 12vw, 140px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(138, 121, 168, 0.2);
  box-shadow: 0 5px 20px rgba(138, 121, 168, 0.2);
  flex-shrink: 0;
  align-self: center;
}

.testimonial-main-compact {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial-text-compact {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  line-height: 1.4;
  color: var(--text-dark);
  font-style: italic;
  text-align: justify;
  margin: 0;
}

.author-info-compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.author-details-compact {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Ensure author details are centered when testimonial layout is vertical */
.testimonial-content-compact[style*="flex-direction: column"] .author-details-compact,
.testimonial-content-compact.vertical-layout .author-details-compact {
  text-align: center;
}

.author-name-compact {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.author-title-compact {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 500;
}

.author-rating-compact {
  display: flex;
  gap: 3px;
}

.author-rating-compact i {
  color: #ffd700;
  font-size: 0.9rem;
}

.testimonial-card-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(138, 121, 168, 0.2);
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(15px, 3vw, 30px);
  padding: clamp(15px, 3vw, 25px) 0;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-medium);
  padding: 30px;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-fast);
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-light);
  opacity: 0.3;
  position: absolute;
  top: -15px;
  left: -10px;
}

.testimonial:hover .quote-icon {
  opacity: 0.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-photo {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-pill);
  object-fit: cover;
}

.testimonial-author h4 {
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* =================
   CONTENT GRIDS
   ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: clamp(30px, 6vw, 40px);
  text-align: center;
}

.service-item {
  padding: 25px;
  background-color: rgba(255,255,255,0.9);
  border-radius: 10px;
  transition: var(--transition-fast);
  border: 1px solid rgba(32, 22, 45, 0.1);
}

.service-item:hover {
  transform: translateY(-5px);
  background-color: var(--background-light);
  box-shadow: 0 15px 30px rgba(32, 22, 45, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-light);
  margin-bottom: 15px;
}

.service-title {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 5px;
  font-weight: 700;
}

.service-subtitle {
  font-size: 1rem;
  color: #5d4a7a;
  margin-bottom: 10px;
  font-weight: 600;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(15px, 3vw, 30px);
  margin-top: clamp(25px, 5vw, 35px);
}

.video-item {
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-item:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  z-index: 1;
}

.video-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
  position: relative;
}

.video-link:focus {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
  border-radius: var(--radius-small);
}

.video-thumbnail {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-item:hover .video-thumbnail {
  transform: scale(1.1);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(32, 22, 45, 0.7), rgba(138, 121, 168, 0.8));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  border-radius: var(--radius-small);
}

.video-item:hover .video-overlay,
.video-link:focus .video-overlay {
  opacity: 1;
}

.play-button {
  width: 70px;
  height: 70px;
  background: var(--background-light);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: var(--transition-fast);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.95);
}

.play-button i {
  color: var(--primary-light);
  font-size: 24px;
  margin-left: 3px;
  text-shadow: none;
}

.video-caption {
  text-align: center;
  margin-top: 12px;
  background-color: #000000;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  padding: 8px 12px 0;
  border-radius: 6px 6px 0 0;
}

.artist-description {
  text-align: center;
  margin-top: 0;
  background-color: #000000;
  color: #ccc;
  font-size: 0.85rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  padding: 0 12px 8px;
  border-radius: 0 0 6px 6px;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =================
   TEAM SECTION
   ================= */
.team-section {
  background-color: var(--background-light);
  padding: var(--section-padding) var(--content-padding);
  color: var(--text-dark);
  overflow-x: hidden;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: clamp(20px, 4vw, 30px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.team-member {
  text-align: center;
  color: var(--text-dark);
  padding: 15px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.team-photo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-pill);
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid var(--primary-light);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
  transform: scale(1.05);
}

.team-photo:hover {
  transform: scale(1.1);
}

.team-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--primary-dark);
  line-height: 1.2;
}

.team-role {
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-bio {
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: justify;
  color: var(--text-gray);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =================
   EDUCATION SECTION
   ================= */
.education-thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 30px);
  max-width: 800px;
  margin: clamp(25px, 5vw, 35px) auto 0;
}

.education-item {
  text-align: center;
  transition: var(--transition-smooth);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.education-item:nth-child(1) { animation-delay: 0.2s; }
.education-item:nth-child(2) { animation-delay: 0.4s; }
.education-item:nth-child(3) { animation-delay: 0.6s; }

.education-item:hover {
  transform: translateY(-5px);
}

.education-thumbnail {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

.education-item:hover .education-thumbnail {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(138, 121, 168, 0.4);
}

.education-title {
  font-size: 1.1rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin: 0;
  transition: color var(--transition-fast);
}

.education-item:hover .education-title {
  color: var(--primary-light);
}

.blog-item {
  text-align: center;
}

.blog-title {
  margin-top: 15px;
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.blog-item:hover .blog-title {
  color: var(--primary-light);
}

/* =================
   CONTACT FORMS
   ================= */
.contact-info {
  text-align: center;
  margin-bottom: clamp(25px, 5vw, 35px);
}

.contact-email {
  font-size: 1.5rem;
  color: var(--primary-light);
  font-weight: 600;
  margin: 20px 0;
  display: inline-block;
  text-decoration: none;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(32, 22, 45, 0.8);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-heavy);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-small);
  color: var(--text-light);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(138, 121, 168, 0.3);
}

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

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: var(--radius-small);
  text-align: center;
  display: none;
}

.form-message.success {
  background-color: rgba(40, 167, 69, 0.2);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
  display: block;
}

.form-message.error {
  background-color: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
  display: block;
}

/* =================
   FOOTER
   ================= */
.footer {
  background-color: #000000;
  color: var(--text-light);
  padding: clamp(25px, 5vw, 30px) 0;
  text-align: center;
}

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

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary-light);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.social-link {
  color: var(--text-light);
  font-size: 1.5rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-link:hover {
  color: var(--primary-light);
  transform: translateY(-3px);
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* =================
   FAQ SECTION
   ================= */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

#faq {
  margin-bottom: 5px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-medium);
  margin-bottom: 20px;
  border: 2px solid rgba(138, 121, 168, 0.1);
  box-shadow: 0 8px 25px rgba(138, 121, 168, 0.1);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.faq-item.active .faq-question {
  border-bottom: none;
}

.faq-item:hover {
  border-color: rgba(138, 121, 168, 0.2);
  box-shadow: 0 12px 30px rgba(138, 121, 168, 0.15);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(138, 121, 168, 0.02) 0%, rgba(177, 156, 217, 0.02) 100%);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  border-bottom: none;
}

.faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(138, 121, 168, 0.05), transparent);
  transition: left 0.6s ease;
}

.faq-question:hover::before {
  left: 100%;
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(138, 121, 168, 0.05) 0%, rgba(177, 156, 217, 0.05) 100%);
}

.faq-question h3 {
  color: var(--primary-dark);
  font-size: clamp(0.88rem, 2vw, 1.04rem);
  font-weight: 700;
  margin: 0;
  padding-right: 20px;
  line-height: 1.4;
}

.faq-icon {
  color: var(--primary-light);
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: white;
  border: none;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
  border-top: none;
}

.faq-answer p {
  color: var(--text-gray);
  font-size: clamp(0.8rem, 1.76vw, 0.88rem);
  line-height: 1.7;
  margin: 0;
  padding-top: 0;
}

/* Focus styles for accessibility */
.faq-question:focus {
  outline: none;
}

.faq-question:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
}

/* Prefer-reduced-motion – ogranicz animacje */
@media (prefers-reduced-motion: reduce){
  .sd-hero::before, .sd-eq span{ animation:none }
}

/* =================
   BLOG GRID GAP FIX
   ================= */
/* Nie rozciągaj elementów w rzędach */
#blog .video-grid { 
  align-items: start;
}

/* Link-karta w blogu niech nie ma sztucznej wysokości */
#blog .video-grid .blog-item .video-item {
  display: block;
  height: auto;
}

/* Dla pewności: obrazek zostaje, a podpis idzie od razu pod nim */
#blog .video-grid .blog-item .video-thumbnail {
  display: block;
  height: 180px;
  object-fit: cover;
}

/* Opcjonalnie: lekkie zaokrąglenie i cień zostaje 
   (działa już z .video-item), bez wpływu na layout */

   /* =================
   VOICE DEMO MODULE
   ================= */

.voice-demo-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    padding: clamp(40px, 6vw, 60px) 0;
    position: relative;
    overflow: hidden;
}

.voice-demo-module {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.voice-demo-hero {
    background: radial-gradient(1200px 600px at 70% 20%, rgba(255,79,216,.15), transparent 60%),
                radial-gradient(900px 500px at 20% 80%, rgba(0,212,255,.18), transparent 60%),
                linear-gradient(135deg, var(--sd-bg-1), var(--sd-bg-2));
    border-radius: 25px;
    padding: 50px 40px;
    color: var(--sd-white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 15, 46, 0.3);
}

.voice-demo-hero::before {
    content: "";
    position: absolute;
    inset: -200px;
    background: conic-gradient(from 0deg, #0000, rgba(255,79,216,.25), #0000 35%, rgba(0,212,255,.25));
    filter: blur(60px);
    animation: sd-bg-rotate 18s linear infinite;
    z-index: -1;
}

.voice-demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.voice-demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(6px);
}

.voice-demo-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #ffffff 0%, #b19cd9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.voice-demo-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #FF6B35;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.voice-demo-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.voice-demo-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.voice-demo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.voice-demo-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voice-demo-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #FF6B35;
    transition: all 0.3s ease;
}

.voice-demo-feature:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(5px);
}

.voice-demo-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.voice-demo-feature-icon i {
    color: white;
    font-size: 20px;
}

.voice-demo-feature-text {
    flex: 1;
}

.voice-demo-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.voice-demo-feature-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

.voice-demo-highlight {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-top: 30px;
}

.voice-demo-highlight-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 10px;
}

.voice-demo-highlight-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

/* Voice Demo Responsive */
@media (max-width: 768px) {
    .voice-demo-hero {
        padding: 30px 20px;
    }

    .voice-demo-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .voice-demo-visual {
        order: -1;
    }

    .voice-demo-title {
        font-size: 2rem;
    }

    .voice-demo-subtitle {
        font-size: 1.2rem;
    }

    .voice-demo-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .voice-demo-feature-icon {
        margin: 0 auto;
    }

    .voice-demo-cta {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .voice-demo-module {
        padding: 0 15px;
    }

    .voice-demo-hero {
        padding: 25px 15px;
    }

    .voice-demo-features {
        gap: 15px;
    }

    .voice-demo-feature {
        padding: 15px;
    }
}