/* ========================================
   CodeSim Website - Main Stylesheet
   Dark Futuristic Theme with Teal Accents
   ======================================== */

/* ========================================
   CSS Variables - Color Palette
   ======================================== */
:root {
  /* Primary Colors - Dark Futuristic Theme */
  --primary-dark: #0d1117;
  --primary-medium: #161b22;
  --primary-light: #21262d;

  /* Accent Colors - Teal/Cyan Theme */
  --accent-primary: #00c2ce;
  --accent-secondary: #00c2ce;
  --accent-tertiary: #00c2ce;
  --accent-glow: rgba(0, 194, 206, 0.3);

  /* Gradient Accents */
  --gradient-brand: linear-gradient(135deg, #00c2ce, #00c2ce);
  --gradient-dark: linear-gradient(180deg, #0d1117, #161b22);
  --gradient-card: linear-gradient(
    135deg,
    rgba(0, 194, 206, 0.1),
    rgba(0, 194, 206, 0.05)
  );

  /* Text Colors */
  --text-white: #ffffff;
  --text-light: #e6edf3;
  --text-muted: #8b949e;
  --text-accent: #00c2ce;

  /* Spacing */
  --section-padding: 100px;
  --container-max-width: 1200px;

  /* Transitions */
  --transition-speed: 0.3s;
}

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

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

body {
  font-family:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-optical-sizing: auto;
  background: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

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

/* ========================================
   Container & Layout
   ======================================== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow-x: hidden;
}

/* ========================================
   Navigation Bar
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: none;
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  z-index: 1000;
  transition: all var(--transition-speed) ease;
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-brand);
  z-index: 1001;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.scroll-progress.visible {
  opacity: 1;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  color: var(--text-white);
}

.logo-icon {
  width: 150px;
  height: 150px;
}

.logo-badge {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  border-left: 1px solid rgba(0, 194, 206, 0.3);
  padding-left: 0.75rem;
  margin-left: 0.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  font-size: 1.05rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-light);
  position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: width var(--transition-speed) ease;
}

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

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 0.3rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-medium);
  border: 1px solid rgba(0, 194, 206, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-speed) ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-light);
  transition: all var(--transition-speed) ease;
}

.dropdown-menu a:hover {
  background: rgba(0, 194, 206, 0.1);
  color: var(--accent-primary);
}

/* Nav Badge */
.nav-badge {
  display: flex;
  align-items: center;
}

.codeminer-badge {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0, 194, 206, 0.2);
  border-radius: 20px;
  transition: all var(--transition-speed) ease;
}

.codeminer-badge:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

/* Green Tech Logo */
.green-tech-logo {
  height: 100px;
  width: auto;
  margin-left: auto;
  margin-right: 0.25rem;
}

.hero-green-tech {
  display: none;
}

/* Language Selector */
.language-selector {
  position: relative;
  margin-left: 0;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid rgba(0, 194, 206, 0.3);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.lang-toggle:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.current-lang {
  font-weight: 600;
}

.lang-arrow {
  transition: transform var(--transition-speed) ease;
}

.language-selector.active .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--primary-medium);
  border: 1px solid rgba(0, 194, 206, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-speed) ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.language-selector.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.lang-option:hover {
  background: rgba(0, 194, 206, 0.1);
  color: var(--accent-primary);
}

.lang-option.active {
  color: var(--accent-primary);
  background: rgba(0, 194, 206, 0.05);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  width: 40px;
  height: 40px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--accent-primary);
  border-radius: 2px;
  transition: all var(--transition-speed) ease;
  position: absolute;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 18.5px;
}

.hamburger span:nth-child(3) {
  top: 27px;
}

.hamburger.active span:nth-child(1) {
  top: 18.5px;
  transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  top: 18.5px;
  transform: rotate(-45deg);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-dark);
  overflow: hidden;
  padding-top: 80px;
}

.hero-container {
  text-align: center;
  z-index: 1;
}

.hero-slogan {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

.hero-slogan br {
  display: none;
}

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

.hero-logo-img {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px var(--accent-glow));
}

.scroll-down-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent-primary);
  cursor: pointer;
  z-index: 10;
  animation: bounce 2s infinite;
  transition: all 0.3s ease;
}

