/* WGT INVESTMENTS LLC - style.css */
/* Dark theme: emerald + gold for WGT INVESTMENTS LLC */

:root {
  --bg: #070b09;
  --bg-soft: #0c1310;
  --bg-card: #101a15;
  --bg-card-hover: #14211b;
  --border: #1d2f26;
  --border-light: #2a4234;
  --text: #e8f0ea;
  --text-muted: #9db3a6;
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-glow: rgba(16, 185, 129, 0.35);
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-glow: rgba(245, 158, 11, 0.3);
  --teal: #14b8a6;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--teal); }

h1, h2, h3, h4, h5, h6 { line-height: 1.25; color: #fff; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Navbar ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7, 11, 9, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(7, 11, 9, 0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}
.nav-logo:hover { color: var(--primary); }
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px var(--primary-glow);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
}
.nav-links a.contact-btn {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 6px 20px var(--primary-glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-links a.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--primary-glow);
  color: #fff;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 100px;
  background:
    radial-gradient(ellipse 60% 50% at 75% 20%, rgba(16, 185, 129, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(245, 158, 11, 0.1), transparent 60%),
    linear-gradient(180deg, #0a120d 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero h1 .gradient {
  background: linear-gradient(90deg, var(--primary), var(--teal) 55%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero p.subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 640px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  box-shadow: 0 8px 24px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--primary-glow);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}
.stat-label {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-head h2 { font-size: 2.3rem; font-weight: 800; margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== About preview ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-copy h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; }
.about-copy p { color: var(--text-muted); margin-bottom: 18px; }
.about-points { list-style: none; margin-top: 24px; }
.about-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  color: var(--text);
}
.about-points .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 3px;
}
.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual .grid-art {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 185, 129, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
}
.about-visual .card-stack {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mini-card {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.mini-card:hover { transform: translateX(6px); border-color: var(--primary); }
.mini-card .mini-icon { font-size: 1.4rem; }
.mini-card h4 { font-size: 1rem; margin-bottom: 4px; }
.mini-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== Service cards ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-light);
  box-shadow: var(--shadow);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(20, 184, 166, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}
.service-card .learn-more:hover { color: var(--teal); }

/* ===== Approach ===== */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.approach-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.approach-step:hover { transform: translateY(-4px); border-color: var(--accent); }
.step-num {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 12px;
}
.approach-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.approach-step p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 55% 60% at 50% 50%, rgba(16, 185, 129, 0.12), transparent 70%),
    var(--bg);
  text-align: center;
}
.cta h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.cta p { color: var(--text-muted); max-width: 560px; margin: 0 auto 32px; font-size: 1.1rem; }

/* ===== Page banner ===== */
.page-banner {
  padding: 150px 24px 70px;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 50% at 50% 0%, rgba(16, 185, 129, 0.14), transparent 65%),
    linear-gradient(180deg, #0a120d 0%, var(--bg) 100%);
}
.page-banner h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 14px; }
.page-banner p { color: var(--text-muted); max-width: 680px; margin: 0 auto; font-size: 1.1rem; }

/* ===== Content pages ===== */
.content-page { padding: 70px 0 100px; }
.content-container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.content-section { margin-bottom: 48px; }
.content-section h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.content-section h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--teal));
}
.content-section h3 { font-size: 1.25rem; margin: 20px 0 10px; }
.content-section p { color: var(--text-muted); margin-bottom: 14px; }
.content-section ul, .content-section ol { margin: 0 0 16px 22px; }
.content-section li { color: var(--text-muted); margin-bottom: 8px; }
.content-section strong { color: var(--text); }

/* ===== Service detail cards ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.service-detail-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.service-detail-card h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  padding: 0;
}
.service-detail-card h2::after { display: none; }
.card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.service-detail-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 12px; }
.service-detail-card ul { margin: 10px 0 0 18px; }
.service-detail-card li { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 6px; }
.service-icon { font-size: 1.4rem; }

/* ===== Delivery model ===== */
.delivery-model {
  margin-top: 64px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}
.delivery-model h2 { text-align: center; font-size: 1.8rem; margin-bottom: 40px; }
.delivery-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.delivery-step { text-align: center; }
.delivery-step .step-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px var(--primary-glow);
}
.delivery-step h4 { font-size: 1rem; margin-bottom: 6px; }
.delivery-step p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== Team page ===== */
.team-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-page-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.team-page-card:hover { transform: translateY(-6px); border-color: var(--primary); }
.team-page-card .avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(245, 158, 11, 0.12));
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.team-page-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.team-page-card .role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.team-page-card .desc { color: var(--text-muted); font-size: 0.88rem; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 28px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-info-item .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p { color: var(--text-muted); font-size: 0.95rem; }
.contact-info-item a { color: var(--text); }
.contact-info-item a:hover { color: var(--primary); }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.contact-form h2 { font-size: 1.6rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select option { background: var(--bg-card); }
.form-success {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--primary);
  font-size: 0.95rem;
  display: none;
}

/* ===== Footer ===== */
footer {
  background: #050806;
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; margin-top: 16px; max-width: 320px; }
.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #fff;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.92rem; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.88rem; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.88rem; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-page-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  .mobile-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(7, 11, 9, 0.98);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-140%);
    transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .delivery-steps { grid-template-columns: 1fr; }
  .team-page-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-banner h1 { font-size: 2.1rem; }
  .section-head h2 { font-size: 1.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
