/* ── Home Taste Ireland — hometasteireland.ie ── */

:root {
  --green: #2E5E3F;
  --green-dark: #1B3D2A;
  --green-deep: #152E20;
  --cream: #FFF8EE;
  --amber: #D4901E;
  --amber-light: #F5B740;
  --brown: #5C3D2E;
  --grey-soft: #F5F0EA;
  --text: #2C2C2C;
  --text-muted: #6B6B6B;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--amber);
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Scroll Reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navigation ── */

.site-nav {
  background: var(--green-dark);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.nav-logo span {
  color: var(--amber);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.75rem;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--amber);
}

/* ── Hero ── */

.hero {
  background: linear-gradient(165deg, var(--green-dark) 0%, var(--green) 50%, var(--green-deep) 100%);
  color: #fff;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212,144,30,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,144,30,0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}

/* Floating emojis */
.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.floater {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: 2rem;
  opacity: 0.12;
  animation: floatEmoji 8s ease-in-out infinite;
  animation-delay: var(--delay);
}
@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-18px) rotate(8deg); }
  66% { transform: translateY(10px) rotate(-5deg); }
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212,144,30,0.15);
  border: 1px solid rgba(212,144,30,0.3);
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-light);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 span {
  color: var(--amber);
}
.hero .tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(212,144,30,0.1);
}

.btn-lg {
  padding: 0.95rem 2.5rem;
  font-size: 1.05rem;
}

.hero .badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.badge-pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  transition: all 0.25s;
}
.badge-pill:hover {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Phone Mockup ── */

.hero-phone {
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s ease 0.5s both;
}
.phone-frame {
  width: 280px;
  background: #0a0a0a;
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.1),
    0 0 0 3px #1a1a1a,
    inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  transform: perspective(800px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.phone-frame:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg) scale(1.02);
}
.phone-notch {
  width: 120px;
  height: 28px;
  background: #0a0a0a;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-camera {
  width: 10px;
  height: 10px;
  background: #1a1a2e;
  border-radius: 50%;
  border: 2px solid #2a2a3e;
}
.phone-screen {
  background: #121212;
  border-radius: 26px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 16px 2px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
}
.phone-status-icons {
  display: flex;
  gap: 4px;
  font-size: 0.55rem;
}
.phone-appbar {
  background: #1B3D2A;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.phone-appbar-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
  text-align: center;
}
.phone-appbar-icon {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  cursor: default;
}
.phone-categories {
  display: flex;
  gap: 6px;
  padding: 10px 10px 6px;
  overflow: hidden;
}
.phone-chip {
  font-size: 0.6rem;
  padding: 4px 10px;
  border-radius: 20px;
  background: #2A2A2A;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.06);
}
.phone-chip-active {
  background: #2E5E3F;
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}
.phone-recipe {
  background: #2A2A2A;
  border-radius: 14px;
  padding: 10px;
  margin: 0 10px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.2s, background 0.2s;
}
.phone-recipe:hover {
  transform: scale(1.02);
  background: #333;
}
.phone-img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.phone-recipe-info {
  flex: 1;
  min-width: 0;
}
.phone-recipe-title {
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  margin-bottom: 2px;
}
.phone-recipe-meta {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
}
.phone-irish-badge {
  display: inline-block;
  font-size: 0.55rem;
  color: #D4901E;
  margin-top: 2px;
  font-weight: 600;
}
.phone-bottom-nav {
  margin-top: auto;
  background: #1A1A1A;
  display: flex;
  justify-content: space-around;
  padding: 8px 0 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.phone-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.5rem;
  color: rgba(255,255,255,0.4);
}
.phone-nav-item span:first-child {
  font-size: 0.85rem;
}
.phone-nav-active {
  color: #2E5E3F;
}
.phone-nav-active span:first-child {
  filter: none;
}

/* ── Stats Bar ── */

.stats-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.1);
}

/* ── Sections ── */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}
.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 1.1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Features Grid ── */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--amber));
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--icon-bg, #E8F5E9);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
  transition: transform 0.3s;
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-3deg);
}
.feature-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Recipe Showcase ── */

.recipe-showcase {
  background: var(--grey-soft);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.showcase-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.showcase-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.showcase-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.showcase-card:hover .showcase-img-wrap img {
  transform: scale(1.05);
}

.showcase-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}

.showcase-info {
  padding: 1.25rem;
}
.showcase-info h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
}
.showcase-info p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.showcase-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
}

/* ── Scrolling Food Marquee ── */

.food-marquee {
  overflow: hidden;
  background: var(--green-deep);
  padding: 1.5rem 0;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track img {
  width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
}
.marquee-track img:hover {
  opacity: 1;
  transform: scale(1.04);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── How It Works ── */

.how-it-works {
  background: var(--grey-soft);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.step {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.step:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}
.step p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.8rem;
  color: var(--amber);
  padding-top: 2rem;
  font-weight: 700;
}

/* ── Categories Strip ── */

.categories-strip {
  background: var(--cream);
}
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.cat-tag {
  padding: 0.5rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: all 0.25s;
  cursor: default;
}
.cat-tag:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46,94,63,0.2);
}

/* ── Quote Section ── */

.quote-section {
  text-align: center;
}

.quotes-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 220px;
}

.quote-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.quote-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.quote-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.quote-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.25;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: none;
  padding: 0;
}

.quote-dot.active {
  opacity: 1;
  transform: scale(1.3);
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--amber);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
}

.quote-text {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
}

.quote-author {
  font-weight: 700;
  color: var(--green);
  font-size: 0.95rem;
}

/* ── CTA Banner ── */

.cta-banner {
  background: linear-gradient(165deg, var(--green-dark) 0%, var(--green) 50%, var(--green-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,144,30,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-badges {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  background: var(--amber);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(212,144,30,0.3);
}
.btn-primary:hover {
  background: var(--amber-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,144,30,0.4);
}

/* ── Footer ── */

.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.55);
  padding: 3rem 2rem;
  font-size: 0.88rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--amber);
}

/* ── Legal Pages ── */

.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.legal-page h1 {
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}
.legal-page .last-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}
.legal-page h2 {
  font-size: 1.25rem;
  color: var(--green);
  margin-top: 2.25rem;
  margin-bottom: 0.6rem;
}
.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
}
.legal-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-page li {
  margin-bottom: 0.4rem;
}
.legal-page a {
  color: var(--amber);
  font-weight: 600;
}

/* ── Responsive ── */

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero .tagline {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero .badges {
    justify-content: center;
  }
  .phone-frame {
    transform: none;
    width: 250px;
  }
  .phone-frame:hover {
    transform: none;
  }
  .step-arrow {
    display: none;
  }
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 3.5rem 1.5rem 3rem;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section {
    padding: 3.5rem 1.5rem;
  }
  .stats-inner {
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-divider {
    display: none;
  }
  .nav-logo {
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .nav-links {
    gap: 0.75rem;
  }
  .nav-links a {
    font-size: 0.78rem;
  }
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(4) {
    display: none;
  }
  .site-nav {
    padding: 0 1rem;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .marquee-track img {
    width: 160px;
    height: 110px;
  }
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .quote-card {
    padding: 2rem 1.5rem;
  }
}
