/* ============================================================
   ADANA SOSYAL MEDYA — Premium Design System 2026
   ============================================================ */

/* ---------- 0. CSS CUSTOM PROPERTIES ---------- */
:root {
  --primary: #e84393;
  --primary-light: #fd79a8;
  --primary-dark: #c2185b;
  --secondary: #a855f7;
  --accent: #f093b0;
  --accent-light: #f8b4c8;
  --success: #10b981;
  --dark: #1a1025;
  --dark-light: #2d1f3d;
  --text: #3d2e4a;
  --text-light: #6b5b7b;
  --text-lighter: #9a8aab;
  --bg: #ffffff;
  --bg-soft: #fdf2f8;
  --bg-primary-soft: #fce4ec;
  --bg-secondary-soft: #f3e5f5;
  --bg-accent-soft: #fff0f3;
  --border: #f3d5e0;
  --border-light: #fce4ec;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(232, 67, 147, 0.06);
  --shadow: 0 4px 20px rgba(232, 67, 147, 0.08);
  --shadow-lg: 0 10px 40px rgba(232, 67, 147, 0.1);
  --shadow-xl: 0 20px 60px rgba(232, 67, 147, 0.12);
  --shadow-primary: 0 8px 30px rgba(232, 67, 147, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- 1. BASE & TYPOGRAPHY ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text);
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--bg-primary-soft);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ---------- 2. NAVBAR / HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.navbar-scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border-light);
}

.site-header .navbar {
  padding: 0;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
}

.navbar-brand:hover {
  opacity: 0.85;
}

.navbar-brand img {
  transition: var(--transition);
}

.site-header .nav-link {
  font-weight: 500;
  font-size: 0.938rem;
  color: var(--text);
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}

.site-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  transition: var(--transition);
  transform: translateX(-50%);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--primary);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
  width: 60%;
}

.navbar-cta-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff !important;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.938rem;
  transition: var(--transition);
  box-shadow: var(--shadow-primary);
}

.navbar-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(232, 67, 147, 0.35);
  color: #fff !important;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
}

@media (max-width: 991px) {
  .site-header .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    animation: slide-up 0.3s ease;
  }

  .site-header .nav-link {
    padding: 12px 16px !important;
    border-radius: var(--radius-sm);
  }

  .site-header .nav-link:hover {
    background: var(--bg-primary-soft);
  }

  .site-header .nav-link::after {
    display: none;
  }

  .navbar-cta-btn {
    display: inline-block;
    margin-top: 8px;
    text-align: center;
    width: 100%;
  }
}

/* ---------- 3. HERO SECTION ---------- */
.hero-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-gradient {
  position: relative;
  padding: 160px 0 80px;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(232,67,147,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(168,85,247,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(240,147,176,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #fdf2f8 0%, #faf5ff 40%, #ffffff 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
  animation: heroMeshShift 12s ease-in-out infinite;
}

@keyframes heroMeshShift {
  0%, 100% { background-position: 0% 50%, 100% 50%, 50% 0%, 0% 0%; }
  33% { background-position: 50% 0%, 0% 100%, 100% 50%, 0% 0%; }
  66% { background-position: 100% 100%, 50% 0%, 0% 50%, 0% 0%; }
}

.hero-gradient::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 67, 147, 0.10) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.hero-gradient::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
  animation: fade-in 0.6s ease;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
  animation: slide-up 0.6s ease 0.1s both;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  animation: slide-up 0.6s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slide-up 0.6s ease 0.3s both;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero-float-element {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  z-index: 3;
}

.hero-float-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.hero-float-element:nth-child(2) { top: 5%; right: 15%; animation-delay: 1s; }
.hero-float-element:nth-child(3) { bottom: 15%; left: 5%; animation-delay: 2s; }
.hero-float-element:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 0.5s; }
.hero-float-element:nth-child(5) { top: 50%; right: 0; animation-delay: 1.5s; }

.hero-card-preview {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  position: relative;
  z-index: 2;
  animation: slide-up 0.8s ease 0.4s both;
}

.hero-card-preview::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.3), rgba(168, 85, 247, 0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* ---------- 4. SERVICE CARDS ---------- */
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 67, 147, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-img {
  overflow: hidden;
  border-radius: var(--radius);
}

.service-card-img img {
  transition: transform 0.5s ease;
}

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card-icon.icon-primary {
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.1), rgba(99, 102, 241, 0.15));
  color: var(--primary);
}

