/*
Theme Name: Konya Haberler Media Kit
Theme URI: https://konyahaberler.com
Author: Konya Haberler
Author URI: https://instagram.com/konyahaberler
Description: @konyahaberler Instagram hesabı için özel geliştirilmiş, reklam satış odaklı modern haber/medya kit teması. WooCommerce entegrasyonlu, mobil uyumlu, hızlı ve SEO dostu.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: konya-haberler
Tags: news, media-kit, advertising, responsive, woocommerce, dark-mode
*/

/* ========================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ======================================== */
:root {
  /* Renkler */
  --kh-red: #E31E24;
  --kh-red-dark: #B01419;
  --kh-red-light: #FF3B41;
  --kh-dark: #0D0D0D;
  --kh-dark-2: #141414;
  --kh-dark-3: #1C1C1C;
  --kh-gray: #2A2A2A;
  --kh-gray-mid: #555555;
  --kh-gray-light: #8A8A8A;
  --kh-white: #FFFFFF;
  --kh-off-white: #F5F5F5;
  --kh-border: rgba(255,255,255,0.08);
  --kh-border-light: rgba(0,0,0,0.08);

  /* Tipografi */
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.2);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.3);
  --shadow-red: 0 8px 32px rgba(227,30,36,0.35);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;

  /* Layout */
  --container-max: 1280px;
  --header-height: 70px;
}

/* Dark Mode */
[data-theme="dark"], .dark-mode {
  --bg-primary: var(--kh-dark);
  --bg-secondary: var(--kh-dark-2);
  --bg-card: var(--kh-dark-3);
  --text-primary: var(--kh-white);
  --text-secondary: #CCCCCC;
  --text-muted: var(--kh-gray-light);
  --border-color: var(--kh-border);
}

[data-theme="light"], .light-mode {
  --bg-primary: var(--kh-white);
  --bg-secondary: var(--kh-off-white);
  --bg-card: var(--kh-white);
  --text-primary: var(--kh-dark);
  --text-secondary: #333333;
  --text-muted: var(--kh-gray-mid);
  --border-color: var(--kh-border-light);
}

/* Default: Dark */
body {
  --bg-primary: var(--kh-dark);
  --bg-secondary: var(--kh-dark-2);
  --bg-card: var(--kh-dark-3);
  --text-primary: var(--kh-white);
  --text-secondary: #CCCCCC;
  --text-muted: var(--kh-gray-light);
  --border-color: var(--kh-border);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--duration-normal) var(--ease-in-out),
              color var(--duration-normal) var(--ease-in-out);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-in-out);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { line-height: 1.7; }

.text-gradient {
  background: linear-gradient(135deg, var(--kh-red-light), var(--kh-red-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 2rem; }

.font-mono { font-family: var(--font-mono); }
.font-display { font-family: var(--font-display); }

/* ========================================
   LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: 800px;
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-xl) 0;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

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

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ========================================
   HEADER & NAV
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--kh-border);
  transition: all var(--duration-normal) var(--ease-in-out);
}

.site-header.scrolled {
  background: rgba(13, 13, 13, 0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--kh-red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: white;
  box-shadow: var(--shadow-red);
}

.logo-text span {
  color: var(--kh-red);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--kh-red);
  transition: width var(--duration-normal) var(--ease-out);
}

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

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.dark-toggle {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--duration-fast);
}

.dark-toggle:hover {
  border-color: var(--kh-red);
  color: var(--kh-red);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13, 13, 13, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  text-align: center;
}

.mobile-menu a:hover {
  color: var(--kh-red);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--kh-red);
  color: var(--kh-white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background: var(--kh-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(227,30,36,0.45);
}

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

.btn-secondary:hover {
  border-color: var(--kh-red);
  color: var(--kh-red);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--kh-red);
  border: 1px solid var(--kh-red);
}

.btn-outline-red:hover {
  background: var(--kh-red);
  color: white;
  transform: translateY(-2px);
}

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

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--kh-red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(227,30,36,0.1);
  border: 1px solid rgba(227,30,36,0.2);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--kh-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
  background: var(--kh-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(227,30,36,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(227,30,36,0.06) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--kh-border);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
}

.hero-badge .live-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: live-pulse 2s infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: var(--space-md);
}

.hero-title .line-red {
  color: var(--kh-red);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  line-height: 1.6;
}

.hero-subtitle strong {
  color: var(--kh-red);
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--kh-white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-stat-number.counting {
  color: var(--kh-red);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-phone-mockup {
  width: 320px;
  height: 640px;
  background: var(--kh-dark-3);
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(227,30,36,0.15);
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: var(--kh-dark);
  border-radius: 0 0 20px 20px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #111, #1a1a1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px 16px;
  gap: 12px;
}

.phone-ig-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.phone-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--kh-red), #FF6B00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  color: white;
  border: 2px solid var(--kh-red);
  box-shadow: 0 0 0 3px rgba(227,30,36,0.2);
}

.phone-ig-info { flex: 1; }
.phone-ig-handle { font-weight: 700; font-size: 0.85rem; }
.phone-ig-followers { font-size: 0.7rem; color: var(--text-muted); }

.phone-stats-row {
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--kh-border);
}

.phone-stat { text-align: center; }
.phone-stat-num { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; }
.phone-stat-lbl { font-size: 0.6rem; color: var(--text-muted); }

.phone-posts-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: 8px;
  overflow: hidden;
}

.phone-post {
  aspect-ratio: 1;
  background: var(--kh-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.phone-post::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227,30,36,0.3), rgba(0,0,0,0.5));
}

/* ========================================
   INSTAGRAM SECTION
   ======================================== */
.instagram-section {
  background: var(--bg-secondary);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--kh-red), transparent);
}

