/* main.css - Ana stil dosyası */

/* Erişilebilirlik */

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent-primary);
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  z-index: 1000;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 6px;
}

/* Focus states */
.btn:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-secondary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --bg-primary: #000000;
    --bg-secondary: #111111;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-card {
    animation: none;
  }

  .marquee-wrapper {
    animation: none;
  }
}

/* Color scheme preferences */
@media (prefers-color-scheme: light) {
  :root {
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --text-primary: #212529;
    --text-secondary: #6c757d;
  }
}

/* CSS Değişkenleri */
:root {
  /* Renk Paleti */
  --bg-primary: #0A0A0F;
  --bg-secondary: #111118;
  --bg-tertiary: #1A1A24;
  --bg-footer: #08080D;

  --accent-primary: #D0D0D0;
  --accent-secondary: #A0A0A0;
  --accent-tertiary: #808080;

  --text-primary: #EAEAEA;
  --text-secondary: #9A9AAA;
  --text-muted: #6A6A7A;

  --gradient-gold: linear-gradient(135deg, #D0D0D0 0%, #E8E8E8 50%, #D0D0D0 100%);
  --gradient-cyan: linear-gradient(135deg, #A0A0A0 0%, #808080 100%);
  --gradient-bg: linear-gradient(135deg, #0A0A0F 0%, #1A1A2E 100%);

  --border-color: rgba(208, 208, 208, 0.15);

  /* Scorient Brand */
  --color-scorient: #00E676;
  --color-scorient-dark: #00B248;
  --color-scorient-glow: rgba(0, 230, 118, 0.15);

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

  /* Boyutlar */
  --max-width: 1400px;
  --navbar-height: 80px;
  --navbar-height-mobile: 64px;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-padding: 0 clamp(1rem, 4vw, 6rem);

  /* Border Radius */
  --border-radius: 14px;

  /* Glow Effects */
  --glow-primary: 0 0 60px rgba(160, 160, 160, 0.1);
  --glow-gold: 0 0 40px rgba(208, 208, 208, 0.2);
  --glow-scorient: 0 0 40px rgba(0, 230, 118, 0.15);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-secondary);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) var(--bg-secondary);
}

/* Selection Colors */
::selection {
  background: var(--accent-primary);
  color: #000;
}

::-moz-selection {
  background: var(--accent-primary);
  color: #000;
}

/* ===== GLOBAL RESPONSIVE FIXES ===== */

/* Box-sizing reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* All images & media responsive by default */
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Long words break properly on all text elements */
p, h1, h2, h3, h4, h5, h6, li, td, th, span, a {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Tables scroll on small screens */
table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

/* ===== END GLOBAL FIXES ===== */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Bölüm Ayırıcıları */
section {
  border-bottom: 1px solid var(--border-color);
}

/* Başlıklar */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

/* Paragraflar */
p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Linkler */
a {
  color: var(--accent-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-primary);
}

/* Butonlar */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(208, 208, 208, 0.15);
}

.btn-primary:hover {
  transform: scale(1.03);
  box-shadow: var(--glow-gold), 0 6px 24px rgba(208, 208, 208, 0.25);
}

.btn-secondary {
  background: var(--gradient-cyan);
  color: var(--bg-primary);
}

.btn-secondary:hover {
  transform: scale(1.02);
  box-shadow: var(--glow-primary);
}

/* Kartlar (Glassmorphism) */
.card {
  background: rgba(26, 26, 36, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid var(--border-color);
}

/* Görseller */
img {
  border-radius: var(--border-radius);
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
/* Navbar Stilleri */
/* Live Market Ticker - removed (coin prices block) */

.ticker-item .sym {
  color: var(--text-primary);
  margin-right: 0.25rem;
}

.ticker-item .price.up { color: #808080; }
.ticker-item .price.down { color: #F44336; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  background: rgba(10, 10, 15, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.sticky {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-decoration: none;
}

.logo-icon {
  font-size: 1.2rem;
}

/* Site logo image (AMIRTECH.AI) - navbar & footer */
.site-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo .site-logo-img.footer-logo-img {
  height: 36px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-secondary);
}

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

.lang-switcher a.active {
  color: var(--accent-primary);
  font-weight: 600;
}

.lang-switcher a:not(.active) {
  color: var(--text-secondary);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  overflow: visible;
  z-index: 100;
}

.dropdown.active > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.disabled {
  color: var(--text-muted) !important;
  cursor: not-allowed;
}

/* Nested submenu — JS tarafından body'e taşınır, position:fixed ile konumlanır */
.dropdown-menu .dropdown {
  position: relative;
}
.dropdown-submenu {
  position: fixed;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.5rem 0;
  list-style: none;
  z-index: 9999;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.dropdown-submenu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.dropdown-submenu a:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}
.dropdown-menu .dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown-menu .dropdown > a::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--text-muted);
  margin-left: 0.5rem;
}

/* Desktop: open dropdowns on hover (pointer devices only) */
@media (hover: hover) and (pointer: fine) {
  .nav-links .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  touch-action: manipulation; /* Android: 300ms tap delay'i kaldır */
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;        /* fallback */
  height: 100dvh;       /* Android Chrome: dinamik viewport (URL bar dahil değil) */
  background: var(--bg-primary);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overscroll-behavior: contain; /* menü açıkken arka plan scroll'unu engelle */
}

/* Kapatma butonu */
.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 1rem;
}

