/* ==========================================================================
   Doğruyu Bul — Modern Landing Page Design System
   Rich Aesthetics, Dark/Light Mode, Glassmorphism, 3D Phone Mockups
   ========================================================================== */

:root {
  /* Color Tokens - Dark Mode (Default) */
  --bg-base: #0a0e17;
  --bg-surface: #111827;
  --bg-surface-elevated: #1a2234;
  --bg-glass: rgba(17, 24, 39, 0.72);
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-glass-hover: rgba(255, 255, 255, 0.22);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Brand Gradients & Accents */
  --primary: #7c3aed;
  --primary-light: #9333ea;
  --primary-glow: rgba(124, 58, 237, 0.35);
  
  --accent-pink: #ec4899;
  --accent-blue: #0284c7;
  --accent-amber: #f59e0b;
  --accent-gold: #fbbf24;
  --accent-green: #10b981;
  
  --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --gradient-alt: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --gradient-surface: linear-gradient(180deg, rgba(26, 34, 52, 0.6) 0%, rgba(17, 24, 39, 0.8) 100%);

  /* Shadows & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 50px rgba(124, 58, 237, 0.28);
  --bg-footer: #060910;
  
  /* Transition */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg-base: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #f1f5f9;
  --bg-glass: rgba(255, 255, 255, 0.85);
  --border-glass: rgba(0, 0, 0, 0.08);
  --border-glass-hover: rgba(0, 0, 0, 0.16);
  --bg-footer: #edf2f7;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 50px rgba(124, 58, 237, 0.15);
  --gradient-surface: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Light Theme Specific Overrides for Legibility */
[data-theme="light"] .eyebrow-pill {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.28);
  color: #6d28d9;
}

[data-theme="light"] .eyebrow-pill.purple {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.3);
  color: #6d28d9;
}

[data-theme="light"] .eyebrow-pill.gold {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.3);
  color: #b45309;
}

[data-theme="light"] .cta-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%), #ffffff;
  border-color: rgba(124, 58, 237, 0.2);
}

[data-theme="light"] .cta-title {
  color: #0f172a;
}

[data-theme="light"] .cta-desc {
  color: #475569;
}

[data-theme="light"] .footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .footer-col h4,
[data-theme="light"] .brand-name {
  color: #0f172a;
}

[data-theme="light"] .footer-col a,
[data-theme="light"] .footer-tagline,
[data-theme="light"] .footer-bottom {
  color: #475569;
}

[data-theme="light"] .footer-col a:hover {
  color: var(--primary);
}

[data-theme="light"] .footer-socials a {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  color: #334155;
}

[data-theme="light"] .footer-socials a:hover {
  background: var(--primary);
  color: #ffffff;
}

[data-theme="light"] .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

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

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
  position: relative;
}

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

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

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

/* Ambient Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.orb-primary {
  top: -100px;
  left: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.orb-secondary {
  top: 600px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
}

.orb-accent {
  top: 1800px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.max-w-800 {
  max-width: 800px;
}

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

/* Gradients & Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

/* Section Header */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--primary-light);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.75rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 8px 24px var(--primary-glow);
}

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

.btn-gold {
  background: var(--gradient-gold);
  color: #1a1a1a;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.45);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.icon-btn:hover {
  background: var(--bg-surface-elevated);
  transform: rotate(15deg);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 16px 0;
  transition: var(--transition);
}

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

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

.logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px var(--primary-glow);
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.brand-name span {
  color: var(--primary-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 0;
  transition: var(--transition);
  white-space: nowrap;
}

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

.nav-links a.active {
  color: var(--primary-light) !important;
  font-weight: 800;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--gradient-primary);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--primary-glow);
}

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

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--bg-surface-elevated);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-150%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.mobile-drawer.open {
  transform: translateY(0);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-links a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-glass);
}

/* Hero Section */
.hero-section {
  padding: 170px 0 100px 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  font-size: 0.88rem;
  font-weight: 700;
  color: #d8b4fe;
  margin-bottom: 24px;
}

