/* ==========================================================================
   Bafra Bilgi İşlem - Modern Corporate & Cyber Tech Stylesheet
   ========================================================================== */

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

/* --- Root & Theme Variables (Deep Midnight Obsidian & Vibrant Crimson Tech Palette) --- */
:root {
  /* Dark Theme (Rich Dark Crimson & Wine Obsidian Velvet) */
  --bg-body: #100408;
  --bg-surface: #19070f;
  --bg-surface-2: #240b17;
  --bg-card: rgba(26, 8, 17, 0.88);
  --bg-card-hover: rgba(38, 12, 25, 0.96);
  --bg-glass: rgba(22, 7, 14, 0.85);
  --bg-input: rgba(26, 8, 17, 0.95);
  
  --border-color: rgba(244, 63, 94, 0.15);
  --border-hover: rgba(244, 63, 94, 0.65);
  --border-glow: rgba(225, 29, 72, 0.5);

  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  --primary: #e11d48;
  --primary-light: #fb7185;
  --primary-dark: #9f1239;
  --secondary: #ff3355;
  --accent: #ffffff;
  --accent-pink: #f43f5e;
  --success: #10b981;
  --warning: #f59e0b;

  --gradient-primary: linear-gradient(135deg, #e11d48 0%, #9f1239 100%);
  --gradient-accent: linear-gradient(135deg, #ffffff 0%, #fb7185 45%, #e11d48 100%);
  --gradient-card: linear-gradient(145deg, rgba(35, 12, 23, 0.9) 0%, rgba(18, 5, 12, 0.96) 100%);
  --gradient-glow: radial-gradient(circle, rgba(225, 29, 72, 0.25) 0%, transparent 70%);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 10px 35px rgba(0, 0, 0, 0.75);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.88);
  --shadow-neon: 0 0 35px rgba(225, 29, 72, 0.55);
  --shadow-neon-cyan: 0 0 30px rgba(251, 113, 133, 0.45);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Light Theme (Crisp Pure White & Deep Corporate Crimson Red) */
[data-theme="light"] {
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-2: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.94);
  --bg-input: #ffffff;
  
  --border-color: rgba(190, 18, 60, 0.12);
  --border-hover: rgba(190, 18, 60, 0.5);
  --border-glow: rgba(190, 18, 60, 0.3);

  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;

  --primary: #be123c;
  --primary-light: #9f1239;
  --primary-dark: #881337;
  --secondary: #dc2626;
  --accent: #0f172a;
  --accent-pink: #be123c;

  --gradient-primary: linear-gradient(135deg, #be123c 0%, #881337 100%);
  --gradient-accent: linear-gradient(135deg, #0f172a 0%, #be123c 55%, #9f1239 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  --gradient-glow: radial-gradient(circle, rgba(190, 18, 60, 0.08) 0%, transparent 70%);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
  --shadow-neon: 0 6px 20px rgba(190, 18, 60, 0.35);
  --shadow-neon-cyan: 0 6px 20px rgba(190, 18, 60, 0.35);
}

/* --- Base Reset & Typography --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  max-width: 100%;
  width: 100%;
  transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-padding {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

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

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.35);
  border-radius: var(--radius-full);
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

[data-theme="light"] .badge-tag {
  background: rgba(225, 29, 72, 0.08);
  color: var(--primary);
  border-color: rgba(225, 29, 72, 0.25);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* --- Interactive Particle Background --- */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.ambient-glow {
  position: absolute;
  width: min(650px, 85vw);
  height: min(650px, 85vw);
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.42;
  transition: opacity 0.5s ease;
  overflow: hidden;
}

.ambient-glow-1 {
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, #be123c, #881337);
}

.ambient-glow-2 {
  top: 35%;
  right: -80px;
  background: radial-gradient(circle, #9f1239, #4c0519);
}

.ambient-glow-3 {
  bottom: 5%;
  left: 5%;
  background: radial-gradient(circle, #be123c, #58061c);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-neon);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(225, 29, 72, 0.55);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
  color: var(--primary-light);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-anydesk {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(239, 68, 68, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-anydesk:hover {
  background: #dc2626;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.55);
  color: #ffffff;
}

.btn-anydesk svg {
  display: inline-block;
  vertical-align: middle;
  transition: transform var(--transition-fast);
}

.btn-anydesk:hover svg {
  transform: scale(1.15) rotate(-5deg);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.05rem;
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all var(--transition-smooth);
  padding: 1.25rem 0;
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(225, 29, 72, 0.35));
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.theme-toggle-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  border-color: var(--border-hover);
  transform: rotate(25deg);
  color: var(--primary-light);
}

.header-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 1.2rem;
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.35);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.header-contact-badge:hover {
  background: rgba(225, 29, 72, 0.22);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.25);
}

.header-contact-badge i {
  color: var(--primary-light);
  font-size: 1rem;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 8px;
  cursor: pointer;
}

.hamburger-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

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

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-surface);
  border-left: 1px solid var(--border-color);
  z-index: 1000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 3.5rem;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.35);
  border-radius: var(--radius-full);
  color: var(--primary-light);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1.85rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-ring 2s infinite;
}

.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 1.85rem;
  letter-spacing: -0.02em;
}

.hero-title-prefix {
  display: block;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.typewriter-wrapper {
  display: inline-block;
  min-height: 1.35em;
  position: relative;
}

.typewriter-text {
  background: linear-gradient(135deg, #ffffff 0%, #fb7185 60%, #e11d48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary-light);
  display: inline;
  line-height: 1.35;
}

[data-theme="light"] .typewriter-text {
  background: linear-gradient(135deg, #881337 0%, #be123c 50%, #9f1239 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.typewriter-cursor {
  display: inline-block;
  color: var(--primary-light);
  font-weight: 300;
  animation: blink 1s infinite;
  margin-left: 2px;
}

[data-theme="light"] .typewriter-cursor {
  color: #be123c;
}

[data-theme="light"] .hero-eyebrow,
[data-theme="light"] .badge-tag,
[data-theme="light"] .bento-badge,
[data-theme="light"] .contact-icon-box {
  background: rgba(190, 18, 60, 0.08);
  color: #be123c;
  border-color: rgba(190, 18, 60, 0.22);
}

[data-theme="light"] .product-subtitle,
[data-theme="light"] .footer-link-item:hover,
[data-theme="light"] .theme-toggle-btn:hover,
[data-theme="light"] .nav-link:hover,
[data-theme="light"] .nav-link.active {
  color: #be123c;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border-color);
}

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

.stat-number {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Hero Showcase / 3D Slider --- */
.hero-visual {
  position: relative;
}

.hero-slider-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg), var(--shadow-neon);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth);
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.16) 0%, #090e1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.5rem 4.75rem;
}

.slide-item.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide-item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
  transition: transform 0.4s ease;
}