.service-card-icon.icon-secondary {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(139, 92, 246, 0.15));
  color: var(--secondary);
}

.service-card-icon.icon-accent {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.15));
  color: var(--accent);
}

.service-card-icon.icon-success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.15));
  color: var(--success);
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
}

.service-card h4,
.service-card .service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.938rem;
  margin-bottom: 0;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 16px;
  transition: var(--transition);
}

.service-card .service-link:hover {
  gap: 10px;
  color: var(--primary-dark);
}

/* ---------- 5. FEATURE / WHY US SECTION ---------- */
.feature-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--border);
}

.feature-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px;
  background: var(--bg-primary-soft);
  color: var(--primary);
  transition: var(--transition);
}

.feature-box:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  transform: scale(1.05);
}

.feature-box h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-box p {
  color: var(--text-light);
  font-size: 0.938rem;
  margin-bottom: 0;
}

/* ---------- 6. STATS / COUNTER SECTION ---------- */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 67, 147, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
}

.stats-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  border-radius: 50%;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  position: relative;
  z-index: 1;
}

.stat-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
  animation: float 4s ease-in-out infinite;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.2;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.938rem;
  font-weight: 500;
}

/* ---------- 7. TESTIMONIALS ---------- */
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 4rem;
  line-height: 1;
  color: var(--bg-primary-soft);
  font-family: Georgia, serif;
  font-weight: 700;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 67, 147, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--accent);
  font-size: 0.875rem;
}

.testimonial-card .testimonial-text {
  color: var(--text);
  font-size: 0.975rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  background-image: linear-gradient(var(--bg), var(--bg)), linear-gradient(135deg, var(--primary), var(--secondary));
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.testimonial-card .testimonial-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.938rem;
  margin-bottom: 2px;
}

.testimonial-card .testimonial-role {
  color: var(--text-lighter);
  font-size: 0.813rem;
}

/* ---------- 8. PROCESS / STEPS ---------- */
.process-step {
  text-align: center;
  padding: 24px;
  position: relative;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-primary);
}

.process-line {
  position: absolute;
  top: 52px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--border));
  z-index: 1;
}

.process-step:last-child .process-line {
  display: none;
}

.process-step h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .process-line {
    display: none;
  }

  .process-step {
    display: flex;
    text-align: left;
    gap: 20px;
    align-items: flex-start;
    padding: 16px 0;
  }

  .process-step-number {
    margin: 0;
    flex-shrink: 0;
  }
}

/* ---------- 9. FAQ ACCORDION ---------- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--border);
}

.faq-item .accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  padding: 20px 24px;
  border: none;
  box-shadow: none !important;
  transition: var(--transition);
}

.faq-item .accordion-button:not(.collapsed) {
  background: var(--bg-primary-soft);
  color: var(--primary);
}

.faq-item .accordion-button::after {
  background-image: none;
  content: '\F282';
  font-family: 'bootstrap-icons';
  font-size: 1rem;
  width: auto;
  height: auto;
  transition: transform 0.3s ease;
}

.faq-item .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.faq-item .accordion-body {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-item .accordion-collapse {
  transition: height 0.35s ease;
}

/* ---------- 10. CTA SECTIONS ---------- */
.cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #6366f1 100%);
  background-size: 200% 200%;
  animation: ctaGradientShift 8s ease-in-out infinite;
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

@keyframes ctaGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-gradient::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  border-radius: 50%;
}

.cta-gradient::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  border-radius: 50%;
}

.cta-glass {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  transform: rotate(15deg);
}

.cta-glass:nth-child(1) {
  top: -40px;
  right: 80px;
}

