/* Reset & Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg-primary: #070709;
  --bg-darker: #040405;
  --bg-card: rgba(20, 22, 31, 0.7);
  --gold: #D4AF37;
  --gold-hover: #F3C649;
  --text-main: #FFFFFF;
  --text-muted: #A0A5B5;
  --border-gold: rgba(212, 175, 55, 0.25);
}

body {
  background-color: var(--bg-primary);
  background-image: radial-gradient(circle at 50% 15%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  cursor: default;
}

/* Custom Glowing Cursor Follower (Pamidor Style) */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

.cursor-glow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.2s, height 0.2s;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.gold-text { color: var(--gold); }
.bg-darker { background-color: var(--bg-darker); }

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 7, 9, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-img {
  height: 50px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.8));
  transition: transform 0.3s;
}

.brand-logo-img:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

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

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7,7,9,0.7) 0%, rgba(7,7,9,0.96) 100%);
  z-index: -1;
}

.badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero-logo-wrapper {
  margin-bottom: 20px;
}

.hero-logo-img {
  max-width: 380px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.2));
}

.hero-subtext {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 35px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background-color: var(--gold);
  color: #000;
}
.btn-gold:hover {
  background-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-gold-sm {
  background-color: var(--gold);
  color: #000;
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFF;
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-block { width: 100%; text-align: center; }

/* Proof Bar */
.proof-bar {
  background: #0E0F14;
  border-y: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}

.proof-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.proof-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
}

.proof-logos {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Section Shared */
.section { padding: 90px 0; }

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

.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

/* Philosophy Section */
.philosophy-box {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
}

.phil-header h2 { font-size: 2.2rem; margin-bottom: 10px; }
.italic-sub { display: block; font-family: 'Caveat', cursive; font-size: 1.4rem; margin-bottom: 25px; }

/* Case Studies Grid */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.case-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-out;
}

.case-tag {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.case-card h3 { font-size: 1.4rem; margin-bottom: 15px; color: #FFF; }
.case-desc { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 25px; flex-grow: 1; }

.case-metrics {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 15px 0;
  margin-bottom: 20px;
}

.metric-item { text-align: center; }
.metric-num { display: inline-block; font-size: 1.3rem; font-weight: 800; color: var(--gold); }
.plus { color: var(--gold); font-weight: 800; }
.metric-lbl { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; display: block; }

.case-quote {
  font-style: italic;
  font-size: 0.9rem;
  color: #E0E0E0;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

.quote-author {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 6px;
  font-weight: 600;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 35px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-out;
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.pricing-card h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--gold); }
.price { font-size: 2.2rem; font-weight: 900; }
.price span { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.price-sub { color: var(--gold); font-size: 0.85rem; margin-bottom: 20px; font-weight: 600; }

.pricing-features {
  list-style: none;
  margin-bottom: 25px;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Calculator */
.calculator-box {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 45px 35px;
  text-align: center;
}

.calculator-inputs { margin: 35px 0; }
.calculator-inputs label { display: block; font-size: 1.1rem; font-weight: 600; margin-bottom: 15px; }

input[type=range] {
  width: 100%;
  max-width: 600px;
  accent-color: var(--gold);
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.result-card {
  background: rgba(7, 7, 9, 0.6);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.result-number { display: block; font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.result-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Contact Section */
.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 50px;
}

.contact-info h2 { font-size: 2.2rem; margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); margin-bottom: 25px; }

.direct-contact-details {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  padding: 20px;
  border-radius: 8px;
}

.direct-contact-details p { margin-bottom: 8px; color: #FFF; font-size: 0.95rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 15px;
  background: var(--bg-primary);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: #FFF;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-overlay.active { display: flex; }

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}

.footer {
  text-align: center;
  padding: 35px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .nav-links { display: none; }
}
