/* ============================================
   OĞUZ DİJİTAL - TEMİZ CSS YAPISI
   ============================================ */

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

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --brand-50: #eef4ff;
  --brand-100: #dbe7ff;
  --brand-500: #3059ff;
  --brand-600: #1f45e0;
  --brand-700: #1636b2;
  --accent-500: #f7b500;
  --slate-950: #060c1c;
  --slate-900: #0f172a;
  --slate-800: #16213c;
  --slate-700: #1f2937;
  --slate-600: #475569;
  --slate-500: #6b7280;
  --slate-400: #9ca3af;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --page-bg: #f6f7fb;
  --content-max: 1120px;
  --transition: all 0.25s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  height: 100%;
}

body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--page-bg);
  background-image: 
    linear-gradient(135deg, rgba(48, 89, 255, 0.05) 0%, transparent 50%),
    linear-gradient(225deg, rgba(124, 156, 255, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

a:hover {
  color: var(--brand-600);
}

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

ul, ol {
  list-style: none;
}

/* ============================================
   LAYOUT
   ============================================ */
html {
  scroll-behavior: smooth;
}

.container {
  width: min(var(--content-max), 100% - 3rem);
  margin-inline: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.page-content {
  min-height: calc(100vh - 200px);
  position: relative;
}

/* Ensure body and html don't interfere with sticky */
html {
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

/* ============================================
   HEADER & NAVBAR
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.site-header.is-stuck {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.15);
  border-bottom-color: rgba(15, 23, 42, 0.15);
}

.site-header > .container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
  position: relative;
  background: transparent;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-900);
  position: relative;
  z-index: 1;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

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

.nav-link {
  padding: 0.6rem 1rem;
  color: var(--slate-700);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.nav-link:hover {
  color: var(--brand-600);
  background: rgba(48, 89, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-link.btn-primary {
  background: var(--brand-500);
  color: white;
  padding: 0.6rem 1.5rem;
}

.nav-link.btn-primary:hover {
  background: var(--brand-600);
  color: white;
}

.navbar-toggler {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-toggler span {
  width: 24px;
  height: 2px;
  background: var(--slate-700);
  transition: var(--transition);
  display: block;
}

.navbar-toggler.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 2rem;
  min-width: 900px;
  max-width: 1000px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.dropdown-column h6 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(48, 89, 255, 0.1);
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
}

.dropdown-column h6 i {
  color: var(--brand-500);
}

.dropdown-column a {
  padding: 0.6rem 1rem;
  color: var(--slate-600);
  border-radius: 6px;
  font-size: 0.9rem;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-column a:hover {
  color: var(--brand-600);
  background: rgba(48, 89, 255, 0.06);
  border-left-color: var(--brand-500);
  transform: translateX(4px);
}

.dropdown-cta {
  border-left: 1px solid rgba(15, 23, 42, 0.1);
  padding-left: 1.5rem;
}

.featured-service {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: white;
}

.featured-service h6 {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
}

.featured-service p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.featured-service .btn {
  background: white;
  color: #667eea;
}

/* ============================================
   HERO SECTION - MODERN DESIGN
   ============================================ */
.hero--slider {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(135deg, #0a1628 0%, #1a2742 50%, #0f1b2e 100%);
  color: #fff;
  overflow: hidden;
}

.hero--slider > .container {
  width: 100%;
  max-width: 1400px;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
  margin-inline: auto;
}

.hero--slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(48, 89, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(124, 156, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-slider {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-slider__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 0.85rem 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 150px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Web Tab (0) - Mavi */
.hero-tab[data-hero-tab="0"]:hover {
  border-color: rgba(124, 156, 255, 0.3);
  background: rgba(48, 89, 255, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(48, 89, 255, 0.18);
}

.hero-tab[data-hero-tab="0"].is-active {
  border-color: rgba(124, 156, 255, 0.4);
  background: linear-gradient(135deg, rgba(48, 89, 255, 0.22), rgba(124, 156, 255, 0.15));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  color: #fff;
  box-shadow: 0 10px 32px rgba(48, 89, 255, 0.25);
  transform: translateY(-1px);
}

/* Social Tab (1) - Pembe/Turuncu */
.hero-tab[data-hero-tab="1"]:hover {
  border-color: rgba(251, 146, 60, 0.3);
  background: rgba(236, 72, 153, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(236, 72, 153, 0.18);
}

.hero-tab[data-hero-tab="1"].is-active {
  border-color: rgba(251, 146, 60, 0.4);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.22), rgba(251, 146, 60, 0.15));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  color: #fff;
  box-shadow: 0 10px 32px rgba(236, 72, 153, 0.25);
  transform: translateY(-1px);
}

/* CRM Tab (2) - Yeşil/Mavi */
.hero-tab[data-hero-tab="2"]:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(34, 197, 94, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.18);
}

.hero-tab[data-hero-tab="2"].is-active {
  border-color: rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.22), rgba(59, 130, 246, 0.15));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  color: #fff;
  box-shadow: 0 10px 32px rgba(34, 197, 94, 0.25);
  transform: translateY(-1px);
}

/* Suite Tab (3) - Sarı/Mor */
.hero-tab[data-hero-tab="3"]:hover {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(251, 191, 36, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(251, 191, 36, 0.18);
}

.hero-tab[data-hero-tab="3"].is-active {
  border-color: rgba(168, 85, 247, 0.4);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.22), rgba(168, 85, 247, 0.15));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  color: #fff;
  box-shadow: 0 10px 32px rgba(251, 191, 36, 0.25);
  transform: translateY(-1px);
}

.hero-tab__title {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-tab__label {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
}

.hero-tab.is-active .hero-tab__label {
  color: rgba(255, 255, 255, 0.9);
}

.hero-slider__viewport {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: stretch;
}

.hero-slide {
  display: none;
  animation: fadeIn 0.6s ease-in-out;
  width: 100%;
  min-height: 500px;
}

.hero-slide.is-active {
  display: flex;
  flex-direction: column;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.3;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease;
}

.hero-slide--web .hero-slide__background {
  background: linear-gradient(135deg, rgba(48, 89, 255, 0.3), rgba(124, 156, 255, 0.2), rgba(48, 89, 255, 0.1));
}

.hero-slide--seo .hero-slide__background {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(16, 185, 129, 0.2), rgba(34, 197, 94, 0.1));
}

.hero-slide--mobile .hero-slide__background {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
}

.hero-slide--support .hero-slide__background {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(251, 146, 60, 0.2), rgba(236, 72, 153, 0.1));
}

.hero-slide--social .hero-slide__background {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(251, 146, 60, 0.2), rgba(236, 72, 153, 0.1));
}

.hero-slide--crm .hero-slide__background {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(59, 130, 246, 0.2), rgba(34, 197, 94, 0.1));
}

.hero-slide--suite .hero-slide__background {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(168, 85, 247, 0.2), rgba(251, 191, 36, 0.1));
}

/* Content Marketing Slide - Mor/Yeşil Background (sadece Content Marketing sayfası için) */
.content-marketing-page .hero-slide--web .hero-slide__background {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(34, 197, 94, 0.2), rgba(139, 92, 246, 0.1));
}

.hero-slide__surface {
  position: relative;
  z-index: 1;
  padding: 2rem 2.5rem;
  border-radius: 28px;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Web Slide - Mavi Glass Effect (Default) */
.hero-slide--web .hero-slide__surface {
  background: linear-gradient(135deg, 
    rgba(48, 89, 255, 0.15) 0%, 
    rgba(124, 156, 255, 0.12) 50%,
    rgba(48, 89, 255, 0.08) 100%);
  border-color: rgba(124, 156, 255, 0.25);
  box-shadow: 0 12px 40px rgba(48, 89, 255, 0.18);
}

/* Content Marketing için özel override - Mor/Yeşil Glass Effect */
.content-marketing-page .hero-slide--web .hero-slide__surface {
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.15) 0%, 
    rgba(34, 197, 94, 0.12) 50%,
    rgba(139, 92, 246, 0.08) 100%);
  border-color: rgba(34, 197, 94, 0.25);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.18);
}

/* Web Slide Butonları */
.hero-slide--web .btn-primary {
  background: linear-gradient(135deg, rgba(48, 89, 255, 0.9), rgba(124, 156, 255, 0.8));
  box-shadow: 0 4px 16px rgba(48, 89, 255, 0.3);
}

/* Content Marketing için özel override - Mor/Yeşil Butonlar */
.content-marketing-page .hero-slide--web .btn-primary {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(34, 197, 94, 0.8));
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.hero-slide--web .btn-primary:hover {
  background: linear-gradient(135deg, rgba(48, 89, 255, 1), rgba(124, 156, 255, 0.9));
  box-shadow: 0 12px 32px rgba(48, 89, 255, 0.4);
}

/* Content Marketing için özel override - Mor/Yeşil Buton Hover */
.content-marketing-page .hero-slide--web .btn-primary:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(34, 197, 94, 0.9));
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

.hero-slide--web .btn-link {
  background: rgba(124, 156, 255, 0.15);
  border-color: rgba(124, 156, 255, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

/* Content Marketing için özel override - Mor/Yeşil Link Buton */
.content-marketing-page .hero-slide--web .btn-link {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.hero-slide--web .btn-link:hover {
  background: rgba(124, 156, 255, 0.25);
  border-color: rgba(124, 156, 255, 0.4);
}

/* Content Marketing için özel override - Mor/Yeşil Link Buton Hover */
.content-marketing-page .hero-slide--web .btn-link:hover {
  background: rgba(34, 197, 94, 0.25);
  border-color: rgba(34, 197, 94, 0.4);
}

/* SEO Slide - Yeşil Glass Effect */
.hero-slide--seo .hero-slide__surface {
  background: linear-gradient(135deg, 
    rgba(34, 197, 94, 0.15) 0%, 
    rgba(16, 185, 129, 0.12) 50%,
    rgba(34, 197, 94, 0.08) 100%);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.18);
}

/* SEO Slide Butonları */
.hero-slide--seo .btn-primary {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(16, 185, 129, 0.8));
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.hero-slide--seo .btn-primary:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 1), rgba(16, 185, 129, 0.9));
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
}

