:root {
  --color-black: #000000;
  --color-gold: #f3c300;
  --color-white: #ffffff;
  --color-dark-grey: #1a1a1a;
  --color-light-grey: #333333;
  --color-red-error: #ff5c5c;
  --font-primary: "Roboto", sans-serif;
  --font-display: "Orbitron", sans-serif;
  --transition-speed: 0.3s ease;
  --header-height: 55px; 
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.5; 
  overflow-x: hidden;
}

main {
  display: block; 
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 10px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-gold);
  margin-bottom: 8px; 
  line-height: 1.15; 
}

h1 {
  font-size: 1.7rem; 
  text-align: center;
}
h2 {
  font-size: 1.5rem; 
}
h3 {
  font-size: 1.3rem; 
}
h4 {
  font-size: 1.1rem; 
  color: var(--color-white); 
}

p {
  margin-bottom: 8px; 
  color: #e0e0e0;
  font-size: 0.9rem; 
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition-speed);
}
a:hover {
  color: var(--color-white);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible,
audio:focus-visible,
video:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 1px; 
  box-shadow: 0 0 0 1px var(--color-dark-grey);
}

.btn {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-black);
  padding: 10px 20px; 
  border-radius: 30px; 
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--font-display);
  letter-spacing: 0.5px; 
  transition: background-color var(--transition-speed),
    color var(--transition-speed), transform var(--transition-speed);
  border: 1px solid var(--color-gold); 
  cursor: pointer;
  font-size: 0.9rem; 
}
.btn:hover {
  background-color: var(--color-black);
  color: var(--color-gold);
  transform: translateY(-1px); 
}
.btn-secondary { /* Used for mobile nav CTA */
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold); 
}
.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
}
/* NEW: Primary button style for desktop header CTA */
.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-black);
  border: 1px solid var(--color-gold);
}
.btn-primary:hover {
  background-color: var(--color-black); /* Or a slightly darker gold */
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-large {
  padding: 12px 25px; 
  font-size: 0.95rem; 
}

header {
  background-color: var(--color-dark-grey);
  padding: 0 10px; 
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}
nav {
  display: flex;
  justify-content: space-between; /* This distributes Logo, Links, CTA */
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  min-height: var(--header-height);
}
.logo {
  font-family: var(--font-display);
  font-size: 1.2rem; 
  color: var(--color-gold);
  display: flex;
  align-items: center;
  padding: 8px 0; 
}
.logo img { 
  height: 28px; 
  margin-right: 6px; 
}

nav ul#navLinks {
  list-style: none;
  display: none; 
  flex-direction: column;
  position: absolute;
  top: var(--header-height); 
  left: 0;
  width: 100%;
  background-color: var(--color-dark-grey);
  padding: 8px 0; 
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--color-black);
  z-index: 999;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}
nav ul#navLinks.active {
  display: flex;
}
nav ul#navLinks li {
  margin: 0;
  width: 100%;
}
nav ul#navLinks li a {
  display: block;
  padding: 10px 15px; 
  text-align: center;
  border-bottom: 1px solid var(--color-light-grey);
  font-size: 0.85rem; 
  color: var(--color-white);
  font-weight: bold;
}
nav ul#navLinks li:last-child a {
  border-bottom: none;
}
nav ul#navLinks li a.btn.nav-cta-mobile { /* Renamed class for clarity */
  margin: 10px auto; 
  display: inline-block;
  width: auto;
  padding: 8px 18px; 
}
.header-cta-desktop { /* NEW: Desktop header CTA */
  display: none; /* Hidden by default, shown on larger screens */
  margin-left: auto; /* Pushes to the right before menu toggle on mobile if navLinks not full width */
  margin-right: 15px;
}

.menu-toggle {
  display: block; 
  font-size: 1.7rem; 
  color: var(--color-gold);
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px; 
  margin-left: 10px; /* Space from desktop CTA if it were visible */
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
    url("media/hero-background.jpg") no-repeat center center/cover;
  min-height: auto; 
  display: flex;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;
  text-align: center;
  position: relative;
  padding: 20px 0; 
}
.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-size: 1.8rem; 
  margin-bottom: 10px; 
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero p {
  font-size: 0.95rem; 
  margin-bottom: 15px; 
  max-width: 550px; 
  margin-left: auto;
  margin-right: auto;
}
.hero .tagline {
  font-size: 0.9rem; 
  font-weight: bold;
  color: var(--color-gold);
  margin-top: 10px; 
  display: block;
}
.hero .btn {
    margin-top: 15px; 
}