.cta-glass:nth-child(2) {
  bottom: -60px;
  left: 60px;
  width: 120px;
  height: 120px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.cta-gradient .btn {
  position: relative;
  z-index: 2;
}

/* ---------- 11. FORMS ---------- */
.form-modern .form-control {
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 0.938rem;
  color: var(--dark);
  background: var(--bg);
  transition: var(--transition);
}

.form-modern .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 67, 147, 0.1);
  outline: none;
}

.form-modern .form-control::placeholder {
  color: var(--text-lighter);
}

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

.form-modern .form-floating > .form-control {
  padding: 24px 18px 8px;
  height: auto;
  min-height: 56px;
}

.form-modern .form-floating > .form-control::placeholder {
  color: transparent;
}

.form-modern .form-floating > label {
  padding: 14px 18px;
  color: var(--text-lighter);
  transition: all 0.2s ease;
}

.form-modern .form-floating > .form-control:focus ~ label,
.form-modern .form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--primary);
  transform: scale(0.8) translateY(-0.75rem);
}

.form-modern .form-select {
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  font-size: 0.938rem;
  color: var(--dark);
  background-color: var(--bg);
  transition: var(--transition);
}

.form-modern .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 67, 147, 0.1);
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

/* ---------- 12. BUTTONS ---------- */
.btn {
  font-weight: 600;
  font-size: 0.938rem;
  border-radius: var(--radius);
  padding: 12px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(232, 67, 147, 0.3);
  color: #fff;
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary), #8b5cf6);
  border: none;
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: linear-gradient(135deg, #6d28d9, var(--secondary));
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(168, 85, 247, 0.3);
  color: #fff;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border: none;
  color: var(--dark);
  font-weight: 700;
}

.btn-accent:hover,
.btn-accent:focus {
  background: linear-gradient(135deg, #d97706, var(--accent));
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.3);
  color: var(--dark);
}

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

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-primary);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px) scale(1.02);
  color: #fff;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
  border-radius: var(--radius-lg);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border: none;
  font-weight: 700;
}

.btn-white:hover {
  background: #fff;
  color: var(--primary-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ---------- 13. PAGE HEADER / BREADCRUMB ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 67, 147, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  border-radius: 50%;
}

.page-hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb-item {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.page-hero .breadcrumb-item a:hover {
  color: #fff;
}

.page-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  content: '\F285';
  font-family: 'bootstrap-icons';
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

/* ---------- 14. BLOG CARDS ---------- */
.blog-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 67, 147, 0.12);
}

.blog-card .blog-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--bg-primary-soft), var(--bg-secondary-soft));
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--bg-primary-soft), var(--bg-secondary-soft));
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card .blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-category {
  display: inline-block;
  background: var(--bg-primary-soft);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date {
  font-size: 0.813rem;
  color: var(--text-lighter);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: var(--transition);
}

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

.blog-card-excerpt {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}

.blog-card-link:hover {
  gap: 10px;
  color: var(--primary-dark);
}

/* ---------- 15. FOOTER ---------- */
.site-footer {
  background: var(--dark-light);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: inline-block;
}

.site-footer .footer-description {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.938rem;
  line-height: 1.7;
  max-width: 340px;
}

.site-footer h6 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  transition: var(--transition);
  margin-right: 8px;
}

.footer-social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 60px;
  font-size: 0.813rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: #fff;
}

/* ---------- 16. WHATSAPP & MOBILE STICKY ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 1040;
  transition: var(--transition);
  cursor: pointer;
  animation: pulse-glow 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border-light);
  padding: 10px 12px 12px;
  z-index: 1040;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
  gap: 8px;
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.mobile-sticky-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.6) 0%, transparent 55%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translate3d(-30%, -30%, 0);
}

.mobile-sticky-btn:hover::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mobile-sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.mobile-sticky-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}

.mobile-sticky-label {
  white-space: nowrap;
}

.mobile-sticky-btn--call {
  background: linear-gradient(135deg, #ecfeff, #f9fafb);
}

.mobile-sticky-btn--call .mobile-sticky-icon {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
}

.mobile-sticky-btn--whatsapp {
  background: linear-gradient(135deg, #ecfdf3, #f0fdf4);
}

.mobile-sticky-btn--whatsapp .mobile-sticky-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.mobile-sticky-btn--cta {
  background: linear-gradient(135deg, #fdf2ff, #fffbeb);
}

.mobile-sticky-btn--cta .mobile-sticky-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.mobile-sticky-btn--cta .mobile-sticky-label {
  color: var(--dark);
}

/* Tek buton (Şimdi Arayın): tam genişlik */
.mobile-sticky-bar--single {
  justify-content: stretch;
  padding: 12px 16px 14px;
}