.mobile-menu a {
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.2rem;
  padding: 1rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  background: var(--bg-secondary);
}

.mobile-menu .dropdown-submenu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  margin-left: 1rem;
  margin-top: 0.5rem;
  padding-left: 0;
  min-width: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.mobile-menu .dropdown-submenu li {
  margin-bottom: 0.5rem;
}
.mobile-menu .dropdown-submenu a {
  font-size: 1rem;
  color: var(--text-secondary);
}

body.menu-open {
  overflow: hidden;
}

/* Footer Stilleri */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-section ul a:hover {
  color: var(--accent-secondary);
}

.newsletter-signup {
  margin-top: 1.5rem;
}

.newsletter-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem !important;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 320px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-size: 1rem; /* min 16px — iOS zoom önlemi */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent-primary);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

.newsletter-consent,
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.newsletter-consent input,
.checkbox-label input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.newsletter-consent a,
.checkbox-label a {
  color: var(--accent-primary);
  text-decoration: underline;
}

.form-group-checkbox {
  margin-bottom: 1rem;
}

.footer-logo .logo {
  margin-bottom: 1rem;
}

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

.social-links a {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Performans Optimizasyonları */
.floating-card,
.bar,
.marquee-wrapper,
.hero-mesh {
  will-change: transform;
}

[data-scroll] {
  will-change: opacity, transform;
}

[data-scroll].animate {
  will-change: auto;
}

/* Lazy Loading için */
.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy.loaded {
  opacity: 1;
}

/* Font Display Swap */
@font-face {
  font-family: 'Syne';
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  font-display: swap;
}

@font-face {
  font-family: 'JetBrains Mono';
  font-display: swap;
}

/* Scorient Hero Section */
#hero.elite-hero {
  background: linear-gradient(135deg, #0A0A0F 0%, #0F0F1A 100%);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-logo {
  margin-bottom: 1rem;
}

.elite-logo {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(160, 160, 160, 0.3));
}

/* Scorient logo is square (kare) - keep aspect ratio in a square box */
.elite-logo.elite-logo-square {
  width: 140px !important;
  height: 140px !important;
  object-fit: contain !important;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(160, 160, 160, 0.3);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 500px;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-app-store, .btn-google-play {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(160, 160, 160, 0.3);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-app-store:hover, .btn-google-play:hover {
  background: rgba(160, 160, 160, 0.1);
  border-color: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: var(--glow-primary);
}

.app-icon {
  font-size: 1.25rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-secondary);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockups {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 600px;
}

.phone {
  position: absolute;
  width: 200px;
  height: 400px;
}

.phone-main {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.phone-left {
  left: 10%;
  top: 60%;
  transform: translateY(-50%) rotate(-15deg);
  z-index: 2;
  opacity: 0.8;
}

.phone-right {
  right: 10%;
  top: 40%;
  transform: translateY(-50%) rotate(15deg);
  z-index: 1;
  opacity: 0.6;
}

.phone-frame {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border: 2px solid #333;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #000;
  border-radius: 15px;
  z-index: 2;
}

.phone-screen {
  position: absolute;
  top: 40px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: linear-gradient(135deg, #0A0A0F 0%, #1A1A24 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.screen-placeholder {
  width: 100%;
  height: 100%;
  background: #1A1A24;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.screen-placeholder::before {
  content: "📱";
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.screen-placeholder span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  opacity: 0.8;
  text-align: center;
  max-width: 90%;
  line-height: 1.2;
}

/* How It Works Section */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(160, 160, 160, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--accent-secondary);
  transform: translateY(-5px);
  box-shadow: var(--glow-primary);
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--accent-secondary);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.step-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(160, 160, 160, 0.1);
  border-left: 4px solid var(--accent-secondary);
  border-radius: var(--border-radius);
  padding: 2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-primary);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--accent-secondary);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(160, 160, 160, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-primary);
}

