/* Incirsoft Design System - Ultra Modern Web Agency Stylesheet */

:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Color Palette */
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8FAFC;
  --color-bg-soft: #F1F5F9;
  --color-dark-bg: #090D16;
  --color-dark-card: #111827;
  --color-dark-border: #1F2937;

  --color-text-main: #0F172A;
  --color-text-muted: #475569;
  --color-text-light: #94A3B8;

  /* Incirsoft Brand Accents */
  --purple-primary: #7E22CE;
  --purple-light: #9333EA;
  --purple-glow: rgba(126, 34, 206, 0.25);

  --orange-primary: #F97316;
  --orange-light: #FB923C;
  --orange-glow: rgba(249, 115, 22, 0.25);

  --green-primary: #84CC16;
  --green-light: #A3E635;

  --gradient-brand: linear-gradient(135deg, #7E22CE 0%, #F97316 100%);
  --gradient-purple: linear-gradient(135deg, #6B21A8 0%, #A855F7 100%);
  --gradient-orange: linear-gradient(135deg, #EA580C 0%, #F97316 100%);
  --gradient-dark: linear-gradient(180deg, #0B0F19 0%, #111827 100%);

  /* Layout & Utility */
  --container-max: 1280px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(126, 34, 206, 0.12);
  --shadow-glow: 0 0 40px rgba(249, 115, 22, 0.18);

  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-main);
}

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

ul {
  list-style: none;
}

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

svg {
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  vertical-align: middle;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-purple {
  color: var(--purple-primary);
}

.text-orange {
  color: var(--orange-primary);
}

/* Badge & Pills */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(126, 34, 206, 0.06);
  border: 1px solid rgba(126, 34, 206, 0.15);
  color: var(--purple-primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-primary);
  box-shadow: 0 0 10px var(--orange-primary);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(249, 115, 22, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: var(--transition-smooth);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 56px !important;
  max-height: 56px !important;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply; /* Blends white logo background 100% seamlessly */
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--color-text-main);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-brand);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

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

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  box-sizing: border-box;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(126, 34, 206, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--color-text-main);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--purple-primary);
  color: var(--purple-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text-main);
}

.mobile-nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 60px 0 90px;
  background: radial-gradient(circle at 5% 15%, rgba(126, 34, 206, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 95% 85%, rgba(249, 115, 22, 0.07) 0%, transparent 45%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: flex-start; /* Aligns video top with left hero top */
}

.badge-hero-glow {
  background: #F3E8FF;
  border: 1px solid #D8B4FE;
  color: #6B21A8;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 18px;
  box-shadow: 0 4px 16px rgba(126, 34, 206, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 20px 0 18px;
  color: var(--color-text-main);
}

.hero-brand-highlight {
  background: linear-gradient(135deg, #7E22CE 0%, #E11D48 50%, #F97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 26px;
  max-width: 580px;
}

/* Feature Chips */
.hero-chips {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.chip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: #1E293B;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.chip-item:hover {
  transform: translateY(-2px);
  border-color: #C084FC;
  box-shadow: 0 6px 16px rgba(126, 34, 206, 0.12);
}

/* Perfect Hero Buttons */
.btn-hero-lg {
  height: 52px;
  padding: 0 30px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius-full);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1E293B 0%, #7E22CE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 600;
  margin-top: 2px;
}

/* Hero Visual Container */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin-top: 4px; /* Perfectly aligned top edge with left badge */
}

/* PURE ENLARGED VIDEO CARD (Seamless loop, no controls, cropped Gemini watermark) */
.hero-video-pure-card {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 35px 90px -15px rgba(15, 23, 42, 0.28), 0 0 50px rgba(126, 34, 206, 0.2);
  border: 3px solid #FFFFFF;
  background: #000000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-video-pure-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 45px 100px -15px rgba(15, 23, 42, 0.35), 0 0 60px rgba(126, 34, 206, 0.3);
}

.video-pure-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
}

.video-pure-wrapper video {
  width: 145%;
  height: 145%;
  object-fit: cover;
  position: absolute;
  top: -20%;
  left: -15%;
  border-radius: 0;
  display: block;
  pointer-events: none; /* Disables right click context menu / pause overlay */
}

