/* ============================================================
   GardenHarvest — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --c-green-900: #1B4332;
  --c-green-800: #2D6A4F;
  --c-green-700: #40916C;
  --c-green-600: #52B788;
  --c-green-400: #95D5B2;
  --c-green-200: #D8F3DC;
  --c-green-100: #ECFAEE;

  --c-earth: #7A4F3A;
  --c-gold: #D4A247;

  --c-bg:      #F7FAF7;
  --c-bg-alt:  #EEF5F0;
  --c-text:    #1A2E24;
  --c-muted:   #4F6B5D;
  --c-white:   #FFFFFF;
  --c-border:  rgba(45, 106, 79, 0.12);

  --shadow-xs: 0 1px 4px rgba(27, 67, 50, 0.07);
  --shadow-sm: 0 2px 10px rgba(27, 67, 50, 0.09);
  --shadow-md: 0 4px 24px rgba(27, 67, 50, 0.13);
  --shadow-lg: 0 10px 48px rgba(27, 67, 50, 0.18);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-pill: 9999px;

  --dur: 0.22s;
  --ease: ease;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  font-size: 16px;
}

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

a {
  color: var(--c-green-700);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--c-green-900); }

ul { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 250, 247, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--c-border);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--c-green-900);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  transition: opacity var(--dur);
}
.nav-brand:hover { opacity: 0.8; color: var(--c-green-900); }

.nav-brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

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

.nav-menu a {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--dur);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-green-600);
  border-radius: 1px;
  transition: width var(--dur);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--c-green-800);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--c-green-800);
  border-radius: 2px;
  display: block;
  transition: transform var(--dur), opacity var(--dur);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — INDEX PAGE
   ============================================================ */
.hero {
  background: linear-gradient(145deg, var(--c-green-900) 0%, var(--c-green-800) 55%, var(--c-green-700) 100%);
  padding: 88px 0 76px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 85%, rgba(82, 183, 136, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(149, 213, 178, 0.10) 0%, transparent 55%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 183, 136, 0.18);
  border: 1px solid rgba(149, 213, 178, 0.28);
  color: var(--c-green-400);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-app-icon {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  margin-bottom: 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--c-white);
  margin-bottom: 18px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 430px;
  line-height: 1.72;
  margin-bottom: 36px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* iPhone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.iphone-wrap {
  position: relative;
}

.iphone-body {
  background: #1C1C1E;
  border-radius: 52px;
  padding: 14px 12px;
  position: relative;
  box-shadow:
    inset 0 0 0 1.5px #38383A,
    0 0 0 1px #2A2A2C,
    0 32px 88px rgba(0, 0, 0, 0.6),
    0 8px 24px rgba(0, 0, 0, 0.3);
}
/* Dynamic island */
.iphone-body::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 28px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}
.iphone-screen {
  border-radius: 40px;
  overflow: hidden;
  width: 220px;
  position: relative;
}
.iphone-screen img {
  width: 100%;
  display: block;
}
/* Side buttons */
.iphone-btn-right {
  position: absolute; right: -3.5px; top: 100px;
  width: 3.5px; height: 52px;
  background: #3A3A3C; border-radius: 0 2px 2px 0;
}
.iphone-btn-l1 {
  position: absolute; left: -3.5px; top: 75px;
  width: 3.5px; height: 30px;
  background: #3A3A3C; border-radius: 2px 0 0 2px;
}
.iphone-btn-l2 {
  position: absolute; left: -3.5px; top: 118px;
  width: 3.5px; height: 60px;
  background: #3A3A3C; border-radius: 2px 0 0 2px;
}
.iphone-btn-l3 {
  position: absolute; left: -3.5px; top: 190px;
  width: 3.5px; height: 60px;
  background: #3A3A3C; border-radius: 2px 0 0 2px;
}

/* App Store Badge */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--c-white);
  color: var(--c-text);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  transition: transform var(--dur), box-shadow var(--dur);
  border: none;
  cursor: default;
}
.appstore-badge .badge-apple {
  font-size: 1.4rem;
  line-height: 1;
}
.appstore-badge .badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.appstore-badge .badge-text small {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--c-muted);
  letter-spacing: 0.03em;
}
.appstore-badge .badge-text strong {
  font-size: 1rem;
  color: var(--c-green-900);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-white);
  color: var(--c-green-900);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform var(--dur), box-shadow var(--dur);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.26);
  color: var(--c-green-900);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.88);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.32);
  transition: all var(--dur);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--c-white);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-green-800);
  color: var(--c-white);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background var(--dur), transform var(--dur);
}
.btn-green:hover {
  background: var(--c-green-900);
  color: var(--c-white);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--c-green-200);
  color: var(--c-green-800);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(--dur);
}
.btn-ghost:hover {
  border-color: var(--c-green-600);
  background: var(--c-green-100);
  color: var(--c-green-900);
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  color: var(--c-green-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  color: var(--c-green-900);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--c-muted);
  font-size: 1.02rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.72;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
  padding: 104px 0;
  background: var(--c-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--c-bg);
  border: 1.5px solid var(--c-green-200);
  border-radius: var(--radius-md);
  padding: 34px 22px;
  text-align: center;
  transition: transform var(--dur), box-shadow var(--dur), border-color var(--dur);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-green-400);
}

.feature-emoji {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--c-green-900);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.65;
}

/* ============================================================
   SCREENSHOTS SECTION
   ============================================================ */
.screenshots-section {
  padding: 104px 0;
  background: var(--c-bg-alt);
}

.screenshots-outer {
  position: relative;
  margin-top: 8px;
}
.screenshots-outer::before,
.screenshots-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}
.screenshots-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--c-bg-alt), transparent);
}
.screenshots-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--c-bg-alt), transparent);
}

