:root {
  --bg-dark: #020617;
  --bg-green-dark: #052e16;
  --primary-green: #10b981;
  --soft-green: #34d399;
  --deep-green: #065f46;
  --gold-accent: #d4af37;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --gradient-green: linear-gradient(135deg, #065f46, #10b981, #34d399);
  --glass-bg: rgba(2, 6, 23, 0.75);
  --glass-border: rgba(52, 211, 153, 0.15);
  
  --font-main: -apple-system, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

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

a:hover {
  color: var(--primary-green);
}

.text-gold {
  color: var(--gold-accent);
}

.text-green {
  color: var(--primary-green);
}

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

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

.section {
  padding: 6rem 0;
}

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

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gradient-green);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
  transform: translateY(-2px);
  color: var(--bg-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--soft-green);
  color: var(--soft-green);
}

.btn-outline:hover {
  background: rgba(52, 211, 153, 0.1);
  color: var(--primary-green);
}

.btn-gold {
  background: var(--gold-accent);
  color: var(--bg-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: var(--bg-dark);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--primary-green);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--gradient-green);
  transition: var(--transition);
}

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

.header-cta {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--text-light);
}

.hamburger svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-dark);
  border-left: 1px solid var(--glass-border);
  z-index: 1001;
  padding: 5rem 2rem;
  transition: right 0.4s ease-in-out;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-nav.active {
  right: 0;
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu .nav-link {
  font-size: 1.25rem;
}

.mobile-close {
  position: absolute;
  top: 25px;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
}

.mobile-close svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  background: radial-gradient(circle at top right, var(--bg-green-dark) 0%, var(--bg-dark) 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-accent);
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
  border-radius: 24px;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.05);
}

/* Split Layouts (Products, etc) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.split-layout:last-child {
  margin-bottom: 0;
}

.split-layout.reverse .split-content {
  order: 1;
}

.split-layout.reverse .split-image {
  order: 2;
}

.split-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.spec-list {
  list-style: none;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  color: var(--primary-green);
}

/* Features Rows */
.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.feature-row:hover {
  border-color: rgba(52, 211, 153, 0.4);
  transform: translateY(-5px);
}

.feature-row-content {
  flex: 1;
}

.feature-row-icon {
  width: 120px;
  height: 120px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4rem;
  color: var(--primary-green);
}

.feature-row-icon svg {
  width: 60px;
  height: 60px;
}

/* Lifestyle Banner */
.lifestyle-banner {
  position: relative;
  height: 600px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 4rem 0;
}

.lifestyle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.lifestyle-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Page Headers */
.page-header {
  padding: 12rem 0 6rem 0;
  text-align: center;
  background: radial-gradient(circle at bottom center, var(--bg-green-dark) 0%, var(--bg-dark) 70%);
  border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
  margin-bottom: 1.5rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
}

/* Forms */
.form-container {
  max-width: 600px;
  background: var(--glass-bg);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.9rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-light);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}

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

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--glass-bg);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--text-light);
}

.legal-content p {
  margin-bottom: 1.5rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--glass-border);
  padding: 6rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1.5rem;
  max-width: 300px;
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

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

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-muted);
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  color: var(--text-light);
}

.social-link:hover {
  background: var(--primary-green);
  color: var(--bg-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  
  .hero-grid,
  .split-layout,
  .contact-layout {
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  
  .nav-menu,
  .header-cta .btn {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero-grid,
  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding-top: 120px;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .split-layout.reverse .split-content {
    order: 2;
  }
  
  .split-layout.reverse .split-image {
    order: 1;
  }
  
  .feature-row {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .feature-row-icon {
    margin-left: 0;
    margin-top: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .lifestyle-banner {
    height: 400px;
  }
}