@keyframes floatAnim {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-12px);
  }
}

/* ----------------------------------------------------
   FEATURE 1: REALISTIC COMPUTER ROLEPLAY DEMO
   ---------------------------------------------------- */
.ecosystem-section {
  padding: 100px 0;
  background: #070A12;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.ecosystem-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  pointer-events: none;
}

.ecosystem-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.75rem;
  margin: 16px 0 20px;
}

.section-header.dark h2 {
  color: #FFFFFF;
}

.section-header.dark p {
  color: var(--color-text-light);
}

/* Device Mode Switcher Top Bar */
.ecosystem-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111827;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  border: 1px solid #1F2937;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.ecosystem-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #9CA3AF;
  flex-wrap: wrap;
}

.ecosystem-tags .tag-item {
  cursor: pointer;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: #1F2937;
  color: #9CA3AF;
  border: 1px solid #374151;
  transition: var(--transition-smooth);
}

.ecosystem-tags .tag-item.active,
.ecosystem-tags .tag-item:hover {
  background: var(--gradient-brand);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(126, 34, 206, 0.4);
}

.device-toggle-btn {
  display: flex;
  align-items: center;
  background: #1F2937;
  border-radius: var(--radius-full);
  padding: 4px;
  border: 1px solid #374151;
}

.device-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: #9CA3AF;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.device-btn.active {
  background: var(--gradient-brand);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(126, 34, 206, 0.4);
}

.device-btn svg {
  width: 16px;
  height: 16px;
}

/* REALISTIC COMPUTER / LAPTOP MOCKUP CHASSIS (SAFARI LIGHT THEME) */
.computer-chassis-frame {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 12px solid #CBD5E1;
  border-radius: 20px 20px 8px 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4), 0 0 50px rgba(126, 34, 206, 0.15);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.computer-chassis-frame::before {
  content: '';
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #64748B;
  border: 1px solid #94A3B8;
  z-index: 100;
}

.laptop-base-stand {
  width: 100%;
  max-width: 1220px;
  height: 18px;
  margin: 0 auto;
  background: linear-gradient(180deg, #CBD5E1 0%, #94A3B8 100%);
  border-radius: 0 0 20px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.laptop-base-stand::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 6px;
  background: #64748B;
  border-radius: 0 0 6px 6px;
}

/* SAFARI BROWSER WINDOW HEADER */
.browser-window-bar {
  height: 44px;
  background: #E2E8F0;
  border-bottom: 1px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot-control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #FF5F56;
}

.dot-yellow {
  background: #FFBD2E;
}

.dot-green {
  background: #27C93F;
}

.browser-address-bar {
  flex: 1;
  max-width: 560px;
  margin: 0 20px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-full);
  height: 30px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 0.85rem;
  color: #0F172A;
  font-family: monospace;
  gap: 10px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.browser-address-bar svg {
  width: 14px !important;
  height: 14px !important;
  color: #10B981;
  flex-shrink: 0;
}

/* SAFARI LIGHT THEME DASHBOARD APP */
.app-roleplay-dashboard {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 560px;
  background: #F8FAFC;
  color: #0F172A;
}

/* App Sidebar */
.app-sidebar {
  background: #FFFFFF;
  border-right: 1px solid #E2E8F0;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar-menu-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #64748B;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding: 0 12px;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-bottom: 6px;
}

.sidebar-nav-item.active,
.sidebar-nav-item:hover {
  background: var(--gradient-brand);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(126, 34, 206, 0.3);
}

.sidebar-nav-item svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0;
}

/* App Main Content Window */
.app-main-view {
  padding: 28px 36px;
  background: #F8FAFC;
  position: relative;
  min-height: 500px;
  color: #0F172A;
}

.app-view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #E2E8F0;
}

.app-view-title h3 {
  color: #0F172A;
  font-size: 1.45rem;
}

.app-view-title p {
  color: #64748B;
  font-size: 0.9rem;
}

/* Interactive Action Buttons inside Dashboard */
.demo-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.demo-btn-purple {
  background: var(--purple-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(126, 34, 206, 0.25);
}

.demo-btn-purple:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
}

