/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #1E88E5;
  --primary-hover: #1976D2;
  --text: #0f172a;
  --muted: #475569;
  --surface: #ffffff;
  --surface-alt: #f7f9fc;
  --divider: rgba(2, 6, 23, 0.06);
}
body, html {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.65;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(2, 6, 23, 0.06);
}
.logo-icon { 
  height: 96px; 
  width: auto; 
  margin-right: 0.75rem;
  display: block;
}
.logo a { display: inline-flex; align-items: center; }
.wordmark {
  --brand-size: clamp(2.08rem, 4.16vw, 2.6rem);
  display: inline-flex;
  align-items: baseline;
  color: #030E15;
  text-transform: uppercase;
  line-height: 1;
}
.wordmark .brand-main {
  font-weight: 800;
  font-stretch: condensed;
  font-size: var(--brand-size);
  letter-spacing: -0.02em;
}
.wordmark .brand-tld {
  font-weight: 500;
  font-size: calc(var(--brand-size) * 0.55);
  letter-spacing: -0.01em;
  align-self: baseline;
  margin-left: 0.18em;
  transform: translateY(-0.06em);
}
.wordmark .brand-tld .dot {
  font-size: 0.9em;
  margin-right: 0.02em;
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 30px;
}
.nav-links a {
  font-size: 0.98rem;
  color: #0b1b2a;
  transition: color 0.2s;
  padding: 0.6rem 0;
  display: block;
}
.nav-links a:hover {
  color: var(--primary);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  width: 32px;
  height: 22px;
  position: relative;
  z-index: 25;
  background: transparent;
  border: 0;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 8px;
}
.hamburger span:nth-child(3) {
  top: 16px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('images/hero-image.jpg') center center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(8, 20, 36, 0.72) 0%,
    rgba(8, 20, 36, 0.58) 50%,
    rgba(8, 20, 36, 0.72) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.25rem;
  width: 100%;
  color: #ffffff;
}
.brand-mark { display: flex; justify-content: center; margin-bottom: 0.75rem; }
.brand-mark img { height: 64px; width: auto; display: block; }
.cta-button {
  background: var(--primary);
  padding: 0.75rem 1.875rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cta-button:hover {
  background: var(--primary-hover);
}

/* Sections */
.section {
  padding: 5rem 1.25rem;
  text-align: center;
}
.section { /* performance hint */
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}
.section .section-lead {
  max-width: 800px;
  margin: 0.5rem auto 1.5rem;
  color: #334155;
  text-align: justify;
}
.section { scroll-margin-top: 96px; }
.container {
  max-width: 1200px;
  margin: 0 auto;
}
h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}
p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.65;
  text-align: center;
}