.pricing-popular {
  border-color: var(--accent-secondary);
  background: rgba(160, 160, 160, 0.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-secondary);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.pricing-amount {
  margin-bottom: 1rem;
}

.credits {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-secondary);
}

.pricing-description {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-secondary);
  font-weight: bold;
}

.btn-pricing {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  background: rgba(160, 160, 160, 0.1);
  border: 1px solid var(--accent-secondary);
  border-radius: var(--border-radius);
  color: var(--accent-secondary);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-pricing:hover {
  background: var(--accent-secondary);
  color: #000;
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 2rem;
}

/* Screenshots Section */
.screenshots-gallery {
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
}

.gallery-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-container::-webkit-scrollbar {
  display: none;
}

.screenshot-item {
  flex: 0 0 250px;
  scroll-snap-align: start;
}

.screenshot-phone {
  width: 100%;
  height: 400px;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.screenshot-phone:hover {
  transform: rotate(0deg) scale(1.05);
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(160, 160, 160, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-primary);
}

.testimonial-stars {
  color: var(--accent-secondary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text,
.testimonial-quote {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.author-location {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(160, 160, 160, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(160, 160, 160, 0.05);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-secondary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Download Section */
#download {
  background: var(--gradient-cyan);
  padding: var(--section-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.download-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.download-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.download-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-app-store-large, .btn-google-play-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #000;
  border-radius: var(--border-radius);
  color: #000;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-app-store-large:hover, .btn-google-play-large:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.download-note {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About Hero */
.hero-compact {
  text-align: center;
  padding: 6rem 0;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-compact .hero-title {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  margin-bottom: 1rem;
}

.hero-compact .hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

/* Contact page hero: photo left, text right (slightly shifted right) */
.contact-hero-layout {
  display: grid;
  grid-template-columns: minmax(200px, 380px) 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 0;
  min-height: 40vh;
}

.contact-hero-photo {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.contact-hero-img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

.contact-hero-text {
  padding-left: 1.5rem;
}

.contact-hero-text .hero-title {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  margin-bottom: 1rem;
}

.contact-hero-text .hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 520px;
}

@media (max-width: 768px) {
  .contact-hero-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
  }
  .contact-hero-text {
    padding-left: 0;
  }
}

/* Mission Section */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.mission-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(208, 208, 208, 0.1);
  border-radius: var(--border-radius);
  padding: 3rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-gold);
}

.mission-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

.mission-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.value-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(208, 208, 208, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-gold);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.value-description {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Timeline Section */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -1.5rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: var(--accent-primary);
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
}

.timeline-item.future .timeline-dot {
  background: var(--text-muted);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(208, 208, 208, 0.1);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.timeline-date {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.timeline-item.future .timeline-text {
  color: var(--text-muted);
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* About Photo Grid */
.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-photo-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(208, 208, 208, 0.2);
  transition: all 0.3s ease;
}

.about-photo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-gold);
}

.about-photo-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  justify-items: center;
}

.team-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(208, 208, 208, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  max-width: 400px;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-gold);
}

.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-primary);
}

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

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: #1A1A24;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid rgba(208, 208, 208, 0.3);
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: "👤";
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.photo-placeholder::after {
  content: "Founder Photo";
  font-family: var(--font-body);
  font-size: 0.875rem;
  opacity: 0.8;
  text-align: center;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.team-role {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.team-bio {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.team-note {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 2rem;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.contact-info-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-primary);
}

.contact-icon.contact-icon-social svg {
  color: var(--text-secondary);
}

.contact-icon.contact-icon-social svg:hover,
.contact-item:hover .contact-icon.contact-icon-social svg {
  color: var(--accent-primary);
}

.contact-item div {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.contact-item strong {
  color: var(--text-primary);
}

.contact-item a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-secondary);
}

.contact-hours {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(208, 208, 208, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.contact-hours h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-hours p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.contact-hours p:last-child {
  margin-bottom: 0;
}

/* Contact Form */
.contact-form-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(208, 208, 208, 0.1);
  border-radius: var(--border-radius);
  padding: 3rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(208, 208, 208, 0.2);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem; /* min 16px — iOS zoom önlemi */
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(208, 208, 208, 0.1);
}

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

#contact-form .btn-primary,
.contact-form .btn-primary {
  background: var(--gradient-gold);
  border: none;
  color: #000;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  min-height: 48px;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  display: none;
}

.form-message.success {
  background: rgba(128, 128, 128, 0.1);
  border: 1px solid rgba(128, 128, 128, 0.3);
  color: #00c853;
}

.form-message.error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
}

/* Map Section */
.map-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.map-container iframe {
  display: block;
  width: 100%;
  min-height: 400px;
}

.map-link {
  margin-top: 1rem;
  text-align: center;
}

.map-link a {
  color: var(--accent-primary);
  font-size: 0.9rem;
}

.map-placeholder {
  height: 400px;
  background: #1A1A24;
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "🗺️";
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.map-placeholder span {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 0.8;
  text-align: center;
}

/* Data Visualization Section */
#data-viz {
  background: linear-gradient(135deg, #0A0A0F 0%, #0F0F1A 100%);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.data-viz-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.data-viz-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.data-viz-left .section-title {
  color: var(--accent-primary);
  text-shadow: 0 0 20px rgba(208, 208, 208, 0.3);
}

.data-viz-left p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

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

.metric {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(208, 208, 208, 0.1);
  border-radius: var(--border-radius);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.metric:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-gold);
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 15px rgba(208, 208, 208, 0.3);
}

.metric-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.data-viz-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.chart-container {
  width: 100%;
  max-width: 500px;
  height: 400px;
  perspective: 1000px;
  position: relative;
}

/* Data viz bar chart (Driven by Data section) */
.chart-container-bars {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.data-viz-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2rem;
  height: 220px;
  padding-bottom: 0.5rem;
}

.bar-viz {
  position: relative;
  width: 56px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  overflow: hidden;
  flex-shrink: 0;
}

.bar-fill-viz {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(180deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 0 20px rgba(200, 160, 74, 0.3);
  transition: height 1s ease-out;
}

.bar-fill-viz.in-view {
  height: var(--height, 0) !important;
}

.chart-labels-inline {
  position: static !important;
  display: flex !important;
  justify-content: center;
  gap: 2rem;
  transform: none !important;
  bottom: auto !important;
}

.chart-labels-inline span {
  width: auto !important;
  min-width: 80px;
  text-align: center;
  font-size: 0.7rem;
  transform: none !important;
}

/* 3D Chart Styles */
.chart-3d {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-15deg) rotateY(-25deg);
  transition: transform 0.5s ease;
}

.chart-3d:hover {
  transform: rotateX(-10deg) rotateY(-20deg) scale(1.05);
}

.chart-grid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transform-style: preserve-3d;
}

.grid-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to top, rgba(208, 208, 208, 0.2) 0%, rgba(208, 208, 208, 0.6) 100%);
  position: relative;
}