.demo-btn-orange {
  background: var(--orange-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.demo-btn-orange:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.demo-btn-green {
  background: #10B981;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.demo-btn-green:hover {
  background: #059669;
  transform: translateY(-2px);
}

/* Light Data Tables & Cards */
.demo-table-container {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 0.9rem;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
}

.demo-table-container th {
  text-align: left;
  padding: 14px 18px;
  background: #F1F5F9;
  color: #475569;
  border-bottom: 1px solid #E2E8F0;
  font-weight: 700;
}

.demo-table-container td {
  padding: 14px 18px;
  border-bottom: 1px solid #F1F5F9;
  color: #0F172A;
}

.demo-badge-status {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-status-green {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
}

.badge-status-orange {
  background: #FFF7ED;
  color: #EA580C;
  border: 1px solid #FFEDD5;
}

.badge-status-purple {
  background: #F3E8FF;
  color: #7E22CE;
  border: 1px solid #E9D5FF;
}

/* REAL FUNCTIONAL POPUP WARNING & NOTICE MODAL (CONFINED TO COMPUTER SCREEN) */
.demo-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 16px;
  box-sizing: border-box;
  border-radius: inherit;
}

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

.demo-modal-card {
  background: #FFFFFF;
  border-radius: 16px;
  width: 100%;
  max-width: 470px;
  padding: 22px 24px;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(226, 232, 240, 0.9);
  border: 1px solid #E2E8F0;
  transform: translateY(16px) scale(0.96);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: #0F172A;
  box-sizing: border-box;
  max-height: 92%;
  overflow-y: auto;
  position: relative;
}

.demo-modal-backdrop.active .demo-modal-card {
  transform: translateY(0) scale(1);
}

/* Auto-close progress bar */
.modal-autoclose-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #7E22CE, #EA580C);
  width: 100%;
  border-radius: 0 0 16px 16px;
  animation: modalCountdown 4.5s linear forwards;
}

@keyframes modalCountdown {
  from { width: 100%; }
  to { width: 0%; }
}

.demo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E2E8F0;
}

.demo-modal-header h4 {
  font-size: 1.2rem;
  color: #0F172A;
}

.demo-modal-close-btn {
  background: #F1F5F9;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748B;
}

.demo-modal-close-btn:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.demo-form-group {
  margin-bottom: 16px;
}

.demo-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #334155;
}

.demo-form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid #CBD5E1;
  background: #F8FAFC;
  font-size: 0.9rem;
  color: #0F172A;
  outline: none;
}

.demo-form-input:focus {
  border-color: var(--purple-primary);
  background: #FFFFFF;
}

/* VIRTUAL MOUSE CURSOR SIMULATOR */
.virtual-mouse-cursor {
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.virtual-mouse-cursor svg {
  width: 22px !important;
  height: 22px !important;
  color: #EA580C;
}

/* FLOATING TOAST NOTIFICATION */
.demo-toast-box {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #0F172A;
  border: 1px solid var(--purple-primary);
  color: #FFFFFF;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
  pointer-events: none;
  z-index: 2000;
}

.demo-toast-box.show {
  opacity: 1;
  transform: translateY(0);
}



/* ----------------------------------------------------
   CORE SERVICES SECTION
   ---------------------------------------------------- */
.services-section {
  padding: 110px 0;
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--color-bg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(126, 34, 206, 0.2);
}

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

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(126, 34, 206, 0.08);
  color: var(--purple-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background: var(--gradient-brand);
  color: #FFFFFF;
  transform: scale(1.05);
}

.service-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--purple-primary);
}

.service-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(6px);
}

/* ----------------------------------------------------
   HESAPLI MUHASEBE FLAGSHIP SHOWCASE SECTION
   ---------------------------------------------------- */
.hesapli-showcase-container {
  margin-top: 70px;
  position: relative;
}

