/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
}

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

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

/* Colors */
:root {
  --dark-blue: #0A1628;
  --sky-blue: #1a3a52;
  --gold: #F6BF58;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --text-dark: #1a1a2e;
  --text-light: #666666;
}

/* Header & Navigation */
header {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--sky-blue) 100%);
  color: var(--white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-size: 14px;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* CTA Button */
.cta-button {
  background: var(--gold) !important;
  color: var(--dark-blue) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
}

.cta-button:hover {
  background: #e8ae3a !important;
}

/* Primary CTA */
.primary-cta {
  background: var(--gold);
  color: var(--dark-blue);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.primary-cta:hover {
  background: #e8ae3a;
  transform: translateY(-2px);
}

.primary-cta.block {
  display: block;
  width: 100%;
  text-align: center;
}

.primary-cta.large {
  padding: 16px 40px;
  font-size: 18px;
}

/* Secondary CTA */
.secondary-cta {
  background: transparent;
  color: var(--dark-blue);
  padding: 14px 32px;
  border: 2px solid var(--dark-blue);
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
}

.secondary-cta:hover {
  background: var(--dark-blue);
  color: var(--white);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--sky-blue) 100%);
  color: var(--white);
  padding: 120px 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero .subheading {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--sky-blue) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  opacity: 0.95;
}

/* Value Props Section */
.value-props {
  padding: 80px 20px;
  background: var(--light-gray);
}

.value-props h2,
.services-preview h2,
.pricing-section h2,
.case-studies h2,
.testimonials h2,
.team h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.prop-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.prop-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.prop-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.prop-card p {
  color: var(--text-light);
  font-size: 14px;
}

/* Services Section */
.services-preview {
  padding: 80px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}

