:root {
  --red-deep:    #c0392b;
  --red-mid:     #e05555;
  --red-soft:    #f08080;
  --red-blush:   #fce4e4;
  --red-pale:    #fff0f0;
  --pink-light:  #ffd6d6;
  --rose:        #f4a0a0;
  --cream:       #fff8f8;
  --text-dark:   #2d1515;
  --text-mid:    #6b3535;
  --text-light:  #b07070;
  --white:       #ffffff;

  --grad-hero:   linear-gradient(135deg, #fff0f0 0%, #ffd6d6 40%, #fce4e4 100%);
  --grad-card:   linear-gradient(145deg, #ffffff 0%, #fff5f5 100%);
  --grad-cta:    linear-gradient(135deg, #c0392b 0%, #e05555 50%, #f08080 100%);
  --grad-footer: linear-gradient(180deg, #2d1515 0%, #1a0a0a 100%);

  --shadow-soft:  0 4px 24px rgba(192, 57, 43, 0.10);
  --shadow-card:  0 8px 32px rgba(192, 57, 43, 0.13);
  --shadow-hover: 0 16px 48px rgba(192, 57, 43, 0.22);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

.flowers-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.flower {
  position: absolute;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  opacity: 0.13;
  animation: floatFlower linear infinite;
  user-select: none;
}

.f1  { left: 5%;  top: 10%; animation-duration: 18s; animation-delay: 0s;   font-size: 1.5rem; }
.f2  { left: 15%; top: 70%; animation-duration: 22s; animation-delay: 2s;   font-size: 2rem; }
.f3  { left: 25%; top: 30%; animation-duration: 16s; animation-delay: 4s;   font-size: 1.2rem; }
.f4  { left: 40%; top: 80%; animation-duration: 20s; animation-delay: 1s;   font-size: 1.8rem; }
.f5  { left: 55%; top: 15%; animation-duration: 24s; animation-delay: 3s;   font-size: 1.4rem; }
.f6  { left: 65%; top: 55%; animation-duration: 19s; animation-delay: 5s;   font-size: 2.2rem; }
.f7  { left: 75%; top: 25%; animation-duration: 21s; animation-delay: 0.5s; font-size: 1.6rem; }
.f8  { left: 82%; top: 75%; animation-duration: 17s; animation-delay: 2.5s; font-size: 1.3rem; }
.f9  { left: 90%; top: 45%; animation-duration: 23s; animation-delay: 4s;   font-size: 1.9rem; }
.f10 { left: 95%; top: 10%; animation-duration: 15s; animation-delay: 1.5s; font-size: 1.5rem; }

@keyframes floatFlower {
  0%   { transform: translateY(0px) rotate(0deg);    opacity: 0.13; }
  50%  { transform: translateY(-30px) rotate(15deg); opacity: 0.20; }
  100% { transform: translateY(0px) rotate(0deg);    opacity: 0.13; }
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(255, 248, 248, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 57, 43, 0.10);
  transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: var(--shadow-soft); }

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon  { font-size: 1.4rem; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red-deep);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--red-deep); }

.btn-nav {
  text-decoration: none;
  background: var(--red-deep);
  color: var(--white);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
}

.btn-nav:hover { background: var(--red-mid); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red-deep);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(255, 248, 248, 0.98);
  backdrop-filter: blur(16px);
  padding: 5rem 5% 2rem;
  border-bottom: 1px solid rgba(192, 57, 43, 0.12);
  flex-direction: column;
  gap: 0;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 1.1rem;
  font-weight: 400;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(192, 57, 43, 0.08);
  display: block;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--red-deep); }

.mobile-menu a:last-child { border-bottom: none; }

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5% 4rem;
  background: var(--grad-hero);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(240, 128, 128, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(192, 57, 43, 0.10);
  color: var(--red-deep);
  border: 1px solid rgba(192, 57, 43, 0.25);
  border-radius: 50px;
  padding: 0.35rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  animation: fadeDown 0.8s 0.1s ease both;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--red-deep), var(--red-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  animation: fadeDown 0.8s 0.2s ease both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
  animation: fadeDown 0.8s 0.3s ease both;
}

.btn-primary {
  text-decoration: none;
  background: var(--grad-cta);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(192, 57, 43, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(192, 57, 43, 0.45);
}

.btn-ghost {
  text-decoration: none;
  border: 2px solid var(--red-soft);
  color: var(--red-deep);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-ghost:hover { background: var(--red-blush); transform: translateY(-2px); }

.hero-preview { animation: fadeUp 1s 0.5s ease both; }

.book-mockup {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(192, 57, 43, 0.25);
  max-width: 520px;
  margin: 0 auto;
}

.book-page {
  flex: 1;
  background: var(--white);
  padding: 2rem;
  min-height: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.left-page  { background: linear-gradient(145deg, #fff8f8, #ffe8e8); }
.right-page { background: linear-gradient(145deg, #fff5f5, #ffdada); }

.book-spine {
  width: 8px;
  background: linear-gradient(180deg, var(--red-mid), var(--red-deep));
  flex-shrink: 0;
}

.page-decoration {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
}

.photo-slot {
  background: linear-gradient(135deg, var(--pink-light), var(--red-blush));
  border: 2px dashed var(--rose);
  border-radius: var(--radius-sm);
  width: 100%;
  height: 80px;
  animation: pulse 3s ease-in-out infinite;
}

.slot-1 { animation-delay: 0s; }
.slot-2 { animation-delay: 0.5s; height: 60px; width: 85%; }
.slot-3 { animation-delay: 1s;   height: 70px; }
.slot-4 { animation-delay: 1.5s; height: 65px; width: 90%; }

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

.label-tag {
  background: var(--red-deep);
  color: var(--white);
  border-radius: 50px;
  padding: 0.25rem 0.9rem;
  font-size: 0.75rem;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.5px;
}

.section-label {
  display: inline-block;
  color: var(--red-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3rem;
  line-height: 1.25;
}

.features {
  position: relative;
  z-index: 1;
  padding: 5rem 5%;
  text-align: center;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--grad-card);
  border: 1px solid rgba(192, 57, 43, 0.10);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-cta);
  opacity: 0;
  transition: opacity 0.25s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(192, 57, 43, 0.25);
}

.feature-card:hover::before { opacity: 1; }

.feature-card.featured {
  background: linear-gradient(145deg, var(--red-blush), var(--pink-light));
  border-color: rgba(192, 57, 43, 0.25);
}

.feature-card.featured::before { opacity: 1; }

.feature-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.feature-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-mid); }

.how-it-works {
  position: relative;
  z-index: 1;
  padding: 5rem 5%;
  text-align: center;
  background: var(--grad-hero);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 0 1rem;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--red-deep);
  opacity: 0.20;
  line-height: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.step-content p { font-size: 0.9rem; line-height: 1.65; color: var(--text-mid); }

.step-line {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--red-soft));
  margin-top: 1.5rem;
  border-radius: 2px;
}

.about {
  position: relative;
  z-index: 1;
  padding: 5rem 5%;
  background: var(--white);
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 3rem;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.value {
  background: var(--red-pale);
  border: 1px solid rgba(192, 57, 43, 0.12);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.value strong { font-family: var(--font-display); font-size: 1rem; color: var(--red-deep); }
.value span   { font-size: 0.88rem; color: var(--text-mid); line-height: 1.55; }

.cta {
  position: relative;
  z-index: 1;
  padding: 5rem 5%;
  text-align: center;
  background: var(--grad-cta);
  overflow: hidden;
}

.cta-flowers {
  position: absolute;
  top: 1rem; left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  font-size: 1.5rem;
  opacity: 0.18;
  pointer-events: none;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; }

.cta .btn-primary {
  background: var(--white);
  color: var(--red-deep);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.cta .btn-primary:hover {
  background: var(--red-pale);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

.footer {
  position: relative;
  z-index: 1;
  background: var(--grad-footer);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 5% 1.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer .logo-text { color: var(--white); font-size: 1.4rem; }

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.50);
  max-width: 220px;
}

.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.footer-col a {
  text-decoration: none;
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--rose); }
.footer-col a svg   { flex-shrink: 0; opacity: 0.75; }

.footer-bottom { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--rose); text-decoration: none; }
.footer-bottom a:hover { color: var(--red-soft); }

.templates {
  position: relative;
  z-index: 1;
  padding: 5rem 5%;
  text-align: center;
  background: var(--white);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: var(--grad-card);
  border: 1px solid rgba(192, 57, 43, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.card-preview {
  width: 100%;
  aspect-ratio: 3/4;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid rgba(192, 57, 43, 0.10);
}

.card-preview svg { width: 100%; height: 100%; display: block; }

.card-info {
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
}

.card-tag {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: left;
  margin-top: -0.4rem;
  letter-spacing: 0.3px;
}

.card-buttons { display: flex; gap: 0.5rem; }

.btn-use {
  flex: 1;
  text-decoration: none;
  background: var(--red-deep);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.btn-use:hover { background: var(--red-mid); transform: translateY(-1px); }

.btn-preview {
  text-decoration: none;
  border: 1.5px solid var(--red-soft);
  color: var(--red-deep);
  padding: 0.5rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-preview:hover { background: var(--red-blush); transform: translateY(-1px); }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================
   TABLET (max 1024px)
   ======================== */
@media (max-width: 1024px) {
  .templates-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    gap: 0;
  }

  .step {
    min-width: 150px;
    max-width: 200px;
  }
}

/* ========================
   MOBILE LANDSCAPE / SMALL TABLET (max 768px)
   ======================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .navbar {
    padding: 0.85rem 5%;
  }

  .hero {
    padding: 7rem 5% 3.5rem;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 0.9rem 1.5rem;
  }

  .book-mockup {
    max-width: 320px;
  }

  .book-page {
    padding: 1.25rem;
    min-height: 200px;
  }

  .photo-slot { height: 60px; }
  .slot-2     { height: 46px; }
  .slot-3     { height: 54px; }
  .slot-4     { height: 50px; }

  .features {
    padding: 4rem 5%;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .how-it-works {
    padding: 4rem 5%;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step {
    min-width: unset;
    max-width: 300px;
    width: 100%;
  }

  .step-line {
    width: 2px;
    height: 32px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .about {
    padding: 4rem 5%;
  }

  .about-text {
    font-size: 1rem;
  }

  .about-values {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .cta {
    padding: 4rem 5%;
  }

  .cta p {
    font-size: 0.95rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-links {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .templates {
    padding: 4rem 5%;
  }

  .templates-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 100%;
  }

  .card-name { font-size: 0.88rem; }
  .card-tag  { font-size: 0.68rem; }

  .btn-use,
  .btn-preview {
    font-size: 0.75rem;
    padding: 0.45rem 0.6rem;
  }

  .section-title {
    margin-bottom: 2rem;
  }
}

/* ========================
   MOBILE PORTRAIT (max 480px)
   ======================== */
@media (max-width: 480px) {
  .hero {
    padding: 6.5rem 4% 3rem;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.9rem;
    letter-spacing: 1px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .book-mockup {
    max-width: 270px;
  }

  .book-page {
    padding: 1rem;
    min-height: 170px;
    gap: 0.6rem;
  }

  .photo-slot { height: 48px; }
  .slot-2     { height: 38px; }
  .slot-3     { height: 44px; }
  .slot-4     { height: 40px; }

  .templates-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .card-info {
    padding: 0.9rem 1rem;
  }

  .card-name { font-size: 0.9rem; }

  .btn-use,
  .btn-preview {
    font-size: 0.78rem;
    padding: 0.5rem 0.7rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 1.5rem 1.25rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-col {
    width: 100%;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 1.75rem;
  }

  .step {
    max-width: 260px;
  }

  .cta {
    padding: 3.5rem 5%;
  }

  .cta h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .cta p {
    font-size: 0.9rem;
  }

  .cta .btn-primary {
    width: 100%;
    max-width: 260px;
  }

  .about {
    padding: 3.5rem 4%;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .value {
    padding: 1rem 1.2rem;
  }
}

/* ========================
   VERY SMALL (max 360px)
   ======================== */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .book-mockup {
    max-width: 240px;
  }

  .navbar {
    padding: 0.75rem 4%;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}