.grid-line::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -5px;
  width: 10px;
  height: 10px;
  background: rgba(208, 208, 208, 0.4);
  border-radius: 50%;
}

.bars-3d {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transform-style: preserve-3d;
}

.bar-3d {
  width: 60px;
  height: 300px;
  position: relative;
  transform-style: preserve-3d;
  transform-origin: bottom center;
  display: flex;
  align-items: flex-end;
}

.bar-face {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(145deg, var(--accent-primary), var(--accent-secondary));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(208, 208, 208, 0.3);
}

.bar-face.front {
  width: 100%;
  height: var(--bar-height, 200px);
  transform: translateZ(10px);
  transform-origin: bottom;
  background: linear-gradient(to top, var(--accent-secondary), var(--accent-primary));
}

.bar-face.top {
  width: 100%;
  height: 10px;
  transform: rotateX(90deg) translateZ(var(--bar-height, 200px));
  transform-origin: bottom;
  background: linear-gradient(145deg, #D3D3D3, var(--accent-primary));
  bottom: 0;
}

.bar-face.side {
  width: 10px;
  height: var(--bar-height, 200px);
  right: 0;
  left: auto;
  transform: rotateY(90deg) translateZ(50px);
  transform-origin: bottom;
  background: linear-gradient(to top, var(--accent-secondary), var(--accent-primary));
}

.bar-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(208, 208, 208, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  pointer-events: none;
}

.chart-labels {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: rotateX(15deg) rotateY(25deg);
}

.chart-labels span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  width: 60px;
  transform: translateX(-50%);
}