.mobile-sticky-bar--single .mobile-sticky-btn {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 12px 16px;
  font-size: 0.85rem;
  text-align: center;
}

.mobile-sticky-bar--single .mobile-sticky-label {
  white-space: normal;
  line-height: 1.25;
  max-width: 100%;
}

@media (max-width: 767px) {
  .mobile-sticky-bar {
    display: flex;
    flex-wrap: nowrap;
  }

  .whatsapp-float {
    display: none !important;
  }
}

/* ---------- 17. FLOATING / DECORATIVE ELEMENTS ---------- */
.float-emoji {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.grain-overlay {
  position: relative;
}

.grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}

.blob-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.blob-shape.blob-primary {
  background: rgba(232, 67, 147, 0.15);
}

.blob-shape.blob-secondary {
  background: rgba(168, 85, 247, 0.12);
}

.blob-shape.blob-accent {
  background: rgba(245, 158, 11, 0.1);
}

.glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(232,67,147,0.08), 0 2px 8px rgba(0,0,0,0.04);
  transition: var(--transition);
}

.glass-card:hover {
  box-shadow: 0 12px 40px rgba(232,67,147,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

.glass-card-dark {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ---------- 18. ANIMATIONS (KEYFRAMES) ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes float-delayed {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.05);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

body.js-ready .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 19. REFERENCE / LOGO BAND ---------- */
.reference-band {
  padding: 48px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.reference-band .reference-title {
  text-align: center;
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-lighter);
  font-weight: 600;
  margin-bottom: 32px;
}

.reference-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.reference-logo {
  filter: grayscale(100%);
  opacity: 0.45;
  transition: var(--transition);
  max-height: 36px;
}

.reference-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* ---------- 20. RESPONSIVE ---------- */

/* Large desktop down */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3.25rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .page-hero-title {
    font-size: 2.5rem;
  }
}

/* Tablet */
@media (max-width: 991px) {
  section {
    padding: 72px 0;
  }

  .hero-gradient {
    padding: 140px 0 60px;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-visual {
    min-height: 300px;
    margin-top: 48px;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-gradient {
    padding: 48px 32px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero-title {
    font-size: 2.25rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  section {
    padding: 56px 0;
  }

  .hero-gradient {
    padding: 120px 0 50px;
  }

  .hero-section {
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    min-height: 250px;
    margin-top: 40px;
  }

  .hero-card-preview {
    padding: 24px;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-visual-col {
    margin-top: 32px;
  }

  .hero-visual-col .hero-dashboard {
    min-height: 260px;
    transform: scale(0.75);
    transform-origin: center center;
    margin: -40px auto;
    max-width: 340px;
  }

  .hero-visual-col .hero-mock-main {
    width: 200px;
    right: 2%;
  }

  .hero-visual-col .hero-mock-stats {
    left: 2%;
    padding: 14px;
    width: auto;
    min-width: 160px;
  }

  .hero-visual-col .mock-stat-row {
    gap: 8px;
    margin-bottom: 6px;
  }

  .hero-visual-col .mock-stat-value {
    font-size: 0.85rem;
  }

  .hero-visual-col .hero-mock-notification {
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    width: 90%;
    max-width: 280px;
    font-size: 0.7rem;
    padding: 8px 12px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.375rem; }

  .service-card {
    padding: 28px 22px;
  }

  .stats-section {
    padding: 56px 0;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .stat-item {
    padding: 16px 12px;
  }

  .cta-gradient {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .form-card {
    padding: 28px 20px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .page-hero {
    padding: 120px 0 48px;
  }

  .page-hero-title {
    font-size: 1.75rem;
  }

  .site-footer {
    padding-top: 56px;
    text-align: center;
  }

  .site-footer .footer-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links a:hover {
    transform: none;
  }

  .footer-bottom {
    margin-top: 40px;
    text-align: center;
  }

  .blog-card-body {
    padding: 20px;
  }

  .faq-item .accordion-button {
    padding: 16px 20px;
    font-size: 0.938rem;
  }

  .faq-item .accordion-body {
    padding: 0 20px 16px;
    font-size: 0.875rem;
  }
}

/* Small mobile */
@media (max-width: 575px) {
  .hero-title {
    font-size: 1.625rem;
  }

  .hero-subtitle {
    font-size: 0.938rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .stat-item {
    padding: 12px 8px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-gradient {
    padding: 32px 20px;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-glass {
    display: none;
  }

  .page-hero-title {
    font-size: 1.5rem;
  }

  .form-card {
    padding: 24px 16px;
  }

  .feature-box {
    padding: 24px 16px;
  }
}

/* ---------- 21. UTILITY CLASSES ---------- */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.bg-gradient-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.border-gradient {
  border: 2px solid transparent;
  background-image: linear-gradient(var(--bg), var(--bg)), linear-gradient(135deg, var(--primary), var(--secondary));
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.hover-scale {
  transition: var(--transition);
}

.hover-scale:hover {
  transform: scale(1.02);
}

.opacity-transition {
  transition: opacity 0.3s ease;
}

.opacity-transition:hover {
  opacity: 0.85;
}

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }

.bg-soft { background-color: var(--bg-soft) !important; }
.bg-primary-soft { background-color: var(--bg-primary-soft) !important; }
.bg-secondary-soft { background-color: var(--bg-secondary-soft) !important; }
.bg-accent-soft { background-color: var(--bg-accent-soft) !important; }

/* ---------- 22. LANDING PAGE SPECIFIC ---------- */
.landing-hero {
  padding: 180px 0 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary-soft) 0%, var(--bg-secondary-soft) 40%, var(--bg) 100%);
}

.landing-hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 67, 147, 0.06) 0%, transparent 70%);
  top: -300px;
  right: -200px;
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.landing-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
  border-radius: 50%;
  animation: float-delayed 12s ease-in-out infinite;
}

.landing-hero .hero-title {
  font-size: 4rem;
}

.landing-form-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.landing-form-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.2), rgba(168, 85, 247, 0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.landing-trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.landing-trust-badges .trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.landing-trust-badges .trust-badge i {
  color: var(--success);
  font-size: 1rem;
}

.landing-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  padding: 14px 20px;
  z-index: 1040;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.landing-sticky-cta .btn {
  width: 100%;
}

@media (max-width: 767px) {
  .landing-sticky-cta {
    display: block;
  }

  .landing-hero {
    padding: 140px 0 80px;
    min-height: auto;
  }

  .landing-hero .hero-title {
    font-size: 2rem;
  }

  .landing-form-card {
    padding: 28px 20px;
    margin-top: 40px;
  }

  .landing-trust-badges {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .landing-hero .hero-title {
    font-size: 1.625rem;
  }
}

/* ---------- 23. SOCIAL MEDIA FLOATING PARTICLES ---------- */
#socialParticles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  overflow: hidden;
}

.social-particle {
  position: absolute;
  bottom: -50px;
  pointer-events: none;
  will-change: transform, opacity;
  animation: particleRise linear forwards;
  filter: drop-shadow(0 2px 6px rgba(232,67,147,0.2));
}

@keyframes particleRise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.4) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: translateY(-8vh) scale(1) rotate(5deg);
  }
  50% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh) scale(0.6) rotate(25deg);
  }
}

.social-particle.drift-left {
  animation-name: particleRiseDriftLeft;
}

@keyframes particleRiseDriftLeft {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.4) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: translateY(-8vh) translateX(-15px) scale(1) rotate(-5deg);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-50vh) translateX(-40px) scale(0.85) rotate(-12deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh) translateX(-70px) scale(0.5) rotate(-20deg);
  }
}

