:root {
  --green: #00e676;
  --green-dark: #00c853;
  --bg: #0b0d10;
  --bg-card: #14171c;
  --bg-card-hover: #1c2128;
  --text: #e8eaed;
  --text-muted: #9aa0a6;
  --border: #2a2e35;
  --shadow: 0 8px 32px rgba(0,0,0,.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* Navbar - handled in gta.html inline styles */

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.6) 50%, rgba(0,0,0,.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 20px;
}

.badge {
  display: inline-block;
  background: rgba(0,230,118,.12);
  color: var(--green);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(0,230,118,.2);
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .25s;
}

.btn-primary {
  background: var(--green);
  color: #000;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,230,118,.25);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.2);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.hero-stats div {
  font-size: .85rem;
  color: var(--text-muted);
}

.hero-stats span {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

/* Sections */
.section {
  padding: 100px 24px;
  max-width: 1170px;
  margin: 0 auto;
}

.section-dark {
  max-width: 100%;
  background: #0f1116;
  padding-left: 24px;
  padding-right: 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Cards / Packages */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all .3s;
  position: relative;
}

.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), var(--shadow);
}

.card.featured .badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #000;
  border: none;
  font-size: .75rem;
  padding: 4px 14px;
  white-space: nowrap;
}

.card-icon {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.price {
  margin: 16px 0;
}

.price span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}

.card ul {
  text-align: left;
  margin: 20px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card ul li {
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.card ul li i {
  color: var(--green);
  font-size: .8rem;
  width: 16px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1170px;
  margin: 0 auto;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card p {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 16px;
  font-style: italic;
}

.reviewer {
  font-weight: 600;
  font-size: .85rem;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s;
}

.faq-item[open] {
  border-color: var(--green);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i {
  font-size: .8rem;
  color: var(--text-muted);
  transition: transform .3s;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
}

/* Form */
.order-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #fff;
  font-size: .95rem;
  font-family: inherit;
  transition: border .2s;
  outline: none;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--green);
}

.order-form select option {
  background: var(--bg);
}

.order-form button {
  align-self: flex-start;
}

/* Footer */
.footer {
  background: #080a0d;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  font-size: 1.4rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links a,
.footer-contact a {
  display: block;
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 10px;
  transition: color .2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact i {
  color: var(--green);
  width: 20px;
}

.footer-contact p {
  color: var(--text-muted);
  font-size: .9rem;
}

.footer-bottom {
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .82rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: all .25s;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