.hero-slide--seo .btn-link {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.hero-slide--seo .btn-link:hover {
  background: rgba(16, 185, 129, 0.25);
  border-color: rgba(16, 185, 129, 0.4);
}

/* Mobile Slide - Mor Glass Effect */
.hero-slide--mobile .hero-slide__surface {
  background: linear-gradient(135deg, 
    rgba(168, 85, 247, 0.15) 0%, 
    rgba(139, 92, 246, 0.12) 50%,
    rgba(168, 85, 247, 0.08) 100%);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.18);
}

/* Mobile Slide Butonları */
.hero-slide--mobile .btn-primary {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.9), rgba(139, 92, 246, 0.8));
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3);
}

.hero-slide--mobile .btn-primary:hover {
  background: linear-gradient(135deg, rgba(168, 85, 247, 1), rgba(139, 92, 246, 0.9));
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.4);
}

.hero-slide--mobile .btn-link {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.hero-slide--mobile .btn-link:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.4);
}

/* Support Slide - Pembe/Turuncu Glass Effect */
.hero-slide--support .hero-slide__surface {
  background: linear-gradient(135deg, 
    rgba(236, 72, 153, 0.15) 0%, 
    rgba(251, 146, 60, 0.12) 50%,
    rgba(236, 72, 153, 0.08) 100%);
  border-color: rgba(251, 146, 60, 0.25);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.18);
}

/* Support Slide Butonları */
.hero-slide--support .btn-primary {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.9), rgba(251, 146, 60, 0.8));
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
}

.hero-slide--support .btn-primary:hover {
  background: linear-gradient(135deg, rgba(236, 72, 153, 1), rgba(251, 146, 60, 0.9));
  box-shadow: 0 12px 32px rgba(236, 72, 153, 0.4);
}

.hero-slide--support .btn-link {
  background: rgba(251, 146, 60, 0.15);
  border-color: rgba(251, 146, 60, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.hero-slide--support .btn-link:hover {
  background: rgba(251, 146, 60, 0.25);
  border-color: rgba(251, 146, 60, 0.4);
}

/* Social Slide - Pembe/Turuncu Glass Effect */
.hero-slide--social .hero-slide__surface {
  background: linear-gradient(135deg, 
    rgba(236, 72, 153, 0.15) 0%, 
    rgba(251, 146, 60, 0.12) 50%,
    rgba(236, 72, 153, 0.08) 100%);
  border-color: rgba(251, 146, 60, 0.25);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.18);
}

/* Social Slide Butonları */
.hero-slide--social .btn-primary {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.9), rgba(251, 146, 60, 0.8));
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
}

.hero-slide--social .btn-primary:hover {
  background: linear-gradient(135deg, rgba(236, 72, 153, 1), rgba(251, 146, 60, 0.9));
  box-shadow: 0 12px 32px rgba(236, 72, 153, 0.4);
}

.hero-slide--social .btn-link {
  background: rgba(251, 146, 60, 0.15);
  border-color: rgba(251, 146, 60, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.hero-slide--social .btn-link:hover {
  background: rgba(251, 146, 60, 0.25);
  border-color: rgba(251, 146, 60, 0.4);
}

/* CRM Slide - Yeşil/Mavi Glass Effect */
.hero-slide--crm .hero-slide__surface {
  background: linear-gradient(135deg, 
    rgba(34, 197, 94, 0.15) 0%, 
    rgba(59, 130, 246, 0.12) 50%,
    rgba(34, 197, 94, 0.08) 100%);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.18);
}

/* CRM Slide Butonları */
.hero-slide--crm .btn-primary {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(59, 130, 246, 0.8));
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.hero-slide--crm .btn-primary:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 1), rgba(59, 130, 246, 0.9));
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
}

.hero-slide--crm .btn-link {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.hero-slide--crm .btn-link:hover {
  background: rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.4);
}

/* Suite Slide - Sarı/Mor Glass Effect */
.hero-slide--suite .hero-slide__surface {
  background: linear-gradient(135deg, 
    rgba(251, 191, 36, 0.15) 0%, 
    rgba(168, 85, 247, 0.12) 50%,
    rgba(251, 191, 36, 0.08) 100%);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.18);
}

/* Suite Slide Butonları */
.hero-slide--suite .btn-primary {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.9), rgba(168, 85, 247, 0.8));
  box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.hero-slide--suite .btn-primary:hover {
  background: linear-gradient(135deg, rgba(251, 191, 36, 1), rgba(168, 85, 247, 0.9));
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.4);
}

.hero-slide--suite .btn-link {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.3);
  color: rgba(255, 255, 255, 0.95);
}

.hero-slide--suite .btn-link:hover {
  background: rgba(168, 85, 247, 0.25);
  border-color: rgba(168, 85, 247, 0.4);
}

.hero-slide__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  flex: 1;
}

.hero-slide__copy {
  display: grid;
  gap: 1.5rem;
}

.hero-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-slide__title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #e8f0ff 50%, #d0e0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.015em;
}

.hero-slide__lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 60ch;
  font-weight: 400;
}

.hero-slide__list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-slide__list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0;
}

.hero-slide__list li i {
  color: var(--brand-400, rgba(185, 200, 255, 0.95));
  width: 24px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Slide-specific icon colors */
.hero-slide--web .hero-slide__list li i {
  color: rgba(185, 200, 255, 0.95);
}

/* Content Marketing için özel override - Mor/Yeşil İkonlar */
.content-marketing-page .hero-slide--web .hero-slide__list li i {
  color: rgba(196, 181, 253, 0.95);
}

.hero-slide--seo .hero-slide__list li i {
  color: rgba(134, 239, 172, 0.95);
}

.hero-slide--mobile .hero-slide__list li i {
  color: rgba(196, 181, 253, 0.95);
}

.hero-slide--support .hero-slide__list li i {
  color: rgba(253, 186, 116, 0.95);
}

.hero-slide__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  margin-top: 0.5rem;
}