.screenshots-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 28px 80px 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--c-green-400) var(--c-green-100);
}
.screenshots-track::-webkit-scrollbar { height: 4px; }
.screenshots-track::-webkit-scrollbar-track {
  background: var(--c-green-100);
  border-radius: 2px;
}
.screenshots-track::-webkit-scrollbar-thumb {
  background: var(--c-green-400);
  border-radius: 2px;
}

.ss-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.ss-phone {
  background: #1C1C1E;
  border-radius: 38px;
  padding: 11px 9px;
  position: relative;
  box-shadow:
    inset 0 0 0 1.5px #3A3A3C,
    0 0 0 1px #2C2C2E,
    0 18px 52px rgba(0,0,0,0.42);
}
.ss-phone::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 23px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
}
.ss-phone img {
  border-radius: 30px;
  width: 188px;
  height: auto;
  display: block;
}

.ss-caption {
  font-size: 0.8rem;
  color: var(--c-muted);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
}

.screenshots-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-green-600);
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 104px 0;
  background: var(--c-white);
}

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

.about-label {
  display: inline-block;
  color: var(--c-green-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.6vw, 2.4rem);
  color: var(--c-green-900);
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-text p {
  color: var(--c-muted);
  line-height: 1.78;
  margin-bottom: 14px;
  font-size: 0.98rem;
}

.about-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.about-phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mini-phone {
  background: #1C1C1E;
  border-radius: 26px;
  padding: 8px 7px;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur);
}
.mini-phone:hover { transform: translateY(-4px); }
.mini-phone::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 17px;
  background: #000;
  border-radius: 9px;
  z-index: 2;
}
.mini-phone img {
  border-radius: 20px;
  width: 100%;
  display: block;
}
.mini-phone.offset {
  margin-top: 30px;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-green-900);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--c-white);
  margin-bottom: 12px;
}
.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  max-width: 280px;
  line-height: 1.65;
}

.footer-nav h4 {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--dur);
}
.footer-nav a:hover { color: var(--c-green-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  color: rgba(255,255,255,0.28);
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: rgba(255,255,255,0.32);
  font-size: 0.8rem;
  transition: color var(--dur);
}
.footer-legal a:hover { color: var(--c-green-400); }

/* ============================================================
   PAGE HERO — SUPPORT / PRIVACY
   ============================================================ */
.page-hero {
  background: linear-gradient(145deg, var(--c-green-900) 0%, var(--c-green-700) 100%);
  padding: 68px 0 58px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 75% 25%, rgba(149,213,178,0.09) 0%, transparent 60%);
}

.page-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.page-hero-icon {
  width: 74px;
  height: 74px;
  border-radius: 17px;
  margin-bottom: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--c-white);
  line-height: 1.1;
}

.page-hero .page-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 440px;
}

/* ============================================================
   CONTENT PAGES — SUPPORT / PRIVACY
   ============================================================ */
.content-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}

.content-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 38px 48px;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(45,106,79,0.07);
  margin-bottom: 20px;
}

.content-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--c-green-900);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--c-green-200);
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-card-title .card-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.content-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--c-green-800);
  margin: 20px 0 8px;
}

.content-card p {
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 10px;
  font-size: 0.97rem;
}
.content-card p:last-child { margin-bottom: 0; }

.content-card ul {
  margin: 8px 0 10px;
}
.content-card ul li {
  color: var(--c-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  padding: 5px 0 5px 26px;
  position: relative;
}
.content-card ul li::before {
  content: '▸';
  color: var(--c-green-600);
  position: absolute;
  left: 8px;
  top: 5px;
  font-size: 0.78rem;
}

/* Contact block inside card */
.contact-block {
  background: var(--c-green-100);
  border: 1.5px solid var(--c-green-200);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-top: 16px;
}
.contact-block p {
  font-size: 0.94rem;
  margin-bottom: 14px !important;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-green-800);
  color: var(--c-white) !important;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--dur), transform var(--dur);
}
.contact-link:hover {
  background: var(--c-green-900);
  color: var(--c-white) !important;
  transform: translateY(-1px);
}

/* Info grid (bug report fields) */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.info-item {
  background: var(--c-bg);
  border: 1px solid var(--c-green-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.info-item strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-green-700);
  margin-bottom: 3px;
}
.info-item span {
  font-size: 0.9rem;
  color: var(--c-muted);
}

/* Effective date badge */
.effective-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(82, 183, 136, 0.18);
  border: 1px solid rgba(149, 213, 178, 0.3);
  color: var(--c-green-400);
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-top: 4px;
}

/* ============================================================
   ANIMATE-IN — INTERSECTION OBSERVER
   ============================================================ */
.animate-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 { transition-delay: 0.08s; }
.anim-delay-2 { transition-delay: 0.16s; }
.anim-delay-3 { transition-delay: 0.24s; }
.anim-delay-4 { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about-phones {
    max-width: 360px;
    margin: 0 auto;
  }
}

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

@media (max-width: 768px) {
  .hero {
    padding: 60px 0 52px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-pills { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .iphone-body { transform: scale(0.8); transform-origin: center bottom; }

  /* Mobile nav */
  .nav-menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(247, 250, 247, 0.97);
    backdrop-filter: blur(18px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--c-green-200);
    padding: 6px 0;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a {
    padding: 15px 24px;
    width: 100%;
    font-size: 0.9rem;
  }
  .nav-menu a::after { display: none; }
  .nav-toggle { display: flex; }

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

  .content-card {
    padding: 28px 22px;
  }
}

@media (max-width: 540px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .feature-card { padding: 24px 16px; }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-track {
    padding: 24px 32px 36px;
  }
  .screenshots-outer::before,
  .screenshots-outer::after { width: 32px; }
}