.eyebrow-pill.gold {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--accent-gold);
}

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

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: 3.8rem;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.store-badge-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.store-badge-btn i {
  font-size: 2rem;
  color: var(--text-primary);
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text .sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.badge-text .main {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
}

.store-badge-btn:hover {
  transform: translateY(-3px);
  border-color: var(--primary-light);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--bg-base);
  margin-left: -12px;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.proof-text .stars {
  color: #fbbf24;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.proof-text span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* 3D Phone Mockup */
.hero-device-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.device-glow {
  position: absolute;
  width: 380px;
  height: 520px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.4;
  top: 10%;
  z-index: 0;
}

.phone-mockup {
  position: relative;
  width: 320px;
  height: 640px;
  background: #1e1e24;
  border-radius: 46px;
  border: 10px solid #2d2d38;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.5s ease;
}

.phone-3d {
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
}

.phone-3d:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #4b4b5c;
  border-radius: 4px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000000;
  overflow: hidden;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.4s ease;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.float-card-1 {
  top: 15%;
  left: -20px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 18%;
  right: -25px;
  animation-delay: 2s;
}

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

.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.gold-bg { background: rgba(245, 158, 11, 0.2); }
.purple-bg { background: rgba(124, 58, 237, 0.2); }

.float-title {
  font-size: 0.9rem;
  font-weight: 800;
}

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

/* Dual World Switcher */
.switcher-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.world-toggle-container {
  display: inline-flex;
  background: var(--bg-base);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  margin-top: 32px;
}

.world-toggle-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.world-toggle-btn.active {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.world-content-box {
  display: none;
  animation: fadeIn 0.4s ease forwards;
  margin-top: 50px;
}

.world-content-box.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.world-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  background: var(--gradient-surface);
  padding: 50px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-md);
}

.world-info h3 {
  font-size: 2.25rem;
  margin: 16px 0;
}

.world-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.pill-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.pill-tag.purple { background: rgba(124, 58, 237, 0.15); color: #c084fc; }
.pill-tag.amber { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.check-list i {
  color: #22c55e;
  font-size: 1.15rem;
  margin-top: 3px;
}

.check-list strong {
  color: var(--text-primary);
}

.mockup-md {
  width: 290px;
  height: 580px;
  margin: 0 auto;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-md);
}

.bento-span-2 {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 30px;
}

.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.bg-gradient-purple { background: var(--gradient-primary); }
.bg-gradient-amber { background: var(--gradient-gold); color: #1a1a1a; }
.bg-gradient-blue { background: var(--gradient-alt); }
.bg-gradient-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.bg-gradient-pink { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }

.bento-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.bento-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.card-pills {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.card-pills span {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
}

.bento-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-sm);
}

.bento-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.bento-card:hover .bento-thumb img {
  transform: scale(1.04);
}

/* Gallery Section */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary-light);
  box-shadow: 0 4px 16px var(--primary-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease, opacity 0.25s ease;
  animation: gallerySlideUp 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
}

.gallery-item:active {
  transform: translateY(-2px) scale(0.99);
}

.gallery-item.hidden {
  display: none !important;
}

@keyframes gallerySlideUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mockup-sm {
  width: 240px;
  height: 480px;
  border-radius: 36px;
  border: 6px solid #2d2d38;
}

.gallery-caption {
  text-align: center;
  margin-top: 16px;
}

.gallery-caption h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-caption span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Publisher (B2B) Section */
.publisher-section {
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
}

.publisher-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  background: var(--bg-surface);
  padding: 60px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.publisher-title {
  font-size: 2.5rem;
  margin: 20px 0;
}

.publisher-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.publisher-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-item h5 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.publisher-form-box {
  background: var(--bg-surface-elevated);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
}

.form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-header p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-base);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.form-group input.is-invalid, 
.form-group select.is-invalid, 
.form-group textarea.is-invalid {
  border-color: #ef4444 !important;
  background-color: rgba(239, 68, 68, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25) !important;
}

.form-group .field-error-hint {
  display: none;
  font-size: 0.76rem;
  color: #f87171;
  margin-top: 4px;
  font-weight: 500;
}

.form-group.has-error .field-error-hint {
  display: block;
}

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.form-success-message {
  display: none;
  text-align: center;
  padding: 30px 20px;
}

.form-success-message.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.form-success-message .success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.form-success-message h4 {
  font-size: 1.4rem;
  color: #22c55e;
  margin-bottom: 8px;
}