.hesapli-showcase-card {
  background: radial-gradient(120% 120% at 50% 0%, rgba(2, 165, 212, 0.06) 0%, #FFFFFF 55%, rgba(248, 250, 252, 0.95) 100%);
  border: 1.5px solid rgba(2, 165, 212, 0.22);
  border-radius: 32px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px -12px rgba(2, 132, 199, 0.12), 0 4px 16px rgba(15, 23, 42, 0.03);
  transition: var(--transition-smooth);
}

.hesapli-showcase-card:hover {
  border-color: rgba(2, 165, 212, 0.38);
  box-shadow: 0 32px 72px -12px rgba(2, 132, 199, 0.18), 0 6px 20px rgba(15, 23, 42, 0.04);
}

/* Background Aura Effects */
.hesapli-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 165, 212, 0.15) 0%, rgba(2, 165, 212, 0) 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.hesapli-card-content {
  position: relative;
  z-index: 1;
}

/* Header with GİB Stamp */
.hesapli-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.hesapli-header-text {
  max-width: 720px;
}

.hesapli-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(2, 165, 212, 0.1);
  border: 1px solid rgba(2, 165, 212, 0.25);
  color: #0284c7;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hesapli-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0284c7;
  box-shadow: 0 0 8px #0284c7;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hesapli-header-text h3 {
  font-size: 2.15rem;
  line-height: 1.25;
  color: var(--color-text-main);
  margin-bottom: 10px;
}

.hesapli-header-text p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ====================================================
   OFFICIAL GİB ONAYLI DAMGA (STAMP BADGE)
   ==================================================== */
.hesapli-stamp-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gib-official-stamp {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff5f5 0%, #fee2e2 85%, #fecaca 100%);
  border: 3px double #dc2626;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.18), inset 0 0 15px rgba(220, 38, 38, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-7deg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  user-select: none;
}

.gib-official-stamp:hover {
  transform: rotate(0deg) scale(1.08);
  box-shadow: 0 16px 36px rgba(220, 38, 38, 0.28), inset 0 0 20px rgba(220, 38, 38, 0.18);
}

.gib-stamp-inner-border {
  position: absolute;
  inset: 4px;
  border: 1.5px dashed #dc2626;
  border-radius: 50%;
  pointer-events: none;
}

.gib-stamp-content {
  text-align: center;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.gib-stamp-stars {
  color: #dc2626;
  font-size: 9px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 2px;
}

.gib-stamp-org {
  font-size: 8px;
  font-weight: 800;
  color: #991b1b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.gib-stamp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dc2626;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 4px;
  margin: 3px 0;
  box-shadow: 0 2px 6px rgba(220, 38, 38, 0.35);
  text-transform: uppercase;
}

.gib-stamp-sub {
  font-size: 7px;
  font-weight: 800;
  color: #b91c1c;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.gib-stamp-verified {
  font-size: 7.5px;
  font-weight: 800;
  color: #15803d;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* ====================================================
   STAGE: HERO LOGO & FLOATING BUBBLES
   ==================================================== */
.hesapli-brand-stage {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 50px;
  background: linear-gradient(180deg, rgba(240, 249, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px dashed rgba(2, 165, 212, 0.28);
  border-radius: 28px;
  padding: 40px 20px;
  overflow: visible;
}

/* Radar Rings */
.hesapli-radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(2, 165, 212, 0.18);
  pointer-events: none;
  z-index: 1;
}

.hesapli-radar-ring.ring-1 {
  width: 320px;
  height: 320px;
  animation: radarPulse 6s infinite ease-in-out;
}

.hesapli-radar-ring.ring-2 {
  width: 480px;
  height: 480px;
  border-style: dashed;
  animation: radarPulse 6s infinite ease-in-out 1.5s;
}

.hesapli-radar-ring.ring-3 {
  width: 640px;
  height: 640px;
  border-color: rgba(2, 165, 212, 0.08);
  animation: radarPulse 6s infinite ease-in-out 3s;
}

@keyframes radarPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

/* Central Big Logo */
.hesapli-logo-wrap {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 24px 36px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 1px solid rgba(2, 165, 212, 0.25);
  box-shadow: 0 16px 40px rgba(2, 132, 199, 0.15);
  transition: var(--transition-smooth);
}

.hesapli-logo-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(2, 132, 199, 0.22);
}

.hesapli-hero-logo {
  max-width: 520px;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(2, 165, 212, 0.2));
}

/* Floating Bubbles (Baloncuklar) */
.hesapli-bubble {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(2, 165, 212, 0.28);
  border-radius: var(--radius-full);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.14), 0 2px 6px rgba(15, 23, 42, 0.04);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-main);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  white-space: nowrap;
}

