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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 64px;
}

/* ============ SITE NAVIGATION ============ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 64px;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  z-index: 1000;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #3096ff;
}

/* Hamburger: hidden on desktop */
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 24px;
  color: #1a1a1a;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* Mobile nav */
@media (max-width: 768px) {
  body {
    padding-top: 56px;
  }

  .site-nav {
    height: 56px;
  }

  .nav-logo img {
    height: 30px;
  }

  .nav-hamburger {
    display: flex;
    order: 2;
  }

  .nav-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .nav-toggle:checked ~ .nav-menu {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }
}

/* ============ HERO ============ */
#hero {
  background: #ffffff;
  padding: 100px 0;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-label {
  font-size: 13px;
  color: #3096ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero-headline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0 0 20px 0;
}

.hero-subheadline {
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.btn-hero-primary {
  display: inline-block;
  background: #3096ff;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease;
}

.btn-hero-primary:hover {
  background: #1a7fe0;
}

.btn-hero-secondary {
  display: inline-block;
  background: transparent;
  color: #1a1a1a;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1.5px solid #1a1a1a;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-hero-secondary:hover {
  border-color: #3096ff;
  color: #3096ff;
}

.hero-image-wrap {
  width: 100%;
}

.hero-coach-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  display: block;
}

/* Hero responsive */
@media (max-width: 768px) {
  #hero {
    padding: 60px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-text {
    order: 1;
  }

  .hero-image-wrap {
    order: 2;
  }

  .hero-coach-img {
    height: 280px;
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    margin-top: 28px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ============ STATS BAR ============ */
#stats-bar {
  background: #111111;
  padding: 32px 0;
}

.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 56px;
}

.stats-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.stats-label {
  font-size: 13px;
  color: #888888;
  margin-top: 8px;
  max-width: 140px;
  line-height: 1.4;
}

.stats-divider {
  width: 1px;
  height: 48px;
  background: #2a2a2a;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stats-bar-inner {
    flex-direction: column;
    gap: 32px;
  }

  .stats-divider {
    width: 48px;
    height: 1px;
  }

  .stats-item {
    padding: 0;
  }

  .stats-number {
    font-size: 36px;
  }
}

/* ============ REALITY SECTION ============ */
#reality {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.reality-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.reality-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #1a1a1a;
  margin: 0 0 40px 0;
}

.reality-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.reality-list li {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 20px 0;
  line-height: 1.2;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
}

.reality-list li:last-child {
  border-bottom: none;
}

.reality-bullet {
  font-size: 22px;
  font-weight: 700;
  color: #3096ff;
  margin-right: 12px;
  flex-shrink: 0;
}

.reality-divider {
  margin-top: 40px;
}

.reality-divider p {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.reality-divider p:last-child {
  margin-bottom: 0;
}

.reality-cta {
  display: inline-block;
  margin-top: 32px;
  color: #3096ff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.reality-cta:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  #reality {
    padding: 60px 0;
  }

  .reality-title {
    font-size: 26px;
  }

  .reality-list li {
    font-size: 18px;
  }

  .reality-divider p {
    font-size: 18px;
  }
}

/* ============ BILLBOARD ============ */
#billboard {
  background: #0a0a0a;
  padding: 100px 24px;
  text-align: center;
}

.billboard-inner {
  max-width: 900px;
  margin: 0 auto;
}

.billboard-line1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 12px 0;
}

.billboard-line2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #3096ff;
  line-height: 1.2;
  margin: 0 0 48px 0;
}

.billboard-cta {
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #3096ff;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.billboard-cta:hover {
  color: #3096ff;
}

@media (max-width: 768px) {
  #billboard {
    padding: 70px 24px;
  }

  .billboard-line1,
  .billboard-line2 {
    font-size: 26px;
  }
}

/* ============ WHAT YOU GET HERE SECTION ============ */
#what-you-get {
  background: #ffffff;
  padding: 80px 0;
}

.what-you-get-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.what-you-get-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 16px 0;
}

.what-you-get-subtitle {
  font-size: 17px;
  color: #555555;
  text-align: center;
  margin: 0 0 56px 0;
}

.what-you-get-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.what-you-get-card {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid #eeeeee;
}