.slide-caption-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.slide-caption-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.slide-caption-tag {
  font-size: 0.75rem;
  color: var(--primary-light);
  font-weight: 700;
  text-transform: uppercase;
}

.slider-nav-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0 0.5rem;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  width: 28px;
  background: var(--gradient-primary);
}

.slider-ctrl-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-ctrl-btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
}

/* Floating Tech Badges on Hero */
.floating-badge {
  position: absolute;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
  max-width: calc(100% - 10px);
}

.badge-pos-1 {
  top: -10px;
  left: -10px;
  animation-delay: 0s;
}

.badge-pos-2 {
  bottom: 15px;
  right: -10px;
  animation-delay: 2s;
}

.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-text-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.badge-text-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- Section: Neler Yapıyoruz? (Bento Grid) --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.bento-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md), 0 0 25px rgba(225, 29, 72, 0.2);
}

.bento-col-4 {
  grid-column: span 4;
}

.bento-col-6 {
  grid-column: span 6;
}

.bento-col-8 {
  grid-column: span 8;
}

.bento-col-12 {
  grid-column: span 12;
}

.bento-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: var(--primary-light);
  margin-bottom: 1.75rem;
  transition: all var(--transition-fast);
}

.bento-card:hover .bento-icon-wrapper {
  background: var(--gradient-primary);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.bento-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.95rem;
  line-height: 1.35;
}

.bento-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.bento-badge {
  display: inline-block;
  margin-top: 1.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(225, 29, 72, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(244, 63, 94, 0.35);
  margin-top: 1.25rem;
  align-self: flex-start;
}

/* --- Section: Ürünlerimiz & Hizmetlerimiz (Products / Tabs) --- */
.product-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.tab-pill-btn {
  padding: 0.65rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}

.tab-pill-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.tab-pill-btn.active {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-neon);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(225, 29, 72, 0.25);
}

.product-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 250px;
  overflow: hidden;
  background: var(--bg-surface-2);
  border-bottom: 1px solid var(--border-color);
}

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

.product-card-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, transparent 40%, rgba(12, 9, 10, 0.45) 100%);
  pointer-events: none;
}

[data-theme="light"] .product-card-image-wrap::after {
  background: linear-gradient(180deg, transparent 60%, rgba(255, 255, 255, 0.35) 100%);
}

.product-card:hover .product-card-image-wrap img {
  transform: scale(1.08);
}

.product-tag-chip {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.product-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.product-features-list {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  flex-grow: 1;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.product-feature-item i {
  color: var(--success);
  font-size: 0.95rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

/* --- Interactive Quote & Pricing Wizard (Sihirbaz) --- */
.wizard-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.wizard-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.wizard-step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.wizard-step-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-color);
  transform: translateY(-50%);
  z-index: 1;
}

.wizard-step-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface-2);
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  transition: all var(--transition-fast);
}

.wizard-step-node.active {
  background: var(--gradient-primary);
  border-color: var(--primary-light);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.5);
}

.wizard-step-node.completed {
  background: var(--success);
  border-color: var(--success);
  color: #ffffff;
}

.wizard-step-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.wizard-step-content.active {
  display: block;
}

.wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.wizard-option-card {
  background: var(--bg-surface);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.wizard-option-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.wizard-option-card.selected {
  border-color: var(--primary);
  background: rgba(225, 29, 72, 0.1);
  box-shadow: 0 0 20px rgba(225, 29, 72, 0.25);
}

.wizard-option-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(225, 29, 72, 0.15);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.wizard-option-card.selected .icon-box {
  background: var(--gradient-primary);
  color: #ffffff;
}

.wizard-option-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.wizard-option-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

/* --- Section: Bizi Tanıyın (About Us) --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 4rem;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(225, 29, 72, 0.2);
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem 6.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.about-image-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.22) 0%, rgba(225, 29, 72, 0.12) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.about-image-card img.about-main-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.35));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-card:hover img.about-main-logo {
  transform: scale(1.04);
}

.about-floating-experience {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  padding: 1rem 1.5rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 5;
}

[data-theme="light"] .about-floating-experience {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.08);
}

.exp-years {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.exp-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.exp-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.exp-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.35);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.highlight-box i {
  color: var(--primary-light);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.highlight-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

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

/* Live Working Hours Status Pill */
.working-hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* --- Section: Çözüm Ortaklarımız (Brand Marquee) --- */
.partners-section {
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

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

.partner-logo-item {
  height: 64px;
  min-width: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-fast);
}

.partner-logo-item:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.35);
  border-color: #e11d48;
}

.partner-logo-item img {
  max-height: 44px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* --- Section: İletişim & Harita (Contact) --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  transition: all var(--transition-fast);
}

.contact-card-item:hover {
  transform: translateX(6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.35);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-card-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.map-wrapper {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-top: 1.5rem;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  cursor: text;
  caret-color: var(--primary);
  transition: all var(--transition-fast);
}

.form-select {
  cursor: pointer;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.25);
  outline: none;
}

[data-theme="light"] .form-input,
[data-theme="light"] .form-textarea,
[data-theme="light"] .form-select {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  caret-color: #e11d48;
}

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

/* --- Footer --- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 1.25rem 0 1.75rem;
  max-width: 340px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--gradient-primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(225, 29, 72, 0.4);
}

.footer-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-item {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link-item:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

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

/* --- Floating Widgets --- */
.floating-widgets-wrapper {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  z-index: 99;
}

.back-to-top-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition-smooth);
}

.back-to-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top-btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-4px);
}

.whatsapp-trigger-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: all var(--transition-bounce);
}

.whatsapp-trigger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.wa-badge-pulse {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid var(--bg-surface);
  animation: pulse-ring 2s infinite;
}

/* WhatsApp Quick Chat Drawer */
.whatsapp-chat-modal {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 340px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all var(--transition-smooth);
}

.whatsapp-chat-modal.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-chat-header {
  background: #075e54;
  color: #ffffff;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wa-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wa-avatar img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.wa-header-info h4 {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.wa-header-info span {
  font-size: 0.75rem;
  opacity: 0.85;
}

.wa-chat-body {
  padding: 1.25rem;
  background: var(--bg-surface-2);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wa-bubble-incoming {
  background: var(--bg-card);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border-top-left-radius: 4px;
  font-size: 0.88rem;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.wa-quick-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wa-option-btn {
  padding: 0.6rem 0.85rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-primary);
}

.wa-option-btn:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1380px) {
  .nav-menu {
    gap: 1.35rem;
  }
  .nav-link {
    font-size: 0.9rem;
  }
  .header-container {
    gap: 1rem;
  }
  .header-actions {
    gap: 0.75rem;
  }
  .header-contact-badge {
    padding: 0.5rem 0.9rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 1rem;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  .header-contact-badge {
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
  }
  .btn-whatsapp, .btn-anydesk {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 1080px) {
  .nav-menu, .header-contact-badge {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .bento-col-4, .bento-col-6, .bento-col-8 {
    grid-column: span 12;
  }
}

@media (max-width: 540px) {
  .header-actions .btn-whatsapp span,
  .header-actions .btn-anydesk span {
    display: none;
  }
  .header-actions .btn-whatsapp,
  .header-actions .btn-anydesk {
    padding: 0.45rem 0.65rem;
    border-radius: var(--radius-full);
  }
}

@media (max-width: 640px) {
  .section-padding {
    padding: 4rem 0;
  }

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

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

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

  .wizard-card {
    padding: 1.75rem;
  }

  .wizard-options-grid {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    display: none;
  }

  .product-card-image-wrap {
    height: 220px;
  }

  .slider-container {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .slide-item {
    padding: 1rem 1rem 3.8rem;
  }

  .slide-caption-badge {
    padding: 0.5rem 0.85rem;
    bottom: 0.65rem;
    left: 0.65rem;
    right: 0.65rem;
  }

  .slide-caption-title {
    font-size: 0.82rem;
  }

  .slide-caption-tag {
    font-size: 0.68rem;
  }

  .about-image-card {
    padding: 2rem 1.25rem 6.5rem;
    min-height: 320px;
  }

  .about-floating-experience {
    padding: 0.75rem 1rem;
    bottom: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
  }

  .exp-years {
    font-size: 1.8rem;
  }

  .exp-icon-badge {
    display: none;
  }

  .whatsapp-chat-modal {
    width: 290px;
  }
}