.hero-video-container {
  width: 100%;
  max-width: 500px; 
  margin: 10px auto; 
  aspect-ratio: 16/9;
  border-radius: 8px; 
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
/* video element itself is now handled by .video-thumbnail-styles */

.video-container-custom {
  position: relative;
  display: block; 
  background-color: var(--color-light-grey); 
  overflow: hidden; 
  border-radius: inherit; /* Inherit border-radius for canvas and video */
}
.video-container-custom .lazy-video { /* Target the video element specifically */
  display: block;
  width: 100%;
  height: 100%; /* Ensure video fills container for aspect ratio */
  object-fit: cover;
  position: relative; /* For z-indexing if needed, though canvas usually covers */
  z-index: 0; /* Behind canvas and overlay initially */
}
.video-thumbnail-canvas { /* Style for the generated canvas */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* Above video, below overlay */
  background-color: #111; /* Fallback background before canvas draws */
}

.product-showcase-video-wrapper {
  width: 100%;
  max-width: 640px; 
  margin: 10px auto 0; 
  border-radius: 8px; 
  box-shadow: 0 0 10px var(--color-gold);
}
.product-showcase-video-wrapper .lazy-video { /* Target video */
  aspect-ratio: 16/9;
  object-fit: cover;
}

.feature-video-wrapper,
.how-it-works-video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 6px; 
  margin-bottom: 8px; 
  border-radius: 6px; 
}
.feature-video-wrapper .lazy-video, /* Target video */
.how-it-works-video-wrapper .lazy-video { /* Target video */
    object-fit: cover;
    height: 100%;
}

.play-overlay-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; 
  height: 50px; 
  background-color: rgba(0, 0, 0, 0.55); 
  border: 1px solid var(--color-gold); 
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 2; /* On top of video and canvas thumbnail */
  padding: 0; 
}
.play-overlay-button:hover {
  background-color: rgba(0, 0, 0, 0.7); 
  transform: translate(-50%, -50%) scale(1.05); 
}
.play-overlay-button.hidden {
  display: none;
}
.play-icon-svg {
  width: 45%; 
  height: 45%; 
  fill: var(--color-gold);
}
.feature-video-wrapper .play-overlay-button,
.how-it-works-video-wrapper .play-overlay-button {
    width: 36px; 
    height: 36px; 
}

.section {
  padding: 20px 0; 
}
.section-dark {
  background-color: var(--color-dark-grey);
}
.section-black {
  background-color: var(--color-black);
}

.grid {
  display: grid;
  gap: 10px; 
  grid-template-columns: 1fr; 
}
.grid-cols-2 {
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(100%, 260px), 1fr)
  );
}
.grid-cols-3 {
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(100%, 240px), 1fr)
  );
}
.grid-cols-4 {
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(100%, 200px), 1fr)
  );
}

.feature-card,
.benefit-card,
.pricing-card,
.use-case-card {
  background-color: var(--color-light-grey);
  padding: 12px; 
  border-radius: 8px; 
  border-left: 4px solid var(--color-gold); 
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25); 
  transition: transform var(--transition-speed),
    box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
}
.feature-card:hover,
.benefit-card:hover,
.pricing-card:hover,
.use-case-card:hover {
  transform: translateY(-3px); 
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); 
}
.use-case-card .icon {
  width: 36px; 
  height: 36px; 
  margin-bottom: 6px; 
  object-fit: contain;
  filter: invert(87%) sepia(53%) saturate(2300%) hue-rotate(328deg)
    brightness(100%) contrast(97%);
}
img[src$="Business%20Owners.png"], img[src$="Social%20Media.png"] { /* Handle spaces in filenames if any */
    /* No specific styles needed if default icon style is fine */
}


.video-wrapper { /* This class is used for the emotional evolution video */
  width: 100%;
  max-width: 640px; 
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16/9;
  background-color: var(--color-light-grey);
  border-radius: 8px; 
  overflow: hidden; /* Important for video container custom behavior */
}
/* .video-wrapper video style is covered by .video-container-custom .lazy-video */

.text-center {
  text-align: center;
}
.mb-large-override {
  margin-bottom: 15px !important; 
} 
.mt-20 {
  margin-top: 10px;
} 
.mt-30 {
  margin-top: 15px;
} 
.mt-40 {
  margin-top: 20px;
} 
.mt-50 {
  margin-top: 20px; 
} 
.mb-30 {
  margin-bottom: 15px;
} 
.mb-50 {
  margin-bottom: 20px; 
} 