.scroll-down-arrow:hover {
  color: #00a8b3;
  transform: translateX(-50%) translateY(-5px);
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-badge {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Demo Link */
.hero-demo-link {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.demo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(0, 194, 206, 0.1),
    rgba(0, 212, 255, 0.05)
  );
  border: 1px solid rgba(0, 194, 206, 0.3);
  border-radius: 50px;
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.demo-link:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 194, 206, 0.2),
    rgba(0, 212, 255, 0.1)
  );
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 194, 206, 0.2);
}

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

.demo-link svg {
  transition: transform 0.3s ease;
}

.demo-link:hover svg {
  transform: translate(2px, -2px);
}

/* Floating Icons */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.float-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(var(--x), var(--y));
  animation: float 6s ease-in-out infinite;
  animation-delay: var(--delay);
  opacity: 0.3;
}

.float-img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px var(--accent-glow));
}

@keyframes float {
  0%,
  100% {
    transform: translate(var(--x), var(--y)) translateY(0px);
  }
  50% {
    transform: translate(var(--x), var(--y)) translateY(-20px);
  }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(0, 194, 206, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 194, 206, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  box-shadow: 0 4px 15px rgba(0, 194, 206, 0.2);
}

.btn-secondary:hover {
  background: var(--accent-primary);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 194, 206, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-muted);
}

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

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle-alt {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2rem;
  text-align: center;
}

/* ========================================
   Products Overview Section
   ======================================== */
.products-overview {
  background: var(--primary-medium);
}

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

.product-card {
  background: rgba(22, 27, 34, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 194, 206, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 194, 206, 0.6);
  box-shadow: 0 0 0 1px rgba(0, 194, 206, 0.3);
  background: var(--gradient-card);
}

.product-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.product-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px var(--accent-glow));
}

.product-title {
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.product-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.product-link {
  color: var(--accent-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-top: auto;
}

.product-link:hover {
  color: var(--accent-secondary);
}

/* ========================================
   Product Detail Sections
   ======================================== */
.product-detail {
  background: var(--primary-dark);
}

.product-detail.alternate {
  background: var(--primary-medium);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.product-detail-grid.reverse {
  direction: rtl;
}

.product-detail-grid.reverse > * {
  direction: ltr;
}

.product-visual {
  position: relative;
}

.visual-placeholder {
  background: var(--gradient-card);
  border: 1px solid rgba(0, 194, 206, 0.2);
  border-radius: 12px;
  padding: 2rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Product Visual Themes */
.battnav-visual {
  background:
    radial-gradient(
      ellipse 70% 60% at 35% 45%,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.08) 35%,
      transparent 65%
    ),
    linear-gradient(135deg, rgba(0, 194, 206, 0.1), rgba(14, 165, 233, 0.1));
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

.navtwin-visual {
  background:
    radial-gradient(
      ellipse 70% 60% at 35% 45%,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.08) 35%,
      transparent 65%
    ),
    linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 194, 206, 0.1));
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

.navtwin-images {
  display: flex;
  gap: 1rem;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.navtwin-img {
  flex: 1;
  width: 50%;
}

.trainova-visual {
  background: #172033;
  position: relative;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

.voice-indicator {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}

.wave {
  width: 4px;
  height: 20px;
  background: var(--accent-primary);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}

.wave:nth-child(2) {
  animation-delay: 0.2s;
}

.wave:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes wave {
  0%,
  100% {
    height: 20px;
  }
  50% {
    height: 40px;
  }
}

.lawmemory-visual {
  background:
    radial-gradient(
      ellipse 70% 60% at 35% 45%,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.08) 35%,
      transparent 65%
    ),
    linear-gradient(135deg, rgba(0, 194, 206, 0.1), rgba(0, 212, 255, 0.05));
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
}

/* Chat Interface for LawMemory */
.chat-interface {
  background: var(--primary-medium);
  border-radius: 12px;
  padding: 1.5rem;
  width: 100%;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 194, 206, 0.2);
}

.chat-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chat-avatar.icon-scales::before {
  content: "";
  width: 2px;
  height: 16px;
  background: var(--primary-dark);
}

.chat-avatar.icon-scales::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--primary-dark);
  top: 12px;
}

