/*
  e-vadi Style System (Modern, Spacious, Minimalist B2B Web UI)
  Main Background: Soft Light Grey (#f8f9fa) with Tech Grid
  Card/Header Panels: Pure White (#ffffff)
  Text: Deep Black (#0a0a0c)
  Accents: Neon Green (#70ff00)
*/

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

:root {
  --bg-primary: #f8f9fa; /* Soft B2B Slate-Grey */
  --bg-secondary: #ffffff; /* Pure White Panels */
  --bg-tertiary: #f1f3f5;
  --text-primary: #0a0a0c;
  --text-secondary: #3e444b;
  --text-muted: #868e96;
  --accent: #70ff00;
  --accent-rgb: 112, 255, 0;
  --accent-glow: rgba(112, 255, 0, 0.25);
  --border-color: rgba(0, 0, 0, 0.05);
  --border-color-glow: rgba(112, 255, 0, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(0, 0, 0, 0.05);
  --card-shadow: 0 15px 35px -15px rgba(0, 0, 0, 0.05);
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-primary);
  /* Global tech grid and radial ambient light glows */
  background-image: 
    radial-gradient(circle at 80% 15%, rgba(112, 255, 0, 0.06) 0%, transparent 55%),
    radial-gradient(circle at 15% 65%, rgba(112, 255, 0, 0.04) 0%, transparent 45%),
    linear-gradient(to right, rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 64px 64px, 64px 64px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.1;
}

p {
  color: var(--text-secondary);
  font-weight: 400;
}

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

/* Helpers */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.whitespace-large {
  padding: 5.5rem 0;
}

.whitespace-medium {
  padding: 6rem 0;
}

.neon-glow {
  text-shadow: 0 0 10px rgba(112, 255, 0, 0.4);
}

/* Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
  height: 80px;
  display: flex;
  align-items: center;
}

.header.scrolled {
  height: 70px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.03);
  background-color: rgba(255, 255, 255, 0.85);
}

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

.logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cta-btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-secondary);
  border: 1px solid var(--text-primary);
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
}

.cta-btn-primary:hover {
  background-color: var(--accent);
  color: var(--text-primary);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(112, 255, 0, 0.4);
}

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

.cta-btn-secondary:hover {
  border-color: var(--text-primary);
  background-color: var(--bg-secondary);
}

/* Mobile Menu Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-primary);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8.5rem 0 6rem 0;
  overflow: hidden;
}

.hero-wrapper {
  position: relative;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text-block {
  max-width: 60%;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero-title {
  font-size: 4.4rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  font-weight: 950;
  color: var(--accent);
  background-color: #18181b;
  padding: 0.5rem 1.8rem;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-block;
  width: fit-content;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.hero-animated-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}

.animated-word-wrapper {
  position: relative;
  display: inline-block;
  color: var(--text-primary);
  font-weight: 800;
  padding: 0 0.3rem;
  z-index: 1;
}

.animated-word-wrapper::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 11px;
  background-color: var(--accent);
  z-index: -1;
  opacity: 0.95;
  box-shadow: 0 0 12px var(--accent-glow);
}

.animated-word {
  display: inline-block;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(0);
  opacity: 1;
}

.hero-description {
  font-size: 1.15rem;
  font-weight: 350;
  color: var(--text-secondary);
  max-width: 85%;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* Asymmetric 3D Floating Mascot Slider (Aligned and Raised) */
.hero-mascot-wrapper {
  position: absolute;
  right: -2%;
  top: -2%; /* Shifted higher up into the top padding area of the hero */
  transform: translateY(calc(-50% - 60px));
  width: 45%;
  max-width: 520px;
  z-index: 5; /* Sitting physically on top of text */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.evo-sphere-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(112, 255, 0, 0.18) 0%, rgba(248, 249, 250, 0.6) 45%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(25px);
  z-index: 1;
  pointer-events: none;
  animation: pulseSphere 8s ease-in-out infinite alternate;
}

/* Slider styling */
.evo-slider {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.evo-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
  z-index: 1;
}

.evo-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}

.evo-hero-image {
  position: relative;
  width: 95%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  z-index: 3;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.08));
  /* mix-blend-mode: multiply; removed since mascot background is transparent PNG */
  animation: evoFloat 6s ease-in-out infinite;
}

.evo-badge {
  position: absolute;
  bottom: 8%;
  left: 8%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: var(--card-shadow);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.evo-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.evo-slider-dots {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  z-index: 10;
  pointer-events: auto; /* Clickable */
}

.evo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}

