:root {
  --color-primary: #FFD700;
  /* Traffic Yellowish */
  --color-secondary: #FFFFFF;
  --color-text: #1A1A1A;
  --color-text-light: #4A4A4A;
  --color-accent: #000000;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-card: 16px;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

html {
  height: 100%;
  overflow: hidden;
  /* Lock html, let body scroll */
}

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;

  /* Scroll Snap Config */
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  /* Removed scroll-padding-top as navbar is not fixed */
}

/* Override for Privacy/Cookie pages */
html.document-page,
body.document-page {
  height: auto;
  overflow: auto;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

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

/* Specific Sections */
/* Adjust Hero since logo is moving */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
  /* To clip the large background icon */
  padding: 0 1rem;
}

.hero-logo {
  max-width: 200px;
  margin-bottom: 2rem;
  animation: float 6s ease-in-out infinite;
}

.btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-secondary);
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* Global Section Snapping */
header.hero,
section,
footer {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  /* Forces stopping at each section */
}

.section-white {
  background: var(--color-secondary);
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.section-gray {
  background: #f4f4f4;
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

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

.card {
  background: #fff;
  border: 3px solid var(--color-text);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px) rotate(0deg) !important;
  /* Force straighten override JS */
  box-shadow: 10px 10px 0px var(--color-primary);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 3rem;
  background: white;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 10px 10px 0px var(--color-primary);
  border: 3px solid var(--color-text);
  transform: rotate(-1deg);
}

.pricing-table th,
.pricing-table td {
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--color-text);
}

.pricing-table th {
  background: var(--color-text);
  color: var(--color-primary);
  font-size: 1.2rem;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

footer {
  background: var(--color-text);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

footer a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: bold;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  /* Fixed by default for Desktop */
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 100;
  transition: all 0.3s ease;

  /* Transparent */
  background: transparent;
  backdrop-filter: none;
}

/* Mobile: Navbar is absolute inside Hero (scrolls away) */
@media (max-width: 768px) {
  .navbar {
    position: absolute;
    /* If inside hero, it will scroll with it */
  }

  /*
   * If the navbar is NOT inside a hero (e.g. cookie page),
   * position: absolute might place it relative to body (top:0).
   * This is fine, it will still scroll away.
   * If we wanted flow, we'd use static, but absolute top:0 is safer for overlaying headers.
   */
}

/* Scrolled State */
.navbar.scrolled {
  padding: 0.5rem 0;
  /* Shrink height */
  background: transparent;
  /* Keep transparent or subtle */
  pointer-events: none;
  /* Optional: if we want to minimize interaction, but buttons need work? no, buttons still clickable if pointer-events: auto on children. */
}

/* Re-enable pointer events on children if parent is none */
.navbar.scrolled * {
  pointer-events: auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Scrolled Container: Spread out */
.navbar.scrolled .nav-container {
  max-width: 100%;
  /* Go full width */
  padding: 0 3rem;
  /* Add side padding so they don't touch screen edges too much */
}

/* Make logo smaller when scrolled */
.navbar.scrolled .nav-logo-img {
  height: 60px;
  /* Reduced from 80px */
}

/* Adjust button when scrolled */
.navbar.scrolled .nav-cta {
  padding: 0.5rem 1rem;
  /* Smaller button */
  font-size: 0.9rem;
}

.nav-logo-img {
  height: 80px;
  /* Reduced from 96px */
  width: auto;
  transition: transform 0.2s ease;
}

.nav-logo-img:hover {
  transform: scale(1.05);
}

.bg-decoration {
  position: absolute;
  /* Lowered as requested */
  bottom: -20px;
  right: -100px;
  width: 750px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-15deg);
}

.bg-decoration-footer {
  position: absolute;
  top: -50px;
  left: -100px;
  width: 600px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  transform: rotate(15deg);
  filter: invert(1);
}



.footer-platform-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
  /* Make black icons white */
}

.nav-cta {
  background: var(--color-text);
  color: var(--color-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  background: #000;
}

/* Testimonial */
.quote-box {
  background: var(--color-primary);
  color: var(--color-text);
  padding: 3rem;
  border: 3px solid var(--color-text);
  border-radius: var(--radius-card);
  max-width: 800px;
  margin: 4rem auto;
  text-align: center;
  position: relative;
  box-shadow: 10px 10px 0px 0px #000;
  transform: rotate(-1deg);
}

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.quote-author {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quote-author-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--color-text);
  background: #fff;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Platforms Section */
.platforms-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 6rem 0;
}

