@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap");
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0a0a0a;
  color: #d4d4d4;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", "Inter", sans-serif;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #a8a8a8;
}
@media (max-width: 768px) {
  p {
    font-size: 1rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

section {
  padding: 6rem 0;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(96, 165, 250, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 1rem;
}
.section-label::before, .section-label::after {
  content: "—";
  margin: 0 1rem;
  opacity: 0.5;
}

.section-title {
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 10, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: "Outfit", "Inter", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
}
.logo .logo-subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  color: #a8a8a8;
}

.nav-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #a8a8a8;
  position: relative;
  padding: 0.5rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #60a5fa;
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: #ffffff;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lang-switcher:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.lang-switcher .lang-icon {
  font-size: 1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.2s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #60a5fa 0%, #8b5cf6 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(96, 165, 250, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(96, 165, 250, 0.4);
}
.btn-primary .btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover .btn-glow {
  transform: translateX(100%);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.btn-outline:hover {
  border-color: #60a5fa;
  background: rgba(96, 165, 250, 0.1);
  transform: translateY(-2px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
}

.hero-content {
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 1024px) {
  .hero-content {
    max-width: 100%;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #60a5fa;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.hero-badge .badge-glow {
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.3) 0%, transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
.hero-title {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-description {
  margin-bottom: 3rem;
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .hero-cta {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

.liquid-glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 1px rgba(0, 0, 0, 0.1);
}
.liquid-glass .card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.liquid-glass:hover .card-shine {
  transform: translateX(0) translateY(0) rotate(45deg);
}
.liquid-glass .card-reflection {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0.5;
}
.liquid-glass {
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}
.liquid-glass:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.about-card {
  padding: 3rem;
}
@media (max-width: 640px) {
  .about-card {
    padding: 2rem;
  }
}
.about-card .card-inner {
  position: relative;
  z-index: 1;
}
.about-card .icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.about-card .icon-wrapper svg {
  width: 30px;
  height: 30px;
  color: #60a5fa;
}
.about-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.about-card p {
  font-size: 1rem;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}
@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  padding: 3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), 0 0 40px rgba(96, 165, 250, 0.2);
}
.product-card .product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.product-card .product-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(139, 92, 246, 0.15));
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.3);
}
.product-card .product-icon svg {
  width: 28px;
  height: 28px;
  color: #60a5fa;
}
.product-card .product-badge {
  padding: 0.5rem 1.5rem;
  background: rgba(96, 165, 250, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-card .product-badge.concept {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  color: #8b5cf6;
}
.product-card .product-badge.development {
  background: rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.4);
  color: #fbbf24;
}
.product-card .product-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-card .product-description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #a8a8a8;
}
.product-card .product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-card .feature-tag {
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  color: #a8a8a8;
}

.liquid-glass-product {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 1px rgba(0, 0, 0, 0.1);
}
.liquid-glass-product .card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.liquid-glass-product:hover .card-shine {
  transform: translateX(0) translateY(0) rotate(45deg);
}
.liquid-glass-product .card-reflection {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0.5;
}

.infrastructure {
  background: linear-gradient(180deg, transparent 0%, rgba(96, 165, 250, 0.03) 100%);
}

.infrastructure-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 3rem;
  width: 100%;
}

.center-sponsor {
  width: 100%;
}

.infra-visual {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.infra-visual.sponsor-card {
  max-width: 400px;
  width: 100%;
}
.infra-visual .cloud-logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 50%;
  border: 2px solid rgba(96, 165, 250, 0.3);
}
.infra-visual .cloud-logo svg {
  width: 60px;
  height: 60px;
  color: #60a5fa;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  padding: 3rem;
  position: relative;
}
.why-card .why-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  font-family: "Outfit", "Inter", sans-serif;
  line-height: 1;
}
.why-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}
.why-card p {
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.contact {
  background: linear-gradient(180deg, transparent 0%, rgba(96, 165, 250, 0.03) 100%);
}

.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.contact-item {
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.contact-item .contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 12px;
}
.contact-item .contact-icon svg {
  width: 24px;
  height: 24px;
  color: #60a5fa;
}
.contact-item .contact-details {
  flex: 1;
}
.contact-item .contact-details h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.contact-item .contact-details a, .contact-item .contact-details p {
  font-size: 1rem;
  color: #a8a8a8;
}
.contact-item .contact-details a:hover, .contact-item .contact-details p:hover {
  color: #60a5fa;
}

.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  margin-top: 1.5rem;
  font-size: 1rem;
  opacity: 0.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 640px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.footer-column a {
  display: block;
  font-size: 0.95rem;
  color: #a8a8a8;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.footer-column a:hover {
  color: #60a5fa;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.6;
}

.team-profiles {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.team-profile-card {
  padding: 3rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 280px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-profile-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), 0 0 40px rgba(96, 165, 250, 0.2);
}
.team-profile-card .profile-photo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(96, 165, 250, 0.4);
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.08), 0 8px 32px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.team-profile-card .profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-profile-card .profile-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.team-profile-card .profile-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.team-profile-card .profile-role {
  display: inline-block;
  padding: 4px 1.5rem;
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #60a5fa;
  letter-spacing: 0.5px;
}
.team-profile-card .linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: rgba(10, 102, 194, 0.15);
  border: 1px solid rgba(10, 102, 194, 0.4);
  border-radius: 12px;
  color: #5faee3;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.team-profile-card .linkedin-btn svg {
  flex-shrink: 0;
}
.team-profile-card .linkedin-btn:hover {
  background: rgba(10, 102, 194, 0.3);
  border-color: rgba(10, 102, 194, 0.7);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(10, 102, 194, 0.3);
}