.form-success-message p {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

/* Metrics Section */
.metrics-section {
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  background: var(--bg-surface);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.metric-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.25rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 6px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--bg-surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-hover);
}

.testi-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-text {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
}

.user-avatar.bg-purple { background: var(--primary); }
.user-avatar.bg-amber { background: var(--accent-amber); }
.user-avatar.bg-blue { background: var(--accent-blue); }

.user-name {
  font-weight: 800;
  font-size: 0.95rem;
}

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

/* FAQ Section */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.96rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* CTA Download Section */
.cta-download-section {
  padding: 100px 0;
}

.cta-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25) 0%, rgba(236, 72, 153, 0.25) 100%), var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-glass);
  padding: 70px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 3rem;
  margin: 20px 0;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.primary-store {
  background: #ffffff;
  color: #0f172a;
  border-color: #ffffff;
}

.primary-store i, .primary-store .main {
  color: #0f172a;
}

/* Footer */
.footer {
  background: #060910;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 16px 0 24px 0;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.footer-socials a:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.footer-col a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

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

/* ==========================================================================
   Responsive Media Queries — Full Breakpoint System
   1024px = Large Tablet | 900px = Small Tablet | 768px = Mobile | 480px = Small Phone | 375px = XS
   ========================================================================== */

/* ─── 1024px: Large Tablet ─── */
@media (max-width: 1024px) {
  /* Typography scale */
  .section-title { font-size: 2.2rem; }
  .hero-title    { font-size: 3rem; }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-subtitle    { margin: 0 auto 36px auto; max-width: 560px; }
  .hero-cta-group   { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-device-wrapper { order: -1; }
  .phone-mockup { width: 280px; height: 560px; }

  /* Floating cards — keep but tuck in */
  .float-card-1 { left: 0; top: 10%; }
  .float-card-2 { right: 0; bottom: 15%; }

  /* Bento grid: 2 column */
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-span-2 {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
  }

  /* Gallery: 3 column */
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  /* World grid: single column */
  .world-grid {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
  }

  /* Publisher B2B: stack */
  .publisher-card {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 36px;
  }
  .publisher-title { font-size: 2rem; }

  /* Security */
  .security-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Rutinler */
  .rutinler-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Metrics: 2×2 */
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Footer: 2 column */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }

  /* CTA */
  .cta-title { font-size: 2.4rem; }
  .cta-card  { padding: 56px 32px; }
}

/* ─── 900px: Small Tablet ─── */
@media (max-width: 900px) {
  .section { padding: 80px 0; }

  .hero-title    { font-size: 2.6rem; }
  .section-title { font-size: 2rem; }

  /* Phone mockup: slightly smaller */
  .phone-mockup { width: 260px; height: 520px; }
  .mockup-md    { width: 240px; height: 480px; }
  .mockup-sm    { width: 200px; height: 400px; }

  /* Floating cards: hide on small tablets to avoid overflow */
  .floating-card { display: none; }

  /* Bento: still 2 cols */
  .bento-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery: 2 column */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* World toggle buttons: stack on small width */
  .world-toggle-container { flex-direction: column; border-radius: var(--radius-lg); }
  .world-toggle-btn { border-radius: var(--radius-md); }

  /* Publisher form row: single col */
  .form-row { grid-template-columns: 1fr; }
}

/* ─── 768px: Mobile ─── */
@media (max-width: 768px) {
  /* Typography */
  html { font-size: 15px; }
  .hero-title    { font-size: 2.2rem; }
  .section-title { font-size: 1.85rem; }
  .section-desc  { font-size: 1rem; }

  /* Section padding */
  .section       { padding: 70px 0; }
  .section-header { margin-bottom: 40px; }

  /* Container padding */
  .container { padding: 0 18px; }

  /* Navbar: hide desktop nav, show hamburger */
  .nav-links { display: none; }
  .nav-actions .btn-primary { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; }

  /* Hero */
  .hero-section { padding: 130px 0 70px 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-subtitle    { font-size: 1rem; max-width: 100%; }
  .hero-cta-group   { flex-direction: column; align-items: center; gap: 12px; }
  .hero-social-proof { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .hero-device-wrapper { order: -1; }
  .store-badge-btn  { width: 100%; max-width: 280px; justify-content: center; }

  /* Phone mockup */
  .phone-mockup  { width: 240px; height: 480px; border-radius: 36px; border-width: 8px; }
  .phone-3d      { transform: none; }
  .phone-3d:hover { transform: none; }
  .mockup-md     { width: 220px; height: 440px; }
  .mockup-sm     { width: 180px; height: 360px; }
  .floating-card { display: none; }
  .device-glow   { width: 260px; height: 360px; }

  /* World switcher */
  .world-grid {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 28px;
  }
  .world-info h3 { font-size: 1.8rem; }
  .world-toggle-container {
    flex-direction: column;
    width: 100%;
    border-radius: var(--radius-lg);
  }
  .world-toggle-btn { width: 100%; justify-content: center; }

  /* Bento: single column */
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2 {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .bento-card { padding: 24px 20px; }
  .bento-content h3 { font-size: 1.3rem; }

  /* Gallery: single column */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .gallery-tabs { gap: 8px; }
  .tab-btn { padding: 8px 14px; font-size: 0.82rem; }

  /* Security */
  .security-grid { grid-template-columns: 1fr; gap: 32px; }
  .security-visual { display: none; } /* hide phone mockup on mobile to save space */

  /* Rutinler */
  .rutinler-grid { grid-template-columns: 1fr; gap: 32px; }
  .rutinler-visual { display: none; }

  /* Publisher B2B */
  .publisher-card { padding: 30px 20px; gap: 28px; }
  .publisher-title { font-size: 1.75rem; }
  .publisher-form-box { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Metrics: 2×2 */
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .metric-num   { font-size: 2.5rem; }

  /* Testimonials: single column */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 60px 0 24px 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* CTA */
  .cta-card  { padding: 40px 20px; }
  .cta-title { font-size: 2rem; }
  .cta-desc  { font-size: 0.95rem; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .cta-buttons .store-badge-btn { max-width: 280px; width: 100%; }

  /* Legal modal */
  .legal-box { max-height: 90vh; }
  .legal-body { padding: 20px; }
  .legal-header { padding: 18px 20px; }

  /* Lightbox */
  .lightbox-img-wrapper { border-radius: 24px; }

  /* Publisher card: single col */
  .publisher-card { grid-template-columns: 1fr; }
}

/* ─── 480px: Small Phone ─── */
@media (max-width: 480px) {
  html { font-size: 14px; }

  .hero-title    { font-size: 1.95rem; }
  .section-title { font-size: 1.65rem; }
  .eyebrow-pill  { font-size: 0.78rem; padding: 6px 14px; }

  .hero-section  { padding: 120px 0 60px 0; }

  /* Phone mockup: smaller on very small screens */
  .phone-mockup { width: 210px; height: 420px; border-radius: 32px; border-width: 7px; }
  .mockup-md    { width: 200px; height: 400px; }
  .mockup-sm    { width: 160px; height: 320px; }

  /* Gallery: single column on small phones */
  .gallery-grid { grid-template-columns: 1fr; }

  /* Metrics: single column */
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .metric-num   { font-size: 2.2rem; }

  /* Publisher */
  .publisher-card { padding: 24px 16px; }
  .publisher-title { font-size: 1.5rem; }

  /* Bento */
  .bento-card { padding: 20px 16px; }

  /* CTA */
  .cta-card  { padding: 36px 16px; border-radius: var(--radius-lg); }
  .cta-title { font-size: 1.75rem; }

  /* FAQ */
  .faq-question { font-size: 1rem; padding: 16px 18px; }
  .faq-answer   { padding: 0 18px; }
  .faq-item.active .faq-answer { padding-bottom: 16px; }

  /* Footer */
  .footer-grid { gap: 24px; }
  .footer-socials { gap: 8px; }

  /* Drawer: make links bigger for thumb tap */
  .drawer-links a { font-size: 1.1rem; padding: 10px 0; }
  .drawer-actions .btn { padding: 14px 20px; font-size: 1rem; }

  /* World toggle */
  .world-grid { padding: 22px 16px; }
  .world-info h3 { font-size: 1.55rem; }
}

/* ─── 375px: Extra Small Phone ─── */
@media (max-width: 375px) {
  html { font-size: 13.5px; }
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  .container { padding: 0 14px; }

  .phone-mockup { width: 190px; height: 380px; }
  .mockup-md    { width: 180px; height: 360px; }

  .hero-cta-group .store-badge-btn { max-width: 100%; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .metric-num { font-size: 2rem; }

  .bento-content h3 { font-size: 1.2rem; }
  .publisher-title  { font-size: 1.35rem; }
}


/* Gallery Item Filtering & Interactions */
.gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item.hidden {
  display: none !important;
}

.gallery-item:hover .phone-mockup {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-light);
  box-shadow: 0 16px 36px var(--primary-glow);
}

/* Lightbox Modal for Full-Detail Screenshot View */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 13, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox-box {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lightboxSlideUp 0.26s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes lightboxSlideUp {
  from {
    transform: translateY(40px) scale(0.92);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.lightbox-img-wrapper {
  max-height: 78vh;
  overflow: hidden;
  border-radius: 36px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9);
  background: #000;
}

.lightbox-img-wrapper img {
  max-height: 78vh;
  width: auto;
  display: block;
}

.lightbox-info {
  margin-top: 16px;
  text-align: center;
}

.lightbox-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.lightbox-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 4px;
}

.lightbox-close-btn {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close-btn:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

/* Interactive Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-primary);
  z-index: 3000;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  pointer-events: none;
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  font-size: 1.6rem;
  color: var(--accent-gold);
}

.toast-title {
  font-weight: 800;
  font-size: 0.95rem;
}

.toast-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   Security & Compliance Section
   ========================================================================== */
.security-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
}

.security-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.security-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.security-card-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-surface-elevated);
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  transition: var(--transition);
}

.security-card-item:hover {
  transform: translateY(-3px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-md);
}

.sec-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
  flex-shrink: 0;
}

.sec-icon.blue { background: var(--gradient-alt); }
.sec-icon.purple { background: var(--gradient-primary); }
.sec-icon.green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }

.sec-content h4 {
  font-size: 1.12rem;
  margin-bottom: 5px;
}

.sec-content p {
  color: var(--text-secondary);
  font-size: 0.91rem;
  line-height: 1.55;
}

.security-cert-badges {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cert-pill i {
  color: #10b981;
}

/* ==========================================================================
   Legal Documents Modal
   ========================================================================== */
.legal-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 13, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.legal-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 820px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.65);
  position: relative;
  overflow: hidden;
  animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.legal-header {
  padding: 22px 30px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-header h3 {
  font-size: 1.35rem;
}

.legal-close {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.legal-close:hover {
  color: var(--text-primary);
  transform: rotate(90deg);
}

.legal-body {
  padding: 28px 32px;
  overflow-y: auto;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

.legal-body h4 {
  color: var(--text-primary);
  margin: 18px 0 6px 0;
  font-size: 1.15rem;
}

.legal-body p {
  margin-bottom: 12px;
}

.legal-body ul {
  margin-left: 22px;
  margin-bottom: 14px;
}

.legal-body li {
  margin-bottom: 6px;
}

.legal-footer {
  padding: 16px 30px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: flex-end;
  background: var(--bg-surface-elevated);
}


/* =====================================================
   RUTINLER & AJANDA SECTION
===================================================== */
.rutinler-section {
  background: var(--bg-glass);
}

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

.rutinler-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rutinler-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  transition: var(--transition);
}

.rutinler-item:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--primary);
  transform: translateX(4px);
}

.rutinler-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.rutinler-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.rutin-icon-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}

.rutin-icon-wrap.teal   { background: linear-gradient(135deg, #14b8a6, #06b6d4); }
.rutin-icon-wrap.purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.rutin-icon-wrap.amber  { background: linear-gradient(135deg, #f59e0b, #fb923c); }
.rutin-icon-wrap.green  { background: linear-gradient(135deg, #10b981, #34d399); }

.rutinler-visual {
  display: flex;
  justify-content: center;
}

/* Mybi Apps Studio footer link */
.mybi-link {
  color: var(--primary-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}

.mybi-link:hover {
  opacity: 0.8;
}

/* Logo badge image override */
.logo-badge img {
  border-radius: inherit;
}