.card-bg-number {
  position: absolute;
  bottom: -16px;
  right: 12px;
  font-size: 120px;
  font-weight: 800;
  color: rgba(48, 150, 255, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: 'DM Sans', sans-serif;
}

.what-you-get-label {
  display: block;
  color: #3096ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.what-you-get-card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1a1a1a;
  margin: 16px 0 0 0;
}

.what-you-get-card-body {
  font-size: 16px;
  color: #555555;
  line-height: 1.65;
  margin: 12px 0 0 0;
}

@media (max-width: 768px) {
  #what-you-get {
    padding: 60px 0;
  }

  .what-you-get-title {
    font-size: 26px;
  }

  .what-you-get-grid {
    grid-template-columns: 1fr;
  }
}

.wyg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.wyg-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #3096ff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.wyg-statement {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1.05;
  color: #1a1a1a;
}

.wyg-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wyg-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #eeeeee;
}

.wyg-row:first-child {
  border-top: 1px solid #eeeeee;
}

.wyg-row-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #3096ff;
  letter-spacing: 0.1em;
  min-width: 28px;
  padding-top: 3px;
}

.wyg-row-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.wyg-row-body {
  font-size: 15px;
  color: #555555;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .wyg-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wyg-statement {
    font-size: 36px;
  }
}

/* ============ TESTIMONIALS SECTION ============ */
#testimonials-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.testimonials-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-section-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 56px 0;
}

.testimonials-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card-item {
  position: relative;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid #eeeeee;
}

.testimonial-quote-mark {
  display: block;
  font-size: 72px;
  line-height: 1;
  color: #3096ff;
  font-family: Georgia, serif;
  margin-bottom: 8px;
  opacity: 0.9;
}

.testimonial-quote {
  font-size: 16px;
  color: #444444;
  line-height: 1.7;
  margin: 0;
}

.testimonial-attribution {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 15px;
}

.testimonial-role {
  color: #999999;
  font-size: 14px;
  margin-top: 4px;
}

.testimonial-featured {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-featured-mark {
  display: block;
  font-size: 96px;
  line-height: 0.8;
  color: #3096ff;
  font-family: Georgia, serif;
  margin-bottom: 24px;
}

.testimonial-featured-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.testimonial-featured-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}

.testimonial-featured-name {
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
}

.testimonial-featured-role {
  font-size: 14px;
  color: #999999;
}

.testimonial-others {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.testimonial-others-label {
  font-size: 13px;
  color: #999999;
  margin: 0;
}

.testimonial-others span {
  font-size: 13px;
  color: #555555;
  font-weight: 600;
}

.testimonial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.testimonial-split-content {
  text-align: left;
}

.testimonial-split-content .testimonial-featured {
  text-align: left;
}

.testimonial-split-content .testimonial-featured-mark {
  text-align: left;
}

.testimonial-split-content .testimonial-others {
  justify-content: flex-start;
}

.testimonial-split-image {
  width: 100%;
}

.testimonial-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .testimonial-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .testimonial-featured-quote {
    font-size: 18px;
  }

  #testimonials-section {
    padding: 60px 0;
  }

  .testimonials-section-title {
    font-size: 26px;
  }

  .testimonials-section-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ START HERE SECTION ============ */
#start-here {
  background: #f8f9fa;
  padding: 80px 0;
}

.start-here-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.start-here-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 16px 0;
}

.start-here-subtitle {
  font-size: 17px;
  color: #555555;
  text-align: center;
  margin: 0 0 56px 0;
}

.start-here-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.start-here-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid #e0e0e0;
}

.start-here-card-featured {
  border: 1.5px solid #3096ff;
  box-shadow: 0 8px 32px rgba(48, 150, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.start-here-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #3096ff;
}

.start-here-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.start-here-badge-free {
  background: #e8f3ff;
  color: #3096ff;
}

.start-here-badge-price {
  background: #f0f0f0;
  color: #1a1a1a;
}

.start-here-card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1a1a1a;
  margin: 0;
}

.start-here-card-body {
  font-size: 15px;
  color: #555555;
  line-height: 1.65;
  margin: 12px 0 0 0;
}

.start-here-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-top: 28px;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.start-here-btn:hover {
  opacity: 0.9;
}

.start-here-btn-primary {
  background: #3096ff;
  color: #ffffff;
}

.start-here-btn-dark {
  background: #1a1a1a;
  color: #ffffff;
}

@media (max-width: 768px) {
  #start-here {
    padding: 60px 0;
  }

  .start-here-title {
    font-size: 26px;
  }

  .start-here-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ ABOUT RAMI SECTION ============ */
