/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --bg-color: #1A1D23;
  --text-color: #f5f5f7;
  --card-bg: #111317;
  --border-color: #333;
  --gold-muted: #BFA05A;
  --gold-accent: #BFA05A;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

nav {
  background: var(--bg-color);
  padding: 1.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.hamburger {
  display: block;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.nav-links.show {
  max-height: 300px;
  opacity: 1;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #ccc;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-muted);
  border-bottom: 2px solid var(--gold-muted);
  padding-bottom: 4px;
}

header#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  z-index: 1;
  animation: fadeIn 0.3s ease;
}

header#hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #fff;
}

header#hero p {
  font-size: 1rem;
  color: #ccc;
  max-width: 700px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.btn {
  display: inline-block;
  background: var(--gold-accent);
  color: #111317;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  background: #D4B86A;
  transform: scale(1.03);
  box-shadow: 0 5px 20px rgba(191, 160, 90, 0.4);
}

section, .case-study {
  padding: 2rem 1rem;
  z-index: 1;
  animation: fadeIn 0.3s ease;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #fff;
}

.subtext, #why p {
  font-size: 1rem;
  color: #aaa;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  overflow-wrap: break-word;
}

#about .about-points, #services ul {
  list-style: none;
  margin: 1.5rem 0;
}

#about .about-points li, #services li {
  font-size: 1rem;
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  overflow-wrap: break-word;
}

#about .about-points li::before, #services li::before {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23BFA05A" stroke-width="2"><path d="M5 12h14M12 5l7 7-7 7"/></svg>');
  position: absolute;
  left: 0;
  top: 0.2rem;
}

.case-grid, .pricing-grid, .testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.case-study-card, .pricing-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(191, 160, 90, 0.1);
  transition: transform 0.3s ease;
}

.case-study-card:hover, .pricing-card:hover {
  transform: translateY(-5px);
}

.case-title, .pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 1rem;
}

.case-problem, .case-solution, .pricing-card p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 1rem;
}

.case-result {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--gold-muted);
  margin: 1.5rem 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.price-point {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--gold-muted);
  margin: 1rem 0;
}

.pricing-card.main-offer {
  border: 2px solid var(--gold-muted);
  position: relative;
  overflow: hidden;
}

.pricing-card.main-offer::before {
  content: "MOST EFFECTIVE";
  position: absolute;
  top: 12px;
  right: -40px;
  background: var(--gold-muted);
  color: #111;
  font-weight: 900;
  font-size: 0.8rem;
  padding: 4px 40px;
  transform: rotate(45deg);
  z-index: 1;
}

.testimonials-grid blockquote {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(191, 160, 90, 0.1);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
}

.testimonials-grid .stat, .testimonials-grid .metrics span {
  color: var(--gold-muted);
  font-weight: 700;
}

#contact .form-header {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--gold-muted);
  margin: 1rem 0;
}

input, select, textarea {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: var(--card-bg);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold-muted);
  box-shadow: 0 0 5px rgba(191, 160, 90, 0.3);
}

select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 12 12"><path fill="%23BFA05A" d="M6 9L2 5h8z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

footer p {
  color: var(--gold-muted);
  text-decoration: underline;
  font-size: 1.2rem;
}

.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  width: auto;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
}

.sticky-cta.hidden-on-load {
  display: none;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .sticky-cta {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    width: auto;
  }
}

@media screen and (min-width: 768px) {
  .container {
    max-width: 900px;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .hamburger { display: none; }
  .nav-links { flex-direction: row; max-height: none; opacity: 1; }
  header#hero h1 { font-size: 4rem; text-align: left; }
  header#hero p { font-size: 1.2rem; text-align: left; }
  .btn { width: fit-content; padding: 1rem 2rem; font-size: 1.1rem; }
  h2 { font-size: 2.2rem; text-align: left; }
  section, .case-study { padding: 3rem 2rem; }
  .case-grid, .pricing-grid, .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
  .case-result { font-size: 2.5rem; }
  .price-point { font-size: 2.8rem; }
}
