@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #22c55e;
  --primary-dark: #16a34a;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e2e8f0;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.logo span {
  color: var(--primary);
}

/* HERO */
.hero {
  background: radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 40%),
              linear-gradient(135deg, #020617, #0f172a);
  color: #fff;
  padding: 140px 0 100px;
  text-align: center;
}

.badge {
  background: rgba(34, 197, 94, 0.15);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero h1 span {
  background: linear-gradient(to right, #4ade80, #22c55e);
  -webkit-background-clip: text; /* Vendor prefix for Safari/Chrome */
  background-clip: text;         /* Standard property - ADD THIS LINE */
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 600px;
  margin: 25px auto 40px;
  font-size: 1.15rem;
  color: #94a3b8;
}

/* BUTTONS */
.btn, .btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
}

.btn.outline {
  background: transparent;
  border: 1px solid #334155;
  color: #fff;
}

.btn.outline:hover {
  background: #fff;
  color: var(--dark);
}

/* SECTIONS */
.section { padding: 100px 0; }
.section.light { background: var(--bg-light); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* GRID & CARDS */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.card {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  transition: 0.4s;
  border: 1px solid #f1f5f9;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.card h3 {
  margin-bottom: 12px;
  color: var(--dark);
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* PRICING */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.price-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 28px;
  text-align: center;
  position: relative;
  border: 1px solid #e2e8f0;
}

.price-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.amount {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 20px 0;
  color: var(--dark);
}

.amount span {
  font-size: 1rem;
  color: var(--text-light);
}

.features {
  list-style: none;
  margin-top: 25px;
  text-align: left;
}

.features li {
  margin-bottom: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
}

/* CONTACT */
.contact {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  .price-card.featured { transform: scale(1); }
  .nav-links { display: none; }
}

/* CONTACT FORM STYLING */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.styled-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 0.9rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

@media (max-width: 600px) {
  .styled-form .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ABOUT + FOUNDER */
.about {
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-highlights {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 500;
}

/* FOUNDER CARD */
.founder-card {
  background: var(--light);
  padding: 35px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.founder-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #ffffff;
}

.founder-card h3 {
  margin: 10px 0 4px;
}

.founder-card .role {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.founder-note {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 18px;
}

.founder-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.founder-skills span {
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