.hero-slide__visual {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

/* Visual components için glass effect */
.hero-slide--web .visual-terminal {
  background: rgba(48, 89, 255, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-color: rgba(124, 156, 255, 0.25);
}

/* Content Marketing için özel override - Visual Components */
.content-marketing-page .hero-slide--web .visual-content,
.content-marketing-page .hero-slide--web .visual-video,
.content-marketing-page .hero-slide--web .visual-design,
.content-marketing-page .hero-slide--web .visual-strategy {
  background: rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-color: rgba(34, 197, 94, 0.25);
}

.hero-slide--seo .visual-seo {
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-color: rgba(16, 185, 129, 0.25);
}

.hero-slide--mobile .visual-mobile {
  background: rgba(168, 85, 247, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-color: rgba(139, 92, 246, 0.25);
}

.hero-slide--support .visual-support {
  background: rgba(236, 72, 153, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-color: rgba(251, 146, 60, 0.25);
}

.hero-slide--social .visual-social__card {
  background: rgba(236, 72, 153, 0.12);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-color: rgba(251, 146, 60, 0.25);
}

.hero-slide--crm .visual-crm {
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-color: rgba(59, 130, 246, 0.25);
}

.hero-slide--suite .visual-suite {
  background: rgba(251, 191, 36, 0.12);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-color: rgba(168, 85, 247, 0.25);
}

.hero-slide__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}

.hero-metric {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.15rem 1.4rem;
  min-width: 130px;
  display: grid;
  gap: 0.35rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-metric:hover {
  transform: translateY(-4px) scale(1.01);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 32px rgba(48, 89, 255, 0.2);
}

/* Slide-specific metric hover colors */
.hero-slide--web .hero-metric:hover {
  box-shadow: 0 10px 32px rgba(48, 89, 255, 0.2);
}

.hero-slide--seo .hero-metric:hover {
  box-shadow: 0 10px 32px rgba(34, 197, 94, 0.2);
}

.hero-slide--mobile .hero-metric:hover {
  box-shadow: 0 10px 32px rgba(168, 85, 247, 0.2);
}

.hero-slide--support .hero-metric:hover {
  box-shadow: 0 10px 32px rgba(236, 72, 153, 0.2);
}

/* Content Marketing için özel override - Hero Metrics */
.content-marketing-page .hero-slide--web .hero-metric:hover {
  box-shadow: 0 10px 32px rgba(139, 92, 246, 0.2);
}

.hero-metric__value {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.hero-metric__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Visual Components - Modern Design with Glass Effect */
.visual-terminal {
  border-radius: 28px;
  background: rgba(10, 22, 46, 0.35);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 2rem;
  font-family: 'Courier New', 'Monaco', monospace;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

.visual-terminal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 156, 255, 0.5), transparent);
}

.visual-terminal__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-terminal__header span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.visual-terminal__header span:nth-child(1) {
  background: #ff5f57;
}

.visual-terminal__header span:nth-child(2) {
  background: #ffbd2e;
}

.visual-terminal__header span:nth-child(3) {
  background: #28ca42;
}

.visual-terminal__header div {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.visual-terminal__body {
  display: grid;
  gap: 0.75rem;
}

.terminal-line {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  line-height: 1.6;
  padding: 0.5rem 0;
  transition: all 0.2s ease;
}

.terminal-line:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 0.5rem;
  border-radius: 4px;
}

.terminal-line--highlight {
  color: #fff;
  font-weight: 600;
  background: rgba(48, 89, 255, 0.15);
  padding: 0.75rem;
  border-radius: 8px;
  border-left: 3px solid var(--brand-500);
}

/* Slide-specific terminal highlight colors */
.hero-slide--web .terminal-line--highlight {
  background: rgba(48, 89, 255, 0.15);
  border-left-color: rgba(124, 156, 255, 1);
}

.hero-slide--seo .terminal-line--highlight {
  background: rgba(34, 197, 94, 0.15);
  border-left-color: rgba(16, 185, 129, 1);
}

.hero-slide--mobile .terminal-line--highlight {
  background: rgba(168, 85, 247, 0.15);
  border-left-color: rgba(139, 92, 246, 1);
}

.hero-slide--support .terminal-line--highlight {
  background: rgba(236, 72, 153, 0.15);
  border-left-color: rgba(251, 146, 60, 1);
}

.prompt {
  color: rgba(124, 156, 255, 1);
  font-weight: 600;
  min-width: 60px;
  flex-shrink: 0;
}

/* Slide-specific prompt colors */
.hero-slide--web .prompt {
  color: rgba(124, 156, 255, 1);
}

.hero-slide--seo .prompt {
  color: rgba(16, 185, 129, 1);
}

.hero-slide--mobile .prompt {
  color: rgba(139, 92, 246, 1);
}

.hero-slide--support .prompt {
  color: rgba(251, 146, 60, 1);
}

/* Visual SEO Styles */
.visual-seo {
  border-radius: 28px;
  padding: 2rem;
  position: relative;
}

.hero-slide--seo .visual-seo {
  background: rgba(34, 197, 94, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15);
}

.visual-seo__chart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.seo-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.seo-metric__value {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.seo-metric__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* Visual Mobile Styles */
.visual-mobile {
  border-radius: 28px;
  padding: 2rem;
  position: relative;
}

.hero-slide--mobile .visual-mobile {
  background: rgba(168, 85, 247, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(139, 92, 246, 0.25);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
}

.visual-mobile__devices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.device {
  position: relative;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.device--phone {
  width: 80px;
  height: 140px;
}

.device--tablet {
  width: 120px;
  height: 160px;
}

.device--desktop {
  width: 180px;
  height: 120px;
}

.device__screen {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.device-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

/* Visual Support Styles */
.visual-support {
  border-radius: 28px;
  padding: 2rem;
  position: relative;
}

.hero-slide--support .visual-support {
  background: rgba(236, 72, 153, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(251, 146, 60, 0.25);
  box-shadow: 0 12px 40px rgba(236, 72, 153, 0.15);
}

.visual-support__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.support-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.support-stat i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.support-stat__value {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.support-stat__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

/* Section container için tutarlı yapı */
.section > .container {
  position: relative;
  z-index: 1;
  text-align: left;
  width: 100%;
  max-width: 1400px;
  padding-left: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
  margin-inline: auto;
}

/* Center alignment için özel class */
.section--center > .container,
.section__intro,
.process__intro,
.portfolio-showcase__header {
  text-align: center;
}

/* Section içeriği için smooth scroll animasyonu - sadece direkt child'lar için */
.section > .container > .section-eyebrow,
.section > .container > .section-title,
.section > .container > .section-lead {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.section > .container > .section-eyebrow { animation-delay: 0.1s; }
.section > .container > .section-title { animation-delay: 0.2s; }
.section > .container > .section-lead { animation-delay: 0.3s; }

/* Section header için özel stil - animation zaten yukarıda tanımlı */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  background: rgba(48, 89, 255, 0.08);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(48, 89, 255, 0.15);
  color: rgba(48, 89, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 12px rgba(48, 89, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-eyebrow:hover {
  background: rgba(48, 89, 255, 0.12);
  border-color: rgba(48, 89, 255, 0.25);
  box-shadow: 0 6px 20px rgba(48, 89, 255, 0.12);
  transform: translateY(-1px);
}

.section-eyebrow i {
  font-size: 0.95rem;
  opacity: 0.9;
  color: inherit;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-700) 50%, var(--slate-900) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, rgba(48, 89, 255, 0.9), rgba(124, 156, 255, 0.7));
  border-radius: 4px;
  opacity: 0.7;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title:hover::after {
  width: 80px;
  opacity: 1;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--slate-600);
  line-height: 1.75;
  max-width: 72ch;
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  opacity: 0.9;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

/* Center aligned lead text */
.section > .container[style*="text-align: center"] .section-lead,
.process__intro .section-lead,
.portfolio-showcase__header .section-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Service Hero (for service pages) */
.service-hero {
  padding-top: clamp(6rem, 12vw, 8rem);
  padding-bottom: clamp(3rem, 6vw, 4rem);
  background: linear-gradient(135deg, rgba(48, 89, 255, 0.05), rgba(246, 247, 251, 1));
}

.service-hero__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.service-hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.service-hero__lead {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.section .hero-slide__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2.5rem 0;
}

.section .hero-metric {
  display: grid;
  gap: 0.4rem;
  text-align: center;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
  min-width: 120px;
}

.section .hero-metric__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-600);
}

.section .hero-metric__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--slate-600);
  letter-spacing: 0.05em;
}

.section .hero-slide__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
  color: white;
  box-shadow: 0 4px 16px rgba(48, 89, 255, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(48, 89, 255, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(48, 89, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--brand-600);
  border: 2px solid var(--brand-500);
  box-shadow: 0 2px 8px rgba(48, 89, 255, 0.1);
}

.btn-outline:hover {
  background: var(--brand-500);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(48, 89, 255, 0.25);
}

.btn-link {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.85rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
}

.btn-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn-lg {
  padding: 1.15rem 2.25rem;
  font-size: 1.1rem;
  border-radius: 16px;
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 10px;
}

/* ============================================
   CARDS
   ============================================ */
.feature-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(48, 89, 255, 0.25);
  box-shadow: 0 16px 48px rgba(48, 89, 255, 0.18);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  height: 46px;
  width: 46px;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand-600);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--slate-900);
  margin: 0;
}

.feature-card p {
  color: var(--slate-600);
  margin: 0;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  padding: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Web Card - Mavi */
.service-card--web::before {
  background: linear-gradient(90deg, rgba(48, 89, 255, 1), rgba(124, 156, 255, 1));
}

.service-card--web:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(48, 89, 255, 0.12), rgba(124, 156, 255, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(124, 156, 255, 0.3);
  box-shadow: 0 16px 48px rgba(48, 89, 255, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

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

/* Commerce Card - Yeşil/Mavi (CRM renkleri) */
.service-card--commerce::before {
  background: linear-gradient(90deg, rgba(34, 197, 94, 1), rgba(59, 130, 246, 1));
}

.service-card--commerce:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(59, 130, 246, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 16px 48px rgba(34, 197, 94, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

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

/* SEO Card - Sarı/Mor (Suite renkleri) */
.service-card--seo::before {
  background: linear-gradient(90deg, rgba(251, 191, 36, 1), rgba(168, 85, 247, 1));
}

.service-card--seo:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(168, 85, 247, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 16px 48px rgba(251, 191, 36, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

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

/* Ads Card - Pembe/Turuncu (Social renkleri) */
.service-card--ads::before {
  background: linear-gradient(90deg, rgba(236, 72, 153, 1), rgba(251, 146, 60, 1));
}

.service-card--ads:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(251, 146, 60, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(251, 146, 60, 0.3);
  box-shadow: 0 16px 48px rgba(236, 72, 153, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

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

/* Mobile Card - Mavi (Web renkleri) */
.service-card--mobile::before {
  background: linear-gradient(90deg, rgba(48, 89, 255, 1), rgba(124, 156, 255, 1));
}

.service-card--mobile:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(48, 89, 255, 0.12), rgba(124, 156, 255, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(124, 156, 255, 0.3);
  box-shadow: 0 16px 48px rgba(48, 89, 255, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

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

/* Social Card - Pembe/Turuncu */
.service-card--social::before {
  background: linear-gradient(90deg, rgba(236, 72, 153, 1), rgba(251, 146, 60, 1));
}

.service-card--social:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(251, 146, 60, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(251, 146, 60, 0.3);
  box-shadow: 0 16px 48px rgba(236, 72, 153, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

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

/* Content Marketing Card - Mor/Yeşil */
.service-card--content::before {
  background: linear-gradient(90deg, rgba(139, 92, 246, 1), rgba(34, 197, 94, 1));
}

.service-card--content:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(34, 197, 94, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

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

/* Default hover for cards without specific class */
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(48, 89, 255, 0.25);
  box-shadow: 0 16px 48px rgba(48, 89, 255, 0.15), 0 4px 16px rgba(15, 23, 42, 0.1);
}

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

.service-card__tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  background: rgba(48, 89, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--brand-600);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  width: fit-content;
  border: 1px solid rgba(48, 89, 255, 0.15);
  letter-spacing: 0.5px;
}

/* Tag renkleri - Her kart için uygun renk */
.service-card--web .service-card__tag {
  background: rgba(48, 89, 255, 0.12);
  border-color: rgba(124, 156, 255, 0.25);
  color: rgba(48, 89, 255, 0.9);
}

.service-card--commerce .service-card__tag {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
  color: rgba(34, 197, 94, 0.9);
}

.service-card--seo .service-card__tag {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
  color: rgba(168, 85, 247, 0.9);
}

.service-card--ads .service-card__tag {
  background: rgba(236, 72, 153, 0.12);
  border-color: rgba(251, 146, 60, 0.25);
  color: rgba(236, 72, 153, 0.9);
}

.service-card--mobile .service-card__tag {
  background: rgba(48, 89, 255, 0.12);
  border-color: rgba(124, 156, 255, 0.25);
  color: rgba(48, 89, 255, 0.9);
}

.service-card--social .service-card__tag {
  background: rgba(236, 72, 153, 0.12);
  border-color: rgba(251, 146, 60, 0.25);
  color: rgba(236, 72, 153, 0.9);
}

.service-card--content .service-card__tag {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
  color: rgba(139, 92, 246, 0.9);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(48, 89, 255, 1), rgba(124, 156, 255, 1)) !important;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  color: white !important;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(48, 89, 255, 0.3);
  flex-shrink: 0;
  position: relative;
  border: none !important;
}

.service-card__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(48, 89, 255, 1), rgba(124, 156, 255, 1));
  z-index: 0;
  opacity: 1;
}

.service-card__icon i,
.service-card__icon .fas,
.service-card__icon .fa {
  color: #ffffff !important;
  fill: #ffffff !important;
  z-index: 1;
  position: relative;
  display: block;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--slate-900);
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.service-card p {
  color: var(--slate-600);
  margin: 0;
  line-height: 1.6;
}

.service-card__list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--slate-600);
  font-size: 0.95rem;
}

.service-card__list li i {
  color: var(--brand-500);
  width: 18px;
}

/* Icon renkleri - Her kart için uygun renk */
.service-card--web .service-card__list li i {
  color: rgba(48, 89, 255, 0.8);
}

.service-card--commerce .service-card__list li i {
  color: rgba(34, 197, 94, 0.8);
}

.service-card--seo .service-card__list li i {
  color: rgba(168, 85, 247, 0.8);
}

.service-card--ads .service-card__list li i {
  color: rgba(236, 72, 153, 0.8);
}

.service-card--mobile .service-card__list li i {
  color: rgba(48, 89, 255, 0.8);
}

.service-card--social .service-card__list li i {
  color: rgba(236, 72, 153, 0.8);
}

.service-card--content .service-card__list li i {
  color: rgba(139, 92, 246, 0.8);
}

.service-card__link {
  color: var(--brand-600);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
}

.service-card__link::after {
  content: '→';
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card__link:hover {
  color: var(--brand-700);
  gap: 0.75rem;
}

.service-card__link:hover::after {
  transform: translateX(4px);
}

/* Link renkleri - Her kart için uygun renk */
.service-card--web .service-card__link {
  color: rgba(48, 89, 255, 0.9);
}

.service-card--web .service-card__link:hover {
  color: rgba(48, 89, 255, 1);
}

.service-card--commerce .service-card__link {
  color: rgba(34, 197, 94, 0.9);
}

.service-card--commerce .service-card__link:hover {
  color: rgba(34, 197, 94, 1);
}

.service-card--seo .service-card__link {
  color: rgba(168, 85, 247, 0.9);
}

.service-card--seo .service-card__link:hover {
  color: rgba(168, 85, 247, 1);
}

.service-card--ads .service-card__link {
  color: rgba(236, 72, 153, 0.9);
}

.service-card--ads .service-card__link:hover {
  color: rgba(236, 72, 153, 1);
}

.service-card--mobile .service-card__link {
  color: rgba(48, 89, 255, 0.9);
}

.service-card--mobile .service-card__link:hover {
  color: rgba(48, 89, 255, 1);
}

.service-card--social .service-card__link {
  color: rgba(236, 72, 153, 0.9);
}

.service-card--social .service-card__link:hover {
  color: rgba(236, 72, 153, 1);
}

.service-card--content .service-card__link {
  color: rgba(139, 92, 246, 0.9);
}

.service-card--content .service-card__link:hover {
  color: rgba(139, 92, 246, 1);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.testimonial-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(15, 23, 42, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Testimonial kartları için renk varyasyonları */
.testimonial-card:nth-child(1)::before,
.testimonial-card:nth-child(4)::before {
  background: linear-gradient(90deg, rgba(48, 89, 255, 1), rgba(124, 156, 255, 1));
}

.testimonial-card:nth-child(1):hover,
.testimonial-card:nth-child(4):hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(48, 89, 255, 0.12), rgba(124, 156, 255, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(124, 156, 255, 0.3);
  box-shadow: 0 16px 48px rgba(48, 89, 255, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

.testimonial-card:nth-child(2)::before,
.testimonial-card:nth-child(5)::before {
  background: linear-gradient(90deg, rgba(236, 72, 153, 1), rgba(251, 146, 60, 1));
}

.testimonial-card:nth-child(2):hover,
.testimonial-card:nth-child(5):hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(251, 146, 60, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(251, 146, 60, 0.3);
  box-shadow: 0 16px 48px rgba(236, 72, 153, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

.testimonial-card:nth-child(3)::before,
.testimonial-card:nth-child(6)::before {
  background: linear-gradient(90deg, rgba(34, 197, 94, 1), rgba(59, 130, 246, 1));
}

.testimonial-card:nth-child(3):hover,
.testimonial-card:nth-child(6):hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(59, 130, 246, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 16px 48px rgba(34, 197, 94, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

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

.testimonial-card img {
  height: 36px;
  margin-inline: auto;
  object-fit: contain;
}

.testimonial-quote {
  font-style: italic;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.testimonial-author {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--slate-600);
  text-align: center;
}

.testimonial-author strong {
  color: var(--slate-900);
  font-weight: 600;
}

.testimonial-deck {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.plan-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 2rem;
  display: grid;
  gap: 1.4rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.plan-badge {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-600);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  width: fit-content;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0;
}

.plan-price {
  display: grid;
  gap: 0.25rem;
  margin: 0.5rem 0;
}

.plan-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-600);
}

.plan-period {
  font-size: 0.85rem;
  color: var(--slate-500);
}

.plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.plan-list li {
  font-size: 0.95rem;
  color: var(--slate-600);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.plan-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--brand-600);
  margin-top: 0.25rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(59, 130, 246, 0.03) 50%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  position: relative;
  border-radius: 0;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  margin: 0 1rem;
  border: 1px solid rgba(34, 197, 94, 0.08);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 800px 600px at 30% 50%, rgba(34, 197, 94, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse 600px 800px at 70% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Process Section - Yeşil/Mavi renk paleti */
.process .section-eyebrow {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
  color: rgba(34, 197, 94, 0.95);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.process .section-eyebrow i {
  color: rgba(34, 197, 94, 0.95) !important;
}

.process .section-eyebrow:hover {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.15);
}

.process .section-title::after {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.9), rgba(59, 130, 246, 0.7));
}

/* Section Process - Process steps için özel stil */
.section-process {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.03) 0%, rgba(168, 85, 247, 0.02) 50%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  position: relative;
  overflow: hidden;
}

.section-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 800px 600px at 20% 50%, rgba(251, 191, 36, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse 600px 800px at 80% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-process .section-eyebrow {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
  color: rgba(168, 85, 247, 0.95);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.1);
}

.section-process .section-eyebrow:hover {
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.15);
}

.section-process .section-title::after {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.9), rgba(168, 85, 247, 0.7));
}

.process__wrapper {
  display: grid;
  gap: 3rem;
}

.process__intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.process__intro .section-eyebrow {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
}

.process__intro .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.process__flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  padding: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.process-step:has(.process-step__number) {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Process step renkleri - Sırayla farklı renkler */
.process-step:nth-child(1)::before {
  background: linear-gradient(90deg, rgba(48, 89, 255, 1), rgba(124, 156, 255, 1));
}

.process-step:nth-child(1):hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(48, 89, 255, 0.12), rgba(124, 156, 255, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(124, 156, 255, 0.3);
  box-shadow: 0 16px 48px rgba(48, 89, 255, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

.process-step:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(236, 72, 153, 1), rgba(251, 146, 60, 1));
}

.process-step:nth-child(2):hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(251, 146, 60, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(251, 146, 60, 0.3);
  box-shadow: 0 16px 48px rgba(236, 72, 153, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

.process-step:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(34, 197, 94, 1), rgba(59, 130, 246, 1));
}

.process-step:nth-child(3):hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(59, 130, 246, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 16px 48px rgba(34, 197, 94, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

.process-step:nth-child(4)::before {
  background: linear-gradient(90deg, rgba(251, 191, 36, 1), rgba(168, 85, 247, 1));
}

.process-step:nth-child(4):hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(168, 85, 247, 0.08));
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 16px 48px rgba(251, 191, 36, 0.2), 0 4px 16px rgba(15, 23, 42, 0.1);
}

.process-step:hover::before {
  opacity: 1;
}

.process-step__index,
.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(48, 89, 255, 0.15), rgba(124, 156, 255, 0.1));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--brand-600);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(48, 89, 255, 0.2);
  box-shadow: 0 4px 12px rgba(48, 89, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.process-step__content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--slate-900);
  margin: 0;
}

.process-step__content p {
  color: var(--slate-600);
  margin: 0;
  line-height: 1.6;
}

/* Process step index renkleri */
.process-step:nth-child(1) .process-step__index,
.process-step:nth-child(1) .process-step__number {
  background: linear-gradient(135deg, rgba(48, 89, 255, 0.15), rgba(124, 156, 255, 0.1));
  border-color: rgba(124, 156, 255, 0.25);
  color: rgba(48, 89, 255, 0.9);
  box-shadow: 0 4px 12px rgba(48, 89, 255, 0.15);
}

.process-step:nth-child(2) .process-step__index,
.process-step:nth-child(2) .process-step__number {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(251, 146, 60, 0.1));
  border-color: rgba(251, 146, 60, 0.25);
  color: rgba(236, 72, 153, 0.9);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.15);
}

.process-step:nth-child(3) .process-step__index,
.process-step:nth-child(3) .process-step__number {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(59, 130, 246, 0.1));
  border-color: rgba(59, 130, 246, 0.25);
  color: rgba(34, 197, 94, 0.9);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.process-step:nth-child(4) .process-step__index,
.process-step:nth-child(4) .process-step__number {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(168, 85, 247, 0.1));
  border-color: rgba(168, 85, 247, 0.25);
  color: rgba(168, 85, 247, 0.9);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.15);
}

.process-step:nth-child(5) .process-step__index,
.process-step:nth-child(5) .process-step__number {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(34, 197, 94, 0.1));
  border-color: rgba(34, 197, 94, 0.25);
  color: rgba(139, 92, 246, 0.9);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.15);
}

.process-step:nth-child(6) .process-step__index,
.process-step:nth-child(6) .process-step__number {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.1));
  border-color: rgba(236, 72, 153, 0.25);
  color: rgba(168, 85, 247, 0.9);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.15);
}

.process-step:hover .process-step__index,
.process-step:hover .process-step__number {
  transform: scale(1.1);
}

.process-step:nth-child(1):hover .process-step__index,
.process-step:nth-child(1):hover .process-step__number {
  box-shadow: 0 6px 20px rgba(48, 89, 255, 0.25);
}

.process-step:nth-child(2):hover .process-step__index,
.process-step:nth-child(2):hover .process-step__number {
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.25);
}

.process-step:nth-child(3):hover .process-step__index,
.process-step:nth-child(3):hover .process-step__number {
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.25);
}

.process-step:nth-child(4):hover .process-step__index,
.process-step:nth-child(4):hover .process-step__number {
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.25);
}