#about-rami {
  background: #f8f9fa;
  padding: 80px 0;
}

.about-rami-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-rami-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
}

.about-rami-photo-col {
  width: 100%;
  max-width: 420px;
}

.about-rami-photo {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

.about-rami-label {
  font-size: 12px;
  font-weight: 700;
  color: #3096ff;
  letter-spacing: 0.08em;
  margin: 0 0 16px 0;
}

.about-rami-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 24px 0;
}

.about-rami-bio {
  font-size: 17px;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

.about-rami-creds {
  font-size: 14px;
  color: #999999;
  letter-spacing: 0.02em;
  margin: 20px 0 0 0;
}

.about-rami-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  background: transparent;
  border: 1.5px solid #1a1a1a;
  color: #1a1a1a;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.about-rami-btn:hover {
  border-color: #3096ff;
  color: #3096ff;
}

@media (max-width: 768px) {
  #about-rami {
    padding: 60px 0;
  }

  .about-rami-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-rami-photo-col {
    max-width: 100%;
  }

  .about-rami-photo {
    max-width: 100%;
  }

  .about-rami-title {
    font-size: 26px;
  }
}

/* ============ FINAL CTA SECTION ============ */
#final-cta-section {
  background: #1a1a1a;
  padding: 100px 0;
  text-align: center;
}

.final-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.final-cta-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 8px 0;
}

.final-cta-title-accent {
  font-size: 64px;
  color: #3096ff;
  margin-bottom: 32px;
}

.final-cta-subtitle {
  font-size: 18px;
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0 0 40px 0;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.final-cta-btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.final-cta-btn-primary {
  background: #3096ff;
  color: #ffffff;
}

.final-cta-btn-primary:hover {
  background: #1a7fe0;
}

.final-cta-btn-secondary {
  background: transparent;
  border: 1.5px solid #444444;
  color: #ffffff;
}

.final-cta-btn-secondary:hover {
  border-color: #ffffff;
}

@media (max-width: 768px) {
  #final-cta-section {
    padding: 70px 0;
  }

  .final-cta-title {
    font-size: 32px;
  }

  .final-cta-title-accent {
    font-size: 42px;
  }

  .final-cta-buttons {
    flex-direction: column;
  }

  .final-cta-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

/* ============ LEGAL PAGES ============ */
main.container {
  padding: 0 24px;
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.legal-page h1 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.legal-page h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1a1a1a;
  margin: 40px 0 16px;
}

.legal-page p {
  font-size: 16px;
  color: #444444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-page ul li {
  font-size: 16px;
  color: #444444;
  line-height: 1.75;
  margin-bottom: 8px;
}

.legal-page .last-updated {
  font-size: 14px;
  color: #999999;
  margin-bottom: 8px;
}

.legal-page .back-link {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #eeeeee;
}

.legal-page .back-link a {
  font-size: 14px;
  color: #3096ff;
  text-decoration: none;
  font-weight: 600;
}

.legal-page .back-link a:hover {
  text-decoration: underline;
}

.legal-page a {
  color: #3096ff;
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #111111;
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 14px;
  color: #888888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-email {
  margin-top: 8px;
}

.footer-email a {
  font-size: 13px;
  color: #666666;
  text-decoration: none;
}

.footer-email a:hover {
  color: #ffffff;
}

.footer-divider {
  height: 1px;
  background: #2a2a2a;
  margin: 32px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============ PRODUCTS PAGE ============ */
#products-hero {
  background: #ffffff;
  padding: 80px 24px 60px;
  text-align: center;
}

.products-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.products-hero-label {
  font-size: 12px;
  font-weight: 700;
  color: #3096ff;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.products-hero-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 20px;
}

.products-hero-sub {
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .products-hero-title {
    font-size: 36px;
  }
}

#current-products {
  background: #ffffff;
  padding: 20px 24px 80px;
}

.current-products-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 56px 0;
  align-items: start;
}

.product-row-muted {
  opacity: 0.55;
}

.product-row-divider {
  height: 1px;
  background: #eeeeee;
}

.product-row-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.product-row-badge-free {
  background: #e8f3ff;
  color: #3096ff;
}

.product-row-badge-paid {
  background: #1a1a1a;
  color: #ffffff;
}

.product-row-badge-soon {
  background: #f0f0f0;
  color: #999999;
}