.chat-message {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 8px;
  max-width: 80%;
}

.chat-message.bot {
  background: rgba(0, 194, 206, 0.1);
  border: 1px solid rgba(0, 194, 206, 0.2);
  margin-left: 0;
}

.chat-message.user {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  margin-left: auto;
  text-align: right;
}

.chat-typing {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
}

.chat-typing span {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}

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

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

@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* Product Content */
.product-content {
  padding: 1rem 0;
}

.product-category {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-name {
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.product-headline {
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product-motto {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.product-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-target {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Feature List */
.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: var(--text-light);
}

.check-icon {
  color: var(--accent-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.benefits-title {
  font-size: 1.3rem;
  color: var(--text-white);
  margin: 2rem 0 1rem;
}

/* ========================================
   Capabilities Section
   ======================================== */
.capabilities-section {
  margin-top: 4rem;
}

.capabilities-title {
  font-size: 2rem;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 2rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.capability-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0, 194, 206, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.capability-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
}

.capability-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border: 2px solid var(--accent-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.capability-icon::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-primary);
}

.icon-target::before {
  border-radius: 50%;
  width: 18px;
  height: 18px;
}

.icon-target::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
}

.icon-sync::before {
  border: none;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--accent-primary);
  border-right: 2px solid var(--accent-primary);
  border-radius: 0 50% 0 0;
}

.icon-sync::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-bottom: 2px solid var(--accent-primary);
  border-left: 2px solid var(--accent-primary);
  border-radius: 0 0 0 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
}

.icon-chart::before {
  border: none;
  width: 6px;
  height: 12px;
  background: var(--accent-primary);
  left: 10px;
}

.icon-chart::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 18px;
  background: var(--accent-primary);
  right: 10px;
}

.capability-card h4 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  min-height: 2.4em;
  display: flex;
  align-items: center;
}

.capability-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

/* ========================================
   Use Cases Section
   ======================================== */
.use-cases-section {
  margin-top: 4rem;
}

.use-cases-title {
  font-size: 2rem;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 2rem;
}

.use-cases-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.use-case-badge {
  background: rgba(0, 194, 206, 0.1);
  border: 1px solid rgba(0, 194, 206, 0.3);
  color: var(--accent-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition-speed) ease;
}

.use-case-badge:hover {
  background: rgba(0, 194, 206, 0.2);
  border-color: var(--accent-primary);
  transform: translateY(-3px);
}

/* ========================================
   Technical Features Section
   ======================================== */
.technical-features-section {
  margin-top: 4rem;
}

.features-title {
  font-size: 2rem;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 2rem;
}

.features-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.feature-tag {
  background: rgba(0, 194, 206, 0.1);
  border: 1px solid rgba(0, 194, 206, 0.3);
  color: var(--accent-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-speed) ease;
}

.feature-tag:hover {
  background: rgba(0, 194, 206, 0.2);
  border-color: var(--accent-primary);
}

/* ========================================
   Benefits Section (LawMemory)
   ======================================== */
.benefits-section {
  margin-top: 4rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0, 194, 206, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.benefit-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border: 2px solid var(--accent-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.benefit-icon::before {
  content: "";
  position: absolute;
}

.icon-search::before {
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  top: 12px;
  left: 12px;
}

.icon-search::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  background: var(--accent-primary);
  transform: rotate(45deg);
  bottom: 14px;
  right: 12px;
}

.icon-clipboard::before {
  width: 16px;
  height: 20px;
  border: 2px solid var(--accent-primary);
  border-radius: 2px;
}

.icon-clipboard::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 4px;
  border: 2px solid var(--accent-primary);
  border-bottom: none;
  top: 10px;
  border-radius: 2px 2px 0 0;
}

.icon-briefcase::before {
  width: 20px;
  height: 14px;
  border: 2px solid var(--accent-primary);
  border-radius: 2px;
  top: 18px;
}

.icon-briefcase::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 4px;
  border: 2px solid var(--accent-primary);
  border-bottom: none;
  top: 14px;
  border-radius: 2px 2px 0 0;
}

.icon-trending::before {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 14px solid var(--accent-primary);
}