.erezervem-live-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(74, 222, 128, 0.07);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 12px;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: #4ade80;
  line-height: 1.5;
}
.erezervem-live-banner svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #4ade80;
}

.product-link-demo-primary {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: #ffffff;
  font-weight: 700;
}
.product-link-demo-primary svg {
  color: #60a5fa;
}
.product-link-demo-primary:hover {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.35), rgba(139, 92, 246, 0.35));
  border-color: rgba(96, 165, 250, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(96, 165, 250, 0.25);
}

.erezervem-demo-section {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(96, 165, 250, 0.05);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 16px;
}

.erezervem-demo-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.erezervem-demo-header svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #60a5fa;
}
.erezervem-demo-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.erezervem-demo-header p {
  font-size: 0.88rem;
  color: #a8a8a8;
  line-height: 1.5;
  margin: 0;
}

.demo-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.demo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.demo-modal-overlay.active .demo-modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.demo-modal-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.3s ease;
}
@media (max-width: 640px) {
  .demo-modal-box {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
    max-height: 95vh;
  }
}

.demo-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #a8a8a8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.demo-modal-close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transform: rotate(90deg);
}

.dm-title-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-right: 2.5rem;
}

.dm-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 12px;
  color: #60a5fa;
}

.dm-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.dm-subtitle {
  font-size: 0.82rem;
  color: #a8a8a8;
  line-height: 1.5;
  margin: 0;
}

.dm-url-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  background: rgba(96, 165, 250, 0.06);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 12px;
  color: #60a5fa;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 1.25rem;
  transition: background 0.2s ease, border-color 0.2s ease;
  word-break: break-all;
}
.dm-url-bar svg {
  flex-shrink: 0;
}
.dm-url-bar:hover {
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.4);
}

.dm-creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 640px) {
  .dm-creds-grid {
    grid-template-columns: 1fr;
  }
}

.dm-cred-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dm-cred-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dm-cred-card-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
}
.dm-cred-card-badge.dm-badge-admin {
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.3);
  color: #fb923c;
}
.dm-cred-card-badge.dm-badge-student {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: #4ade80;
}

.dm-cred-card-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #d4d4d4;
}

.dm-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dm-field-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #a8a8a8;
  opacity: 0.65;
}

.dm-field-value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
}

code.dm-field-value {
  font-family: "SF Mono", "Fira Code", "Courier New", monospace;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.dm-copy-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  padding: 3px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s ease, background 0.2s ease;
}
.dm-copy-btn:hover {
  color: #60a5fa;
}
.dm-copy-btn.copied {
  color: #4ade80;
}

.dm-note {
  font-size: 0.78rem;
  color: #a8a8a8;
  opacity: 0.6;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding-left: 0.75rem;
  border-left: 2px solid rgba(96, 165, 250, 0.25);
}

.dm-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.18), rgba(139, 92, 246, 0.18));
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.dm-cta-btn:hover {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.32), rgba(139, 92, 246, 0.32));
  border-color: rgba(96, 165, 250, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(96, 165, 250, 0.2);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay.active .lightbox-content img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 92vw;
  max-height: 90vh;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: scale(0.88);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.lightbox-counter {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.5px;
}

.lightbox-close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10001;
}
.lightbox-close svg {
  width: 18px;
  height: 18px;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10001;
}
.lightbox-nav svg {
  width: 22px;
  height: 22px;
}
.lightbox-nav:hover {
  background: rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-50%) scale(1.08);
}
.lightbox-nav.lightbox-prev {
  left: 2rem;
}
.lightbox-nav.lightbox-next {
  right: 2rem;
}
@media (max-width: 640px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .lightbox-nav.lightbox-prev {
    left: 1rem;
  }
  .lightbox-nav.lightbox-next {
    right: 1rem;
  }
}

.products-compliance {
  padding: 3rem 0;
}