.process-step:nth-child(5):hover .process-step__index,
.process-step:nth-child(5):hover .process-step__number {
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
}

.process-step:nth-child(6):hover .process-step__index,
.process-step:nth-child(6):hover .process-step__number {
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.25);
}

.process-step h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--slate-900);
  margin: 0;
}

.process-step p {
  color: var(--slate-600);
  margin: 0;
  line-height: 1.6;
}

.process-step ul {
  list-style: none;
  margin-top: 0.5rem;
  display: grid;
  gap: 0.5rem;
}

.process-step ul li {
  color: var(--slate-600);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}

.process-step ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-500);
  font-weight: bold;
}

/* ============================================
   PORTFOLIO SHOWCASE
   ============================================ */
.portfolio-showcase {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(168, 85, 247, 0.03) 50%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  margin: 0 1rem;
  border: 1px solid rgba(168, 85, 247, 0.08);
  box-shadow: 0 8px 32px rgba(251, 191, 36, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.portfolio-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 800px 600px at 20% 50%, rgba(251, 191, 36, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse 600px 800px at 80% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Portfolio Section - Sarı/Mor renk paleti */
.portfolio-showcase .section-eyebrow {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
  color: rgba(168, 85, 247, 0.95);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.1);
}

.portfolio-showcase .section-eyebrow:hover {
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.15);
}

.portfolio-showcase .section-title::after {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.9), rgba(168, 85, 247, 0.7));
}