@keyframes bar-rise {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes bar-fade-in {
  to {
    opacity: 1;
  }
}

.bar-3d .bar-face {
  opacity: 0;
}

.bar-3d.in-view .bar-face {
  animation: bar-fade-in 0.8s ease-out forwards;
}

.bar-3d.in-view:nth-child(1) .bar-face { animation-delay: 0.1s; }
.bar-3d.in-view:nth-child(2) .bar-face { animation-delay: 0.3s; }
.bar-3d.in-view:nth-child(3) .bar-face { animation-delay: 0.5s; }
.bar-3d.in-view:nth-child(4) .bar-face { animation-delay: 0.7s; }

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* Responsive 3D Chart */
@media (max-width: 768px) {
  .chart-3d {
    transform: rotateX(-10deg) rotateY(-15deg) scale(0.8);
  }

  .chart-3d:hover {
    transform: rotateX(-5deg) rotateY(-10deg) scale(0.85);
  }

  .bar-3d {
    width: 40px;
  }

  .chart-labels span {
    width: 40px;
    font-size: 0.7rem;
  }
}
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-mesh {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(10, 10, 15, 0.9) 0%, rgba(26, 26, 36, 0.8) 50%, rgba(10, 10, 15, 0.9) 100%);
  animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(208, 208, 208, 0.1);
  border: 1px solid rgba(208, 208, 208, 0.3);
  border-radius: 2rem;
  font-size: 0.875rem;
  color: var(--accent-primary);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent-primary);
  color: var(--accent-primary);
  padding: 0.65rem 1.25rem;
  font-size: 0.9375rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0.5rem 0;
}

.floating-card {
  background: rgba(26, 26, 36, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  padding: 1.5rem 2rem;
  border: 1px solid var(--border-color);
  width: 260px;
  animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
  align-self: flex-start;
  animation-delay: 0s;
}

.floating-card.card-2 {
  align-self: flex-end;
  animation-delay: 2s;
}

.floating-card.card-3 {
  align-self: center;
  animation-delay: 4s;
}

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

.card-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  object-fit: contain;
}

/* Hero cards - larger logos for visibility */
.hero-visual .card-logo {
  width: 120px;
  height: 120px;
}

.hero-visual .card-1 .card-logo {
  width: 140px;
  height: 140px;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Square logo for Scorient in hero cards */
.card-logo-square {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.hero-visual .card-logo-square {
  width: 88px;
  height: 88px;
}

.ai-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Partners Section */
#partners {
  padding: var(--section-padding) 0;
}

.partners-text-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 2rem;
}