.hesapli-bubble:hover {
  transform: translateY(-6px) scale(1.06) !important;
  border-color: #0284c7;
  box-shadow: 0 18px 36px rgba(2, 132, 199, 0.22);
  z-index: 10;
}

.bubble-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFFFFF;
}

.bubble-icon svg {
  width: 18px;
  height: 18px;
}

/* Individual Bubble Positions & Float Keyframes */
.bubble-arsiv {
  top: 18px;
  left: 6%;
  animation: floatBubble1 5s ease-in-out infinite;
}
.bubble-arsiv .bubble-icon {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.bubble-fatura {
  top: 24px;
  right: 6%;
  animation: floatBubble2 5.5s ease-in-out infinite 0.6s;
}
.bubble-fatura .bubble-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.bubble-irsaliye {
  bottom: 24px;
  left: 5%;
  animation: floatBubble3 6s ease-in-out infinite 1.2s;
}
.bubble-irsaliye .bubble-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
}

.bubble-muhur {
  bottom: 20px;
  right: 5%;
  animation: floatBubble1 5.8s ease-in-out infinite 1.8s;
}
.bubble-muhur .bubble-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.bubble-tescil {
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatBubbleCenter 5.2s ease-in-out infinite 0.9s;
}
.bubble-tescil .bubble-icon {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

@keyframes floatBubble1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

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

@keyframes floatBubble3 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-9px) rotate(1.2deg); }
}

@keyframes floatBubbleCenter {
  0%, 100% { transform: translate(-50%, 0px); }
  50% { transform: translate(-50%, -10px); }
}

/* ====================================================
   FEATURES WITH GREEN CHECKMARKS (YEŞİL TİKLİ ÖZELLİKLER)
   ==================================================== */
.hesapli-features-wrapper {
  margin-top: 40px;
}

.hesapli-features-title-wrap {
  text-align: center;
  margin-bottom: 32px;
}

.hesapli-features-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #15803d;
  background: rgba(22, 163, 74, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hesapli-features-title-wrap h4 {
  font-size: 1.75rem;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.hesapli-features-title-wrap p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.hesapli-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.hesapli-feature-item {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.hesapli-feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #10b981;
  transition: height 0.3s ease;
}

.hesapli-feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.1);
}

.hesapli-feature-item:hover::before {
  height: 100%;
}

.hesapli-check-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.hesapli-feature-item:hover .hesapli-check-circle {
  transform: scale(1.12) rotate(6deg);
}

.hesapli-check-circle svg {
  width: 16px;
  height: 16px;
  stroke: #FFFFFF;
  stroke-width: 3;
}

.hesapli-feature-details h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 6px;
  line-height: 1.3;
}

.hesapli-feature-details p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ====================================================
   CALL TO ACTION & TRUST STRIP
   ==================================================== */
.hesapli-cta-bar {
  margin-top: 36px;
  padding: 24px 32px;
  background: linear-gradient(135deg, #090D16 0%, #111827 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #FFFFFF;
}

.hesapli-trust-tags {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hesapli-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #E2E8F0;
  font-weight: 600;
}

.hesapli-trust-tag svg {
  width: 16px;
  height: 16px;
  stroke: #10b981;
}

.hesapli-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-hesapli-demo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.4);
  transition: var(--transition-smooth);
}

.btn-hesapli-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.55);
  color: #FFFFFF;
}

/* ====================================================
   RESPONSIVE ADJUSTMENTS FOR HESAPLI SHOWCASE
   ==================================================== */
@media (max-width: 1024px) {
  .hesapli-showcase-card {
    padding: 40px 28px;
  }

  .hesapli-brand-stage {
    min-height: 420px;
    padding: 60px 16px;
  }

  .bubble-arsiv { left: 2%; top: 12px; }
  .bubble-fatura { right: 2%; top: 18px; }
  .bubble-irsaliye { left: 2%; bottom: 16px; }
  .bubble-muhur { right: 2%; bottom: 16px; }
}