.emotional-voices-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px; 
  justify-content: center;
}
.emotion-tag {
  background-color: var(--color-gold);
  color: var(--color-black);
  padding: 5px 10px; 
  border-radius: 15px; 
  font-size: 0.8rem; 
  font-weight: bold;
  transition: transform var(--transition-speed),
    background-color var(--transition-speed);
}
.emotion-tag:hover {
  transform: scale(1.05);
  background-color: var(--color-white);
}

.voice-note-showcase .voice-notes-grid {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 8px; 
}

.voice-note-card {
  background-color: var(--color-light-grey); 
  border-radius: 10px; 
  padding: 8px 10px; 
  display: flex;
  align-items: center;
  gap: 8px; 
  box-shadow: 0 1px 3px rgba(0,0,0,0.2); 
}
.voice-note-play-pause {
  background: var(--color-gold);
  border: none;
  border-radius: 50%;
  width: 32px; 
  height: 32px; 
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-black);
}
.voice-note-play-pause .play-icon-svg,
.voice-note-play-pause .pause-icon-svg {
  width: 16px; 
  height: 16px; 
  fill: currentColor;
}
.voice-note-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-width: 0; 
}
.voice-note-name {
  font-weight: bold;
  color: var(--color-white);
  font-size: 0.85rem; 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.voice-note-emotion {
  font-size: 0.7rem; 
  color: #b0b0b0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.voice-note-progress-container {
  flex-grow: 1; 
  height: 4px; 
  background-color: var(--color-dark-grey); 
  border-radius: 2px; 
  overflow: hidden;
  margin: 0 6px; 
  cursor: pointer; 
}
.voice-note-progress {
  width: 0%;
  height: 100%;
  background-color: var(--color-gold);
  border-radius: 2px; 
}
.voice-note-time {
  font-size: 0.7rem; 
  color: #b0b0b0;
  white-space: nowrap;
}

.language-list {
  column-count: 1; 
  column-gap: 15px; 
  font-size: 0.85rem; 
  max-height: 250px; 
  overflow-y: auto;
  padding: 10px; 
  background-color: var(--color-light-grey);
  border-radius: 4px; 
  border-left: 2px solid var(--color-gold); 
  word-break: break-word; 
}
.language-list strong {
  color: var(--color-gold);
  display: block;
  margin-top: 8px; 
  margin-bottom: 4px; 
}
.language-list .note-in-list {
  display: block;
  margin-top: 8px; 
  font-style: italic;
  font-size: 0.8rem; 
}
.language-list::-webkit-scrollbar {
  width: 6px; 
}
.language-list::-webkit-scrollbar-track {
  background: var(--color-dark-grey);
  border-radius: 3px; 
}
.language-list::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px; 
}