.evo-dot.active {
  background-color: var(--text-primary);
  width: 26px;
  border-radius: 5px;
  border-color: var(--text-primary);
}

/* References Section (Referanslarımız) */
.references-section {
  background-color: #FAFAFA;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.references-header {
  text-align: center;
  margin-bottom: 2rem;
}

.references-header h2 {
  color: #1a202c;
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.references-header p {
  color: #718096;
  font-size: 1.1rem;
  font-weight: 400;
}

.references-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Fade Overlays */
.fade-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 5;
  pointer-events: none;
}

.fade-overlay-left {
  left: 0;
  background: linear-gradient(to right, #FAFAFA, rgba(250, 250, 250, 0));
}

.fade-overlay-right {
  right: 0;
  background: linear-gradient(to left, #FAFAFA, rgba(250, 250, 250, 0));
}

/* Marquee Row */
.references-marquee-row {
  overflow: hidden;
  width: 100%;
}

.references-track {
  display: flex;
  gap: 2rem;
  width: max-content;
}

/* Row-Normal (Right to Left) */
.row-normal .references-track {
  animation: marqueeNormal 30s linear infinite;
}

/* Row-Reverse (Left to Right) */
.row-reverse .references-track {
  animation: marqueeReverse 30s linear infinite;
}

/* Hover play state pause */
.references-marquee-row:hover .references-track {
  animation-play-state: paused;
}

/* Logo Cards */
.ref-logo-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 90px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.ref-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.ref-logo-card img {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
  display: block;
  filter: grayscale(0%);
  opacity: 1;
}

.ref-logo-card img.logo-dark {
  filter: brightness(0) opacity(0.8) !important;
}

/* Asymmetric Editorial Services Section */
.services {
  background-color: var(--bg-primary);
}

.section-header-centered {
  max-width: 800px;
  margin: 0 auto 5rem auto;
  text-align: center;
}

.section-header-centered h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-lead-centered {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* 360° Services Grid (3 Columns, Borderless 1px Grid Layout) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
}

.service-grid-card {
  background-color: #18181b; /* Siyaha yakın pastel gri (zinc-900) */
  padding: 2.5rem; /* p-10 */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

/* Background Mesh & Glow Effect on Hover */
.service-grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(163, 230, 53, 0.1) 0%, transparent 60%),
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 20px 20px, 20px 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  z-index: 1;
}

.service-grid-card:hover {
  background-color: #202024; /* Background slightly opens up */
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: #a3e635; /* Neon Yeşil */
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.service-grid-card:hover .service-card-icon {
  transform: scale(1.1) rotate(3deg);
  filter: drop-shadow(0 0 8px rgba(163, 230, 53, 0.4));
}

.service-card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: #ffffff; /* White */
  z-index: 2;
}

.service-card-text {
  font-size: 0.95rem;
  color: #a0aec0; /* text-gray-400 */
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2rem;
  z-index: 2;
}

/* Action Element (Arrow and Now Discover sliding text) */
.service-card-action {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 2;
}

.action-text {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity 0.3s ease-in-out, max-width 0.3s ease-in-out;
}

.service-grid-card:hover .action-text {
  opacity: 1;
  max-width: 100px;
}

.action-arrow {
  transition: transform 0.3s ease-in-out;
}

.service-grid-card:hover .action-arrow {
  transform: translateX(4px);
}

/* ===================================================
   Docufy Promo Banner – Kurumsal Yazılım
   =================================================== */
@keyframes dfy-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes dfy-orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(30px, -20px) scale(1.15); }
}
@keyframes dfy-orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-25px, 15px) scale(1.1); }
}
@keyframes dfy-orb-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(15px, 25px) scale(1.2); }
}

@keyframes dfy-shimmer-slide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

@keyframes dfy-pulse-ring {
  0%   { transform: scale(0.9); opacity: 0.7; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

@keyframes dfy-badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(87, 193, 199, 0.5); }
  50%       { box-shadow: 0 0 14px 4px rgba(87, 193, 199, 0.25); }
}

.docufy-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #0A678C, #57C1C7, #003A3D, #0A678C);
  background-size: 300% 300%;
  animation: dfy-gradient-shift 8s ease infinite;
  width: 100%;
  padding: 48px 0;
}