.benefit-card h4 {
  font-size: 1.2rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
  min-height: 2.4em;
  display: flex;
  align-items: center;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-grow: 1;
}

/* Sample Questions */
.sample-questions {
  margin-top: 3rem;
}

.sample-questions h4 {
  font-size: 1.5rem;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 2rem;
}

.questions-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.question-bubble {
  background: rgba(0, 194, 206, 0.05);
  border: 1px solid rgba(0, 194, 206, 0.2);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: all var(--transition-speed) ease;
}

.question-bubble:hover {
  background: rgba(0, 194, 206, 0.1);
  border-color: var(--accent-primary);
}

/* ========================================
   Support Section
   ======================================== */
.support-section {
  background: var(--primary-medium);
}

.support-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.support-grid .support-card {
  flex: 0 1 calc(33.333% - 1.34rem);
  min-width: 280px;
}

.support-card {
  background: var(--gradient-card);
  border: 1px solid rgba(0, 194, 206, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.support-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 194, 206, 0.1);
}

.support-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
}

.support-icon img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px var(--accent-glow));
}

.support-card h3 {
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.support-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
  background: var(--primary-dark);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-logo {
  margin-bottom: 2rem;
}

.about-logo img {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px var(--accent-glow));
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.divider {
  width: 200px;
  height: 2px;
  background: var(--gradient-brand);
  margin: 3rem auto;
}

.codeminer-section {
  margin-top: 3rem;
}

.codeminer-logo {
  margin-bottom: 1.5rem;
}

.codeminer-logo img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.codeminer-title {
  font-size: 1.5rem;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.codeminer-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
  background: var(--gradient-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-container {
  text-align: center;
  z-index: 1;
  position: relative;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
  background: var(--primary-medium);
}

.contact-container {
  max-width: 1000px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form-container h3,
.contact-info-container h3 {
  font-size: 1.8rem;
  color: var(--text-white);
  margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--primary-dark);
  border: 1px solid rgba(0, 194, 206, 0.2);
  border-radius: 8px;
  padding: 0.875rem;
  color: var(--text-light);
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  transition: all var(--transition-speed) ease;
}

.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(0, 194, 206, 0.1);
}

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

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.info-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 2px solid var(--accent-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.info-icon::before {
  content: "";
  position: absolute;
}

.icon-location::before {
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent-primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon-location::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-primary);
  border-radius: 50%;
  top: 10px;
}

.icon-mail::before {
  width: 14px;
  height: 10px;
  border: 2px solid var(--accent-primary);
  border-radius: 2px;
}

.icon-mail::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 5px solid var(--accent-primary);
  top: 9px;
}

.icon-scales {
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-scales::before {
  content: "";
  width: 2px;
  height: 16px;
  background: var(--primary-dark);
}

.icon-scales::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--primary-dark);
  top: 12px;
}

.info-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.info-text h4 {
  color: var(--accent-primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-text p {
  margin: 0;
  color: var(--text-light);
}

.info-text a {
  color: var(--accent-primary);
}

.info-text a:hover {
  color: var(--accent-secondary);
  text-decoration: underline;
}

/* Contact Map */
/* Map Container */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  height: 300px;
  position: relative;
  margin-bottom: 2rem;
}

.map-container iframe,
#leaflet-map {
  width: 100%;
  height: 100%;
  display: block;
}

/* Leaflet Custom Styles */
.leaflet-container {
  background: #1a1a1a;
  font-family: "Manrope", sans-serif;
}

.leaflet-popup-content-wrapper {
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  border-radius: 8px;
}

.leaflet-popup-tip {
  background: rgba(20, 20, 20, 0.95);
}

/* Custom Marker with CodeSim Teal Color */
.custom-marker {
  background: transparent !important;
  border: none !important;
}

.leaflet-marker-icon {
  background: transparent !important;
  border: none !important;
}

.marker-pin {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: var(--accent-primary);
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(0, 194, 206, 0.5);
}

.marker-pin::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.marker-dot {
  display: none;
}

/* Map Directions Button */
.map-directions-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--accent-primary);
  color: var(--text-white);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 194, 206, 0.3);
}

.map-directions-btn:hover {
  background: #00a8b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 194, 206, 0.4);
}

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

