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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9edf2 100%);
  color: #1e293b;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}
.btn-primary-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}
.btn-primary-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

.btn-secondary {
  background: white;
  color: #2563eb;
  border: 2px solid #e2e8f0;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-secondary:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #e2e8f0;
  color: #1e293b;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.nav {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .logo {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #2563eb;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #1e293b;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-menu-overlay.active {
  transform: translateX(0);
}

.hero {
  padding: 5rem 0;
  overflow: hidden;
}
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}
.hero-description {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.trust-badge {
  display: flex;
  gap: 1.5rem;
  color: #64748b;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .trust-badge {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.trust-badge span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-visual {
  perspective: 1000px;
}
@media (max-width: 1024px) {
  .hero-visual {
    display: flex;
    justify-content: center;
  }
}

.card-3d-preview {
  width: 320px;
  height: 200px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .card-3d-preview {
    width: 280px;
    height: 175px;
  }
}
.card-3d-preview:hover .card-3d-inner {
  transform: rotateY(180deg);
}

.card-3d-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-front {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  transform: rotateY(0deg);
  position: relative;
  overflow: hidden;
}
.card-front .card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: rotate 8s linear infinite;
}
.card-front .card-content {
  position: relative;
  z-index: 1;
  color: white;
}
.card-front .card-chip {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.card-front .card-brand {
  font-size: 0.75rem;
  opacity: 0.8;
  letter-spacing: 1px;
}
.card-front .card-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.5rem 0 0.25rem;
}
.card-front .card-title {
  font-size: 0.75rem;
  opacity: 0.9;
}

.card-back {
  background: #0f172a;
  transform: rotateY(180deg);
  padding: 1rem;
}
.card-back .qr-placeholder {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 0.5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-back .qr-dot-pattern {
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, #000 1px, transparent 1px);
  background-size: 8px 8px;
}
.card-back .tap-text {
  font-size: 0.75rem;
  color: #64748b;
}

.rotation-hint {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: #64748b;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .rotation-hint {
    bottom: -1.5rem;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  color: #475569;
  font-size: 1.125rem;
}

.features {
  padding: 5rem 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 2rem;
  background: #f8fafc;
  border-radius: 1.5rem;
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.feature-card .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.5;
}

.configurator-highlight {
  padding: 5rem 0;
  background: #f8fafc;
}

.configurator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .configurator-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.configurator-content h2 {
  font-size: 2rem;
  margin: 1rem 0 1.5rem;
}
@media (max-width: 768px) {
  .configurator-content h2 {
    font-size: 1.75rem;
  }
}
.configurator-content p {
  color: #475569;
  margin-bottom: 1.5rem;
}

.configurator-features {
  list-style: none;
  margin-bottom: 2rem;
}
.configurator-features li {
  padding: 0.5rem 0;
  color: #475569;
}

.configurator-visual {
  background: #0f172a;
  border-radius: 1.5rem;
  padding: 2rem;
}
.configurator-visual .config-preview-placeholder {
  background: #1e293b;
  border-radius: 1rem;
  padding: 1.5rem;
}
.configurator-visual .config-steps .step {
  padding: 0.75rem;
  color: #64748b;
  border-left: 2px solid #2563eb;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.configurator-visual .config-steps .step:last-child {
  margin-bottom: 0;
}

.privacy-highlight {
  padding: 5rem 0;
  background: white;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.privacy-visual {
  text-align: center;
  position: relative;
}
.privacy-visual .device-icon {
  font-size: 8rem;
  margin-bottom: 1rem;
}
.privacy-visual .local-badge {
  display: inline-block;
  background: #10b981;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
}

.privacy-content h2 {
  font-size: 2rem;
  margin: 1rem 0 1rem;
}
@media (max-width: 768px) {
  .privacy-content h2 {
    font-size: 1.75rem;
  }
}
.privacy-content > p {
  color: #475569;
  margin-bottom: 1.5rem;
}

.privacy-comparison {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.privacy-comparison .comparison-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.privacy-comparison .comparison-item:last-child {
  border-bottom: none;
}
.privacy-comparison .comparison-item strong {
  display: block;
  margin-bottom: 0.25rem;
}
.privacy-comparison .comparison-item span {
  font-size: 0.875rem;
  color: #475569;
}

.privacy-note {
  font-size: 0.875rem;
  color: #64748b;
  font-style: italic;
}

.pricing {
  padding: 5rem 0;
  background: #f8fafc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1024px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}
.pricing-card.popular {
  border: 2px solid #2563eb;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .pricing-card.popular {
    transform: none;
  }
}
.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-4px);
}
@media (max-width: 768px) {
  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }
}
.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin: 1rem 0;
}
.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #64748b;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
}
.pricing-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.cta-section {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  padding: 5rem 0;
  text-align: center;
  color: white;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 2rem;
  }
}
.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.cta-section .btn-primary {
  background: white;
  color: #2563eb;
}
.cta-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.footer {
  background: #0f172a;
  color: #64748b;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer-brand .logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.footer-column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-column a {
  display: block;
  color: #64748b;
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer-column a:hover {
  color: white;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

/*# sourceMappingURL=styles.css.map */