.portfolio-showcase__header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.portfolio-showcase__header .section-eyebrow {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
}

.portfolio-showcase__header .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.portfolio-showcase__gallery {
  display: flex;
  animation: slideLeft 40s linear infinite;
  gap: 2.5rem;
  width: max-content;
  padding: 0 1rem;
}

@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.portfolio-showcase__gallery:hover {
  animation-play-state: paused;
}

.portfolio-item {
  flex-shrink: 0;
  width: 380px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.portfolio-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(48, 89, 255, 0.2);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(48, 89, 255, 0.95), rgba(124, 156, 255, 0.95));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover .portfolio-item__overlay {
  opacity: 1;
}

.portfolio-item__title {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 1.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   REFERENCE STRIP
   ============================================ */
.reference-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  background: var(--slate-100);
  position: relative;
  overflow: hidden;
}

.reference-strip.not-loading .reference-strip__logos-inner {
  animation: none;
}

.reference-strip__arrow {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.reference-strip__arrow:hover {
  background: var(--brand-500);
  color: white;
  border-color: var(--brand-500);
}

.reference-strip__card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  min-width: 300px;
  position: relative;
}

.reference-strip__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reference-strip__logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.reference-strip__cta {
  color: var(--brand-600);
  font-weight: 600;
  font-size: 0.9rem;
  flex: 1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.reference-strip__cta:hover {
  color: var(--brand-700);
}


.reference-strip__logos {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 0.5rem 1.5rem;
}

.reference-strip__logos-inner {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0;
  will-change: transform;
  width: fit-content;
}

.reference-strip.not-loading .reference-strip__logos-inner {
  animation: scroll 180s linear infinite;
}

.reference-strip:hover .reference-strip__logos-inner {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reference-logo {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.reference-logo:hover,
.reference-logo.is-active {
  border-color: var(--brand-500);
  box-shadow: 0 4px 12px rgba(48, 89, 255, 0.2);
  transform: translateY(-2px);
}

.reference-logo img {
  height: 40px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-wrapper {
  position: relative;
  z-index: 1;
  display: block;
  visibility: visible;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-header .section-title::after {
  width: 80px;
}

.testimonial-controls {
  display: none;
}

.testimonial-viewport .testimonial-controls {
  display: flex;
  gap: 0.5rem;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  z-index: 10;
}

.testimonial-viewport .testimonial-controls .testimonial-arrow {
  pointer-events: all;
}

.testimonial-arrow {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 10px rgba(236, 72, 153, 0.1);
  color: rgba(236, 72, 153, 0.8);
}

.testimonial-arrow:hover {
  background: rgba(236, 72, 153, 0.15);
  backdrop-filter: blur(16px) saturate(200%);
  -webkit-backdrop-filter: blur(16px) saturate(200%);
  color: rgba(236, 72, 153, 1);
  border-color: rgba(236, 72, 153, 0.35);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.2);
}

.testimonial-arrow:active {
  transform: scale(0.95);
}

.testimonial-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2rem 0;
  margin: 1rem 0;
  min-height: 400px;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: max-content;
  padding: 1rem 0;
  align-items: stretch;
}

.testimonial-card {
  flex: 0 0 0;
  min-width: 0;
  max-width: none;
  width: 0;
  padding: 2.5rem 1.75rem;
  margin: 0;
  opacity: 0.85;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s ease;
  box-sizing: border-box;
  flex-shrink: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15), 0 4px 12px rgba(15, 23, 42, 0.08);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--slate-700);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(248, 250, 252, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.testimonial-stat {
  display: grid;
  gap: 0.25rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-600);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--slate-600);
}

.testimonial-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  min-height: 70px;
}

.testimonial-brand img {
  height: 56px;
  width: auto;
  min-width: 56px;
  max-width: 140px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  padding: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-brand__info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
  justify-content: center;
}

.testimonial-company {
  font-weight: 600;
  color: var(--slate-900);
  font-size: 1rem;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.testimonial-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(236, 72, 153, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.testimonial-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.6);
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-indicator:hover {
  background: rgba(236, 72, 153, 0.5);
  transform: scale(1.2);
}

.testimonial-indicator.is-active {
  width: 32px;
  height: 10px;
  border-radius: 5px;
  background: rgba(236, 72, 153, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}

.testimonial-indicator.is-active::before {
  width: 100%;
  height: 100%;
}

/* Testimonial Slider - Alternative structure */
.testimonial-slider {
  position: relative;
  width: 100%;
}

.testimonial-slider__viewport {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-slide.is-active {
  display: block;
  opacity: 1;
}

.testimonial-slide__content {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(15, 23, 42, 0.06);
}

.testimonial-slide__quote {
  margin-bottom: 2rem;
}

.testimonial-slide__quote i {
  font-size: 2rem;
  color: rgba(236, 72, 153, 0.3);
  margin-bottom: 1rem;
  display: block;
}

.testimonial-slide__quote p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--slate-700);
  font-style: italic;
  margin: 0;
}

.testimonial-slide__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.testimonial-slide__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(251, 146, 60, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-slide__avatar i {
  font-size: 1.5rem;
  color: rgba(236, 72, 153, 0.8);
}

.testimonial-slide__info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-900);
  margin: 0 0 0.25rem 0;
}

.testimonial-slide__info p {
  font-size: 0.875rem;
  color: var(--slate-600);
  margin: 0;
}

.testimonial-slider__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-slider__prev,
.testimonial-slider__next {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 10px rgba(236, 72, 153, 0.1);
  color: rgba(236, 72, 153, 0.8);
  border: none;
}

.testimonial-slider__prev:hover,
.testimonial-slider__next:hover {
  background: rgba(236, 72, 153, 0.15);
  backdrop-filter: blur(16px) saturate(200%);
  -webkit-backdrop-filter: blur(16px) saturate(200%);
  color: rgba(236, 72, 153, 1);
  border-color: rgba(236, 72, 153, 0.35);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.2);
}