.service-card a {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.service-card a:hover {
  color: var(--dark-blue);
}

/* Social Proof */
.social-proof {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--sky-blue) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.social-proof h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.trust-text {
  font-size: 18px;
  margin-bottom: 50px;
  opacity: 0.95;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  background: var(--light-gray);
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.cta-section p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Footer */
footer {
  background: var(--dark-blue);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-brand p,
.footer-contact p {
  font-size: 14px;
  opacity: 0.8;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--white);
  font-size: 14px;
  opacity: 0.8;
  transition: all 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  opacity: 0.7;
}

/* Services Detail Page */
.service-detail {
  padding: 80px 20px;
}

.service-detail.alt-bg {
  background: var(--light-gray);
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-content.reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-content.reverse > * {
  direction: ltr;
}

.service-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-blue);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-text > p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
}

.service-features li {
  padding: 10px 0;
  color: var(--text-light);
  font-size: 15px;
  padding-left: 25px;
  position: relative;
}

.service-features li:before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-cta {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.highlight-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.highlight-card:hover {
  border-color: var(--gold);
}

.highlight-label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.highlight-value {
  display: block;
  font-size: 36px;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 5px;
}

.highlight-sub {
  display: block;
  font-size: 13px;
  color: var(--text-light);
}

/* Contact Form */
.contact-section {
  padding: 80px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.contact-info > p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-methods {
  space-y: 30px;
}

.contact-method {
  margin-bottom: 30px;
}

.contact-method h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-method p {
  color: var(--text-light);
  font-size: 14px;
}

.contact-method a {
  color: var(--gold);
  font-weight: 600;
}

.contact-form {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(246, 191, 88, 0.2);
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-dark);
}

.checkbox-label input {
  width: auto;
  margin-right: 10px;
  cursor: pointer;
}

.form-notice {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 15px;
}

.form-message {
  margin-top: 15px;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
  display: none;
}

.form-message.success {
  background: #e0ffe0;
  color: #27ae60;
  display: block;
}

.form-message.error {
  background: #ffe0e0;
  color: #e24848;
  display: block;
}

/* Pricing */
.pricing-section {
  padding: 80px 20px;
}

.pricing-hero {
  background: var(--light-gray);
  padding: 50px;
  border-radius: 8px;
  text-align: center;
}

.pricing-tagline {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.pricing-main {
  margin-bottom: 40px;
}

.price-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.price-amount {
  font-size: 60px;
  font-weight: bold;
  color: var(--gold);
}

.price-period {
  font-size: 16px;
  color: var(--text-light);
}

.price-note {
  color: var(--text-light);
  font-size: 14px;
}

.pricing-includes {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-includes li {
  padding: 8px 0;
  color: var(--text-dark);
  font-size: 15px;
  padding-left: 25px;
  position: relative;
}

.pricing-includes li:before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.guarantee-text {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 15px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(246, 191, 88, 0.1);
  transform: translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark-blue);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.price {
  font-size: 36px;
  font-weight: bold;
  color: var(--gold);
  margin: 15px 0;
}

.price span {
  font-size: 14px;
  color: var(--text-light);
}

.price-range {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 20px 0;
  font-size: 14px;
}

.pricing-card li {
  padding: 8px 0;
  color: var(--text-light);
  border-bottom: 1px solid #eee;
}

.pricing-card li:before {
  content: "✓ ";
  color: var(--gold);
  font-weight: bold;
  margin-right: 5px;
}

/* FAQ */
.faq {
  padding: 80px 20px;
  background: var(--light-gray);
}

.faq h2 {
  margin-bottom: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-item {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  color: var(--text-dark);
  font-size: 16px;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Results/Case Studies */
.stats-overview {
  padding: 60px 20px;
  background: var(--light-gray);
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 40px;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  color: var(--text-light);
  font-size: 14px;
}

.case-studies {
  padding: 80px 20px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.case-study-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  position: relative;
  border: 2px solid #ddd;
}

.case-study-card.coming-soon {
  opacity: 0.7;
}

.case-study-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--dark-blue);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.case-study-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.case-study-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
}

.metrics-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.metric {
  text-align: center;
  padding: 15px;
  background: var(--white);
  border-radius: 4px;
}

.metric-value {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: var(--gold);
}

.metric-label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 5px;
}

.testimonials {
  padding: 80px 20px;
  background: var(--light-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 15px;
}

.testimonial-card blockquote {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-size: 14px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 12px;
}

/* About Page */
.mission {
  padding: 80px 20px;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
}

.mission-statement {
  font-size: 28px;
  color: var(--gold);
  font-weight: 600;
  margin: 20px 0 15px;
}

.mission-content p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.approach {
  padding: 80px 20px;
  background: var(--light-gray);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.approach-card {
  background: var(--white);
  padding: 35px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.approach-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.approach-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.approach-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.values {
  padding: 80px 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  padding: 30px;
  background: var(--light-gray);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}

.value-item h3 {
  color: var(--text-dark);
  font-size: 18px;
  margin-bottom: 12px;
}

.value-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.team {
  padding: 80px 20px;
  background: var(--light-gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--white);
  padding: 35px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.team-avatar {
  font-size: 48px;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.team-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.why-us {
  padding: 80px 20px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.comparison-item {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid var(--gold);
}

.comparison-item h3 {
  color: var(--text-dark);
  font-size: 18px;
  margin-bottom: 15px;
}

.comparison-item ul {
  list-style: none;
}

.comparison-item li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 14px;
  padding-left: 25px;
  position: relative;
}

.comparison-item li:before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.sample-metrics {
  padding: 80px 20px;
  background: var(--light-gray);
}

.metrics-table {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.metric-row.header {
  background: var(--dark-blue);
  color: var(--white);
  font-weight: 600;
  border-bottom: none;
}

.metric-row:last-child {
  border-bottom: none;
}

.metric-row .highlight {
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
}

.metrics-note {
  text-align: center;
  color: var(--text-light);
  font-size: 12px;
  margin-top: 20px;
}

/* Bundles */
.bundles {
  padding: 80px 20px;
}

.bundle-content h2 {
  margin-bottom: 15px;
}

.bundle-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.bundle-item {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}

.bundle-item h3 {
  color: var(--text-dark);
  font-size: 18px;
  margin-bottom: 10px;
}

.bundle-item p {
  color: var(--text-light);
  font-size: 14px;
}

.recurring-pricing {
  padding: 80px 20px;
}

.project-pricing {
  padding: 80px 20px;
  background: var(--light-gray);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.project-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.project-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.project-card h3 {
  color: var(--text-dark);
  font-size: 18px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .service-content {
    grid-template-columns: 1fr;
  }

  .service-content.reverse {
    direction: ltr;
  }

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

  .metrics-preview {
    grid-template-columns: 1fr;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

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

  .service-cta {
    flex-direction: column;
  }

  .service-cta a {
    width: 100%;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 60px 15px;
  }

  .page-header {
    padding: 50px 15px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .page-header h1 {
    font-size: 24px;
  }

  .nav-links {
    gap: 15px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .props-grid,
  .services-grid,
  .faq-grid,
  .case-study-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* New Homepage Styles for Stacked Offer */

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-blue);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-new {
  padding: 100px 20px 80px;
}

.hero-note {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.9;
}

/* The Stack Section */
.the-stack {
  padding: 80px 20px;
  background: var(--white);
}

.the-stack h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.stack-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  position: relative;
  transition: all 0.3s;
}

.stack-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stack-card.featured {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--sky-blue) 100%);
  color: var(--white);
  border-left: 4px solid var(--gold);
}

.stack-card.featured h3,
.stack-card.featured p {
  color: var(--white);
}

.stack-badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background: var(--gold);
  color: var(--dark-blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.stack-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.stack-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.stack-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.stack-value {
  display: inline-block;
  background: var(--dark-blue);
  color: var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}

.stack-card.featured .stack-value {
  background: var(--white);
  color: var(--dark-blue);
}

/* The Math Section */
.the-math {
  padding: 80px 20px;
  background: var(--dark-blue);
  color: var(--white);
}

.the-math h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--white);
}

.math-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.math-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 35px;
  border-radius: 8px;
  text-align: center;
}

.math-card.highlight {
  background: var(--gold);
  color: var(--dark-blue);
}

.math-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 15px;
}

.math-total {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.math-total-offer {
  font-size: 48px;
}

.math-breakdown {
  text-align: left;
  font-size: 13px;
  opacity: 0.9;
}

.math-breakdown span {
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.math-savings {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.math-note {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 15px;
}

/* Timeline Section */
.timeline-section {
  padding: 80px 20px;
  background: var(--light-gray);
}

.timeline-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.timeline {
  max-width: 800px;
  margin: 50px auto 0;
  position: relative;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  background: var(--gold);
  color: var(--dark-blue);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.timeline-content {
  background: var(--white);
  padding: 25px 30px;
  border-radius: 8px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-left: 30px;
}

.timeline-content h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 14px;
}

/* Upsells Section */
.upsells {
  padding: 80px 20px;
  background: var(--white);
}

.upsells h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.upsell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.upsell-card {
  background: var(--light-gray);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.upsell-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.upsell-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.upsell-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}

.upsell-price {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 15px;
}

.upsell-cta {
  display: inline-block;
  background: var(--dark-blue);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.upsell-cta:hover {
  background: var(--gold);
  color: var(--dark-blue);
}

.cta-note {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.9;
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .timeline:before {
    left: 20px;
  }
  
  .timeline-marker {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .timeline-content {
    margin-left: 20px;
    padding: 20px;
  }
  
  .math-grid {
    grid-template-columns: 1fr;
  }
  
  .math-total {
    font-size: 24px;
  }
  
  .math-total-offer {
    font-size: 36px;
  }
}
