/* OtterBox theme stylesheet — ported from legacy inline <style> blocks. */

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

:root {
  --otter-brown: #7A5C3E;
  --otter-brown-light: #A8845A;
  --otter-tan: #D4B896;
  --otter-cream: #F5EDE3;
  --otter-navy: #1E2D45;
  --otter-navy-light: #2C4066;
  --otter-blue: #7CB5D4;
  --otter-white: #FDFAF6;
  --otter-orange: #E8943A;
  --otter-orange-light: #F0B06A;
  --shadow-soft: 0 4px 24px rgba(30, 45, 69, 0.08);
  --shadow-medium: 0 8px 32px rgba(30, 45, 69, 0.12);
  --radius-md: 20px;
  --radius-lg: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--otter-white);
  color: var(--otter-navy);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Fredoka', sans-serif;
  line-height: 1.3;
}

a { color: var(--otter-orange); text-decoration: none; }
a:hover { text-decoration: underline; }

@font-face { font-display: swap; }

/* ---------- Nav ---------- */
.nav {
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(30, 45, 69, 0.06);
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--otter-navy);
}
.nav-logo img { height: 40px; width: 40px; border-radius: 10px; }
.nav-logo span {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}
.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--otter-navy);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; text-decoration: none; }
.nav-cta {
  background: var(--otter-orange) !important;
  color: white !important;
  opacity: 1 !important;
  padding: 8px 20px;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--otter-orange-light) !important; }

/* ---------- Blog list hero ---------- */
.blog-hero {
  text-align: center;
  padding: 80px 24px 40px;
  max-width: 800px;
  margin: 0 auto;
}
.blog-hero h1 {
  font-size: 2.6rem;
  color: var(--otter-navy);
  margin-bottom: 12px;
}
.blog-hero p {
  font-size: 1.15rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Post list ---------- */
.posts {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}
.post-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s, transform 0.3s;
}
.post-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}
.post-card a { text-decoration: none; }
.post-card h2 {
  font-size: 1.5rem;
  color: var(--otter-navy);
  margin-bottom: 8px;
}
.post-card h2:hover { color: var(--otter-brown); }
.post-meta {
  font-size: 0.9rem;
  opacity: 0.5;
  margin-bottom: 12px;
}
.post-excerpt {
  font-size: 1.05rem;
  color: var(--otter-navy);
  opacity: 0.8;
  margin-bottom: 16px;
  line-height: 1.6;
}
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  background: var(--otter-cream);
  color: var(--otter-brown);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.read-more {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: var(--otter-orange);
  font-size: 0.95rem;
}
.read-more:hover { text-decoration: underline; }

/* ---------- Single article ---------- */
.article-container { max-width: 740px; margin: 0 auto; padding: 48px 24px 80px; }
.article-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--otter-cream);
}
.article-header h1 { font-size: 2.2rem; color: var(--otter-navy); margin-bottom: 12px; }
.article-meta { font-size: 0.95rem; opacity: 0.5; margin-bottom: 16px; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; }

/* Article body */
.article-content h2 { font-size: 1.4rem; color: var(--otter-brown); margin-top: 40px; margin-bottom: 12px; }
.article-content h3 { font-size: 1.15rem; color: var(--otter-navy); margin-top: 28px; margin-bottom: 8px; }
.article-content p { font-size: 1.05rem; margin-bottom: 16px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 16px; }
.article-content li { font-size: 1.05rem; margin-bottom: 8px; }
.article-content strong { color: var(--otter-navy); }

.highlight {
  background: var(--otter-cream);
  border-left: 4px solid var(--otter-orange);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
  font-size: 1.05rem;
}
.highlight strong { color: var(--otter-brown); }

.timeline {
  background: #fff;
  border: 2px solid var(--otter-cream);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 32px 0;
}
.timeline-label {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--otter-brown);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.timeline-row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.timeline-time {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--otter-orange);
  min-width: 80px;
  padding-top: 2px;
}
.timeline-row p { margin-bottom: 0; font-size: 1rem; }

