/* ============================================================
   Global Ventures US LLC — Main Stylesheet
   Theme: Dark Green Luxury
   ============================================================ */

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Google Font ──────────────────────────────────────────── */
/* Inter loaded in HTML */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* Dark green palette */
  --bg:           #06100a;      /* near-black green */
  --surface:      #0b1c10;      /* main card surface */
  --surface-2:    #112216;      /* slightly lighter */
  --surface-3:    #162c1c;      /* hover / lifted */
  --border:       #1e3424;      /* subtle border */
  --border-light: #264a2e;      /* brighter border */

  /* Gold accent */
  --gold:         #c9a84c;
  --gold-light:   #e0c068;
  --gold-dim:     rgba(201,168,76,.15);

  /* Text */
  --text:         #e8f0ea;      /* primary text */
  --text-muted:   #7a9880;      /* secondary */
  --text-dim:     #4a6652;      /* very dim */

  /* Brand green (for buttons etc.) */
  --green-mid:    #1a5c2a;
  --green-btn:    #1e6b31;

  --white:        #ffffff;

  /* Layout */
  --header-height:  72px;
  --logo-max-height: 48px;
  --logo-max-width:  200px;
  --container:    1180px;
  --radius:       10px;
  --radius-sm:    6px;
  --radius-lg:    16px;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(0,0,0,.4);
  --shadow-md:    0 6px 28px rgba(0,0,0,.5);
  --shadow-glow:  0 0 24px rgba(201,168,76,.12);

  --ease: .22s ease;
}

/* ── Base ─────────────────────────────────────────────────── */
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Gold Divider ─────────────────────────────────────────── */
.gold-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(6, 16, 10, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo { flex-shrink: 0; }
.logo a { display: flex; align-items: center; gap: 10px; }
.logo img {
  height: auto;
  max-height: var(--logo-max-height);
  max-width:  var(--logo-max-width);
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.3px;
}
.logo-text span { color: var(--gold); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
  letter-spacing: .2px;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: var(--surface-2);
}
.main-nav a.active { color: var(--gold); }

/* Header CTA */
.header-cta { flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  border: none;
  letter-spacing: .3px;
}
.btn-gold {
  background: var(--gold);
  color: #0a1a0a;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
}
.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold-dim);
  transform: translateY(-1px);
}
.btn-ghost {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover { background: var(--surface-3); }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--ease);
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 96px 0 88px;
  overflow: hidden;
}

/* Radial glow background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,92,42,.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 50%, rgba(201,168,76,.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative grid pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,52,36,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,52,36,.4) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero right — stat cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  transition: border-color var(--ease), transform var(--ease);
}

.hero-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.hero-card:first-child {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface-2);
  border-color: var(--border-light);
}

.hc-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hc-label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.hc-icon {
  font-size: 1.8rem;
  opacity: .7;
}

/* ════════════════════════════════════════════════════════════
   SECTION HEADERS
════════════════════════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.3px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ════════════════════════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════════════════════════ */
.services-section {
  padding: 80px 0;
}

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.svc-card:hover {
  background: var(--surface-2);
  border-color: var(--border-light);
  transform: translateY(-3px);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.svc-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.svc-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   WHY US — SPLIT LAYOUT
════════════════════════════════════════════════════════════ */
.why-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color var(--ease);
}

.why-item:hover { border-color: var(--border-light); }

.why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.why-item h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.why-item p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Right column — big stat blocks */
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.why-stat {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: border-color var(--ease), transform var(--ease);
}

.why-stat:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.why-stat .num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.why-stat .lbl {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════════
   SOCIAL MEDIA TEASER
════════════════════════════════════════════════════════════ */
.sm-teaser {
  padding: 80px 0;
}

.sm-teaser-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 48px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.sm-teaser-inner::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}

.sm-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sm-plan {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: border-color var(--ease), transform var(--ease);
}

.sm-plan:hover {
  border-color: rgba(201,168,76,.4);
  transform: translateY(-2px);
}

.sm-plan.featured-plan {
  border-color: rgba(201,168,76,.35);
  background: var(--gold-dim);
}

.sm-plan-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.sm-plan-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.sm-plan-detail {
  font-size: .72rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo-text { color: var(--text); }

.footer-brand p {
  font-size: .84rem;
  color: var(--text-dim);
  margin-top: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 9px; }

.footer-col ul li a {
  font-size: .84rem;
  color: var(--text-dim);
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: .78rem;
  color: var(--text-dim);
}

.footer-bottom a { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-cards         { display: none; }
  .services-grid      { grid-template-columns: 1fr 1fr; }
  .why-grid           { grid-template-columns: 1fr; gap: 40px; }
  .sm-teaser-inner    { grid-template-columns: 1fr; padding: 36px 28px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .services-head      { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  :root { --header-height: 60px; }

  .menu-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 12px; }

  .header-cta { display: none; }

  .hero { padding: 56px 0 48px; }
  .sm-plans { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