.ig-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.ig-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kh-red), #FF6B00);
}

.ig-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.ig-avatar-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, #fd5949, #d6249f, #285AEB);
  padding: 3px;
  flex-shrink: 0;
}

.ig-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--kh-red);
}

.ig-handle { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }
.ig-category { color: var(--text-muted); font-size: 0.85rem; margin-top: 2px; }
.ig-verified { color: #1D9BF0; font-size: 0.75rem; margin-top: 4px; }

.ig-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.ig-stat-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.ig-stat-box:hover {
  border-color: var(--kh-red);
  background: rgba(227,30,36,0.05);
  transform: translateY(-4px);
}

.ig-stat-box .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--kh-red);
  letter-spacing: -0.03em;
  display: block;
}

.ig-stat-box .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.ig-posts-slider {
  margin-top: var(--space-md);
}

.ig-posts-track {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-xs);
}

.ig-posts-track::-webkit-scrollbar { display: none; }

.ig-post-item {
  flex-shrink: 0;
  width: 200px;
  scroll-snap-align: start;
}

.ig-post-thumb {
  aspect-ratio: 1;
  background: var(--kh-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border-color);
}

.ig-post-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227,30,36,0.2), rgba(0,0,0,0.6));
}

.ig-post-thumb .post-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}

.ig-post-stats {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.engagement-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.engagement-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.engagement-box:hover {
  border-color: rgba(227,30,36,0.4);
  transform: translateY(-4px);
}

.engagement-box .rate {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--kh-red);
  letter-spacing: -0.04em;
}

.engagement-box .metric {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.engagement-box .compare {
  font-size: 0.75rem;
  color: #22C55E;
  margin-top: 8px;
  font-weight: 600;
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.packages-section {
  background: var(--bg-primary);
  padding: var(--space-3xl) 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  border-color: rgba(227,30,36,0.4);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border-color: var(--kh-red);
  background: linear-gradient(145deg, rgba(227,30,36,0.05), var(--bg-card));
}

.package-card.featured::before {
  content: 'EN POPÜLER';
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--kh-red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.package-icon {
  width: 52px;
  height: 52px;
  background: rgba(227,30,36,0.1);
  border: 1px solid rgba(227,30,36,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.package-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  flex: 1;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--space-md);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--kh-red);
  letter-spacing: -0.04em;
}

.price-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-period {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.package-features {
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.package-feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.package-feature::before {
  content: '✓';
  color: var(--kh-red);
  font-weight: 700;
  width: 18px;
  height: 18px;
  background: rgba(227,30,36,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.package-meta {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.meta-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========================================
   STATS / MEDIA KIT SECTION
   ======================================== */
.mediakit-section {
  background: var(--bg-secondary);
  padding: var(--space-3xl) 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kh-red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out);
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-card:hover {
  border-color: rgba(227,30,36,0.3);
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--kh-red);
  letter-spacing: -0.04em;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-xs);
}

.stat-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #22C55E;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: var(--space-xs);
}

/* Chart Area */
.chart-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
}

.chart-bar-wrap {
  display: flex;
  align-items: end;
  gap: var(--space-xs);
  height: 180px;
  padding-top: var(--space-md);
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--kh-red), var(--kh-red-light));
  border-radius: 4px 4px 0 0;
  position: relative;
  min-width: 20px;
  transition: height var(--duration-slow) var(--ease-out);
  cursor: pointer;
}

.chart-bar::after {
  content: attr(data-value);
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.chart-bar:hover {
  background: linear-gradient(to top, var(--kh-red-dark), var(--kh-red));
  opacity: 0.9;
}

/* Audience Donut */
.audience-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.audience-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.progress-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.progress-label {
  width: 80px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.progress-bar-wrap {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--kh-red), var(--kh-red-light));
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease-out);
}

.progress-bar-fill.animate {
  transform: scaleX(1);
}

.progress-pct {
  width: 40px;
  text-align: right;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--kh-red);
}