/* ---------- CTA ---------- */
.cta-box {
  background: linear-gradient(135deg, var(--otter-navy), var(--otter-navy-light));
  color: white;
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 48px 0 32px;
}
.cta-box h3 { font-size: 1.5rem; margin-bottom: 12px; color: white; }
.cta-box p { opacity: 0.8; margin-bottom: 20px; font-size: 1.05rem; }
.btn-cta {
  display: inline-block;
  background: var(--otter-orange);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.btn-cta:hover { background: var(--otter-orange-light); transform: translateY(-2px); }

/* ---------- Footer ---------- */
footer {
  background: var(--otter-navy);
  color: white;
  padding: 32px;
  text-align: center;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand img { height: 28px; width: 28px; border-radius: 6px; }
.footer-brand span { font-family: 'Fredoka', sans-serif; font-weight: 700; }
.footer-copy { opacity: 0.6; font-size: 0.85rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: white; opacity: 0.6; font-size: 0.85rem; text-decoration: none; }
.footer-links a:hover { opacity: 1; }

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .blog-hero h1 { font-size: 1.8rem; }
  .article-header h1 { font-size: 1.6rem; }
  .article-container { padding: 32px 16px 60px; }
  .post-card { padding: 24px; }
  .cta-box { padding: 28px 20px; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .timeline-time { min-width: 64px; }
}

/* ---------- Generic content pages (privacy, terms, etc.) ---------- */
.page-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.back-link {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: var(--otter-orange);
  font-weight: 600;
}
.back-link:hover { text-decoration: underline; }
.page-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--otter-cream);
}
.page-header h1 {
  font-size: 2.2rem;
  color: var(--otter-navy);
  margin-bottom: 8px;
}
.page-date {
  font-size: 0.95rem;
  opacity: 0.5;
}
.page-summary {
  background: var(--otter-cream);
  border-left: 4px solid var(--otter-orange);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 0 0 32px;
  font-size: 1.05rem;
}
.page-summary strong { color: var(--otter-brown); }
.page-content h2 {
  font-size: 1.4rem;
  color: var(--otter-brown);
  margin-top: 36px;
  margin-bottom: 12px;
}
.page-content h3 {
  font-size: 1.15rem;
  color: var(--otter-navy);
  margin-top: 24px;
  margin-bottom: 8px;
}
.page-content p { font-size: 1.05rem; margin-bottom: 16px; }
.page-content ul, .page-content ol { padding-left: 24px; margin-bottom: 16px; }
.page-content li { font-size: 1.05rem; margin-bottom: 6px; }
.page-content strong { color: var(--otter-navy); }
@media (max-width: 768px) {
  .page-header h1 { font-size: 1.6rem; }
  .page-container { padding: 32px 16px 60px; }
}

/* ---------- Homepage-specific styles (ported from legacy index.html) ---------- */

/* ---------- Homepage-specific styles (ported from legacy index.html) ---------- */
/* ========== BACKGROUND TEXTURE ========== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(124, 181, 212, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(232, 148, 58, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 50% 80%, rgba(122, 92, 62, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}


/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 32px 80px;
    position: relative;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.hero-content {
    animation: slideUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--otter-cream);
    border: 2px solid var(--otter-tan);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--otter-brown);
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '\1F4E6';
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    color: var(--otter-navy);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 .text-highlight {
    color: var(--otter-orange);
    position: relative;
    display: inline-block;
}

.hero h1 .text-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--otter-orange-light);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--otter-navy);
    opacity: 0.7;
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--otter-navy);
    color: var(--otter-white);
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: var(--otter-navy-light);
}

.btn-primary svg {
    width: 24px;
    height: 24px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--otter-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover {
    opacity: 1;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: var(--otter-navy);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-heavy), 0 0 0 2px rgba(30, 45, 69, 0.1);
    transform: rotate(2deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--otter-white);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-header {
    background: var(--otter-navy);
    color: white;
    padding: 20px 16px 14px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-header::before {
    content: '\1F9A6';
    font-size: 1.2rem;
}

.phone-body {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.mock-box {
    background: white;
    border-radius: var(--radius-sm);
    padding: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1.5px solid rgba(30, 45, 69, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: mockPulse 3s ease-in-out infinite;
}

.mock-box:nth-child(2) { animation-delay: 0.5s; }
.mock-box:nth-child(3) { animation-delay: 1s; }
.mock-box:nth-child(4) { animation-delay: 1.5s; }

.mock-box-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mock-box:nth-child(1) .mock-box-icon { background: #FFF3E0; }
.mock-box:nth-child(2) .mock-box-icon { background: #E3F2FD; }
.mock-box:nth-child(3) .mock-box-icon { background: #FBE9E7; }
.mock-box:nth-child(4) .mock-box-icon { background: #E8F5E9; }

.mock-box-text {
    flex: 1;
    min-width: 0;
}

.mock-box-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--otter-navy);
}

.mock-box-sub {
    font-size: 0.75rem;
    color: var(--otter-navy);
    opacity: 0.5;
}

.mock-box-count {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--otter-cream);
    color: var(--otter-brown);
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

/* Floating decorative elements */
.hero-float {
    position: absolute;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.hero-float:nth-child(1) { top: 10%; right: -5%; font-size: 4rem; animation-delay: 0s; }
.hero-float:nth-child(2) { bottom: 15%; left: -3%; font-size: 3rem; animation-delay: 2s; }
.hero-float:nth-child(3) { top: 25%; left: 45%; font-size: 2.5rem; animation-delay: 4s; }


/* ========== SECTION SHARED ========== */
section {
    padding: 100px 32px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--otter-cream);
    border: 2px solid var(--otter-tan);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--otter-brown);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--otter-navy);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--otter-navy);
    opacity: 0.6;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 56px;
}


