/* Litra AR Draw - Web Tanıtım Sitesi CSS Design System */
:root {
  /* Color Palette - Inspired by App Screenshots */
  --primary: #00AEEF;
  --primary-hover: #0095CC;
  --primary-light: #E0F7FE;
  --primary-dark: #0077B6;
  
  --secondary: #38BDF8;
  --accent-yellow: #F59E0B;
  --accent-gold: #FBBF24;
  --accent-purple: #8B5CF6;
  --accent-pink: #EC4899;
  
  --bg-gradient-light: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 50%, #F8FAFC 100%);
  --bg-body: #F8FAFC;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-solid: #FFFFFF;
  --border-color: rgba(0, 174, 239, 0.15);
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 174, 239, 0.08);
  --shadow-md: 0 10px 25px -5px rgba(0, 174, 239, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(0, 174, 239, 0.2), 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 30px rgba(0, 174, 239, 0.35);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

/* Dark Mode Overrides */
[data-theme="dark"] {
  --bg-body: #090D16;
  --bg-card: rgba(15, 23, 42, 0.85);
  --bg-card-solid: #0F172A;
  --border-color: rgba(56, 189, 248, 0.2);
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-light: #64748B;
  --primary-light: rgba(0, 174, 239, 0.15);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.5);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

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

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

ul {
  list-style: none;
}

/* Container & Grid System */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphism Utility */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 50%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Common Styling */
section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 174, 239, 0.2);
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 20px -5px rgba(0, 174, 239, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -5px rgba(0, 174, 239, 0.55);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #000000;
  color: #FFFFFF;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

[data-theme="dark"] .store-btn {
  background: #FFFFFF;
  color: #0F172A;
}

.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.store-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-btn-small {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 500;
}

.store-btn-large {
  font-size: 1.05rem;
  font-weight: 700;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-main);
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.4);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

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

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.theme-toggle:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  padding-top: 170px;
  padding-bottom: 100px;
  background: radial-gradient(circle at 80% 20%, rgba(0, 174, 239, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
  overflow: hidden;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

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

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-main);
}

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

/* HERO MOCKUP & AR PREVIEW */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-wrapper {
  position: relative;
  width: 320px;
  height: 640px;
  border-radius: 46px;
  background: #000000;
  padding: 12px;
  box-shadow: 0 25px 60px -15px rgba(0, 174, 239, 0.4),
              0 0 0 8px #1E293B;
  transition: var(--transition);
}

.phone-mockup-wrapper:hover {
  transform: translateY(-8px) rotate(1deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Phone Screen Content */
.screen-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 24px 16px 16px;
  text-align: center;
}

.screen-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.screen-subtitle {
  font-size: 0.75rem;
  opacity: 0.9;
}

.ar-live-preview {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Simulated Camera Background */
.paper-bg {
  position: absolute;
  inset: 0;
  background: #F4F1EA url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="%23d0cbbd" fill-opacity="0.25" fill-rule="evenodd"><path d="M0 40L40 0H20L0 20M40 40V20L20 40"/></g></svg>');
}

/* AR Overlay Stencil */
.ar-overlay-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ar-overlay-img svg {
  width: 75%;
  height: 75%;
  stroke: var(--primary);
  stroke-width: 2.5;
  fill: none;
  filter: drop-shadow(0 0 8px rgba(0, 174, 239, 0.6));
  transition: opacity 0.1s ease;
}

.screen-controls {
  padding: 16px;
  background: #FFFFFF;
  border-top: 1px solid #F1F5F9;
}

.control-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}

.slider-input {
  width: 100%;
  accent-color: var(--primary);
  cursor: pointer;
}

/* Floating Decorative Cards */
.floating-card {
  position: absolute;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

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

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

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

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.card-info h5 {
  font-size: 0.88rem;
  font-weight: 700;
}

.card-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* AR DRAWING INTERACTIVE DEMO SECTION */
.ar-demo-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.demo-workspace {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  background: var(--bg-card-solid);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.demo-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-group-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.template-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-color);
  background: var(--bg-body);
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-main);
}

.template-btn.active, .template-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

.template-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.template-btn span {
  font-size: 0.85rem;
  font-weight: 600;
}

.demo-canvas-area {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-md);
  background: #F4F1EA url('data:image/svg+xml;utf8,<svg width="30" height="30" viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"><path d="M0 30L30 0H15L0 15M30 30V15L15 30" fill="%23ded8c9" fill-opacity="0.3"/></svg>');
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border-color);
}

.canvas-stencil {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.canvas-stencil svg {
  width: 60%;
  height: 60%;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
  filter: drop-shadow(0 0 6px rgba(0,174,239,0.5));
  transition: opacity 0.15s ease;
}

#userDrawingCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: crosshair;
}

.canvas-toolbar {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  color: white;
}

.tool-btn {
  background: none;
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.tool-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 36px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

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

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* CATEGORIES SHOWCASE */
.categories-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.category-card {
  padding: 24px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  color: white;
}

.category-name {
  font-weight: 700;
  font-size: 1rem;
}

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

/* APP SCREENS SLIDER / GALLERY */
.app-gallery {
  position: relative;
  padding: 20px 0;
}

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

.screen-card {
  border-radius: 36px;
  padding: 12px;
  background: #000000;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.screen-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.screen-card-inner {
  border-radius: 26px;
  overflow: hidden;
  background: #FFFFFF;
  position: relative;
  aspect-ratio: 9/19;
  display: flex;
  flex-direction: column;
}

.card-app-header {
  padding: 16px 12px 10px;
  background: var(--primary);
  color: white;
  text-align: center;
}

.card-app-header h6 {
  font-size: 0.85rem;
}

.card-app-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-body);
  text-align: center;
}

.card-app-body svg {
  width: 80px;
  height: 80px;
  stroke: var(--primary);
  fill: none;
}

/* PRICING TABLE */
.pricing-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.switch-label {
  font-weight: 700;
  font-size: 1.05rem;
}

.toggle-btn {
  position: relative;
  width: 60px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  border: 1px solid var(--primary);
  cursor: pointer;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  transition: var(--transition);
}

.pricing-switch.active .toggle-slider {
  left: 31px;
}

.discount-badge {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: #FEF3C7;
  color: #D97706;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-glow);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 32px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.plan-features {
  margin: 24px 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.plan-feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* FAQ ACCORDION */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 28px;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  padding: 0 28px 24px 28px;
  max-height: 200px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-banner h2 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 36px auto;
}

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

/* LEGAL / PRIVACY PAGE */
.legal-page {
  padding: 120px 0 80px 0;
  min-height: 70vh;
}

.legal-container {
  max-width: 860px;
}

.legal-header {
  margin-bottom: 40px;
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 12px 0 20px;
}

.legal-meta {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-meta a {
  color: var(--primary);
}

.legal-lang-switch {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-article {
  padding: 36px 32px;
  margin-bottom: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.legal-article h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--primary);
}

.legal-article h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
}

.legal-article h4 {
  font-size: 1.05rem;
  margin: 20px 0 10px;
}

.legal-article p,
.legal-article li {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-article ul {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.legal-article a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .legal-article {
    padding: 24px 18px;
  }
}

/* FOOTER */
footer {
  padding: 80px 0 40px 0;
  background: var(--bg-card-solid);
  border-top: 1px solid var(--border-color);
}

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

.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 320px;
}

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

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .demo-workspace {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.4rem;
  }

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

  .features-grid, .pricing-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    justify-content: center;
  }
  
  .cta-banner {
    padding: 40px 20px;
  }

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