:root {
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #6c757d;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --border: #e5e7eb;
  --radius: 6px;
  --radius-sm: 4px;
  --radius-lg: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

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

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

.container {
  width: min(1200px, 96vw);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* Navigation - Clean Modern Style */
.top-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  transition: var(--transition);
}

.logo:hover {
  color: var(--accent);
}

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: rgba(37, 99, 235, 0.08);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

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

/* Hero Banner - Modern Clean Layout */
.main-banner {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}

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

.banner-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.banner-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--text);
}

.banner-description {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons - Modern Style */
.btn {
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  border-color: var(--border);
  background: var(--card);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-2px);
}

/* Stats Section - Clean Grid */
.stats-section {
  padding: 80px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

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

.stat-item {
  padding: 32px 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Main Sections - Spacious Layout */
.main-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.main-section:last-of-type {
  border-bottom: none;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1.2;
}

.section-subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

/* Products Grid - Modern Card Design */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--bg-alt);
}

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

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.product-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  line-height: 1.3;
}

.product-content p {
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  font-size: 15px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.product-features span {
  font-size: 13px;
  color: var(--accent);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-weight: 500;
}

/* Features Grid - Clean Design */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 0;
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1;
  font-weight: 700;
  color: var(--accent);
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--card);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1;
}

.service-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

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

.testimonial-card {
  background: var(--card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-rating {
  font-size: 20px;
  color: #fbbf24;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-author strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
}

.testimonial-author span {
  color: var(--muted);
  font-size: 14px;
}

/* Advantages Box - Modern Design */
.advantages-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.02) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 2px solid var(--border);
  max-width: 100%;
}

.advantages-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text);
}

.advantages-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantages-box li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  padding-left: 0;
}

.advantages-box li::before {
  content: "✓";
  color: #ffffff;
  background: var(--accent);
  font-weight: 700;
  font-size: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Highlight Section */
.highlight-section {
  background: var(--bg-alt);
}

/* Footer - Clean Modern */
.footer {
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  font-size: 24px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-slogan {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

.footer-social {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social span {
  color: var(--muted);
  font-size: 14px;
}

.footer-social a {
  color: var(--accent);
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer p,
.footer a {
  color: var(--muted);
  font-size: 15px;
  transition: var(--transition);
  margin-bottom: 12px;
  display: block;
}

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

.footer-bottom {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* Page Hero */
.page-hero {
  padding: 80px 0 60px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.page-header-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text);
}

.page-header-subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: 24px;
    background: var(--card);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
  }

  body.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-banner {
    padding: 80px 0;
  }

  .banner-content {
    padding: 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .main-section {
    padding: 64px 0;
  }

  .stats-section {
    padding: 64px 0;
  }

  .testimonials-section {
    padding: 64px 0;
  }

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

  .stat-number {
    font-size: 36px;
  }

  .products-grid,
  .features-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-image {
    height: 200px;
  }

  .product-content {
    padding: 24px;
  }

  .advantages-box {
    padding: 32px 24px;
  }

  .footer {
    padding: 64px 0 0;
  }

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

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
