@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500&display=swap');

:root {
  --primary-color: #0f381d;
  --secondary-color: #2ea043;
  --accent-color: #a8f465;
  --bg-dark: #07120a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-main: #e2f0e6;
  --text-muted: #94b39d;
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(46, 160, 67, 0.08) 0%, rgba(7, 18, 10, 0) 50%);
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

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

a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(168, 244, 101, 0.6);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(7, 18, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 1px;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 4rem;
  position: relative;
}

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

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color), #1b682b);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(46, 160, 67, 0.3);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(46, 160, 67, 0.5);
  color: #fff;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.9) contrast(1.1);
  transition: var(--transition-smooth);
}

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

/* Sections */
.section {
  padding: 6rem 5%;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #fff;
}

.section-title span {
  color: var(--accent-color);
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 244, 101, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(46, 160, 67, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.glass-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
}

.glass-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(0, 0, 0, 0.4);
}

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

.submit-btn {
  width: 100%;
  cursor: pointer;
  border: none;
}

/* Footer */
footer {
  background: #040a06;
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--glass-border);
}

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

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-col p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Legal Pages */
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 10rem 5% 5rem;
}

.legal-content h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: #fff;
}

.legal-content p, .legal-content li {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.legal-content ul {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
  }
  
  .hero-content {
    margin-bottom: 4rem;
  }
  
  .hero-visual {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  nav {
    display: none; /* simple mobile */
  }
  
  .section {
    padding: 4rem 5%;
  }
}