/* ========================================
   REFERANSLAR / TESTIMONIALS
   ======================================== */
.references-section {
  background: var(--bg-primary);
  padding: var(--space-3xl) 0;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.logo-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-out);
  min-width: 140px;
  min-height: 70px;
}

.logo-item:hover {
  border-color: rgba(227,30,36,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.logo-item span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
  border-color: rgba(227,30,36,0.3);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  right: var(--space-xl);
  font-size: 5rem;
  color: rgba(227,30,36,0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kh-red), #FF6B00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.9rem; }
.author-company { font-size: 0.8rem; color: var(--text-muted); }

/* ========================================
   BLOG / HABERLER
   ======================================== */
.blog-section {
  background: var(--bg-secondary);
  padding: var(--space-3xl) 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.blog-card:hover {
  border-color: rgba(227,30,36,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  aspect-ratio: 16/9;
  background: var(--kh-gray);
  position: relative;
  overflow: hidden;
}

.blog-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: linear-gradient(135deg, var(--kh-dark-3), var(--kh-gray));
}

.blog-thumb-placeholder .thumb-icon { font-size: 2.5rem; }
.blog-thumb-placeholder .thumb-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.blog-cat-tag {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--kh-red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}

.blog-body {
  padding: var(--space-lg);
}

.blog-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-title a:hover { color: var(--kh-red); }

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-color);
}

.blog-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-share {
  display: flex;
  gap: 6px;
}

.share-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--duration-fast);
}

.share-btn:hover {
  border-color: var(--kh-red);
  color: var(--kh-red);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  background: var(--bg-primary);
  padding: var(--space-3xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.contact-info-item:hover {
  border-color: rgba(227,30,36,0.3);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: rgba(227,30,36,0.1);
  border: 1px solid rgba(227,30,36,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-info-value {
  font-weight: 600;
  margin-top: 2px;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.875rem var(--space-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--duration-fast);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--kh-red);
  background: rgba(227,30,36,0.03);
  box-shadow: 0 0 0 3px rgba(227,30,36,0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: var(--kh-red);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(0,0,0,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
}

.cta-section::after {
  content: '📢';
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 15rem;
  opacity: 0.05;
  line-height: 1;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
}

.cta-desc {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--kh-red);
  font-weight: 700;
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-white-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ========================================
   FLOATING ELEMENTS
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 30px rgba(37,211,102,0.4);
  transition: all var(--duration-normal) var(--ease-out);
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
  animation: none;
}

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

.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--kh-dark);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-fast);
  border: 1px solid var(--border-color);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

/* Contact Popup */
.contact-popup {
  position: fixed;
  bottom: var(--space-3xl);
  right: var(--space-lg);
  z-index: 890;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  width: 320px;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--duration-normal) var(--ease-out);
}

.contact-popup.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--kh-dark);
  border-top: 1px solid var(--kh-border);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.footer-links a:hover {
  color: var(--kh-red);
}

.footer-bottom {
  border-top: 1px solid var(--kh-border);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--kh-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--duration-fast);
}

.social-icon:hover {
  background: var(--kh-red);
  border-color: var(--kh-red);
  color: white;
  transform: translateY(-2px);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ========================================
   UTILITIES & HELPERS
   ======================================== */
.divider {
  width: 60px;
  height: 3px;
  background: var(--kh-red);
  border-radius: 2px;
  margin: var(--space-md) auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.badge-red { background: rgba(227,30,36,0.15); color: var(--kh-red-light); }
.badge-green { background: rgba(34,197,94,0.15); color: #22C55E; }
.badge-yellow { background: rgba(245,158,11,0.15); color: #F59E0B; }

.highlight-box {
  background: linear-gradient(135deg, rgba(227,30,36,0.08), rgba(227,30,36,0.02));
  border: 1px solid rgba(227,30,36,0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.w-full { width: 100%; }
.max-w-lg { max-width: 600px; margin: 0 auto; }

/* Lazy Load */
.lazy { opacity: 0; transition: opacity var(--duration-slow) var(--ease-in-out); }
.lazy.loaded { opacity: 1; }

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

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

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

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

  .audience-cards {
    grid-template-columns: 1fr;
  }

  .hero .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-phone-mockup {
    display: none;
  }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
    --space-xl: 2.5rem;
  }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

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

  .hero-stats {
    gap: var(--space-md);
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .audience-cards { grid-template-columns: 1fr; }

  .engagement-boxes { grid-template-columns: 1fr; }

  .cta-buttons { flex-direction: column; align-items: center; }

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

  .hero-cta { flex-direction: column; }
}

@media (max-width: 480px) {
  .ig-stats-row { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.2rem; }
  .logos-grid { gap: var(--space-sm); }
}

/* ========================================
   PRINT
   ======================================== */
@media print {
  .site-header,
  .whatsapp-float,
  .mobile-menu { display: none !important; }
  
  body { background: white; color: black; }
}