/* ========== HOW IT WORKS ========== */
.how-it-works {
    background: var(--otter-cream);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--otter-white);
    border-radius: 0 0 50% 50%;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--otter-white);
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--otter-tan), var(--otter-orange-light), var(--otter-blue));
    border-radius: 2px;
    z-index: 0;
}

.step-options {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.step-option {
    flex: 1;
    background: var(--otter-white);
    border: 2px solid var(--otter-tan);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-option:hover {
    border-color: var(--otter-orange-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.step-option-emoji {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 6px;
}

.step-option-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--otter-navy);
}

.step-or {
    display: flex;
    align-items: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--otter-brown-light);
    flex-shrink: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--otter-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-soft);
    border: 3px solid transparent;
    transition: all 0.4s ease;
}

.step-card:hover .step-number {
    border-color: var(--otter-orange-light);
    transform: scale(1.08);
}

.step-emoji {
    font-size: 2.8rem;
}

.step-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--otter-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.95rem;
    opacity: 0.65;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}


/* ========== FEATURES ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--otter-tan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
    border-color: var(--otter-cream);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:nth-child(1)::before { background: var(--otter-orange); }
.feature-card:nth-child(2)::before { background: var(--otter-blue); }
.feature-card:nth-child(3)::before { background: var(--otter-brown-light); }
.feature-card:nth-child(4)::before { background: var(--otter-orange-light); }
.feature-card:nth-child(5)::before { background: var(--otter-navy); }
.feature-card:nth-child(6)::before { background: var(--otter-blue-light); }

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card:nth-child(1) .feature-icon { background: #FFF3E0; }
.feature-card:nth-child(2) .feature-icon { background: #E3F2FD; }
.feature-card:nth-child(3) .feature-icon { background: #EFEBE9; }
.feature-card:nth-child(4) .feature-icon { background: #FFF8E1; }
.feature-card:nth-child(5) .feature-icon { background: #E8EAF6; }
.feature-card:nth-child(6) .feature-icon { background: #E0F7FA; }

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.92rem;
    opacity: 0.6;
    line-height: 1.6;
}


/* ========== USE CASES ========== */
.use-cases {
    background: var(--otter-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.use-cases::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(124, 181, 212, 0.1) 0%, transparent 50%),
                  radial-gradient(circle at 70% 80%, rgba(232, 148, 58, 0.08) 0%, transparent 50%);
}

.use-cases .section-inner {
    position: relative;
}

.use-cases .section-label {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--otter-blue-light);
}

.use-cases .section-title {
    color: white;
}

.use-cases .section-subtitle {
    color: white;
    opacity: 0.6;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.use-case-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.use-case-emoji {
    font-size: 2.4rem;
    margin-bottom: 20px;
    display: block;
}

.use-case-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.use-case-card p {
    font-size: 0.92rem;
    opacity: 0.6;
    line-height: 1.7;
}

.use-case-card ul {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.use-case-card li {
    font-size: 0.85rem;
    opacity: 0.55;
    padding-left: 20px;
    position: relative;
}

.use-case-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--otter-blue-light);
    font-weight: 700;
}


/* ========== NO SUBSCRIPTION BANNER ========== */
.no-sub {
    background: linear-gradient(135deg, var(--otter-cream) 0%, #FFF3E0 100%);
    text-align: center;
    padding: 80px 32px;
    position: relative;
    overflow: hidden;
}

.no-sub::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(232, 148, 58, 0.03) 20px,
        rgba(232, 148, 58, 0.03) 40px
    );
}

.no-sub-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.no-sub h2 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 16px;
    color: var(--otter-navy);
}

.no-sub p {
    font-size: 1.1rem;
    opacity: 0.65;
    margin-bottom: 8px;
    line-height: 1.7;
}

.no-sub .price-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--otter-orange);
    margin-top: 16px;
}


/* ========== FOOTER CTA ========== */
.footer-cta {
    text-align: center;
    padding: 100px 32px 60px;
    position: relative;
}

.footer-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    width: 100px;
    height: 100px;
    border-radius: 28px;
    margin: 0 auto 28px;
    box-shadow: var(--shadow-medium);
}

.footer-cta h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--otter-navy);
    margin-bottom: 16px;
}

.footer-cta p {
    font-size: 1.1rem;
    opacity: 0.6;
    margin-bottom: 36px;
    line-height: 1.7;
}

.footer-cta .btn-primary {
    font-size: 1.15rem;
    padding: 18px 40px;
}


/* ========== ANIMATIONS ========== */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes mockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .phone-mockup {
        width: 240px;
        height: 480px;
        transform: rotate(0deg);
    }

    .steps-grid,
    .features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .steps-grid::before {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .hero-float {
        display: none;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .features-grid,
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
    