.partners-text-grid a {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(208, 208, 208, 0.2);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.partners-text-grid a:hover {
  color: var(--accent-primary);
  border-color: rgba(208, 208, 208, 0.4);
}

.marquee-container {
  overflow: hidden;
  position: relative;
  margin: 2rem 0;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

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

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

.marquee-wrapper {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
}

.marquee-left {
  animation-direction: normal;
}

.marquee-right {
  animation-direction: reverse;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100px;
  position: relative;
}

.marquee-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.marquee-item img {
  display: block !important;
  height: 28px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  opacity: 0.75;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.marquee-item img[src=""],
.marquee-item img:not([src]),
.marquee-item img[src*="placeholder"] {
  display: none !important;
}

.marquee-item::after {
  content: attr(data-name);
  display: block;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
}

.marquee-item.marquee-fallback::after {
  content: attr(data-fallback);
  display: block !important;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #e8e8e8;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
}

.marquee-item.marquee-fallback img {
  display: none !important;
}

.marquee-item:hover img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

/* About Section */
#about {
  padding: var(--section-padding) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 0.5rem;
}

.about-content .section-subtitle {
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  background: #1A1A24;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid rgba(208, 208, 208, 0.3);
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: "🖼️";
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.image-placeholder span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  opacity: 0.8;
  text-align: center;
  max-width: 80%;
}

/* Products Section */
#products {
  padding: var(--section-padding) 0;
}

.section-header {
  margin-bottom: 4rem;
}

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

.product-card {
  background: rgba(208, 208, 208, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid rgba(208, 208, 208, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  background: rgba(208, 208, 208, 0.08);
  transform: translateY(-4px);
  box-shadow: var(--glow-gold);
}

.product-card.coming-soon {
  opacity: 0.7;
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  gap: 0.5rem;
}

.product-logo {
  width: 220px;
  height: auto;
  margin: 0 auto 1.25rem;
  object-fit: contain;
}

.product-logo-square {
  width: 180px !important;
  height: auto !important;
  object-fit: contain;
}

.product-badge {
  background: var(--gradient-gold);
  color: var(--bg-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.product-card .btn-outline {
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
}

.product-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.product-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.product-stats span {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.coming-soon-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 0.5rem;
}

/* Data Visualization Section */
#data-viz {
  padding: var(--section-padding) 0;
}

.data-viz-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.data-viz-left h2 {
  margin-bottom: 1rem;
}

.data-viz-left p {
  margin-bottom: 2rem;
}

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

.metric {
  text-align: center;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-secondary);
  margin-bottom: 0.5rem;
}

.metric-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.chart-container {
  height: 300px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 2rem;
  perspective: 1000px;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 3rem;
}

.bar {
  position: relative;
  width: 60px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  overflow: hidden;
  transform-style: preserve-3d;
  animation: barFloat 4s ease-in-out infinite;
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 1s; }
.bar:nth-child(3) { animation-delay: 2s; }
.bar:nth-child(4) { animation-delay: 3s; }

.bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 0 20px rgba(160, 160, 160, 0.3);
  animation: fillBar 2s ease-out forwards;
}

@keyframes barFloat {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50% { transform: translateY(-10px) rotateX(2deg); }
}

@keyframes fillBar {
  from { height: 0; }
  to { height: var(--height); }
}

@keyframes headShake {
  0% { transform: translateX(0); }
  6.5% { transform: translateX(-6px) rotateY(-9deg); }
  18.5% { transform: translateX(5px) rotateY(7deg); }
  31.5% { transform: translateX(-3px) rotateY(-5deg); }
  43.5% { transform: translateX(2px) rotateY(3deg); }
  50% { transform: translateX(0); }
}

/* Code Section */
#code {
  padding: var(--section-padding) 0;
}

.code-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.code-editor {
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.editor-header {
  background: var(--bg-tertiary);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.window-controls {
  display: flex;
  gap: 0.5rem;
}

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

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.filename {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-family: var(--font-mono);
}

.editor-content {
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.5;
  overflow-x: auto;
}

.editor-content code {
  color: var(--text-primary);
}

.comment { color: var(--text-muted); }
.keyword { color: var(--accent-secondary); }
.string { color: var(--accent-tertiary); }
.number { color: var(--accent-primary); }
.class-name { color: var(--accent-secondary); }
.function-name { color: var(--accent-primary); }
.builtin { color: var(--accent-secondary); }

.code-description h2 {
  margin-bottom: 1rem;
}

.code-description p {
  color: var(--text-secondary);
}

/* Supermind Hero Full-Bleed - flexible yükseklik */
.supermind-hero-full {
  position: relative;
  min-height: clamp(420px, 65vh, 88vh);
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
}

.supermind-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

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

.supermind-hero-bg picture,
.supermind-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.supermind-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.supermind-hero-full .supermind-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 2rem 4rem clamp(1.5rem, 6vw, 5rem);
  text-align: left;
  box-sizing: border-box;
  align-self: stretch;
}

.supermind-hero-full .supermind-hero-badge {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.supermind-hero-full .supermind-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  max-width: 480px;
}

.supermind-hero-full .supermind-hero-subtitle,
.supermind-hero-full .eco-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0,0,0,0.7), 0 2px 4px rgba(0,0,0,0.5);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.supermind-hero-full .supermind-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.eco-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Minik sempatik buton - beyaz arka plan ve çerçeve */
.btn-mini {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  background: #fff;
  color: #0A0A0F;
  border: 1px solid rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.btn-mini:hover {
  background: #fff;
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Contact CTA Section */
#contact-cta {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(99, 60, 180, 0.35) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(30, 80, 200, 0.25) 0%, transparent 65%),
    linear-gradient(135deg, rgba(10, 10, 20, 0.95) 0%, rgba(20, 10, 40, 0.9) 50%, rgba(10, 20, 35, 0.95) 100%);
  z-index: 0;
}

#contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 100% at 50% 100%, rgba(80, 40, 160, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

#contact-cta .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.cta-email {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.cta-email a {
  color: var(--accent-secondary);
}

/* Supermind Page Styles */

/* Supermind Hero */
#hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.supermind-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.supermind-logo-large {
  margin-bottom: 2rem;
}

.logo-image {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.supermind-hero-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.supermind-hero-subtitle {
  font-size: 1.1rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.supermind-hero-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.phone-mockups {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: var(--bg-secondary);
  border-radius: 30px;
  border: 2px solid var(--border-color);
  position: relative;
  transform: rotate(-5deg);
  box-shadow: var(--glow-gold);
}

.phone-mockup.mockup-1 {
  transform: rotate(-10deg) translateZ(20px);
  z-index: 1;
}

.phone-mockup.mockup-2 {
  transform: rotate(0deg) translateZ(40px);
  z-index: 2;
}

.phone-mockup.mockup-3 {
  transform: rotate(10deg) translateZ(60px);
  z-index: 3;
}

.phone-screen {
  position: absolute;
  top: 20px;
  left: 10px;
  right: 10px;
  bottom: 20px;
  background: var(--bg-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* How We Build */
.build-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}

.process-step {
  text-align: center;
  max-width: 250px;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  font-family: var(--font-display);
}

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

.process-step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.process-arrow {
  font-size: 2rem;
  color: var(--accent-secondary);
  font-weight: bold;
}

/* Robot Gallery */
.robot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.robot-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(208, 208, 208, 0.2);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem;
  text-align: center;
}

.robot-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-gold);
}