.testimonial-slider__dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.testimonial-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(236, 72, 153, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.testimonial-slider__dot.is-active {
  background: rgba(236, 72, 153, 0.8);
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}

/* ============================================
   CTA PANEL
   ============================================ */
.cta-panel {
  border-radius: 32px;
  background: linear-gradient(135deg, 
    rgba(48, 89, 255, 0.95) 0%, 
    rgba(23, 58, 139, 0.98) 50%,
    rgba(48, 89, 255, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 64px rgba(48, 89, 255, 0.4), 
              0 12px 32px rgba(15, 23, 42, 0.3);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 5rem) clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  display: grid;
  gap: 2rem;
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cta-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(124, 156, 255, 0.2) 0%, 
    rgba(48, 89, 255, 0.15) 50%,
    rgba(124, 156, 255, 0.2) 100%);
  border-radius: 32px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.cta-panel:hover {
  box-shadow: 0 28px 72px rgba(48, 89, 255, 0.45), 
              0 16px 40px rgba(15, 23, 42, 0.35);
}

.cta-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%);
  background-size: 200% 100%;
  border-radius: 32px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cta-panel:hover::after {
  opacity: 1;
  animation: cta-shimmer 2.5s ease-in-out infinite;
}

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

.cta-panel .section-eyebrow {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.95);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-panel .section-eyebrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.cta-panel .section-eyebrow i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.cta-panel .hero-title {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  margin: 0;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3),
               0 2px 12px rgba(48, 89, 255, 0.4);
}

.cta-panel p {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  max-width: 65ch;
  margin: 0 auto;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}

.hero-actions .btn-primary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  color: rgba(48, 89, 255, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2),
              0 4px 12px rgba(48, 89, 255, 0.15);
  font-weight: 600;
  padding: 1rem 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-actions .btn-primary:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.95));
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3),
              0 6px 16px rgba(48, 89, 255, 0.2);
  color: rgba(23, 58, 139, 1);
}

.hero-actions .btn-outline {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  padding: 1rem 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15),
              0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-300);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 40px;
}

.footer-brand p {
  color: var(--slate-400);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--slate-400);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--brand-500);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--slate-500);
  font-size: 0.9rem;
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.whatsapp-widget__bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  position: relative;
}

.whatsapp-widget__bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-widget__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.whatsapp-widget__popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1001;
  pointer-events: none;
}

.whatsapp-widget__popup.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-widget__header {
  background: #25d366;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-widget__avatar {
  position: relative;
}

.whatsapp-widget__avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.whatsapp-widget__status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: #10b981;
  border: 2px solid white;
  border-radius: 50%;
}

.whatsapp-widget__info h4 {
  margin: 0;
  font-size: 1rem;
}

.whatsapp-widget__info p {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.9;
}

.whatsapp-widget__close {
  margin-left: auto;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.2rem;
}

.whatsapp-widget__body {
  padding: 1rem;
  min-height: 100px;
  display: block;
}

.whatsapp-widget__message {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.whatsapp-widget__message p {
  margin: 0 0 0.5rem;
  color: var(--slate-700);
  font-size: 0.9rem;
  line-height: 1.5;
}

.whatsapp-widget__message p:last-child {
  margin-bottom: 0;
}

.whatsapp-widget__footer {
  padding: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.whatsapp-widget__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  background: #25d366;
  color: white;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition);
}

.whatsapp-widget__button:hover {
  background: #20ba5a;
}

/* ============================================
   VISUAL COMPONENTS
   ============================================ */
.visual-social {
  display: grid;
  gap: 1.5rem;
}

.visual-social__card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.visual-social__card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.visual-social__card ul {
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.visual-social__card li {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.visual-social__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.visual-social__stats > div {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.visual-social__stats span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.visual-social__stats small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

/* Content Marketing Visual Components */
.visual-content {
  background: rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.visual-content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-content__badge {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.2);
  color: rgba(196, 181, 253, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.visual-content__period {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.visual-content__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.visual-content__stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.visual-content__stat i {
  font-size: 1.5rem;
  color: rgba(196, 181, 253, 0.9);
}

.visual-content__stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.visual-content__stat small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.visual-content__growth {
  text-align: center;
  padding: 1rem;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 12px;
}

.visual-content__growth-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.3);
  color: rgba(134, 239, 172, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
}

.visual-video {
  background: rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.visual-video__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-video__badge {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.2);
  color: rgba(196, 181, 253, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.visual-video__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.visual-video__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.visual-video__item i {
  font-size: 2rem;
  color: rgba(196, 181, 253, 0.9);
}

.visual-video__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.visual-video__stats > div {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.visual-video__stats span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.visual-video__stats small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.visual-design {
  background: rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.visual-design__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-design__badge {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.2);
  color: rgba(196, 181, 253, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.visual-design__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.visual-design__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.visual-design__item i {
  font-size: 2rem;
  color: rgba(196, 181, 253, 0.9);
}

.visual-design__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.visual-design__stats > div {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.visual-design__stats span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.visual-design__stats small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.visual-strategy {
  background: rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.visual-strategy__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-strategy__badge {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.2);
  color: rgba(196, 181, 253, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.visual-strategy__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.visual-strategy__metric {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.visual-strategy__metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.visual-strategy__metric small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.visual-crm {
  background: rgba(10, 22, 46, 0.35);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.visual-crm__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-crm__badge {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.2);
  color: rgba(134, 239, 228, 0.9);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.visual-crm__period {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.visual-crm__tracker {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, auto));
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.tracker-step {
  display: grid;
  gap: 0.25rem;
  text-align: center;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  background: rgba(9, 26, 34, 0.82);
  border: 1px solid rgba(134, 239, 228, 0.18);
  color: rgba(217, 249, 233, 0.88);
  min-width: 72px;
}

.tracker-step.is-active {
  background: rgba(19, 78, 74, 0.85);
  border-color: rgba(134, 239, 228, 0.6);
  box-shadow: 0 4px 20px rgba(19, 78, 74, 0.4);
}

.tracker-count {
  font-size: 1.2rem;
  font-weight: 700;
}

.tracker-label {
  font-size: 0.75rem;
}

.tracker-connector {
  height: 2px;
  background: rgba(134, 239, 228, 0.35);
  margin: 0 0.2rem;
}

.visual-crm__stats {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(209, 250, 229, 0.75);
}

.visual-crm__stats strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
}

.visual-suite {
  width: min(380px, 100%);
  display: grid;
  gap: 1.5rem;
  background: linear-gradient(150deg, rgba(42, 27, 6, 0.35), rgba(30, 22, 8, 0.35));
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(253, 230, 138, 0.3);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(32, 20, 6, 0.4);
}

.visual-suite__cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.visual-suite__pill {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(253, 230, 138, 0.35);
  background: rgba(253, 230, 138, 0.18);
  color: #fff8d8;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.visual-suite__footer {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 249, 215, 0.85);
  font-size: 0.92rem;
}

.visual-suite__footer strong {
  font-size: 1.5rem;
  color: #fff;
}

/* Process Extras */
.process__extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.process-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--slate-900);
  margin: 0 0 1rem;
}

.process-card p {
  color: var(--slate-600);
  margin: 0;
  line-height: 1.6;
}

.process-card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.process-card ul li {
  color: var(--slate-600);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.process-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-500);
  font-weight: bold;
}

/* Capabilities */
.capability-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.capability-copy {
  display: grid;
  gap: 1rem;
}

.capability-points {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0;
}

.capability-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--slate-700);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-points li:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(170%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  border-color: rgba(168, 85, 247, 0.2);
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.08);
}

.capability-points li i {
  color: rgba(168, 85, 247, 0.75);
  margin-top: 0.25rem;
  width: 20px;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-points li:hover i {
  color: rgba(168, 85, 247, 0.9);
  transform: scale(1.08);
}

.capability-stacks {
  display: grid;
  gap: 1rem;
  position: relative;
}

.stack-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(168, 85, 247, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.stack-group:hover {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px) saturate(170%);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.08);
  transform: translateY(-1px);
}

/* Stack group'lar için farklı renk tonları - Daha yumuşak */
.stack-group:nth-child(1) {
  border-color: rgba(48, 89, 255, 0.15);
  box-shadow: 0 3px 12px rgba(48, 89, 255, 0.05);
}

.stack-group:nth-child(1):hover {
  border-color: rgba(48, 89, 255, 0.22);
  box-shadow: 0 6px 20px rgba(48, 89, 255, 0.08);
}

.stack-group:nth-child(1) .stack-badge {
  background: rgba(48, 89, 255, 0.08);
  border-color: rgba(48, 89, 255, 0.15);
  color: rgba(48, 89, 255, 0.85);
  box-shadow: 0 1px 4px rgba(48, 89, 255, 0.05);
}

.stack-group:nth-child(1) .stack-badge:hover {
  background: rgba(48, 89, 255, 0.12);
  border-color: rgba(48, 89, 255, 0.25);
  color: rgba(48, 89, 255, 0.95);
  box-shadow: 0 2px 10px rgba(48, 89, 255, 0.1);
}

.stack-group:nth-child(2) {
  border-color: rgba(34, 197, 94, 0.15);
  box-shadow: 0 3px 12px rgba(34, 197, 94, 0.05);
}

.stack-group:nth-child(2):hover {
  border-color: rgba(34, 197, 94, 0.22);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.08);
}

.stack-group:nth-child(2) .stack-badge {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.15);
  color: rgba(34, 197, 94, 0.85);
  box-shadow: 0 1px 4px rgba(34, 197, 94, 0.05);
}

.stack-group:nth-child(2) .stack-badge:hover {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
  color: rgba(34, 197, 94, 0.95);
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.1);
}

.stack-group:nth-child(3) {
  border-color: rgba(236, 72, 153, 0.15);
  box-shadow: 0 3px 12px rgba(236, 72, 153, 0.05);
}

.stack-group:nth-child(3):hover {
  border-color: rgba(236, 72, 153, 0.22);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.08);
}

.stack-group:nth-child(3) .stack-badge {
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.15);
  color: rgba(236, 72, 153, 0.85);
  box-shadow: 0 1px 4px rgba(236, 72, 153, 0.05);
}

.stack-group:nth-child(3) .stack-badge:hover {
  background: rgba(236, 72, 153, 0.12);
  border-color: rgba(236, 72, 153, 0.25);
  color: rgba(236, 72, 153, 0.95);
  box-shadow: 0 2px 10px rgba(236, 72, 153, 0.1);
}

.stack-group:nth-child(4) {
  border-color: rgba(251, 191, 36, 0.15);
  box-shadow: 0 3px 12px rgba(251, 191, 36, 0.05);
}

.stack-group:nth-child(4):hover {
  border-color: rgba(251, 191, 36, 0.22);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.08);
}

.stack-group:nth-child(4) .stack-badge {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.15);
  color: rgba(168, 85, 247, 0.85);
  box-shadow: 0 1px 4px rgba(251, 191, 36, 0.05);
}

.stack-group:nth-child(4) .stack-badge:hover {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.25);
  color: rgba(168, 85, 247, 0.95);
  box-shadow: 0 2px 10px rgba(251, 191, 36, 0.1);
}

.stack-badge {
  padding: 0.4rem 0.85rem;
  border-radius: 14px;
  background: rgba(168, 85, 247, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(168, 85, 247, 0.85);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(168, 85, 247, 0.15);
  box-shadow: 0 1px 4px rgba(168, 85, 247, 0.05);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stack-badge::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 cubic-bezier(0.4, 0, 0.2, 1);
}

.stack-badge:hover {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
  color: rgba(168, 85, 247, 0.95);
  box-shadow: 0 2px 10px rgba(168, 85, 247, 0.1);
  transform: translateY(-1px) scale(1.02);
}

.stack-badge:hover::before {
  left: 100%;
}

.section-capabilities {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(251, 191, 36, 0.03) 50%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  position: relative;
  border-radius: 0;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  margin: 0 1rem;
  border: 1px solid rgba(168, 85, 247, 0.08);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.section-capabilities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 800px 600px at 50% 30%, rgba(168, 85, 247, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse 600px 800px at 50% 70%, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Capabilities Section - Mor/Sarı renk paleti */
.section-capabilities .section-eyebrow {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(251, 191, 36, 0.25);
  color: rgba(168, 85, 247, 0.95);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.1);
  margin-bottom: 1.25rem;
}

.section-capabilities .section-eyebrow:hover {
  background: rgba(168, 85, 247, 0.18);
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.15);
}

.section-capabilities .section-title {
  margin-bottom: 1rem;
}

.section-capabilities .section-title::after {
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.9), rgba(251, 191, 36, 0.7));
}