/* Justify only longer-form content where it improves readability */
.section .section-lead {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* Center-align cards and lists */
.card p,
.card .list,
.card .list li,
.list,
.list li {
  text-align: center;
}

/* Features Section */
.features-section { background: var(--surface-alt); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.features-grid .card { height: 100%; display: flex; flex-direction: column; }
.features-grid .card p { margin-top: 0.25rem; margin-bottom: 0; }
.feature-item h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 0.625rem;
}
.feature-item p { font-size: clamp(0.95rem, 2vw, 1rem); color: var(--muted); }

/* How It Works Section */
.how-it-works-section { background: var(--surface); }
.how-it-works-section .container {
  max-width: 800px;
}

/* Download Section */
.download-section { background: var(--surface-alt); }
.download-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.875rem;
}
.download-button {
  background: var(--primary);
  padding: 0.75rem 1.875rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  transition: background 0.3s;
  min-width: 200px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.download-button:hover {
  background: var(--primary-hover);
}

/* Help Section */
.help-section { background: var(--surface); }
.help-section .cta-button {
  margin-top: 1.25rem;
}

/* Footer */
footer { background: var(--surface-alt); padding: 1.25rem; text-align: center; font-size: 0.95rem; color: #1f2937; }
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.625rem;
}
.footer-links a { color: #334155; transition: color 0.2s; }
.footer-links a:hover {
  color: var(--primary);
}

/* Responsive Styles */
/* Tablet */
@media screen and (max-width: 992px) {
  .navbar {
    padding: 0.6rem 1rem;
  }
  .section {
    padding: 4rem 1rem;
  }
  .logo-icon { height: 84px; }
  .wordmark { --brand-size: clamp(1.82rem, 3.9vw, 2.275rem); }
  
}

/* Mobile */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 30;
  }
  
  .hamburger span {
    background: #fff; /* Ensure visibility on hero */
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2rem 3rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 25;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 0 0 0.5rem 0;
    width: 100%;
  }
  
  .nav-links a {
    font-size: 1.15rem;
    padding: 0.85rem 0;
    display: block;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links a:hover {
    color: #1E88E5;
    padding-left: 0.5rem;
    transition: all 0.2s ease;
  }
  
  /* Ensure all buttons are thumb-friendly */
  .cta-button, .download-button {
    min-height: 48px;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
  
  /* Improve form inputs on mobile */
  input[type="email"],
  input[type="text"] {
    min-height: 48px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }
  
  /* Make FAQ questions easier to tap */
  .faq-question {
    min-height: 56px;
    padding: 1rem 0;
  }
  
  /* Improve card tap targets */
  .card, .screenshot-card {
    min-height: 44px;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  .features-grid {
    gap: 2rem;
  }
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  .download-button {
    width: 100%;
    max-width: 250px;
  }
  .logo-icon { height: 72px; }
  .wordmark { --brand-size: clamp(1.625rem, 3.38vw, 1.95rem); }
  
  .navbar {
    padding-top: 0.5rem;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .logo-icon { height: 64px; }
  .wordmark { --brand-size: 1.625rem; }
  
  .hero {
    min-height: 450px;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .cta-button, .download-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  .section {
    padding: 2.5rem 0.8rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}

/* Fix for 100vh on mobile browsers */
@media screen and (max-height: 600px) {
  .hero {
    height: auto;
    min-height: 450px;
    padding: 7rem 0 3rem;
  }
}

/* Accessibility: focus styles and skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 0.75rem;
  background: #1976d2;
  color: #fff;
  border-radius: 6px;
  z-index: 1000;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #1976d2;
  outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* Layout helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.align-middle { align-items: center; }

/* Balance text for improved rag and readability where supported */
@supports (text-wrap: balance) {
  h1, h2, h3 { text-wrap: balance; }
}

.card {
  background: #ffffff;
  border: 1px solid rgba(2, 6, 23, 0.06);
  border-radius: 12px;
  padding: 1.25rem 1.25rem;
  text-align: center;
}

.device-figure { text-align: center; }
.device-figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--divider);
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.08);
  background: #fff;
}
.device-figure figcaption { margin-top: 0.5rem; color: var(--muted); font-size: 0.9rem; }

.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: color-mix(in oklab, var(--primary) 12%, white);
  color: #0b3860;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.list {
  text-align: center;
  margin: 1rem 0 0 0;
  padding-left: 0;
  list-style-position: inside;
}
.list li { margin: 0.4rem 0; color: #334155; }

.muted { color: #64748b; }

/* FAQ Accordion Styles */
.faq-container .faq-item {
  border-bottom: 1px solid var(--divider);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  text-align: center;
}

/* Screenshot Grid Styles */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

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

.screenshot-frame {
  background: #fff;
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(2, 6, 23, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

.screenshot-placeholder {
  border-radius: 14px;
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* When actual screenshots are added, use this instead */
.screenshot-frame img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

@media (max-width: 768px) {
  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Pro Forever Modal */
.pro-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pro-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pro-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
}

.pro-modal-close:hover {
  color: #1E88E5;
}

.pro-modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pro-modal-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.pro-modal-highlight {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1E88E5;
  margin-bottom: 1rem;
}

.pro-modal-description {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.pro-modal-cta {
  display: inline-block;
  background: #1E88E5;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pro-modal-cta:hover {
  background: #1976D2;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4);
}

.pro-modal-fine-print {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}

@media (max-width: 768px) {
  .pro-modal-content {
    padding: 2rem 1.5rem;
  }
  
  .pro-modal-content h2 {
    font-size: 1.5rem;
  }
  
  .pro-modal-highlight {
    font-size: 1.1rem;
  }
}

/* Hero Section Enhanced Styles */
.hero-icon-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.hero-trust-row {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.85rem, 1.8vw, 0.98rem);
  font-weight: 500;
}

.trust-item svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.hero-cta-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.cta-primary {
  background: var(--primary);
  color: #ffffff;
}

.cta-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 136, 229, 0.4);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-trust-row {
    gap: 1rem;
    font-size: 0.85rem;
  }
  
  .trust-item svg {
    width: 18px;
    height: 18px;
  }
  
  .hero-cta-container {
    flex-direction: column;
    max-width: 100%;
  }
  
  .hero-cta-container .cta-button {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}

/* Pro Forever Banner */
.pro-forever-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem auto 3rem;
  max-width: 700px;
  color: white;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.pro-banner-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.pro-banner-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  color: white;
}

.pro-banner-content p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.95;
}

/* Platform Badges */
.platform-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.platform-badge-link {
  text-decoration: none;
  color: inherit;
  flex: 0 0 300px;
  width: 300px;
}

.platform-badge {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 120px;
  width: 100%;
  box-sizing: border-box;
}

.platform-badge:hover {
  border-color: #1E88E5;
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(30, 136, 229, 0.2);
}

.platform-badge svg {
  color: #1E88E5;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.platform-badge > div {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.platform-badge-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.platform-badge-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .pro-forever-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .platform-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .platform-badge-link {
    width: 100%;
    max-width: 320px;
  }
}

/* Pro Forever Callout on Download Pages */
.pro-forever-callout {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pro-callout-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.pro-forever-callout h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
  color: white;
}

.pro-forever-callout p {
  margin: 0;
  opacity: 0.95;
  font-size: 0.95rem;
}

/* Enhanced focus indicators for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid #1E88E5;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Ensure sufficient color contrast */
.muted {
  color: #64748b; /* WCAG AA compliant */
}

/* Improve link visibility */
a:not(.cta-button):not(.download-button):not(.platform-badge-link) {
  position: relative;
}

a:not(.cta-button):not(.download-button):not(.platform-badge-link):hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

/* Consistent section spacing */
.section {
  padding: clamp(3rem, 8vw, 5rem) 1.25rem;
}

/* Consistent heading sizes */
h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* Consistent card styling */
.card, .testimonial-card, .screenshot-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Consistent button styling */
.cta-button, .download-button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}