/* Map Touch Overlay (Mobile) */
.map-touch-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 17, 23, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.map-touch-overlay span {
  background: var(--accent-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
}

@media (hover: none) and (pointer: coarse) {
  .map-touch-overlay {
    display: flex;
  }

  .map-touch-overlay.dismissed {
    opacity: 0;
    pointer-events: none;
  }
}

/* Phone Icon */
.icon-phone::before {
  width: 14px;
  height: 14px;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
}

.icon-phone::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 6px;
  background: var(--accent-primary);
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Contact Link Gradient */
.info-text a.contact-gradient {
  background: linear-gradient(135deg, #f97316, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.info-text a.contact-gradient:hover {
  filter: brightness(1.2);
}

/* Character Counter */
.char-counter {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 0.25rem;
}

/* Checkbox KVKK Link Styling */
.checkbox-label a {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.checkbox-label a:hover {
  color: #00e0ee;
  border-bottom: 1px solid var(--accent-primary);
}

.sales-team {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 194, 206, 0.2);
}

.sales-team h4 {
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.team-member {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 194, 206, 0.05);
  border: 1px solid rgba(0, 194, 206, 0.1);
  border-radius: 8px;
}

.team-member strong {
  color: var(--text-white);
  font-size: 1.1rem;
}

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

.team-member a {
  color: var(--accent-primary);
  font-weight: 600;
}

.team-member a:hover {
  color: var(--accent-secondary);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--primary-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(0, 194, 206, 0.1);
}

.footer-header {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-main-logo {
  width: 180px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.footer-divider {
  height: 1px;
  background: rgba(0, 194, 206, 0.1);
  margin: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap;
}

.footer-column {
  text-align: center;
  min-width: 150px;
}

.footer-column h4 {
  font-size: 1.1rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--transition-speed) ease;
}

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

.footer-contact-info li {
  font-size: 0.95rem;
}

.footer-contact-info a {
  color: var(--accent-primary);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 194, 206, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-speed) ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

/* LinkedIn hover - blue */
.social-icon:hover[aria-label="LinkedIn"] {
  border-color: #0077b5;
  color: #0077b5;
}

/* Twitter hover - blue */
.social-icon:hover[aria-label="Twitter"] {
  border-color: #1da1f2;
  color: #1da1f2;
}

/* YouTube hover - red */
.social-icon:hover[aria-label="YouTube"] {
  border-color: #ff0000;
  color: #ff0000;
}

/* Instagram hover - gradient colors (using pink) */
.social-icon:hover[aria-label="Instagram"] {
  border-color: #e1306c;
  color: #e1306c;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

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

.footer-copyright {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========================================
   Animations
   ======================================== */
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out;
}

.delay-1 {
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-2 {
  animation-delay: 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.delay-3 {
  animation-delay: 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* AOS Animation Classes */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

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

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

/* ========================================
   Scroll to Top Button
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 6.5rem;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  color: #00c2ce;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.scroll-to-top.visible {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  animation: fadeInUp 0.4s ease-out;
}

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  color: #00a8b3;
  animation: pulse 0.6s ease-in-out infinite;
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* reCAPTCHA Badge */
.grecaptcha-badge {
  z-index: 1001 !important;
}

/* ========================================
   KVKK Page Styles
   ======================================== */

.kvkk-hero {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-medium) 100%
  );
  min-height: 40vh;
  padding-top: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.kvkk-hero .circuit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.kvkk-content {
  padding: 8rem 0;
  background: var(--primary-dark);
}

.kvkk-text {
  max-width: 900px;
  margin: 0 auto;
  background: var(--primary-medium);
  padding: 4rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 194, 206, 0.1);
  border: 1px solid rgba(0, 194, 206, 0.1);
}

.kvkk-section {
  margin-bottom: 3rem;
}

.kvkk-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(0, 194, 206, 0.2);
}

.kvkk-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.kvkk-section ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.kvkk-section li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  position: relative;
}

.kvkk-section li::marker {
  color: var(--accent-primary);
}

.kvkk-section a {
  color: var(--accent-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.kvkk-section a:hover {
  color: #00e0ee;
}

.kvkk-update {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(0, 194, 206, 0.2);
}

.kvkk-update p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
}
