:root {
  --primary-color: #d4af37;
  --primary-dark: #b8941f;
  --secondary-color: #1a1a1a;
  --accent-color: #2c2c2c;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #666666;
  --bg-dark: #0f0f0f;
  --bg-light: #f5f5f5;
  --gradient-1: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  --gradient-2: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

a {
  text-decoration: none;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family:
    'Segoe UI',
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

body.modal-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
}

.logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.logo-text {
  letter-spacing: 2px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: -9px;
  background-clip: text;
}
.foter-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-links a.cta-nav {
  background: var(--gradient-1);
  padding: 10px 24px;
  border-radius: 6px;
  color: var(--text-dark);
  font-weight: 600;
}

.nav-links a.cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
  z-index: 1100;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-2);
  color: var(--text-light);
  padding-top: 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.btn-large {
  padding: 20px 50px;
  font-size: 18px;
}

.install-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 2000;
}

.install-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.install-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.install-modal-card {
  position: relative;
  width: min(100%, 420px);
  background: linear-gradient(180deg, #1f1f1f 0%, #111111 100%);
  color: var(--text-light);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 32px 24px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.install-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.install-modal-eyebrow {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.install-modal-card h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.install-modal-text {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
}

.install-steps {
  margin: 0 0 24px 20px;
  color: rgba(255, 255, 255, 0.92);
}

.install-steps li + li {
  margin-top: 10px;
}

.install-modal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features {
  padding: 120px 0;
  background: var(--bg-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 64px;
}

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

.feature-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

.benefits {
  padding: 120px 0;
  background: linear-gradient(
    120deg,
    #090909 0%,
    #1a1a1a 30%,
    #121212 70%,
    #171717 100%
  );
  color: var(--text-light);
  border-top: 2px solid rgba(212, 175, 55, 0.25);
  border-bottom: 2px solid rgba(212, 175, 55, 0.25);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.45);
}

.benefits-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: center;
}

.benefits-text {
  background: rgba(30, 30, 30, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.benefits-visual {
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.12),
    transparent 55%
  );
  border-radius: 16px;
  padding: 40px;
}

@media (max-width: 900px) {
  .benefits-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefits-visual {
    margin-top: 24px;
  }
}

.benefits-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #f4f4f4;
}

.benefits-text p,
.benefit-item p {
  color: rgba(255, 255, 255, 0.85);
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-check {
  width: 34px;
  height: 34px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  color: var(--text-dark);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
}

.benefit-item h4 {
  color: #ffdd58;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.benefit-check {
  width: 32px;
  height: 32px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  color: var(--text-dark);
}

.benefit-item h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.benefits-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.time-visual {
  position: relative;
}

.clock-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.clock-face {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-1);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  position: relative;
  animation: pulse 3s ease-in-out infinite;
}

.clock-hand {
  position: absolute;
  background: var(--text-dark);
  transform-origin: bottom center;
  left: 50%;
  border-radius: 10px;
}

.clock-hand.hour {
  width: 6px;
  height: 80px;
  bottom: 50%;
  margin-left: -3px;
  animation: rotateHour 120s linear infinite;
}

.clock-hand.minute {
  width: 4px;
  height: 110px;
  bottom: 50%;
  margin-left: -2px;
  animation: rotateMinute 60s linear infinite;
}

.clock-center {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--text-dark);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.time-label {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-color);
  white-space: nowrap;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
  }
}

@keyframes rotateHour {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateMinute {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.testimonial {
  padding: 80px 0;
  background: var(--bg-light);
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary-color);
}

.testimonial-text {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
}

.stats-section {
  padding: 80px 0;
  background-color: var(--bg-light);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: start;
}

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

.footer-links {
  justify-self: end;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 968px) {
  .benefits-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 24px 24px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-weight: 500;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

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

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .benefits-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .benefits-text,
  .benefits-visual {
    width: 100%;
    max-width: 96%;
  }

  .benefits-text h2,
  .benefits-text p,
  .benefit-item h4,
  .benefit-item p {
    text-align: center;
  }

  .clock-container {
    width: 220px;
    height: 220px;
  }

  .time-label {
    font-size: 1rem;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    gap: 16px;
    margin: 0 auto;
  }

  .footer-column {
    width: 100%;
  }

  .footer-column a {
    display: inline-block;
  }

  .footer-links .footer-column {
    margin-bottom: 0;
  }

  .foter-logo {
    justify-content: center;
  }
}