.social-particle.drift-right {
  animation-name: particleRiseDriftRight;
}

@keyframes particleRiseDriftRight {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.4) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: translateY(-8vh) translateX(15px) scale(1) rotate(5deg);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-50vh) translateX(40px) scale(0.85) rotate(12deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh) translateX(70px) scale(0.5) rotate(20deg);
  }
}

/* ---------- 24. HERO SOCIAL DASHBOARD MOCKUP ---------- */
.hero-dashboard {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mock-card {
  position: absolute;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 8px 32px rgba(232,67,147,0.10), 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.hero-mock-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.hero-mock-main {
  width: 280px;
  z-index: 4;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  overflow: hidden;
}

.hero-mock-main:hover {
  transform: translateY(calc(-50% - 6px)) scale(1.02);
}

.mock-post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.mock-username {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
}

.mock-verified {
  color: #3b82f6;
  font-size: 0.75rem;
}

.mock-post-image {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 50%, #e8eaf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.mock-post-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  background-size: 300% 300%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

.mock-post-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 8px;
}

.mock-action {
  font-size: 1.25rem;
  color: var(--dark);
  cursor: default;
  transition: transform 0.2s ease;
}

.mock-action.liked {
  color: #ef4444;
  animation: heartPop 0.4s ease;
}

@keyframes heartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.mock-likes {
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0 16px 12px;
  color: var(--dark);
}

.hero-mock-stats {
  width: 200px;
  z-index: 3;
  left: 5%;
  top: 15%;
  animation: float 6s ease-in-out infinite;
}

.hero-mock-notif {
  width: 220px;
  z-index: 5;
  left: 0;
  bottom: 10%;
  animation: float 5s ease-in-out infinite 1s;
  padding: 16px 20px;
}

.mock-stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.mock-stat-row:last-child {
  margin-bottom: 0;
}

.mock-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.mock-stat-label {
  font-size: 0.7rem;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mock-stat-value {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.2;
}

.mock-stat-change {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--success);
}

.mock-notif-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-notif-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.mock-notif-text {
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.4;
}

.mock-notif-text strong {
  font-weight: 700;
  color: var(--dark);
}

.mock-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ef4444;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: livePulse 2s ease-in-out infinite;
}

.mock-live-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
}

