:root {
  --green: #2b4a42;
  --green-dark: #1e3830;
  --green-light: #3a5f55;
  --gold: #c49a3c;
  --gold-dark: #b08832;
  --gold-light: #d4ad52;
  --white: #ffffff;
  --cream: #f2efe9;
  --cream-dark: #e8e4dc;
  --gray-100: #e0ddd6;
  --gray-300: #c5c1b8;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --text-primary: var(--green);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-500);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 3rem; display: flex; align-items: center; justify-content: space-between;
  background: rgba(242,239,233,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100); transition: background 0.3s;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.35rem;
  color: var(--green); text-decoration: none; letter-spacing: -0.02em; margin-right: auto;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; margin-right: 2rem; }
.nav-links a { color: var(--gray-600); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a { cursor: pointer; }
.nav-links .dropdown-menu {
  display: none; position: absolute; top: 100%; left: -1rem; padding-top: 0.75rem; min-width: 220px;
}
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.nav-links .dropdown-menu ul {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 10px;
  padding: 0.5rem 0; list-style: none; box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.nav-links .dropdown-menu li a {
  display: block; padding: 0.6rem 1.25rem; font-size: 0.85rem; color: var(--gray-600);
  transition: background 0.15s, color 0.15s;
}
.nav-links .dropdown-menu li a:hover { background: var(--cream); color: var(--green); }
.nav-cta {
  background: var(--gold); color: var(--white); padding: 0.6rem 1.5rem; border-radius: 6px;
  font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: background 0.2s, transform 0.2s; letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--gold); color: var(--white); padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.2s;
  border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(196,154,60,0.25); }
.btn-secondary {
  background: transparent; color: var(--green); padding: 0.85rem 2rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none; border: 1px solid var(--gray-300); transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--green); background: rgba(43,74,66,0.03); }

/* ─── SECTION COMMON ─── */
section { padding: 6rem 3rem; }
.section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 0.75rem; }
.section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 2.6rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1rem; color: var(--green); }
.section-subtitle { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; }

/* ─── PAGE HERO (for subpages) ─── */
.page-hero {
  padding: 10rem 3rem 4rem; background: var(--green); text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -30%; right: -15%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,154,60,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em; margin-bottom: 1rem;
}
.page-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ─── CONTENT SECTIONS ─── */
.content-section { padding: 5rem 3rem; }
.content-section:nth-child(even) { background: var(--white); }
.content-section:nth-child(odd) { background: var(--cream); }

.content-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-block h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.8rem; font-weight: 700;
  color: var(--green); margin-bottom: 1rem; letter-spacing: -0.01em;
}
.content-block p { color: var(--text-secondary); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }

/* ─── FEATURE LIST ─── */
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100); font-size: 0.95rem; color: var(--text-secondary);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li svg { flex-shrink: 0; width: 20px; height: 20px; fill: var(--gold); margin-top: 2px; }

/* ─── STATS ─── */
.stats { background: var(--green); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; text-align: center; }
.stat-number { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--gold-light); line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.03em; }
.stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ─── INFO CARDS ─── */
.info-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 16px;
  padding: 2rem; transition: all 0.3s;
}
.info-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.info-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem; font-weight: 700;
  color: var(--green); margin-bottom: 0.5rem;
}
.info-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── PRODUCT CARDS ─── */
.product-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 16px;
  padding: 2.25rem 1.75rem; transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative; overflow: hidden;
}
.product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform 0.35s; }
.product-card:hover { border-color: rgba(196,154,60,0.3); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.product-card:hover::before { transform: scaleX(1); }
.product-icon { width: 52px; height: 52px; background: rgba(196,154,60,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.product-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.product-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.01em; color: var(--green); }
.product-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 1.5rem; }
.product-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--gold); font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: gap 0.2s; }
.product-link:hover { gap: 0.7rem; }
.product-link svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ─── FORM ─── */
.apply-form { max-width: 800px; margin: 0 auto; background: var(--white); border: 1px solid var(--gray-100); border-radius: 20px; padding: 3rem; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--gray-600); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--cream); border: 1px solid var(--gray-100); border-radius: 8px; padding: 0.8rem 1rem;
  color: var(--green); font-family: 'DM Sans', sans-serif; font-size: 0.92rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-500); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,154,60,0.1); }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.form-group select option { background: var(--white); color: var(--green); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { grid-column: 1 / -1; margin-top: 0.5rem; }
.form-submit button {
  width: 100%; background: var(--gold); color: var(--white); padding: 1rem; border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; border: none;
  cursor: pointer; transition: all 0.2s; letter-spacing: 0.02em;
}
.form-submit button:hover { background: var(--gold-dark); box-shadow: 0 8px 30px rgba(196,154,60,0.2); transform: translateY(-2px); }
.form-success {
  display: none; text-align: center; padding: 3rem;
}
.form-success.show { display: block; }
.form-success h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; color: var(--green); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-secondary); }

/* ─── CTA BAND ─── */
.cta-band { text-align: center; padding: 5rem 3rem; background: var(--green); position: relative; }
.cta-band .section-title { margin-bottom: 1.5rem; color: var(--white); }
.cta-band .btn-primary { background: var(--gold); color: var(--white); }

/* ─── FOOTER ─── */
.footer { background: var(--green); padding: 3rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--white); }
.footer-logo span { color: var(--gold-light); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { width: 100%; text-align: center; color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .content-grid.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section, .content-section { padding: 4rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
  .page-hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@keyframes fade-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Logo images */
.nav-logo-img { height: 38px; width: auto; display: block; }
.footer-logo-img { height: 32px; width: auto; display: block; }