.compliance-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 4rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.compliance-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 -1px 1px rgba(0, 0, 0, 0.1);
}
.compliance-card .card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.compliance-card:hover .card-shine {
  transform: translateX(0) translateY(0) rotate(45deg);
}
.compliance-card .card-reflection {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0.5;
}
.compliance-card {
  border-radius: 16px;
  padding: 3rem;
  transition: all 0.3s ease;
}
.compliance-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}
.compliance-card .product-stage-badge {
  padding: 3px 1rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.compliance-card .product-stage-badge.prototype {
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.35);
  color: #fb923c;
}
.compliance-card .product-stage-badge.live {
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #4ade80;
}
.compliance-card .compliance-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.compliance-card .compliance-header .compliance-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(139, 92, 246, 0.15));
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.3);
}
.compliance-card .compliance-header .compliance-icon svg {
  width: 22px;
  height: 22px;
  color: #60a5fa;
}
.compliance-card .compliance-header .compliance-icon.compliance-icon-logo {
  background: transparent;
  border: none;
  width: 48px;
  height: 48px;
}
.compliance-card .compliance-header .compliance-icon.compliance-icon-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.compliance-card .compliance-header .product-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.compliance-card .product-definition {
  font-size: 1.05rem;
  color: #d4d4d4;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
  line-height: 1.6;
}
.compliance-card .teknonext-screenshots {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
}
.compliance-card .teknonext-screenshots .screenshots-label {
  font-size: 0.8rem;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
  font-weight: 600;
}
.compliance-card .teknonext-screenshots .screenshots-note {
  font-size: 0.82rem;
  color: #a8a8a8;
  margin-bottom: 1rem;
  line-height: 1.5;
  opacity: 0.75;
}
.compliance-card .screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.compliance-card .screenshots-grid.screenshots-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.compliance-card .screenshot-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  aspect-ratio: 16/9;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.compliance-card .screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.compliance-card .screenshot-item .screenshot-zoom-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.compliance-card .screenshot-item .screenshot-zoom-icon svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}
.compliance-card .screenshot-item:hover {
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 4px 20px rgba(96, 165, 250, 0.15);
}
.compliance-card .screenshot-item:hover img {
  transform: scale(1.06);
}
.compliance-card .screenshot-item:hover .screenshot-zoom-icon {
  opacity: 1;
}
.compliance-card .product-live-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.07);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.compliance-card .product-live-badge::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.08);
  }
}
.compliance-card .product-prototype-badge {
  color: #fb923c !important;
  background: rgba(251, 146, 60, 0.07) !important;
  border-color: rgba(251, 146, 60, 0.2) !important;
}
.compliance-card .product-prototype-badge::before {
  background: #fb923c !important;
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.2) !important;
  animation: prototype-pulse 2s ease-in-out infinite !important;
}
@keyframes prototype-pulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(251, 146, 60, 0.07);
  }
}
.compliance-card .product-cta-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.compliance-card .product-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.compliance-card .product-link-btn svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.compliance-card .product-link-btn.product-link-website {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.3);
  color: #60a5fa;
}
.compliance-card .product-link-btn.product-link-website:hover {
  background: rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(96, 165, 250, 0.2);
}
.compliance-card .product-link-btn.product-link-visit {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #d4d4d4;
}
.compliance-card .product-link-btn.product-link-visit:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.compliance-card .product-link-btn.product-link-google {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  gap: 1rem;
}
.compliance-card .product-link-btn.product-link-google svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.compliance-card .product-link-btn.product-link-google .google-play-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.compliance-card .product-link-btn.product-link-google .google-play-text .gp-sub {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.7;
}
.compliance-card .product-link-btn.product-link-google .google-play-text .gp-main {
  font-size: 0.95rem;
  font-weight: 700;
}
.compliance-card .product-link-btn.product-link-google:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.compliance-card .compliance-block {
  margin-bottom: 2rem;
}
.compliance-card .compliance-block:last-child {
  margin-bottom: 0;
}
.compliance-card .compliance-block h4 {
  font-size: 0.85rem;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  font-weight: 600;
}
.compliance-card .compliance-block p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}
.compliance-card .compliance-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compliance-card .compliance-block ul.target-list li {
  color: #d4d4d4;
}
.compliance-card .compliance-block ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.5;
}
.compliance-card .compliance-block ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8b5cf6;
  font-weight: bold;
}
.compliance-card .compliance-block ol.how-it-works-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: how-steps;
}
.compliance-card .compliance-block ol.how-it-works-list li {
  counter-increment: how-steps;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  font-size: 0.95rem;
  color: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.compliance-card .compliance-block ol.how-it-works-list li::before {
  content: counter(how-steps);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #60a5fa, #8b5cf6);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  position: static;
}
.compliance-card .compliance-block ol.how-it-works-list li:hover {
  background: rgba(96, 165, 250, 0.06);
  border-color: rgba(96, 165, 250, 0.2);
}