.section-capabilities .section-lead {
  margin-bottom: 1.5rem;
}

.section-testimonials {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, rgba(251, 146, 60, 0.03) 50%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  position: relative;
  border-radius: 0 0 40px 40px;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  margin: 0 1rem 2rem;
  border: 1px solid rgba(236, 72, 153, 0.08);
  box-shadow: 0 8px 32px rgba(236, 72, 153, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: block;
  visibility: visible;
  overflow: visible;
}

.section-testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 800px 600px at 30% 20%, rgba(236, 72, 153, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse 600px 800px at 70% 80%, rgba(251, 146, 60, 0.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 0 0 40px 40px;
}

/* Testimonials Section - Pembe/Turuncu renk paleti */
.section-testimonials .section-eyebrow {
  background: rgba(236, 72, 153, 0.12);
  border-color: rgba(251, 146, 60, 0.25);
  color: rgba(236, 72, 153, 0.95);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.1);
}

.section-testimonials .section-eyebrow:hover {
  background: rgba(236, 72, 153, 0.18);
  border-color: rgba(251, 146, 60, 0.35);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.15);
}

.section-testimonials .section-title::after {
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.9), rgba(251, 146, 60, 0.7));
}

.section-services {
  background: linear-gradient(135deg, rgba(48, 89, 255, 0.05) 0%, rgba(124, 156, 255, 0.03) 50%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  position: relative;
  border-radius: 40px 40px 0 0;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  margin: 2rem 1rem 0;
  border: 1px solid rgba(48, 89, 255, 0.08);
  box-shadow: 0 8px 32px rgba(48, 89, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.section-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 800px 600px at 20% 30%, rgba(48, 89, 255, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse 600px 800px at 80% 70%, rgba(124, 156, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 40px 40px 0 0;
}

/* Services Section - Mavi renk paleti */
.section-services .section-eyebrow {
  background: rgba(48, 89, 255, 0.12);
  border-color: rgba(124, 156, 255, 0.25);
  color: rgba(48, 89, 255, 0.95);
  box-shadow: 0 4px 12px rgba(48, 89, 255, 0.1);
}

.section-services .section-eyebrow:hover {
  background: rgba(48, 89, 255, 0.18);
  border-color: rgba(124, 156, 255, 0.35);
  box-shadow: 0 6px 20px rgba(48, 89, 255, 0.15);
}

.section-services .section-title::after {
  background: linear-gradient(90deg, rgba(48, 89, 255, 0.9), rgba(124, 156, 255, 0.7));
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-slide__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dropdown-menu {
    min-width: 700px;
  }

  .dropdown-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .testimonial-viewport {
    padding: 1.5rem 0.25rem;
    margin: 0.75rem 0;
  }
  
  .testimonial-track {
    gap: 0.75rem;
    padding: 0.75rem 0;
  }
  
  .testimonial-card {
    padding: 2rem 1.25rem;
  }
  
  .testimonial-viewport .testimonial-controls {
    padding: 0 0.5rem;
  }
  
  /* Section margin'leri responsive için düzelt */
  .section-services,
  .portfolio-showcase,
  .process,
  .section-testimonials {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    border-radius: 24px 24px 0 0;
  }
  
  .section-testimonials {
    border-radius: 0 0 24px 24px;
  }
  
  .section-services::before,
  .section-testimonials::before {
    border-radius: 24px;
  }

  .capability-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .capability-points li {
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
  }
  
  .stack-group {
    padding: 0.9rem 1rem;
    gap: 0.65rem;
  }
  
  .stack-badge {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .section-capabilities {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .visual-crm__tracker {
    grid-template-columns: repeat(4, 1fr);
  }

  .visual-social__stats {
    grid-template-columns: 1fr;
  }

  .hero--slider {
    padding: 2rem 0 3rem;
  }

  .hero-slider {
    gap: 2rem;
  }

  .hero-slider__controls {
    gap: 0.75rem;
    justify-content: flex-start;
  }

  .hero-tab {
    min-width: 140px;
    padding: 0.9rem 1.35rem;
    font-size: 0.9rem;
    border-radius: 20px;
  }

  .hero-tab__label {
    font-size: 0.7rem;
  }

  .hero-slide__eyebrow {
    padding: 0.6rem 1.25rem;
    border-radius: 40px;
  }

  .hero-metric {
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
  }

  .hero-slider__viewport {
    min-height: auto;
  }

  .hero-slide {
    min-height: auto;
  }

  .hero-slide__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-slide__surface {
    padding: 1.75rem;
    border-radius: 24px;
  }

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

  .hero-slide__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-slide__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .hero-slide__lead {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .hero-slide__copy {
    gap: 1.5rem;
  }

  .hero-slide__metrics {
    gap: 1rem;
  }

  .hero-metric {
    min-width: 110px;
    padding: 1rem 1.25rem;
  }

  .hero-metric__value {
    font-size: 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .service-grid,
  .feature-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .process__flow {
    grid-template-columns: 1fr;
  }

  .testimonial-header {
    flex-direction: column;
    gap: 1.5rem;
  }

  .dropdown-menu {
    min-width: auto;
    width: calc(100vw - 2rem);
    left: 1rem;
    right: 1rem;
    transform: none;
  }

  .dropdown-container {
    grid-template-columns: 1fr;
  }

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

  .whatsapp-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-widget__popup {
    width: calc(100vw - 2rem);
    right: -1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-viewport {
    padding: 1rem 0.25rem;
    margin: 0.5rem 0;
  }
  
  .testimonial-track {
    gap: 0.75rem;
    padding: 0.5rem 0;
  }
  
  .testimonial-card {
    padding: 1.75rem 1.25rem;
  }
  
  .testimonial-viewport .testimonial-controls {
    padding: 0 0.25rem;
  }
  
  .testimonial-arrow {
    width: 38px;
    height: 38px;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero--slider {
    padding: 1.5rem 0 2.5rem;
  }

  .hero-tab {
    min-width: 120px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .hero-tab__title {
    font-size: 0.9rem;
  }

  .hero-tab__label {
    font-size: 0.65rem;
  }

  .hero-slide__title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-slide__lead {
    font-size: 1rem;
  }

  .hero-slide__list li {
    font-size: 0.9rem;
  }

  .hero-metric {
    min-width: 100px;
    padding: 0.9rem 1rem;
  }

  .hero-metric__value {
    font-size: 1.1rem;
  }

  .hero-metric__label {
    font-size: 0.7rem;
  }

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

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* ============================================
   REFERANSLAR PAGE - SIMPLE & CLEAN
   ============================================ */
.referans-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

@media (min-width: 480px) {
  .referans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

@media (min-width: 1024px) {
  .referans-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1280px) {
  .referans-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
}

.referans-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(15, 23, 42, 0.05);
  height: 100%;
  min-height: 240px;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.referans-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(48, 89, 255, 0.15), 0 4px 16px rgba(15, 23, 42, 0.1);
  border-color: rgba(48, 89, 255, 0.3);
  text-decoration: none;
  color: inherit;
}

.referans-item__logo {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  box-sizing: border-box;
}


.referans-item__logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.referans-item__info {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
}

.referans-item__info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-900);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.referans-item__info p {
  font-size: 0.875rem;
  color: var(--slate-600);
  margin: 0;
  line-height: 1.5;
}

.referans-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--brand-600);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
  pointer-events: none;
}

.referans-item:hover .referans-item__link {
  color: var(--brand-700);
}

.referans-item__link i {
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .referans-grid {
    gap: 1.5rem;
  }
  
  .referans-item {
    padding: 1.5rem 1rem;
    min-height: 220px;
  }
  
  .referans-item__logo {
    height: 100px;
    margin-bottom: 1rem;
    padding: 0.75rem;
  }
  
  .referans-item__info h3 {
    font-size: 0.9rem;
  }
  
  .referans-item__info p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .referans-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .referans-item {
    padding: 1.25rem 0.75rem;
    min-height: 200px;
  }
  
  .referans-item__logo {
    height: 90px;
    padding: 0.5rem;
  }
}

/* ============================================
   HAKKIMIZDA PAGE STYLES
   ============================================ */

/* Simple Hero Section (Used in Hakkimizda and Iletisim) */
.hero--simple {
  padding: 8rem 0 6rem;
  text-align: center;
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(48, 89, 255, 0.1);
  border: 1px solid rgba(48, 89, 255, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-600);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--slate-900);
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--slate-600);
  margin: 0 0 2.5rem 0;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero--simple .btn-link {
  color: var(--brand-600);
  text-decoration: none;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero--simple .btn-link:hover {
  color: var(--brand-700);
  background: rgba(48, 89, 255, 0.08);
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero--simple {
    padding: 6rem 0 4rem;
  }

  .hero__lead {
    font-size: 1.125rem;
  }

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

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Section Services Alt Background */
.section-services--alt {
  background: var(--slate-50) !important;
}

/* About Intro Section */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-intro__content .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-intro__content .section-title::after {
  left: 0;
  transform: none;
}

.about-intro__content .section-lead {
  text-align: left;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.about-intro__content .section-lead:last-of-type {
  margin-bottom: 0;
}

.about-intro__image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(15, 23, 42, 0.05);
}

.about-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mission & Vision Grid */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.mission-vision-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-vision-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(48, 89, 255, 0.12), 0 4px 12px rgba(15, 23, 42, 0.08);
  border-color: rgba(48, 89, 255, 0.3);
}

.mission-vision-card:hover::before {
  opacity: 1;
}

.mission-vision-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  border-radius: 16px;
  margin-bottom: 1.5rem;
  color: white !important;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(48, 89, 255, 0.2);
}

.mission-vision-card__icon i,
.mission-vision-card__icon .fas,
.mission-vision-card__icon .fa {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.mission-vision-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.mission-vision-card__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate-600);
  margin: 0;
}

/* Stats Section */
.section-stats {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: white;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  position: relative;
  overflow: hidden;
}

.section-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.section-stats .container {
  position: relative;
  z-index: 1;
}

.section-stats .section-eyebrow {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.section-stats .section-eyebrow i {
  color: rgba(255, 255, 255, 0.95) !important;
}

.section-stats .section-eyebrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.section-stats .section-title {
  color: white;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: white;
  background-clip: unset;
}

.section-stats .section-title::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.stat-card__value,
.stat-item__value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
  letter-spacing: -0.02em;
}

.stat-card__label,
.stat-item__label {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.5;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.stat-item:hover::after {
  width: 80px;
  background: rgba(255, 255, 255, 0.6);
}

/* Services Grid - Using existing service-card styles */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.services-grid .service-card {
  padding: 2.5rem;
}

.services-grid .service-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  border-radius: 16px;
  margin-bottom: 1.5rem;
  color: white !important;
  font-size: 1.75rem;
  box-shadow: 0 4px 16px rgba(48, 89, 255, 0.2);
}

.services-grid .service-card__icon i,
.services-grid .service-card__icon .fas,
.services-grid .service-card__icon .fa {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.services-grid .service-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--slate-900);
  margin: 0 0 1rem 0;
}

.services-grid .service-card__description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slate-600);
  margin: 0;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08), 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-400));
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(48, 89, 255, 0.12), 0 4px 12px rgba(15, 23, 42, 0.08);
  border-color: rgba(48, 89, 255, 0.3);
}

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

.value-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  border-radius: 14px;
  margin-bottom: 1.5rem;
  color: white !important;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(48, 89, 255, 0.2);
}