.platform-card {
  flex: 1;
  padding: 2rem 1.5rem;
  /* Reduced from 3rem 2rem */
  margin: 0 1rem;
  /* Added lateral margins as requested */
  text-align: center;
  border-radius: var(--radius-card);
  border: 3px solid var(--color-text);
  transition: transform 0.3s ease;
  position: relative;
}

.platform-card:hover {
  transform: translateY(-10px) rotate(1deg);
}

.platform-desktop {
  background: #fff;
  color: var(--color-text);
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.platform-mobile {
  background: var(--color-text);
  color: #fff;
  box-shadow: 10px 10px 0px var(--color-primary);
  transform: rotate(-1deg);
  /* Slight tilt for playfulness */
}

.platform-mobile:hover {
  transform: translateY(-10px) rotate(-2deg);
}

.platform-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
  .platforms-grid {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Download Section */
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.store-btn {
  background: var(--color-text);
  color: white;
  padding: 0.75rem;
  /* Reduced from 1rem */
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
}

.store-btn:hover {
  transform: translateY(-3px);
  background: #333;
  border-color: var(--color-primary);
}

.store-icon {
  font-size: 1.5rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {

  /* Disable Scroll Snap */
  html,
  body {
    scroll-snap-type: none;
    height: auto;
    overflow-y: auto;
  }

  header.hero,
  section,
  footer {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .section-white {
    border-radius: 24px 24px 0 0;
    padding: 3rem 0;
    /* Reduced from 6rem */
  }

  .hero {
    padding: 6rem 1rem 3rem 1rem;
    min-height: auto;
  }

  .nav-logo-img {
    height: 64px;
    /* Smaller logo on mobile */
  }

  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  /* Force stack on mobile */
  .mobile-stack {
    flex-direction: column !important;
    text-align: center !important;
    gap: 3rem !important;
  }

  .mobile-stack>div {
    width: 100% !important;
    text-align: center !important;
    flex: none !important;
  }

  .mobile-stack .download-grid {
    justify-content: center !important;
  }

  /* Reduce gap in platforms grid */
  .platforms-grid {
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
  }

  .platform-card {
    margin: 0;
    padding: 2rem;
  }

  /* Pricing table horizontal scroll */
  .pricing-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 1rem;
  }

  /* Download grid responsive */
  .download-grid {
    grid-template-columns: 1fr;
    /* Stack buttons on mobile */
    max-width: 100%;
    padding: 0 1rem;
  }

  /* Contact card responsive */
  .card {
    width: 100% !important;
    /* Override inline style */
    margin: 0 !important;
    transform: none !important;
    /* Remove rotation on mobile for cleaner look */
  }

  .quote-box {
    margin-top: 2rem !important;
    transform: none !important;
    padding: 2rem 1.5rem;
  }

  /* Footer adjustments */
  .footer-platform-container {
    flex-wrap: wrap;
  }

  .bg-decoration-footer {
    width: 300px;
    left: -50px;
    top: -20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

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

/* Testimonial Chart */
.chart-container {
  max-width: 600px;
  margin: 4rem auto 0;
  padding: 0 1rem;
}

.chart-item {
  margin-bottom: 2rem;
}

.chart-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-weight: 800;
  font-size: 1.1rem;
}

.progress-bg {
  background: #f0f0f0;
  border-radius: 0;
  /* Square corners */
  height: 24px;
  overflow: hidden;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--color-text);
}

.progress-fill {
  height: 100%;
  border-radius: 0;
  /* Square corners */
  width: 0;
  /* Removed transition here to let animation handle it precisely via class */
  position: relative;
}

/* Striped animation for the fill */
.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
  background-size: 20px 20px;
  opacity: 0.3;
}

.progress-fill.fill-99 {
  width: 99%;
  background: var(--color-primary);
}

.progress-fill.fill-10 {
  width: 10%;
  background: #000;
}

.progress-fill.fill-0 {
  width: 0%;
  background: transparent;
}

/* Animation triggered by class */
.animate-chart .progress-fill.fill-99 {
  animation: expandWidth99 2s ease-out forwards;
}

.animate-chart .progress-fill.fill-10 {
  animation: expandWidth10 2s ease-out forwards;
  animation-delay: 0.5s;
}

.animate-chart .progress-fill.fill-0 {
  width: 0;
}

@keyframes expandWidth99 {
  from {
    width: 0;
  }

  to {
    width: 99%;
  }
}

@keyframes expandWidth10 {
  from {
    width: 0;
  }

  to {
    width: 10%;
  }
}

/* Documentation Steps */
.tutte-le-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  padding-left: 2rem;
}

/* Vertical line connecting steps */
.tutte-le-steps::before {
  content: '';
  position: absolute;
  left: 2.5rem;
  /* Aligned with circle center */
  top: 0;
  bottom: 0;
  width: 4px;
  background: #eee;
  z-index: 1;
}

.doc-step {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 2;
  /* Above the line */
}

.step-number {
  font-size: 2rem;
  font-weight: 900;
  background: var(--color-primary);
  color: var(--color-text);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid #fff;
  /* White border to separate from line */
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-content {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-card);
  border: 2px solid #eee;
  flex-grow: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.step-content:hover {
  transform: translateX(10px);
  border-color: var(--color-primary);
}

.step-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Mobile adjustments for Docs */
@media (max-width: 768px) {
  .tutte-le-steps::before {
    left: 1.5rem;
  }

  .doc-step {
    gap: 1rem;
    flex-direction: column;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-left: 0;
    /* Align left */
  }

  .tutte-le-steps {
    padding-left: 0;
  }

  /* Hide the line on mobile if it gets messy, or adjust alignment */
  .tutte-le-steps::before {
    display: none;
  }
}

.fixed-logo-watermark {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 90px;
  height: auto;
  opacity: 1;
  z-index: 99999;
  /* Ensure it's on top of everything */
  pointer-events: auto;
  /* Enable hover effect */
  transform: rotate(-10deg);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-sizing: content-box;
  /* Ensures padding adds to size or border-box per pref, but let's stick to simple */
}


.fixed-logo-watermark:hover {
  transform: rotate(0deg) scale(1.1);
}

.fixed-logo-bubble {
  position: fixed;
  bottom: 110px;
  /* Raised slightly to make room for shadow */
  right: 30px;
  background: white;
  color: #000;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  z-index: 100000;
  max-width: 250px;

  /* Wippo Style branding */
  border: 2px solid #000;
  box-shadow: 6px 6px 0px var(--color-primary);
  transform-origin: bottom right;

  opacity: 0;
  transform: translateY(10px) scale(0.9) rotate(-2deg);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fixed-logo-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(-2deg);
  /* Keep oblique look */
  pointer-events: auto;
}

/* Little tail for the bubble (Bordered version) */
.fixed-logo-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  /* Adjust to overlap border */
  right: 20px;
  width: 14px;
  height: 14px;
  background: white;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  box-shadow: 3px 3px 0px var(--color-primary);
  /* Shadow for the tail too! */
}


/* Sponsor Section (Cards) */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  justify-content: center;
}