/* Floating orbs */
.dfy-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.dfy-orb-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(87,193,199,0.22) 0%, transparent 70%);
  top: -80px;
  left: -60px;
  animation: dfy-orb-float-1 7s ease-in-out infinite;
}
.dfy-orb-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  bottom: -70px;
  right: 15%;
  animation: dfy-orb-float-2 9s ease-in-out infinite;
}
.dfy-orb-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(10,103,140,0.3) 0%, transparent 70%);
  top: 10px;
  right: 35%;
  animation: dfy-orb-float-3 11s ease-in-out infinite;
}

/* Shimmer sweep */
.dfy-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: dfy-shimmer-slide 4s linear infinite;
  pointer-events: none;
}

.docufy-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* ---- LEFT SIDE ---- */
.dfy-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dfy-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  width: fit-content;
  backdrop-filter: blur(6px);
  animation: dfy-badge-glow 3s ease-in-out infinite;
}

.dfy-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.dfy-title-accent {
  color: #a8ecef;
  position: relative;
}

.dfy-sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.65;
  max-width: 520px;
}

/* Feature pills */
.dfy-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.dfy-feature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.dfy-feature:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

/* ---- RIGHT SIDE ---- */
.dfy-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.dfy-icon-ring {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.dfy-icon-ring-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(87, 193, 199, 0.6);
  animation: dfy-pulse-ring 2.4s ease-out infinite;
}

.dfy-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.dfy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
  min-width: 160px;
}

.dfy-btn-primary {
  background: #ffffff;
  color: #0A678C;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.dfy-btn-primary:hover {
  background: #e8f8f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.dfy-btn-ghost {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.dfy-btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}


/* Projects / Portfolio Section */

.portfolio {
  background-color: var(--bg-primary);
}

.portfolio-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.portfolio-header h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

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

.portfolio-item {
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  aspect-ratio: 0.95;
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

/* Asymmetric size for editorial rhythm */
.portfolio-item:nth-child(2) {
  transform: translateY(2rem);
}

.portfolio-item:nth-child(5) {
  transform: translateY(2rem);
}

.portfolio-item:hover {
  transform: translateY(-5px);
  border-color: var(--text-primary);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.08);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-company {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}

.portfolio-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.portfolio-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Process Timeline (Nasıl Çalışıyoruz) */
.process {
  background-color: var(--bg-primary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 4rem;
}

.process-step {
  position: relative;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 3rem 2.5rem;
  border-radius: 28px;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

/* Asymmetrical alignment */
.process-step:nth-child(even) {
  transform: translateY(2rem);
}

.process-step:hover {
  border-color: var(--text-primary);
  transform: translateY(-5px);
}

.process-step:nth-child(even):hover {
  transform: translateY(1.7rem);
}

.process-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--bg-primary);
  -webkit-text-stroke: 1px var(--text-primary);
  line-height: 1;
  margin-bottom: 2rem;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition-smooth);
}

.process-step:hover .process-number {
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
}

.process-step h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Why e-vadi Comparative Section */
.why-us {
  background-color: var(--bg-primary);
}

.comparison-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.comparison-card {
  padding: 4rem;
  border-radius: 32px;
  border: 1px solid var(--border-color);
  position: relative;
  background-color: var(--bg-secondary);
}

.comparison-card-partner {
  background-color: var(--bg-secondary);
  border-color: var(--text-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.comparison-card h3 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.comparison-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.comparison-item-icon-x {
  background-color: rgba(255, 75, 75, 0.1);
  color: #ff4b4b;
}

.comparison-item-icon-check {
  background-color: var(--accent);
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(112, 255, 0, 0.5);
}

.comparison-item-text {
  font-size: 1.05rem;
  line-height: 1.5;
}

.comparison-card-partner .comparison-item-text {
  font-weight: 500;
  color: var(--text-primary);
}

/* Testimonials (Müşteri Deneyimleri) */
.testimonials {
  background-color: var(--bg-primary);
}

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

.testimonial-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--text-primary);
  transform: translateY(-5px);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 1.8rem;
  display: flex;
  gap: 0.3rem;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
}

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

/* FAQ Section (Accordion) */
.faq {
  background-color: var(--bg-primary);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--text-primary);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: var(--text-primary);
  color: var(--accent);
  border-color: var(--text-primary);
}