.product-row-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.product-row-body {
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-row-btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.product-row-btn-primary {
  background: #3096ff;
  color: #ffffff;
}

.product-row-btn-primary:hover {
  background: #1a7fe0;
}

.product-row-btn-dark {
  background: #1a1a1a;
  color: #ffffff;
}

.product-row-btn-dark:hover {
  background: #333333;
}

.product-row-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.product-row-detail-item {
  font-size: 15px;
  color: #444444;
  line-height: 1.5;
}

.product-row-price-label {
  font-size: 15px;
  color: #999999;
  font-weight: 600;
}

@media (max-width: 768px) {
  .product-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .product-row-title {
    font-size: 22px;
  }

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

#categories {
  background: #f8f9fa;
  padding: 80px 24px;
}

.categories-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.categories-label {
  font-size: 12px;
  font-weight: 700;
  color: #3096ff;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 16px;
}

.categories-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 48px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
}

.category-item {
  background: #ffffff;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-item-featured {
  background: #f0f7ff;
}

.category-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.category-count {
  font-size: 13px;
  color: #3096ff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-title {
    font-size: 26px;
  }
}

#coming-soon {
  background: #ffffff;
  padding: 80px 24px;
}

.coming-soon-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.coming-soon-label {
  font-size: 12px;
  font-weight: 700;
  color: #3096ff;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 16px;
}

.coming-soon-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 12px;
}

.coming-soon-sub {
  font-size: 16px;
  color: #999999;
  text-align: center;
  margin-bottom: 48px;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.coming-soon-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.coming-soon-card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1a1a1a;
}

.coming-soon-card-body {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  flex: 1;
}

.coming-soon-price {
  font-size: 13px;
  font-weight: 700;
  color: #3096ff;
}

@media (max-width: 768px) {
  .coming-soon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coming-soon-title {
    font-size: 26px;
  }
}

/* ============ ABOUT PAGE ============ */
#about-hero {
  background: #ffffff;
  padding: 80px 24px 60px;
  text-align: center;
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-label {
  font-size: 12px;
  font-weight: 700;
  color: #3096ff;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.about-hero-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: #1a1a1a;
  line-height: 1.15;
}

@media (max-width: 768px) {
  .about-hero-title {
    font-size: 30px;
  }
}

#about-main {
  background: #ffffff;
  padding: 20px 24px 80px;
}

.about-main-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-main-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

.about-main-photo-col {
  position: sticky;
  top: 84px;
}

.about-main-photo {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.about-main-social {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}

.about-social-link {
  font-size: 14px;
  font-weight: 600;
  color: #3096ff;
  text-decoration: none;
}

.about-social-link:hover {
  text-decoration: underline;
}

.about-main-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.about-main-bio {
  font-size: 17px;
  color: #444444;
  line-height: 1.75;
  margin: 0;
}

.about-main-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.about-main-creds span {
  font-size: 13px;
  font-weight: 600;
  color: #3096ff;
  background: #f0f7ff;
  padding: 6px 14px;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-main-photo-col {
    position: static;
  }

  .about-main-bio {
    font-size: 16px;
  }
}

#about-what {
  background: #f8f9fa;
  padding: 80px 24px;
}

.about-what-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-what-label {
  font-size: 12px;
  font-weight: 700;
  color: #3096ff;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 16px;
}

.about-what-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 48px;
}

.about-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-what-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid #eeeeee;
  position: relative;
  overflow: hidden;
}

.about-what-number {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #3096ff;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.about-what-card-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.about-what-card-body {
  font-size: 15px;
  color: #555555;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .about-what-grid {
    grid-template-columns: 1fr;
  }

  .about-what-title {
    font-size: 30px;
  }
}

#about-contact {
  background: #ffffff;
  padding: 80px 24px;
}

.about-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.about-contact-label {
  font-size: 12px;
  font-weight: 700;
  color: #3096ff;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.about-contact-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-contact-body {
  font-size: 17px;
  color: #444444;
  line-height: 1.75;
  margin-bottom: 24px;
}

.about-contact-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #3096ff;
  text-decoration: none;
}

.about-contact-btn:hover {
  text-decoration: underline;
}

.about-contact-options {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-contact-option {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #eeeeee;
}

.about-contact-option-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
}

.about-contact-option-body {
  font-size: 15px;
  color: #555555;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .about-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-contact-title {
    font-size: 30px;
  }
}