@media (max-width: 768px) {
  .hesapli-header-row {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .hesapli-header-text h3 {
    font-size: 1.65rem;
  }

  .gib-official-stamp {
    width: 110px;
    height: 110px;
    transform: rotate(0deg);
  }

  .gib-stamp-badge {
    font-size: 11px;
    padding: 2px 8px;
  }

  .gib-stamp-org {
    font-size: 7px;
  }

  .hesapli-brand-stage {
    min-height: auto;
    flex-direction: column;
    gap: 16px;
    padding: 30px 16px;
  }

  .hesapli-radar-ring {
    display: none;
  }

  .hesapli-logo-wrap {
    padding: 16px 20px;
    width: 100%;
    max-width: 320px;
    order: 1;
  }

  .hesapli-bubble {
    position: static;
    transform: none !important;
    animation: none !important;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    order: 2;
  }

  .bubble-tescil {
    order: 0;
  }

  .hesapli-features-grid {
    grid-template-columns: 1fr;
  }

  .hesapli-cta-bar {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .hesapli-trust-tags {
    justify-content: center;
    gap: 12px;
  }

  .hesapli-cta-actions {
    width: 100%;
    justify-content: center;
  }

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

/* ----------------------------------------------------
   FEATURE 2: PORTFOLIO SHOWCASE SLIDER
   ---------------------------------------------------- */
.portfolio-section {
  padding: 110px 0;
  background: #0B0F19;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.portfolio-filter-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #9CA3AF;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient-brand);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(126, 34, 206, 0.35);
}

.portfolio-3d-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  perspective: 1200px;
  min-height: 480px;
  margin: 20px 0 40px;
}

.portfolio-card-3d {
  width: 520px;
  height: 380px;
  border-radius: var(--radius-lg);
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  position: absolute;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.35, 1), opacity 0.65s ease, box-shadow 0.65s ease, border-color 0.65s ease;
  will-change: transform, opacity;
  cursor: pointer;
}

.portfolio-card-3d.center {
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 10;
  opacity: 1;
  border-color: var(--purple-primary);
  box-shadow: 0 0 50px rgba(126, 34, 206, 0.4);
}

.portfolio-card-3d.left {
  transform: translate3d(-380px, 0, -180px) rotateY(25deg);
  z-index: 5;
  opacity: 0.6;
}

.portfolio-card-3d.right {
  transform: translate3d(380px, 0, -180px) rotateY(-25deg);
  z-index: 5;
  opacity: 0.6;
}

.portfolio-card-3d.hidden {
  transform: translate3d(0, 0, -300px) scale(0.7);
  opacity: 0;
  pointer-events: none;
}

.card-img-preview {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #1E293B;
}

.portfolio-card-info {
  padding: 20px 24px;
  background: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-card-info h4 {
  font-size: 1.35rem;
  color: #FFFFFF;
}

.portfolio-card-info span {
  font-size: 0.875rem;
  color: var(--orange-primary);
  font-weight: 600;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.slider-arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1F2937;
  border: 1px solid #374151;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-arrow-btn:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  transform: scale(1.1);
}

.slider-arrow-btn svg {
  width: 22px;
  height: 22px;
}

/* ----------------------------------------------------
   FEATURE 3: REFERENCES GRID
   ---------------------------------------------------- */
.references-section {
  padding: 110px 0;
  background: #05070D;
  color: #FFFFFF;
  position: relative;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.ref-logo-card {
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 110px;
  transition: var(--transition-smooth);
}

.ref-logo-card:hover {
  background: #111827;
  border-color: var(--purple-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(126, 34, 206, 0.25);
}

.ref-logo-icon {
  width: 38px !important;
  height: 38px !important;
  color: #9CA3AF;
  transition: var(--transition-smooth);
}

.ref-logo-card:hover .ref-logo-icon {
  color: var(--orange-primary);
  transform: scale(1.1);
}

.ref-brand-logo-img {
  max-height: 48px;
  max-width: 145px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #FFFFFF;
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ref-logo-card:hover .ref-brand-logo-img {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(126, 34, 206, 0.4);
}

.ref-logo-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #E2E8F0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Contact CTA Banner Section */
.contact-banner-section {
  padding: 90px 0;
  background: var(--color-bg);
}

.contact-cta-card {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-cta-card h2 {
  color: #FFFFFF;
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.contact-cta-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 580px;
}

.contact-cta-card .btn-light {
  background: #FFFFFF;
  color: var(--color-text-main);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-cta-card .btn-light:hover {
  background: #0F172A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Footer Styling */
.site-footer {
  background: #090D16;
  color: #94A3B8;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 24px;
}

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

.footer-links a:hover {
  color: var(--orange-primary);
}

.footer-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-info-list svg {
  width: 20px;
  height: 20px;
  color: var(--purple-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

@media (max-width: 768px) {
  .header-inner {
    height: 72px;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-120%);
    transition: var(--transition-smooth);
    z-index: 999;
  }

  .nav-menu.mobile-active {
    transform: translateY(0);
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .portfolio-card-3d {
    width: 320px;
    height: 320px;
  }

  .portfolio-card-3d.left {
    transform: translate3d(-140px, 0, -100px) rotateY(15deg);
  }

  .portfolio-card-3d.right {
    transform: translate3d(140px, 0, -100px) rotateY(-15deg);
  }

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

  .contact-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ----------------------------------------------------
   HİZMETLERİMİZ (SERVICES PAGE) ULTRA MODERN STYLES
   ---------------------------------------------------- */
.services-page-hero {
  padding: 100px 0 70px;
  background: radial-gradient(circle at 50% -20%, rgba(126, 34, 206, 0.12) 0%, rgba(2, 132, 199, 0.06) 45%, transparent 70%), #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.services-hero-title {
  font-size: 3.4rem;
  line-height: 1.2;
  margin: 20px auto 24px;
  max-width: 900px;
  color: var(--color-text-main);
}

.services-hero-desc {
  max-width: 760px;
  margin: 0 auto 36px;
  color: var(--color-text-muted);
  font-size: 1.2rem;
  line-height: 1.65;
}

/* Service Navigation Anchors Bar */
.service-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.service-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.925rem;
  color: var(--color-text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.service-nav-pill:hover {
  background: #090D16;
  color: #FFFFFF;
  border-color: #090D16;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

.service-nav-pill span.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--purple-primary);
  transition: var(--transition-smooth);
}

.service-nav-pill:hover span.icon {
  color: #84CC16;
  transform: scale(1.1);
}

.service-nav-pill span.icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* Service Detail Showcase Rows */
.service-showcase-section {
  padding: 90px 0;
  position: relative;
}

.service-showcase-section:nth-child(even) {
  background: #F8FAFC;
}

.service-showcase-section:nth-child(odd) {
  background: #FFFFFF;
}

.service-row-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.service-row-grid.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.service-row-grid.reverse .service-text-col {
  order: 2;
}

.service-row-grid.reverse .service-visual-col {
  order: 1;
}

/* Text Column */
.service-text-col h2 {
  font-size: 2.5rem;
  line-height: 1.22;
  margin: 16px 0 18px;
  color: var(--color-text-main);
}

.service-text-col p.lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.service-feature-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.service-feature-point-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-feature-point-icon svg {
  width: 14px;
  height: 14px;
  stroke: #10B981;
  stroke-width: 3;
}

.service-feature-point-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 2px;
}

.service-feature-point-text p {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Stats Row */
.service-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
  padding: 18px 24px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.service-stat-box .stat-val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--color-text-main);
  line-height: 1.1;
}

.service-stat-box .stat-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Visual Column & SaaS Window Mockup */
.service-visual-col {
  position: relative;
}

.saas-window-frame {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 24px 60px -15px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
}

.saas-window-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 75px -15px rgba(15, 23, 42, 0.24), 0 0 0 1px rgba(15, 23, 42, 0.12);
}

.saas-window-header {
  height: 42px;
  background: #0B0F19;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  user-select: none;
}

.saas-window-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.saas-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.saas-dot.red { background: #EF4444; }
.saas-dot.yellow { background: #F59E0B; }
.saas-dot.green { background: #10B981; }

.saas-window-url {
  font-family: monospace;
  font-size: 0.78rem;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 14px;
  border-radius: var(--radius-full);
}

.saas-window-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10B981;
}

.saas-window-body {
  position: relative;
  overflow: hidden;
  background: #090D16;
}

.saas-window-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.saas-window-frame:hover .saas-window-img {
  transform: scale(1.02);
}

/* Floating overlay pill */
.saas-float-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.saas-float-badge-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.saas-float-badge-icon svg {
  width: 12px;
  height: 12px;
  stroke: #FFFFFF;
  stroke-width: 2.5;
}

/* ====================================================
   CUSTOM DESIGNED B2B MANAGEMENT PANEL MOCKUP
   ==================================================== */
.b2b-panel-mockup {
  background: #0D1322;
  color: #F8FAFC;
  padding: 24px;
  font-family: var(--font-primary);
}

.b2b-top-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.b2b-stat-card {
  background: #151D30;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
}

.b2b-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-brand);
}

.b2b-stat-card .lbl {
  font-size: 0.75rem;
  color: #94A3B8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.b2b-stat-card .val {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: #FFFFFF;
  margin: 4px 0 2px;
}

.b2b-stat-card .sub {
  font-size: 0.72rem;
  color: #10B981;
  font-weight: 600;
}

/* B2B Table Header */
.b2b-table-wrap {
  background: #151D30;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.b2b-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.b2b-table-head h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.b2b-table-tag {
  font-size: 0.7rem;
  background: rgba(132, 204, 22, 0.15);
  color: #84CC16;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.b2b-table-rows {
  display: flex;
  flex-direction: column;
}

.b2b-table-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  transition: background 0.2s ease;
}

.b2b-table-row:last-child {
  border-bottom: none;
}

.b2b-table-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.b2b-dealer-name {
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.b2b-dealer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.b2b-dealer-dot.gold { background: #F59E0B; }
.b2b-dealer-dot.purple { background: #A855F7; }
.b2b-dealer-dot.cyan { background: #06B6D4; }

.b2b-tier-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  width: fit-content;
}
.b2b-tier-badge.platin { background: rgba(168, 85, 247, 0.2); color: #D8B4FE; border: 1px solid rgba(168, 85, 247, 0.4); }
.b2b-tier-badge.gold { background: rgba(245, 158, 11, 0.2); color: #FCD34D; border: 1px solid rgba(245, 158, 11, 0.4); }

.b2b-bakiye {
  font-family: monospace;
  color: #CBD5E1;
  font-weight: 600;
}

.b2b-order-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #10B981;
}

/* Enterprise Infrastructure / Why Incirsoft Grid */
.enterprise-trust-section {
  padding: 80px 0 100px;
  background: #090D16;
  color: #FFFFFF;
}

.enterprise-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.enterprise-trust-card {
  background: #111827;
  border: 1px solid #1F2937;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition-smooth);
}

.enterprise-trust-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-light);
  box-shadow: 0 20px 40px rgba(126, 34, 206, 0.15);
}

.enterprise-trust-card .icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(126, 34, 206, 0.15);
  color: #A855F7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.enterprise-trust-card .icon-box svg {
  width: 26px;
  height: 26px;
}

.enterprise-trust-card h3 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.enterprise-trust-card p {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.55;
  margin: 0;
}

/* Responsive Styles for Hizmetlerimiz Page */
@media (max-width: 1024px) {
  .service-row-grid,
  .service-row-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-row-grid.reverse .service-text-col {
    order: 1;
  }

  .service-row-grid.reverse .service-visual-col {
    order: 2;
  }

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

@media (max-width: 768px) {
  .services-hero-title {
    font-size: 2.2rem;
  }

  .service-text-col h2 {
    font-size: 1.85rem;
  }

  .service-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .b2b-top-stats {
    grid-template-columns: 1fr;
  }

  .b2b-table-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .saas-float-badge {
    position: static;
    margin: 12px;
    width: fit-content;
  }
}