.sponsor-card {
  background: #333;
  /* Dark Gray */
  border: 2px solid var(--color-text);
  border-radius: var(--radius-card);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
}

.sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px var(--color-primary);
}

.sponsor-logo-container {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.sponsor-logo-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.sponsor-card:hover .sponsor-logo-container img {
  opacity: 1;
}

.sponsor-link {
  color: #fff;
  /* White text for dark background */
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
  margin-top: auto;
}

.sponsor-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.sponsor-link .arrow {
  transition: transform 0.2s ease;
}

.sponsor-link:hover .arrow {
  transform: translateX(4px);
}

/* Time is Money Section */
.time-is-money-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.time-content-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

.time-text {
  flex: 1;
}

.time-text h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  color: var(--color-text);
  /* Unset uppercase for friendlier tone */
  text-transform: none;
  line-height: 1;
  letter-spacing: -1px;
}

.time-stat {
  font-size: 6rem;
  font-weight: 900;
  line-height: 0.9;
  margin: 1rem 0 2rem;
  color: var(--color-text);
}

.time-stat span {
  font-size: 2rem;
  display: block;
  margin-top: 0.5rem;
  color: var(--color-text-light);
  /* Keep gray or use color-primary if needed, but gray allows the number to pop */
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Time is Money Section */
.time-is-money-section {
  min-height: 100vh;
  /* Keep full height but reduce padding significantly */
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  /* Increased to 2rem */
}

.time-content-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  /* Reduced from 4rem */
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}