.faq-item:hover .faq-question h3 {
  color: var(--text-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 2.5rem 2rem 2.5rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

/* Contact Section (İletişim) */
.contact {
  background-color: var(--bg-primary);
  position: relative;
}

.contact-grid {
  display: block;
  position: relative;
}

.contact-mascot {
  position: absolute;
  bottom: 100%;
  margin-bottom: -15px;
  left: 60px;
  width: 200px;
  height: 200px;
  z-index: 10;
  pointer-events: none;
}

.contact-mascot-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.contact-card {
  position: relative;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 4rem;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.03);
  margin-top: 120px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-form .form-group.grid-span-2 {
  grid-column: span 2;
}

.contact-form button[type="submit"] {
  grid-column: span 3;
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .contact-card {
    margin-top: 100px;
  }
  .contact-mascot {
    width: 160px;
    height: 160px;
    left: 40px;
    margin-bottom: -12px;
    top: auto;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form .form-group.grid-span-2 {
    grid-column: span 1;
  }
  .contact-form button[type="submit"] {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .contact-card {
    margin-top: 80px;
  }
  .contact-mascot {
    width: 120px;
    height: 120px;
    left: 20px;
    margin-bottom: -8px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 1.1rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--text-primary);
  background-color: var(--bg-secondary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.03);
}

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

/* Footer (New Premium Dark-Matte Design) */
.footer {
  background-color: #18181b !important;
  background-image: radial-gradient(circle at 90% 10%, rgba(163, 230, 53, 0.04) 0%, transparent 60%) !important;
  color: #a1a1aa !important;
  padding: 5rem 0 3rem 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
  font-family: system-ui, -apple-system, sans-serif !important;
  position: relative;
  z-index: 10;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.footer-desc {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer-newsletter {
  background-color: rgba(24, 24, 27, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  max-width: 420px;
}

.footer-newsletter h4 {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.footer-newsletter p {
  font-size: 0.75rem;
  color: #71717a;
  margin-bottom: 1rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter-form input {
  flex-grow: 1;
  background-color: rgba(39, 39, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.3s ease;
}

.footer-newsletter-form input:focus {
  border-color: #a3e635;
  box-shadow: 0 0 0 1px #a3e635;
}

.footer-newsletter-form button {
  background-color: #a3e635;
  color: #000000;
  border: none;
  font-weight: 650;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
  background-color: #bef264;
  box-shadow: 0 0 10px rgba(163, 230, 53, 0.3);
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}

.footer-cta-title {
  font-size: 2rem;
  font-weight: 850;
  color: #ffffff;
  line-height: 1.3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
}

.footer-cta-title span {
  color: #a3e635;
}

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

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 !important;
}

.footer-col ul a {
  color: #a1a1aa !important;
  font-size: 0.85rem;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.footer-col ul a:hover {
  color: #a3e635 !important;
  transform: translateX(4px);
}

.footer-social-links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social-links li svg {
  width: 14px;
  height: 14px;
  color: #71717a;
  transition: color 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

.footer-social-links li a:hover svg {
  color: #a3e635;
}

.footer-address {
  display: flex;
  gap: 0.5rem;
  color: #a1a1aa;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-address svg {
  width: 16px;
  height: 16px;
  color: #71717a;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom-new {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #71717a;
}

@media (max-width: 768px) {
  .footer-bottom-new {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 576px) {
  .footer-bottom-left {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-bottom-divider {
    display: none;
  }
}

.footer-bottom-left a {
  color: #71717a !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-left a:hover {
  color: #a3e635 !important;
}

.footer-bottom-right a {
  color: #a1a1aa !important;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
  color: #a3e635 !important;
}

/* Animations */
@keyframes marqueeNormal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

@keyframes evoFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1.5deg);
  }
}

@keyframes pulseSphere {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.6rem;
  }
  .hero-animated-sub {
    font-size: 1.45rem;
  }
}

@media (max-width: 992px) {
  .whitespace-large {
    padding: 4rem 0;
  }
  
  .hero {
    padding-top: 6.5rem;
  }

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

  .hero-text-block {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3.0rem;
  }
  
  .hero-animated-sub {
    justify-content: center;
  }
  
  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-mascot-wrapper {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 80%;
    max-width: 380px;
    margin: 4rem auto 0 auto;
  }
  
  .section-header-centered {
    margin-bottom: 4rem;
  }
  
  .section-header-centered h2 {
    font-size: 2.8rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-item:nth-child(2), .portfolio-item:nth-child(5) {
    transform: translateY(0);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .process-step:nth-child(even) {
    transform: translateY(0);
  }
  
  .comparison-box {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  .header {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-secondary);
    padding: 2.5rem;
    border-bottom: 1px solid var(--border-color);
    gap: 1.5rem;
    z-index: 99;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    
    /* Smooth transition styles */
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
  
  .nav-links.active {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 2.1rem;
    white-space: normal !important;
    word-break: keep-all;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .hero-animated-sub {
    font-size: 1.25rem;
  }
  
  .evo-slider {
    height: 380px !important;
  }
  
  .evo-hero-image {
    max-height: 320px !important;
  }
  
  .evo-badge {
    font-size: 0.75rem !important;
    padding: 0.5rem 1rem !important;
    bottom: 4% !important;
    left: 4% !important;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  
  .section-header-centered h2 {
    font-size: 2.4rem;
  }

  .ref-logo-card {
    padding: 1rem 2rem;
    min-width: 160px;
    height: 80px;
  }
  .ref-logo-card img {
    max-width: 100px;
    max-height: 45px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .comparison-card {
    padding: 2.5rem;
  }
  
  .contact-card {
    padding: 2.5rem;
  }
  
  .portfolio-info {
    padding: 1.25rem !important;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  /* Process number — smaller decorative number on mobile */
  .process-number {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  /* References header */
  .references-header h2 {
    font-size: 1.9rem;
  }
  .container {
    padding: 0 1.25rem;
  }
  
  .hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  
  .hero-title {
    font-size: 2.1rem !important;
  }
  
  .hero-animated-sub {
    font-size: 1.1rem !important;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .hero-actions .cta-btn {
    width: 100%;
  }
  
  .hero-mascot-wrapper {
    width: 100%;
    margin-top: 3rem !important;
  }
  
  .evo-slider {
    height: 280px !important;
  }
  
  .evo-hero-image {
    max-height: 240px !important;
  }
  
  h2, .section-header-centered h2 {
    font-size: 2rem !important;
  }
  
  .service-grid-card {
    padding: 2rem 1.25rem !important;
  }
  
  .ref-logo-card {
    padding: 0.8rem 1.5rem;
    min-width: 130px;
    height: 70px;
  }
  .ref-logo-card img {
    max-width: 80px;
    max-height: 35px;
  }
  
  .comparison-card {
    padding: 1.75rem !important;
  }
  
  .contact-card {
    padding: 1.75rem 1.25rem !important;
  }
  
  .faq-question {
    font-size: 1rem !important;
    padding: 1.25rem 1rem !important;
  }
}

/* ==========================================
   iPhone Fine-Tuning (375px – 390px)
   ========================================== */
@media (max-width: 390px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.85rem !important;
    letter-spacing: -0.03em;
    padding: 0.4rem 1rem;
  }

  .hero-animated-sub {
    font-size: 1rem !important;
  }

  .hero-description {
    font-size: 0.92rem;
  }

  .section-header-centered h2,
  h2 {
    font-size: 1.75rem !important;
  }

  .process-number {
    font-size: 1.75rem !important;
  }

  .references-header h2 {
    font-size: 1.6rem !important;
  }

  .dfy-title,
  .ugc-title {
    font-size: 1rem !important;
  }

  .cta-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.88rem;
  }

  .service-grid-card {
    padding: 1.5rem 1rem !important;
  }

  .ugc-stats {
    padding: 10px 14px;
    gap: 12px;
  }

  .ugc-stat-num {
    font-size: 1rem;
  }

  .footer-newsletter-form {
    flex-direction: column;
  }

  .footer-newsletter-form input,
  .footer-newsletter-form button {
    width: 100%;
  }

  .whitespace-large {
    padding: 3rem 0;
  }
}

/* Premium Dark Mode Digital Section */
.digital-section {
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.digital-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: rgba(112, 255, 0, 0.04);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}

.digital-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: rgba(112, 255, 0, 0.03);
  filter: blur(150px);
  border-radius: 50%;
  pointer-events: none;
}

.digital-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.digital-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.digital-tagline {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.digital-title {
  color: #ffffff;
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 850;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.digital-desc {
  color: #a0aec0;
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3rem;
}

.glass-btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.glass-btn:hover {
  background: rgba(112, 255, 0, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 10px 30px rgba(112, 255, 0, 0.25);
  transform: translateY(-3px);
}

.digital-right {
  width: 100%;
}

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

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 2.2rem;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(112, 255, 0, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.glass-card-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: var(--transition-smooth);
}

.glass-card:hover .glass-card-icon {
  transform: scale(1.1) rotate(3deg);
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.glass-card h3 {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.glass-card p {
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 992px) {
  .digital-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .digital-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .digital-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .digital-title {
    font-size: 2.2rem;
  }
  .glass-card {
    padding: 1.8rem;
  }
}

/* ===================================================
   UGC & Influencer Marketing Banner
   =================================================== */

/* Avatar 1 – sol üst köşeden sağa & aşağı doğru gezme */
@keyframes ugc-drift-1 {
  0%   { transform: translate(0px,   0px)   rotate(0deg)   scale(1);    }
  20%  { transform: translate(60px, -15px)  rotate(6deg)   scale(1.05); }
  40%  { transform: translate(100px, 30px)  rotate(-4deg)  scale(0.97); }
  60%  { transform: translate(50px,  60px)  rotate(10deg)  scale(1.08); }
  80%  { transform: translate(-20px, 40px)  rotate(-8deg)  scale(0.95); }
  100% { transform: translate(0px,   0px)   rotate(0deg)   scale(1);    }
}

/* Avatar 2 – sol alt köşeden yukarı & sağa */
@keyframes ugc-drift-2 {
  0%   { transform: translate(0px,   0px)   rotate(0deg);  }
  15%  { transform: translate(40px, -50px)  rotate(-12deg);}
  35%  { transform: translate(90px, -20px)  rotate(5deg);  }
  55%  { transform: translate(70px,  30px)  rotate(-7deg); }
  75%  { transform: translate(20px,  50px)  rotate(9deg);  }
  100% { transform: translate(0px,   0px)   rotate(0deg);  }
}

/* Avatar 3 – sola doğru geniş yay */
@keyframes ugc-drift-3 {
  0%   { transform: translate(0px,   0px)   scale(1);    }
  25%  { transform: translate(-70px, 20px)  scale(1.1);  }
  50%  { transform: translate(-110px,60px)  scale(0.93); }
  75%  { transform: translate(-60px, 90px)  scale(1.05); }
  100% { transform: translate(0px,   0px)   scale(1);    }
}

/* Avatar 4 – sol ortadan sağ ve aşağı */
@keyframes ugc-drift-4 {
  0%   { transform: translate(0px,   0px)   rotate(0deg);   }
  20%  { transform: translate(80px, -35px)  rotate(-14deg); }
  45%  { transform: translate(130px, 10px)  rotate(8deg);   }
  65%  { transform: translate(80px,  55px)  rotate(-5deg);  }
  85%  { transform: translate(30px,  40px)  rotate(11deg);  }
  100% { transform: translate(0px,   0px)   rotate(0deg);   }
}

/* Avatar 5 – sağ üstten sola & aşağı geniş yay */
@keyframes ugc-drift-5 {
  0%   { transform: translate(0px,   0px)   rotate(0deg);   }
  30%  { transform: translate(-80px, 25px)  rotate(10deg);  }
  55%  { transform: translate(-120px,55px)  rotate(-6deg);  }
  80%  { transform: translate(-60px, 80px)  rotate(13deg);  }
  100% { transform: translate(0px,   0px)   rotate(0deg);   }
}

/* Avatar 6 – sağ altta büyük daire çizer */
@keyframes ugc-drift-6 {
  0%   { transform: translate(0px,   0px)   rotate(0deg)   scale(1);    }
  25%  { transform: translate(-50px, -40px) rotate(-9deg)  scale(1.06); }
  50%  { transform: translate(-90px, -70px) rotate(7deg)   scale(0.95); }
  75%  { transform: translate(-40px, -30px) rotate(-12deg) scale(1.04); }
  100% { transform: translate(0px,   0px)   rotate(0deg)   scale(1);    }
}

/* Avatar 7 – sağ orta dikey & sola sapma */
@keyframes ugc-drift-7 {
  0%   { transform: translate(0px,    0px)  rotate(0deg);  }
  20%  { transform: translate(-45px, -55px) rotate(8deg);  }
  50%  { transform: translate(-90px, -25px) rotate(-11deg);}
  75%  { transform: translate(-55px,  40px) rotate(6deg);  }
  100% { transform: translate(0px,    0px)  rotate(0deg);  }
}

/* Avatar 8 – sağ alt büyük yay yukarı sol */
@keyframes ugc-drift-8 {
  0%   { transform: translate(0px,   0px)   rotate(0deg)   scale(1);    }
  30%  { transform: translate(-70px,-40px)  rotate(-7deg)  scale(1.07); }
  55%  { transform: translate(-100px,10px)  rotate(12deg)  scale(0.94); }
  80%  { transform: translate(-40px, 50px)  rotate(-9deg)  scale(1.03); }
  100% { transform: translate(0px,   0px)   rotate(0deg)   scale(1);    }
}

@keyframes ugc-avatar-pop {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes ugc-btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0.18); }
  50%       { box-shadow: 0 0 0 8px rgba(0,0,0,0); }
}

.ugc-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #E6FF00 0%, #C4D902 60%, #aecb00 100%);
  width: 100%;
  padding: 48px 0;
  margin-top: 48px;
}

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

/* Floating avatars container */
.ugc-avatars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ugc-av {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.75);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  opacity: 0;
}

.ugc-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Individual avatar positions & animations */
.ugc-av-1 { width: 56px; height: 56px; top: 20%;  left: 3%;    animation: ugc-avatar-pop 0.6s ease 0.10s forwards, ugc-drift-1  7.4s  cubic-bezier(0.45,0.05,0.55,0.95) infinite        0.10s; }
.ugc-av-2 { width: 44px; height: 44px; top: 55%;  left: 4%;    animation: ugc-avatar-pop 0.6s ease 0.25s forwards, ugc-drift-2  9.8s  cubic-bezier(0.37,0,0.63,1)       infinite        0.25s; }
.ugc-av-3 { width: 64px; height: 64px; top: 10%;  left: 20%;   animation: ugc-avatar-pop 0.6s ease 0.15s forwards, ugc-drift-3  11.2s cubic-bezier(0.5,0,0.5,1)         infinite        0.15s; }
.ugc-av-4 { width: 48px; height: 48px; top: 60%;  left: 24%;   animation: ugc-avatar-pop 0.6s ease 0.35s forwards, ugc-drift-4  8.6s  cubic-bezier(0.42,0,0.58,1)       infinite        0.35s; }
.ugc-av-5 { width: 52px; height: 52px; top: 8%;   right: 20%;  animation: ugc-avatar-pop 0.6s ease 0.20s forwards, ugc-drift-5  10.5s cubic-bezier(0.45,0.05,0.55,0.95) infinite        0.20s; }
.ugc-av-6 { width: 60px; height: 60px; top: 55%;  right: 14%;  animation: ugc-avatar-pop 0.6s ease 0.40s forwards, ugc-drift-6  12.3s cubic-bezier(0.37,0,0.63,1)       infinite        0.40s; }
.ugc-av-7 { width: 42px; height: 42px; top: 25%;  right: 5%;   animation: ugc-avatar-pop 0.6s ease 0.30s forwards, ugc-drift-7  8.9s  cubic-bezier(0.5,0,0.5,1)         infinite        0.30s; }
.ugc-av-8 { width: 58px; height: 58px; top: 68%;  right: 26%;  animation: ugc-avatar-pop 0.6s ease 0.45s forwards, ugc-drift-8  13.0s cubic-bezier(0.42,0,0.58,1)       infinite        0.45s; }

/* Inner layout */
.ugc-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* LEFT */
.ugc-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ugc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.18);
  color: #1a1a00;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  width: fit-content;
}

.ugc-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #1a1a00;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.ugc-accent {
  color: #003A3D;
  position: relative;
}

.ugc-sub {
  font-size: 0.87rem;
  font-weight: 400;
  color: rgba(0,0,0,0.68);
  margin: 0;
  line-height: 1.65;
  max-width: 480px;
}

/* RIGHT */
.ugc-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.ugc-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  padding: 14px 22px;
  backdrop-filter: blur(4px);
}

.ugc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ugc-stat-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a00;
  line-height: 1;
}

.ugc-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(0,0,0,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ugc-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,0.18);
}

.ugc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1a1a00;
  color: #E6FF00;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
  animation: ugc-btn-pulse 2.5s ease infinite;
}

.ugc-btn:hover {
  background: #111100;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* UGC Responsive */
@media (max-width: 900px) {
  .ugc-banner {
    padding: 36px 0;
  }
  .ugc-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 28px;
    gap: 28px;
  }
  .ugc-right {
    width: 100%;
    align-items: flex-start;
  }
  .ugc-title {
    font-size: 1.3rem;
  }
  /* Hide far avatars on tablet */
  .ugc-av-3, .ugc-av-7 {
    display: none;
  }
}

@media (max-width: 480px) {
  .ugc-inner {
    padding: 0 20px;
  }
  .ugc-title {
    font-size: 1.1rem;
  }
  .ugc-stats {
    width: 100%;
    justify-content: space-between;
  }
  .ugc-btn {
    width: 100%;
    justify-content: center;
  }
  .ugc-av-1, .ugc-av-2, .ugc-av-4, .ugc-av-5, .ugc-av-6, .ugc-av-8 {
    display: none;
  }
}

/* Instagram Social Media Section (Sosyal Medyada Biz) */

.instagram-section {
  background-color: var(--bg-primary);
  overflow: hidden;
  position: relative;
}

.instagram-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.instagram-header h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.instagram-header p {
  color: var(--text-secondary);
  font-size: 1.15rem;
}

.instagram-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

/* Left & Right Fade Overlays for slider container */
.instagram-slider-container::before,
.instagram-slider-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 10;
  pointer-events: none;
}

.instagram-slider-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.instagram-slider-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.instagram-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: instagramMarquee 45s linear infinite;
}

.instagram-track:hover {
  animation-play-state: paused;
}

.instagram-post-card {
  display: block;
  position: relative;
  width: 280px;
  height: 350px; /* 4:5 Aspect Ratio (slightly vertical) */
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.instagram-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effect on card */
.instagram-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.instagram-post-card:hover img {
  transform: scale(1.05);
}

/* Instagram Post Overlay */
.instagram-post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 1.5rem;
  text-align: center;
}

.instagram-post-card:hover .instagram-post-overlay {
  opacity: 1;
}

/* Instagram Icon animation inside overlay */
.instagram-post-overlay svg {
  color: #ffffff;
  transform: translateY(15px) scale(0.8);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.instagram-post-card:hover .instagram-post-overlay svg {
  transform: translateY(0) scale(1);
}

/* Instagram Button / Text "instagramımızı incele" */
.instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  background-color: #ffffff;
  color: #000000;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 9999px;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, color 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.instagram-btn:hover {
  background-color: var(--accent);
  color: var(--text-primary);
}

.instagram-post-card:hover .instagram-btn {
  transform: translateY(0);
}

/* Keyframe for continuous left infinite auto-scroll */
@keyframes instagramMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive fixes for Instagram section */
@media (max-width: 992px) {
  .instagram-post-card {
    width: 224px;
    height: 280px; /* 4:5 Aspect Ratio */
  }
  .instagram-header h2 {
    font-size: 2.8rem !important;
  }
}

@media (max-width: 576px) {
  .instagram-post-card {
    width: 176px;
    height: 220px; /* 4:5 Aspect Ratio */
  }
  .instagram-header h2 {
    font-size: 2.2rem !important;
  }
  .instagram-btn {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 92px;
  right: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(24, 24, 27, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 25px rgba(112, 255, 0, 0.5);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 78px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  height: 54px;
  border-radius: 27px;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  z-index: 998;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0,0,0,0.18);
  overflow: hidden;
  width: 54px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              transform 0.3s ease;
}

.whatsapp-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-icon svg {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
}

.whatsapp-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s;
  padding-right: 20px;
  color: #ffffff;
  pointer-events: none;
}

/* Hover: slide open to show text */
.whatsapp-btn:hover {
  width: 222px;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55), 0 4px 16px rgba(0,0,0,0.22);
  transform: translateY(-3px);
}

.whatsapp-btn:hover .whatsapp-text {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 24px;
  }
  .whatsapp-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .whatsapp-icon svg {
    width: 22px;
    height: 22px;
  }
  .whatsapp-btn:hover {
    width: 200px;
  }
}


/* Docufy Banner – Responsive */
@media (max-width: 900px) {
  .docufy-banner {
    padding: 36px 0;
  }

  .docufy-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 28px;
    gap: 32px;
  }

  .dfy-right {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
  }

  .dfy-actions {
    flex-direction: row;
  }

  .dfy-title {
    font-size: 1.3rem;
  }

  .dfy-btn {
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .docufy-banner {
    padding: 28px 0;
  }

  .docufy-banner-inner {
    padding: 0 20px;
  }

  .dfy-title {
    font-size: 1.1rem;
  }

  .dfy-features {
    display: none;
  }

  .dfy-actions {
    flex-direction: column;
    width: 100%;
  }

  .dfy-btn {
    width: 100%;
  }
}
