:root {
  --gold: #d4a853;
  --gold-light: #f5e6c8;
  --dark: #0a0a0a;
  --dark-card: #141414;
  --dark-elevated: #1a1a1a;
  --text: #a3a3a3;
  --text-light: #d4d4d4;
  --white: #fafafa;
  --accent: #22c55e;
  --gradient-gold: linear-gradient(135deg, #d4a853, #f0d78c, #d4a853);
  --radius: 16px;
  --glow: 0 0 40px rgba(212, 168, 83, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--dark);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
}

/* Navbar */
.navbar {
  padding: 1.25rem 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(212, 168, 83, 0.15);
}

.navbar-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 0.75rem;
  transition: color 0.3s;
}

.nav-link:hover { color: var(--gold) !important; }

.btn-gold {
  background: var(--gradient-gold);
  color: var(--dark);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
  color: var(--dark);
}

.btn-ghost {
  border: 1px solid rgba(212, 168, 83, 0.4);
  color: var(--gold);
  background: transparent;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: rgba(212, 168, 83, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 83, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 83, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.12) 0%, transparent 70%);
  top: 20%;
  right: 0;
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(212, 168, 83, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.hero-tag .line {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-metrics {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-value {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
}

.metric-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
}

.hero-visual {
  position: relative;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: var(--radius);
  z-index: 2;
  pointer-events: none;
}

.hero-img-frame img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  filter: brightness(0.85);
}

.hero-img-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--dark), transparent);
  z-index: 1;
}

.performance-card {
  position: absolute;
  bottom: 10%;
  left: -10%;
  background: var(--dark-card);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  z-index: 3;
}

.performance-card .bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.performance-card .bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 3px;
  width: 87%;
}

/* Logos bar */
.logos-bar {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logos-bar span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text);
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}

.logo-item {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  transition: color 0.3s;
}

.logo-item:hover { color: var(--gold); }

/* Sections */
section { padding: 120px 0; }

.section-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text);
  max-width: 550px;
  font-size: 1.05rem;
}

/* Services */
.service-card-pro {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.service-card-pro:hover {
  border-color: rgba(212, 168, 83, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.service-card-pro:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(212, 168, 83, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
}

.service-card-pro h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* About */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-stack img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.about-img-stack .main { height: 450px; }

.about-img-stack .secondary {
  position: absolute;
  width: 200px;
  height: 250px;
  bottom: -30px;
  right: -30px;
  border: 3px solid var(--dark);
}

.credential-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.credential-badge {
  background: var(--dark-elevated);
  border: 1px solid rgba(212, 168, 83, 0.2);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

/* Results */
.results { background: var(--dark-card); }

.result-card {
  text-align: center;
  padding: 2rem;
}

.result-card .number {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Testimonials */
.testimonial-pro {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2.5rem;
  height: 100%;
}

.testimonial-pro .quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-pro p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 1rem 0 1.5rem;
}

.testimonial-author-pro {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-pro img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.testimonial-author-pro .name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-author-pro .role {
  font-size: 0.8rem;
  color: var(--text);
}

/* Pricing */
.pricing-pro {
  background: var(--dark-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s;
}

.pricing-pro.featured {
  border-color: var(--gold);
  box-shadow: var(--glow);
  position: relative;
}

.pricing-pro.featured .tier-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--dark);
  padding: 0.3rem 1.25rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-pro .tier {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pricing-pro .price {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
}

.pricing-pro .price span {
  font-size: 1rem;
  color: var(--text);
  font-weight: 400;
}

.pricing-features-pro {
  list-style: none;
  margin: 2rem 0;
}

.pricing-features-pro li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-features-pro li i {
  color: var(--accent);
  font-size: 0.85rem;
}

/* FAQ */
.faq-pro .accordion-item {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-pro .accordion-button {
  background: var(--dark-card);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.faq-pro .accordion-button:not(.collapsed) {
  background: var(--dark-elevated);
  color: var(--gold);
}

.faq-pro .accordion-button::after {
  filter: invert(1);
}

.faq-pro .accordion-body {
  color: var(--text);
  padding: 0 1.5rem 1.25rem;
}

/* CTA */
.cta-pro {
  background: var(--dark-card);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-pro::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
}

.cta-pro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
}

/* Contact */
.contact-pro-form {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-pro-form .form-control,
.contact-pro-form .form-select {
  background: var(--dark-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 8px;
  padding: 0.9rem 1.25rem;
}

.contact-pro-form .form-control:focus,
.contact-pro-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
  background: var(--dark-elevated);
  color: var(--white);
}

.contact-pro-form .form-control::placeholder { color: var(--text); }

.contact-info-pro {
  padding: 2rem 0;
}

.contact-info-pro .item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-pro .icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 2rem;
}

footer h5 {
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

footer a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  margin-top: 3rem;
  font-size: 0.85rem;
}

/* Animations */
.slide-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero-img-frame img { height: 400px; }
  .performance-card { display: none; }
  .about-split { grid-template-columns: 1fr; }
  .about-img-stack .secondary { display: none; }
  .hero-metrics { gap: 1.5rem; flex-wrap: wrap; }
}

@media (max-width: 576px) {
  section { padding: 80px 0; }
  .cta-pro { padding: 3rem 1.5rem; }
  .metric-value { font-size: 2rem; }
}