.pricing-card {
  text-align: center;
  border-top: 4px solid var(--color-gold); 
  border-left: none;
  margin-bottom: 10px; 
}
.pricing-card:last-child {
  margin-bottom: 0;
}
.pricing-card.popular {
  transform: scale(1); 
  box-shadow: 0 5px 15px rgba(var(--color-gold), 0.25); 
}
.pricing-card h3 {
  font-size: 1.4rem; 
}
.pricing-card .price {
  font-size: 2rem; 
  font-family: var(--font-display);
  color: var(--color-gold);
  margin: 6px 0; 
}
.pricing-card .price span {
  font-size: 0.85rem; 
  color: var(--color-white);
}
.pricing-card ul {
  list-style: none;
  margin: 10px 0; 
  padding-left: 0;
  text-align: left;
  flex-grow: 1;
}
.pricing-card ul li {
  margin-bottom: 6px; 
  padding-left: 18px; 
  position: relative;
  font-size: 0.85rem; 
}
.pricing-card ul li::before {
  content: "✓";
  color: var(--color-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1em; 
}
.pricing-card .popular-badge {
  background: var(--color-gold);
  color: var(--color-black);
  padding: 4px 8px; 
  border-radius: 4px; 
  font-weight: bold;
  display: inline-block;
  margin-bottom: 6px; 
  font-size: 0.8rem; 
}
.pricing-card .subtext {
  font-size: 0.8rem; 
  margin-top: 6px; 
}
.pricing-card .btn {
  margin-top: auto; 
}

.faq-item { 
  background-color: var(--color-light-grey); 
  border-radius: 6px; 
  margin-bottom: 8px; 
  border-left: 4px solid var(--color-gold); 
  overflow: hidden; 
}
.faq-item summary {
  font-weight: bold;
  font-family: var(--font-display);
  color: var(--color-gold);
  cursor: pointer;
  padding: 10px 12px; 
  background-color: var(--color-light-grey); 
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; 
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after { 
  content: "+";
  font-size: 1.2rem; 
  transition: transform var(--transition-speed);
  color: var(--color-gold);
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .faq-content {
  padding: 10px 12px; 
  background-color: var(--color-light-grey); 
}

.value-comparison-card ul {
  list-style: disc;
  padding-left: 18px; 
  margin: 10px 0; 
}
.value-comparison-card .cost-text {
  font-weight: bold;
  font-size: 1.1rem; 
  text-align: center;
  margin-top: 12px; 
}
.old-way { border-left-color: var(--color-red-error); }
.new-way { border-left-color: var(--color-gold); }

.bonus-image,
.final-cta-image {
  max-width: 100%; 
  width: 100%; 
  max-width: 360px; 
  aspect-ratio: 16/9;
  margin: 10px auto; 
  border-radius: 8px; 
  background-color: var(--color-light-grey); 
  object-fit: cover;
}
.final-cta-image {
    max-width: 300px; 
    aspect-ratio: 350 / 197; 
}
.guarantee-seal {
  height: 60px; 
  width: auto;
  margin: 0 auto 6px auto; 
}

/* --- NEW/MODIFIED FOOTER STYLES --- */
footer {
  background-color: var(--color-dark-grey);
  color: #ccc;
  padding: 30px 0 15px; /* Increased top padding */
  text-align: center;
  font-size: 0.9rem;
}
.footer .container { /* For potential nested container use */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* Space between footer sections */
}
.footer-logo-container {
  margin-bottom: 10px;
}
.footer-main-logo {
  height: 35px; /* Slightly larger logo */
  width: auto;
  /* Removed content:url fallback, assuming media/Logo.png exists */
}
.footer-brand-statement {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-links-section,
.footer-social-section {
  margin-bottom: 20px;
}
.footer-links-section h4,
.footer-social-section h4 {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-site-links,
.footer-social-links {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px; /* row-gap column-gap */
}
.footer-site-links li a,
.footer-social-links li a {
  color: #bbb;
  font-size: 0.9rem;
}
.footer-site-links li a:hover,
.footer-social-links li a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}
.footer-social-links i { /* For Font Awesome or similar */
  margin-right: 5px;
  color: var(--color-gold); /* Color the icon part */
}

.footer-copyright {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--color-light-grey);
  width: 100%;
  font-size: 0.85rem;
}
.footer-copyright p {
  margin-bottom: 5px;
}
.footer-copyright .made-with {
  font-size: 0.9em;
}

.footer-disclaimer {
  font-size: 0.75rem; 
  color: #888;
  margin-top: 15px; 
  max-width: 550px; 
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}
/* --- END FOOTER STYLES --- */


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .btn:hover,
  .feature-card:hover,
  .benefit-card:hover,
  .pricing-card:hover,
  .use-case-card:hover,
  .emotion-tag:hover,
  .play-overlay-button:hover {
    transform: none !important; 
  }
   .faq-item[open] summary::after {
    transform: rotate(45deg); 
  }
}

@media (min-width: 600px) {
  .container {
    padding: 15px 15px; 
  }
  .section {
    padding: 25px 0; 
  }
  h1 { font-size: 2rem; } 
  h2 { font-size: 1.7rem; } 
  h3 { font-size: 1.5rem; } 
  h4 { font-size: 1.2rem; } /* Slightly adjusted from 1.3 */
  p { font-size: 0.95rem; } 

  .hero { padding: 25px 0; } 
  .hero h1 { font-size: 2.2rem; } 
  .hero p { font-size: 1rem; } 
  .hero .tagline { font-size: 1rem; } 
  .hero-video-container { max-width: 580px; margin: 15px auto; } 

  .btn { padding: 10px 22px; font-size: 0.95rem;} 
  .btn-large { padding: 14px 28px; font-size: 1rem; } 

  .language-list { column-count: 2; max-height: 280px; } 
  
  .pricing-card.popular { transform: scale(1.02); } 

  .value-comparison-card .cost-text { font-size: 1.2rem; } 
  .pricing-card h3 { font-size: 1.6rem; } 
  .pricing-card .price { font-size: 2.2rem; } 
  .pricing-card ul li { font-size: 0.9rem; } 
  .faq-item { margin-bottom: 10px; } 
  .faq-item summary { padding: 12px 18px; } 

  .mb-large-override { margin-bottom: 20px !important; } 
  .mt-50 { margin-top: 25px; } 
  .mb-50 { margin-bottom: 25px; } 

  .voice-note-showcase .voice-notes-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  }

  .footer-links-section,
  .footer-social-section {
      width: 45%; /* For side-by-side layout */
      display: inline-block;
      vertical-align: top;
      margin-bottom: 10px;
  }
   .footer-site-links, .footer-social-links {
    justify-content: flex-start; /* Align links to the left in their containers */
    text-align: left;
  }
}

@media (min-width: 769px) {
  :root { --header-height: 60px; } 
  .logo { font-size: 1.3rem; } 
  .logo img { height: 30px; } 

  header { padding: 0 15px; } 
  nav ul#navLinks { /* Desktop navigation appears */
    display: flex;
    position: static;
    flex-direction: row;
    width: auto;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    border-top: none;
    overflow-y: visible;
    align-items: center;
  }
  nav ul#navLinks li { 
    margin: 0 0 0 18px; 
    width: auto;
  } 
  nav ul#navLinks li a { 
    font-size: 0.8rem; 
    border-bottom: none;
    padding: 5px 8px; /* Smaller padding for desktop nav items */
  } 
  nav ul#navLinks li a.btn.nav-cta-mobile {
    display: none; /* Hide mobile Get Started in nav */
  }

  .menu-toggle { display: none; }
  .header-cta-desktop { display: inline-block; margin-left: 20px; } /* Show desktop CTA */


  .section { padding: 30px 0; } 
  .container { padding: 20px 15px; } 

  h1 { font-size: 2.2rem; }  
  h2 { font-size: 1.9rem; }  
  h3 { font-size: 1.6rem; }  
  h4 { font-size: 1.3rem; }  /* Adjusted */

  .hero { padding: 30px 0; } 
  .hero h1 { font-size: 2.5rem;  } 
  .hero p { font-size: 1.1rem; max-width: 650px; } 
  .hero-video-container { max-width: 640px; } 

  .grid { gap: 15px; } 
  .grid-cols-2 { grid-template-columns: repeat(2, 1fr); } /* Enforce 2 columns */
  .grid-cols-3 { grid-template-columns: repeat(3, 1fr); } /* Enforce 3 columns */
  .grid-cols-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); } 

  .feature-card,
  .benefit-card,
  .pricing-card,
  .use-case-card {
    padding: 15px; 
  }
  .footer-content-wrapper { /* Optional wrapper for better control */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-logo-container { width: 100%; margin-bottom: 15px; } /* Full width for logo */
  .footer-brand-statement { width: 100%; margin-bottom: 20px; }
  .footer-links-section { width: calc(50% - 20px); margin-bottom: 0; } /* Adjust width for spacing */
  .footer-social-section { width: calc(50% - 20px); margin-bottom: 0; }
  .footer-copyright, .footer-disclaimer { width: 100%; margin-top: 20px; }

}