/* ---------- 25. PLATFORM SHOWCASE ---------- */
.platform-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  transition: height 0.4s ease;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.platform-card:hover::before {
  height: 5px;
}

.platform-card.pc-instagram::before { background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-card.pc-facebook::before { background: #1877f2; }
.platform-card.pc-tiktok::before { background: linear-gradient(90deg, #00f2ea, #ff0050); }
.platform-card.pc-youtube::before { background: #ff0000; }
.platform-card.pc-twitter::before { background: #000; }
.platform-card.pc-linkedin::before { background: #0a66c2; }

.platform-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 16px;
  color: #fff;
  transition: transform 0.3s ease;
}

.platform-card:hover .platform-icon {
  transform: scale(1.15) rotate(-3deg);
}

.pi-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.pi-facebook { background: #1877f2; }
.pi-tiktok { background: #000; }
.pi-youtube { background: #ff0000; }
.pi-twitter { background: #000; }
.pi-linkedin { background: #0a66c2; }

.platform-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.platform-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ---------- SCROLLBAR CUSTOM ---------- */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

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

/* ---------- LOADING / SKELETON ---------- */
.skeleton {
  background: linear-gradient(90deg, var(--border-light) 25%, var(--bg-soft) 50%, var(--border-light) 75%);
  background-size: 200% 100%;
  animation: gradient-shift 1.5s ease infinite;
  border-radius: var(--radius-sm);
}

/* ---------- PRINT STYLES ---------- */
@media print {
  .site-header,
  .whatsapp-float,
  .mobile-sticky-bar,
  .landing-sticky-cta {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  section {
    padding: 24px 0;
  }
}