.value-card__icon i,
.value-card__icon .fas,
.value-card__icon .fa {
  color: #ffffff !important;
  fill: #ffffff !important;
}

.value-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.value-card__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slate-600);
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-intro__content .section-title,
  .about-intro__content .section-lead {
    text-align: center;
  }

  .about-intro__content .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .mission-vision-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-intro {
    gap: 2rem;
  }

  .mission-vision-card,
  .value-card {
    padding: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-card {
    padding: 1.5rem;
  }

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

  .stat-card__label {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .mission-vision-card,
  .value-card {
    padding: 1.5rem;
  }

  .mission-vision-card__icon,
  .value-card__icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .mission-vision-card__title {
    font-size: 1.25rem;
  }

  .value-card__title {
    font-size: 1.125rem;
  }
}

/* ============================================
   MOBILE RESPONSIVE - COMPREHENSIVE
   ============================================ */

/* Tablet and below (768px) */
@media (max-width: 768px) {
  /* Container adjustments */
  .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section > .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero--slider > .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Navbar */
  .navbar {
    padding: 0.75rem 0;
  }

  .navbar-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .navbar-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .navbar-nav li:last-child {
    border-bottom: none;
  }

  .navbar-toggler {
    display: flex;
  }

  .nav-link {
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dropdown {
    width: 100%;
  }

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

  .dropdown-toggle i {
    transition: transform 0.3s ease;
  }

  .dropdown-toggle.is-open i {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    left: 0 !important;
    padding: 1rem !important;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid rgba(15, 23, 42, 0.1) !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: none !important;
    background: rgba(246, 247, 251, 0.8) !important;
  }

  .dropdown-menu.is-open {
    display: block !important;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .dropdown-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dropdown-column h6 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .dropdown-column a {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .dropdown-cta {
    border-left: none;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    padding-left: 0;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }

  .featured-service {
    padding: 1.5rem 1rem;
  }

  /* Hero Slider */
  .hero--slider {
    padding: 2rem 0 2rem;
  }

  .hero-slider__controls {
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero-tab {
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
  }

  .hero-tab__title {
    font-size: 0.875rem;
  }

  .hero-tab__label {
    font-size: 0.75rem;
  }

  .hero-slide__title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-slide__lead {
    font-size: 1rem;
  }

  .hero-slide__list {
    gap: 0.75rem;
  }

  .hero-slide__list li {
    font-size: 0.875rem;
    padding: 0.5rem 0;
  }

  .hero-slide__cta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-slide__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-metric {
    padding: 1rem;
  }

  .hero-metric__value {
    font-size: 2rem;
  }

  .hero-metric__label {
    font-size: 0.75rem;
  }

  /* Reference Strip */
  .reference-strip {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .reference-strip__arrow {
    display: none;
  }

  .reference-strip__card {
    min-width: 100%;
    width: 100%;
    padding: 1rem;
  }

  .reference-strip__logos {
    padding: 0.5rem 1rem;
  }

  /* Service Cards */
  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card__icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .service-card__title {
    font-size: 1.125rem;
  }

  /* Section adjustments */
  .section {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }

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

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

  /* CTA Panel */
  .cta-panel {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .social-links {
    justify-content: flex-start;
  }

  /* Process Steps */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-step {
    padding: 1.5rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.5rem;
  }

  /* Contact Form */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  /* Container */
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .section > .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hero--slider > .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  /* Navbar */
  .navbar-brand img {
    height: 32px;
  }

  /* Hero */
  .hero-slide__title {
    font-size: 1.75rem;
  }

  .hero-slide__lead {
    font-size: 0.9rem;
  }

  .hero-tab {
    padding: 0.6rem 0.875rem;
    font-size: 0.8rem;
  }

  .hero-tab__title {
    font-size: 0.8rem;
  }

  .hero-tab__label {
    font-size: 0.7rem;
  }

  .hero-metric {
    padding: 0.75rem;
  }

  .hero-metric__value {
    font-size: 1.75rem;
  }

  /* Service Cards */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    padding: 1.25rem;
  }

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

  .section-lead {
    font-size: 0.9rem;
  }

  /* Buttons */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .btn-lg {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  /* CTA Panel */
  .cta-panel {
    padding: 1.5rem 1rem;
  }

  /* Reference Strip */
  .reference-strip__card {
    padding: 0.875rem;
  }

  .reference-strip__logo img {
    height: 40px;
  }

  /* WhatsApp Widget */
  .whatsapp-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-widget__bubble {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

  .whatsapp-widget__popup {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 80px;
  }
}

/* Small Mobile (360px and below) */
@media (max-width: 360px) {
  .hero-slide__title {
    font-size: 1.5rem;
  }

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

  .service-card {
    padding: 1rem;
  }

  .btn {
    padding: 0.625rem 1rem;
    font-size: 0.8rem;
  }
}