.robot-img {
  width: 40%;
  height: 40px;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Inline robot images for distribution throughout page */
.robot-inline {
  width: 170px;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 70px;
  border: 1px solid rgba(208, 208, 208, 0.2);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  animation: headShake 3s ease-in-out;
}

.robot-inline:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

.robot-left {
  display: block;
  margin: 1rem auto;
  float: none;
}

.robot-right {
  display: block;
  margin: 1rem auto;
  float: none;
}

@media (max-width: 768px) {
  .robot-left,
  .robot-right {
    float: none;
    margin: 1rem auto;
    display: block;
    width: 100%;
    max-width: 200px;
  }
}

/* Products */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 4rem 0;
  align-items: center;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.product-logo img {
  width: 80px;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.product-info h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.product-badge {
  display: inline-block;
  background: var(--gradient-cyan);
  color: var(--bg-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-info p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

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

.feature-icon {
  font-size: 1.25rem;
}

.product-buttons {
  display: flex;
  gap: 1rem;
}

.product-mockups {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iphone-mockup {
  width: 200px;
  height: 400px;
  background: var(--bg-secondary);
  border-radius: 30px;
  border: 2px solid var(--border-color);
  position: absolute;
  box-shadow: var(--glow-primary);
}

.iphone-mockup.mockup-1 {
  transform: rotate(-15deg) translateX(-50px);
  z-index: 1;
}

.iphone-mockup.mockup-2 {
  transform: rotate(0deg) translateZ(20px);
  z-index: 2;
}

.iphone-mockup.mockup-3 {
  transform: rotate(15deg) translateX(50px);
  z-index: 3;
}

.mockup-screen {
  position: absolute;
  top: 20px;
  left: 10px;
  right: 10px;
  bottom: 80px;
  background: #1A1A24;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid rgba(0, 255, 255, 0.3);
  overflow: hidden;
}

.mockup-screen::before {
  content: "📱";
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.mockup-screen span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  opacity: 0.8;
  text-align: center;
  max-width: 90%;
  line-height: 1.2;
}

.coming-soon-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
  opacity: 0.7;
}

.coming-soon-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.coming-soon-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.subscribe-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-size: 1rem; /* min 16px — iOS zoom önlemi */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.email-input::placeholder {
  color: var(--text-muted);
}

/* Technology Stack */
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.tech-item {
  background: rgba(26, 26, 36, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.tech-item.medium {
  grid-column: span 2;
}

.tech-item.small {
  grid-column: span 1;
}

.tech-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-icon img,
.tech-icon svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.tech-item.large .tech-icon img,
.tech-item.large .tech-icon svg {
  width: 64px;
  height: 64px;
}

.tech-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.tech-item p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* CTA */
#cta {
  padding: var(--section-padding) var(--container-padding);
  background: rgba(208, 208, 208, 0.05);
  margin-top: 2rem;
}

/* Chat Widget - AI / Contact */
.chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  font-family: var(--font-body);
}

.chat-widget-btn {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(208, 208, 208, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.chat-widget-btn:hover {
  transform: scale(1.08);
  box-shadow: var(--glow-gold);
}

.chat-widget-icon {
  font-size: 1.25rem;
}

.chat-widget-label {
  font-size: 0.6rem;
  font-weight: 600;
}

.chat-widget-panel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  right: 0;
  width: 280px;
  background: rgba(17, 17, 24, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s, transform 0.2s;
}

.chat-widget-panel--open {
  opacity: 1;
  transform: translateY(0);
}

.chat-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.chat-widget-header h4 {
  margin: 0;
  font-size: 1rem;
}

.chat-widget-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
}

.chat-widget-close:hover {
  color: var(--text-primary);
}

.chat-widget-content {
  padding: 1rem 1.25rem;
}

.chat-widget-content p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.chat-widget-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0;
  color: var(--accent-primary);
  text-decoration: none;
  font-size: 0.9rem;
  min-height: 44px;
  align-items: center;
}

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

/* ── AI Chat panel ──────────────────────────────────────────────────────── */
.chat-widget-panel {
  width: 340px;
  display: flex;
  flex-direction: column;
  max-height: 500px;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-header-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-primary), #00b248);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0E1A;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.chat-widget-header strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.chat-widget-header span {
  font-size: 0.72rem;
  color: var(--accent-primary);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 200px;
  max-height: 320px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.chat-msg {
  max-width: 85%;
  border-radius: 14px;
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
  line-height: 1.5;
  word-break: break-word;
}

.chat-msg p {
  margin: 0;
}

.chat-msg--bot {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--text-primary);
}

.chat-msg--user {
  background: var(--accent-primary);
  color: #0A0E1A;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  font-weight: 500;
}

/* Typing indicator */
.chat-msg--typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-msg--typing span {
  width: 7px;
  height: 7px;
  background: var(--accent-primary);
  border-radius: 50%;
  display: inline-block;
  animation: typingBounce 1.2s ease-in-out infinite;
  opacity: 0.6;
}

.chat-msg--typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg--typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.6; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Input row */
.chat-input-area {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.chat-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.chat-input:focus {
  border-color: var(--accent-primary);
}

.chat-input::placeholder {
  color: var(--text-muted);
}

.chat-send-btn {
  width: 36px;
  height: 36px;
  background: var(--accent-primary);
  border: none;
  border-radius: 8px;
  color: #0A0E1A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, opacity 0.2s;
}

.chat-send-btn:hover {
  background: #00b248;
}

.chat-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb-list li:not(:last-child)::after {
  content: "›";
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.breadcrumb-list a {
  color: var(--text-secondary);
}

.breadcrumb-list a:hover {
  color: var(--accent-primary);
}

.breadcrumb-list li:last-child span {
  color: var(--text-primary);
  font-weight: 500;
}

/* Trust badges strip */
.trust-badges-strip {
  padding: 1.5rem 0;
  background: rgba(208, 208, 208, 0.03);
  border-bottom: 1px solid var(--border-color);
}

.trust-badges-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.trust-badge-icon {
  color: var(--accent-primary);
  font-size: 1.25rem;
}

.trust-badge-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.trust-badge-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Demo video section */
#demo-video {
  padding: var(--section-padding) 0;
}

.demo-video-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.demo-video-placeholder {
  aspect-ratio: 16/9;
  background: rgba(26, 26, 36, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.demo-video-play {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.demo-video-play:hover {
  transform: scale(1.05);
  box-shadow: var(--glow-gold);
}

.play-icon {
  font-size: 1.25rem;
}

.demo-video-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 !important;
}

/* Blog coming soon */
.blog-coming-soon {
  text-align: center;
  padding: 4rem 2rem;
}

.blog-placeholder-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.blog-coming-soon h2 {
  margin-bottom: 1rem;
}

.blog-coming-soon p {
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

/* Toast notification */
.toast-msg {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(26, 26, 36, 0.98);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

body.toast-visible .toast-msg {
  transform: translateX(-50%) translateY(0);
}

.toast-msg--hide {
  transform: translateX(-50%) translateY(100px) !important;
}

/* Notify Me modal (app coming soon) */
.notify-me-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notify-me-modal.active {
  opacity: 1;
  visibility: visible;
}

.notify-me-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.notify-me-content {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 20, 28, 0.98) 0%, rgba(10, 10, 15, 0.99) 100%);
  border: 1px solid rgba(208, 208, 208, 0.12);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.notify-me-modal.active .notify-me-content {
  transform: scale(1);
}

.notify-me-emoji {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1;
  animation: notify-bounce 2s ease-in-out infinite;
}

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

.notify-me-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem;
}

.notify-me-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
}

.notify-me-sub {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.notify-me-cta {
  display: inline-block;
  margin-bottom: 1rem;
}

.notify-me-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.notify-me-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}
/* ======================================================
   SCORIENT BRAND ADDITIONS
   ====================================================== */

/* Scorient tag pill */
.tag-scorient {
  background: var(--color-scorient-glow);
  color: var(--color-scorient);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}

/* Improved button hover */
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-gold), 0 8px 24px rgba(208, 208, 208, 0.2);
}

/* Improved cards */
.feature-card {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 14px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Improved navbar */
.navbar {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* Footer Scorient section */
.footer-section h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Scorient green gradient text utility */
.text-scorient {
  color: var(--color-scorient);
}

/* Typography improvements */
h1, h2, h3 {
  font-feature-settings: 'kern' 1, 'liga' 1;
}

.section-title {
  letter-spacing: -0.01em;
}