@media (min-width: 1201px) {
  :root { --header-height: 65px; } 
  .container { max-width: 1100px; padding: 25px 20px; } 
  h1 { font-size: 2.5rem;  } 
  h2 { font-size: 2.1rem;  } 
  h3 { font-size: 1.8rem;  } 
  p { font-size: 1rem; } 

  .hero { padding: 35px 0;} 
  .hero h1 { font-size: 3rem; } 
  .hero p { font-size: 1.2rem; max-width: 750px; } 
  .hero .btn { padding: 12px 25px; font-size: 1rem; } 
  .hero-video-container { max-width: 720px; margin: 20px auto; } 

  .section { padding: 35px 0; } 
  .mb-large-override { margin-bottom: 30px !important; } 
  .language-list { column-count: 3; max-height: 300px; } 
}

@media (min-width: 1440px) {
  .container { max-width: 1200px; padding: 30px 20px; } 
  .section { padding: 40px 0; } 
  h1 { font-size: 2.8rem; } 
  h2 { font-size: 2.3rem; } 
  .hero h1 { font-size: 3.5rem; } 
  .hero p { font-size: 1.3rem; } 
  .hero-video-container { max-width: 800px; } 
}

@media (min-width: 1920px) {
  .container { max-width: 1350px; padding: 35px 20px; } 
  h1 { font-size: 3rem; } 
  h2 { font-size: 2.5rem; } 
  .hero h1 { font-size: 3.8rem; } 
  .hero p { font-size: 1.4rem; max-width: 850px; } 
  .hero-video-container { max-width: 880px; } 
  .section { padding: 45px 0; } 
}