.time-text {
  flex: 1.2;
}

.time-text h2 {
  font-size: 2rem;
  /* Reduced from 2.5rem */
  margin-bottom: 0.5rem;
  /* Reduced from 1.5rem */
  color: var(--color-text);
  line-height: 1.1;
  text-transform: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.time-stat {
  margin: 0.5rem 0;
  /* Reduced */
  color: var(--color-text);
}

.stopwatch-container {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  /* Reduced from 2.5rem */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

#savings-counter {
  background: #000;
  color: var(--color-primary);
  padding: 0 10px;
  border-radius: 6px;
  font-family: monospace;
  font-variant-numeric: tabular-nums;
  min-width: 1.5ch;
  text-align: right;
  display: inline-block;
  line-height: 1.3;
}

.time-stat span {
  font-size: 1.2rem;
  /* Reduced */
  font-weight: 800;
  color: var(--color-text-light);
  display: block;
  margin: 0;
  letter-spacing: inherit;
}

.time-subtitle {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: 1px;
  color: var(--color-text);
  background: none;
  padding: 0;
  transform: none;
  box-shadow: none;
  display: block;
}

.time-description {
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.9;
  margin-bottom: 1rem;
  max-width: 600px;
}

.time-cta-block {
  margin-top: 1rem;
}

.time-cta-Text {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  opacity: 1;
  color: var(--color-text);
  letter-spacing: normal;
}

.time-cta-block .btn {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  min-width: 200px;
  text-align: center;
}

.time-image {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.time-image img {
  max-width: 100%;
  border-radius: 20px;
  width: 260px;
  box-shadow: none;
  transform: none;
  transition: transform 0.3s ease;
}

.time-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .time-content-wrapper {
    flex-direction: column-reverse;
    gap: 3rem;
    text-align: center;
  }

  .time-text h2 {
    font-size: 2rem;
  }

  .time-stat {
    font-size: 3.5rem;
  }

  .time-image img {
    width: 280px;
  }

  .time-description {
    margin: 0 auto 2rem;
  }
}

/* Pricing Grid Refactor */
/* Pricing Grid Refactor */
.pricing-grid {
  display: flex;
  flex-wrap: nowrap;
  /* Force horizontal layout */
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
}

.price-card {
  background: #fff;
  border: 2px solid var(--color-text);
  border-radius: var(--radius-card);
  padding: 2rem 1rem;
  flex: 1;
  /* Distribute space evenly */
  min-width: 0;
  /* Allow shrinking if needed */
  text-align: center;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: var(--color-text);
  display: block;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 6px 6px 0px var(--color-text);
}

.price-card.popular {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
  transform: scale(1.05);
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.price-card.popular:hover {
  transform: scale(1.08);
  box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.15);
}

.price-card.enterprise {
  background: var(--color-primary);
  border-color: var(--color-text);
}

.price-header {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.price-amount small {
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.7;
}

.price-detail {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-text);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 2px solid var(--color-text);
  text-transform: uppercase;
}

.price-card.popular .price-detail {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-card.popular .price-amount small {
  opacity: 0.6;
}

.price-card.popular small {
  opacity: 0.8;
}

@media (max-width: 768px) {

  /* Typography */
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  /* Navigation */
  .navbar .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  /* Time is Money Section - ZigZag stacking */
  .time-is-money-section {
    padding: 3rem 0;
    height: auto;
    /* Allow auto height on mobile if content overflows */
  }

  /* Reset all flux directions to column for stacking */
  .time-content-wrapper,
  .time-is-money-section>.container>div[style*="display: flex"] {
    flex-direction: column !important;
    /* Force stack */
    text-align: center !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
  }

  /* Ensure image is not too huge */
  .time-image img {
    width: 240px;
    max-width: 80%;
  }

  .time-text,
  .time-is-money-section .text-center {
    width: 100%;
  }

  /* Reset margins for mobile */
  .text-center {
    margin-bottom: 2rem !important;
  }

  /* Pricing Grid */
  .pricing-grid {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .price-card {
    width: 100%;
    max-width: 320px;
    margin-bottom: 1rem;
    flex: none;
  }

  .price-card.popular {
    transform: none;
    margin: 1rem 0;
  }

  /* Footer */
  .footer-platform-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}