/* ===================================================
   DOCUPATHS MARKETING — Editorial Serif
   Warm, crafted, authoritative
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,300;1,6..72,400&display=swap');

:root {
  /* Warm palette */
  --parchment: #f5f0e8;
  --parchment-dark: #e8e0d0;
  --parchment-light: #faf6f0;
  --white: #faf6f0;
  --black: #0d0d0d;
  --charcoal: #2d2d2d;
  --dark-text: #1a1a1a;
  --body-text: #3d3530;
  --muted-text: #8a7e74;
  --light-border: rgba(0,0,0,0.07);
  --medium-border: rgba(0,0,0,0.12);

  /* Accent */
  --forest: #1a3d2e;
  --forest-light: #e4ede8;
  --terracotta: #c4654a;
  --terracotta-light: #faf0ec;

  /* Spacing */
  --section-pad: clamp(5rem, 10vw, 8rem);
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;scroll-behavior:smooth}
body{font-family:'Newsreader',Georgia,'Times New Roman',serif;color:var(--body-text);background:var(--parchment);overflow-x:hidden;line-height:1.7;font-size:1rem}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
img{max-width:100%;display:block}
ul{list-style:none}

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

/* ─── Typography ────────────────────────────── */
.section-header{text-align:center;margin-bottom:3.5rem}
.section-eyebrow{
  display:inline-block;font-size:.7rem;font-weight:600;
  letter-spacing:.16em;text-transform:uppercase;
  color:var(--terracotta);margin-bottom:.8rem;
  font-family:'Newsreader',Georgia,serif;
}
.section-title{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:clamp(1.8rem,4vw,3rem);font-weight:400;
  line-height:1.15;letter-spacing:-.01em;
  color:var(--dark-text);
}
.section-desc{font-size:1.05rem;color:var(--body-text);max-width:480px;margin:.8rem auto 0;line-height:1.7}

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
.navbar{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:.6rem 0;background:var(--parchment);
  transition:all .3s var(--ease);
}
.navbar.scrolled{
  background:rgba(245,240,232,.92);
  backdrop-filter:blur(16px);
  box-shadow:0 1px 0 var(--light-border);
}
.nav-inner{
  max-width:1100px;margin:0 auto;padding:0 2rem;
  display:flex;align-items:center;justify-content:space-between;height:52px;
}
.nav-logo{display:flex;align-items:center;gap:.45rem;font-weight:600;font-size:1.1rem;color:var(--dark-text);font-family:'DM Serif Display',Georgia,serif}
.nav-logo-icon{flex-shrink:0;border-radius:8px}
.nav-links{display:flex;align-items:center;gap:1.8rem}
.nav-links a{font-size:.88rem;font-weight:400;color:var(--body-text);transition:color .2s}
.nav-links a:hover{color:var(--dark-text)}
.nav-actions{display:flex;align-items:center;gap:1.2rem}
.nav-link-watch{
  display:inline-flex;align-items:center;gap:.35rem;
  font-size:.88rem;font-weight:400;color:var(--body-text);
  transition:color .2s;
}
.nav-link-watch:hover{color:var(--dark-text)}
.btn-download{
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.5rem 1.1rem;background:var(--forest);color:#fff;
  border-radius:100px;font-size:.85rem;font-weight:500;
  transition:all .25s var(--ease);
  font-family:'Newsreader',Georgia,serif;
}
.btn-download:hover{background:var(--charcoal);transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,0,0,.15)}
.nav-burger{display:none;flex-direction:column;gap:5px;padding:4px}
.nav-burger span{display:block;width:22px;height:2px;background:var(--dark-text);border-radius:2px}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero{
  background:var(--parchment);
  padding:7rem 2rem 0;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.hero-content{
  max-width:700px;margin:0 auto;position:relative;z-index:1;
}
.hero-headline{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:clamp(2.4rem,6vw,4.2rem);
  font-weight:400;line-height:1.1;letter-spacing:-.02em;
  color:var(--dark-text);margin-bottom:1.4rem;
}
.hero-line{display:block}

.hero-sub{
  font-size:1.1rem;color:var(--body-text);
  max-width:520px;margin:0 auto 2rem;line-height:1.75;
}
.hero-sub em{font-style:italic;color:var(--terracotta);font-weight:400}

.hero-cta-group{display:flex;gap:.7rem;justify-content:center;margin-bottom:3rem}

.btn-primary-dark{
  display:inline-flex;align-items:center;gap:.45rem;
  padding:.75rem 1.6rem;background:var(--forest);color:#fff;
  border-radius:100px;font-weight:500;font-size:.95rem;
  transition:all .3s var(--ease);
  font-family:'Newsreader',Georgia,serif;
}
.btn-primary-dark:hover{background:var(--charcoal);transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.12)}

.btn-ghost{
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.75rem 1.6rem;color:var(--dark-text);
  border:1.5px solid var(--medium-border);border-radius:100px;
  font-weight:500;font-size:.95rem;transition:all .3s var(--ease);
  font-family:'Newsreader',Georgia,serif;
}
.btn-ghost:hover{border-color:var(--body-text);transform:translateY(-2px)}

/* Hero image */
.hero-image-wrap{
  position:relative;margin:0 auto;max-width:1100px;
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  overflow:hidden;
}
.hero-image{
  width:100%;height:auto;display:block;
  object-fit:cover;max-height:520px;
}

/* ══════════════════════════════════════════════
   PRODUCT DESCRIPTION BAR
   ══════════════════════════════════════════════ */
.product-bar{
  background:var(--forest);
  padding:2.5rem 0;
  text-align:center;
}
.product-bar-text{
  font-family:'Newsreader',Georgia,serif;
  font-size:1.15rem;
  color:rgba(255,255,255,.92);
  line-height:1.7;
  max-width:560px;
  margin:0 auto;
  letter-spacing:.01em;
}
.product-bar-text em{
  font-style:italic;
  color:#fff;
  font-weight:400;
}

/* ══════════════════════════════════════════════
   FEATURES (Problem Cards)
   ══════════════════════════════════════════════ */
.features{
  background:var(--white);padding:var(--section-pad) 0;
}
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}

.feature-card{
  padding:2rem;border-radius:var(--radius);
  background:var(--parchment-light);
  border:1px solid var(--light-border);
  transition:all .3s var(--ease);
}
.feature-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.06)}

.feature-icon{
  margin-bottom:1.2rem;
  width:48px;height:48px;display:flex;align-items:center;justify-content:center;
  background:var(--terracotta-light);border-radius:12px;
  color:var(--terracotta);
}
.feature-card h3{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.15rem;font-weight:400;color:var(--dark-text);margin-bottom:.5rem;
}
.feature-card p{font-size:.92rem;color:var(--body-text);line-height:1.7}

/* ══════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════ */
.how-it-works{
  background:var(--parchment);padding:var(--section-pad) 0;
}
.steps{
  max-width:600px;margin:0 auto;
  display:flex;flex-direction:column;gap:0;
}
.step{display:flex;gap:1.8rem;padding:1.8rem 0}
.step + .step{border-top:1px solid var(--light-border)}

.step-number{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.5rem;color:var(--terracotta);
  flex-shrink:0;width:48px;padding-top:.15rem;
  opacity:.6;
}
.step-content h3{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.1rem;font-weight:400;color:var(--dark-text);margin-bottom:.4rem;
}
.step-content p{font-size:.92rem;color:var(--body-text);line-height:1.7}

/* ══════════════════════════════════════════════
   SHOWCASE (Tabbed)
   ══════════════════════════════════════════════ */
.showcase{
  background:var(--white);padding:var(--section-pad) 0;
}
.showcase-tabs{
  display:flex;justify-content:center;gap:.3rem;
  padding:.3rem;background:var(--parchment);
  border:1px solid var(--light-border);
  border-radius:100px;margin-bottom:3rem;
  width:fit-content;margin-left:auto;margin-right:auto;
}
.showcase-tab{
  padding:.6rem 1.3rem;border-radius:100px;
  font-size:.88rem;font-weight:400;color:var(--body-text);
  transition:all .25s var(--ease);
  font-family:'Newsreader',Georgia,serif;
}
.showcase-tab:hover{color:var(--dark-text)}
.showcase-tab.active{
  background:var(--white);color:var(--dark-text);
  box-shadow:0 1px 4px rgba(0,0,0,.08);font-weight:500;
}

.showcase-panel{
  display:none;
  grid-template-columns:1fr 1fr;gap:3rem;
  align-items:center;
  animation:fadeIn .4s var(--ease);
}
.showcase-panel.active{display:grid}

@keyframes fadeIn{
  from{opacity:0;transform:translateY(12px)}
  to{opacity:1;transform:translateY(0)}
}

.showcase-text h3{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.4rem;font-weight:400;color:var(--dark-text);margin-bottom:.7rem;
}
.showcase-text>p{font-size:.95rem;color:var(--body-text);line-height:1.7;margin-bottom:1.3rem}

.check-list{display:flex;flex-direction:column;gap:.5rem}
.check-list li{
  display:flex;align-items:center;gap:.5rem;
  font-size:.88rem;color:var(--body-text);
}
.check-list li::before{
  content:'';display:flex;align-items:center;justify-content:center;
  width:18px;height:18px;border-radius:50%;
  background:var(--forest-light);flex-shrink:0;
  background-image:url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%231a3d2e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center;
}

/* Showcase card visuals */
.showcase-visual{display:flex;align-items:center;justify-content:center}
.showcase-card{
  width:100%;max-width:380px;padding:1.5rem;
  background:var(--parchment-light);border:1px solid var(--light-border);
  border-radius:var(--radius-lg);
}
.showcase-card-dot{width:8px;height:8px;border-radius:50%;display:inline-block;margin-right:.4rem}
.dot-recording{background:var(--terracotta);box-shadow:0 0 6px rgba(196,101,74,.4);animation:dotPulse 1.5s infinite}
.dot-active{background:var(--forest)}
.dot-success{background:#28ca42;box-shadow:0 0 6px rgba(40,202,66,.3)}
@keyframes dotPulse{0%,100%{opacity:1}50%{opacity:.4}}

.showcase-card-label{
  font-size:.78rem;font-weight:500;color:var(--body-text);
  vertical-align:middle;
}
.showcase-card-steps{margin-top:1rem;display:flex;flex-direction:column;gap:.5rem}
.card-step{display:flex;align-items:center;gap:.5rem}
.card-step span{
  width:24px;height:24px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:.6rem;font-weight:600;color:var(--forest);
  background:var(--forest-light);flex-shrink:0;
}
.card-bar{flex:1;height:8px;background:var(--parchment-dark);border-radius:4px}
.card-bar--shimmer{
  background:linear-gradient(90deg,var(--parchment-dark),var(--forest-light),var(--parchment-dark));
  background-size:200% 100%;animation:shimmer 1.5s infinite;
}
@keyframes shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}

/* Editor mockup */
.showcase-card-editor{margin-top:1rem}
.editor-toolbar{
  display:flex;gap:.5rem;margin-bottom:.7rem;
  padding:.35rem .5rem;background:var(--white);
  border:1px solid var(--light-border);border-radius:8px;
}
.editor-toolbar span{font-size:.7rem;color:var(--muted-text);font-weight:500;padding:.1rem .3rem}
.editor-line{height:8px;background:var(--parchment-dark);border-radius:4px;margin-bottom:.35rem}
.editor-line--short{width:60%}
.editor-image{
  height:50px;background:var(--forest-light);
  border:1px solid var(--light-border);border-radius:8px;margin-top:.5rem;
}

/* Share mockup */
.showcase-share-grid{display:grid;grid-template-columns:1fr 1fr;gap:.4rem;margin-top:1rem}
.share-item{
  padding:.6rem;font-size:.75rem;font-weight:500;color:var(--dark-text);
  background:var(--white);border:1px solid var(--light-border);
  border-radius:8px;text-align:center;transition:all .2s;
}
.share-item:hover{border-color:var(--forest);background:var(--forest-light)}

/* ══════════════════════════════════════════════
   GUIDE PREVIEW (Product Mockup)
   ══════════════════════════════════════════════ */
.guide-preview{
  background:var(--parchment);padding:var(--section-pad) 0;
}
.guide-mockup{
  max-width:680px;margin:0 auto;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,.08),0 1px 3px rgba(0,0,0,.06);
  border:1px solid var(--light-border);
}

/* Browser chrome */
.guide-mockup-chrome{
  background:#f0ede8;
  padding:.6rem 1rem;
  display:flex;align-items:center;gap:.8rem;
  border-bottom:1px solid var(--light-border);
}
.guide-mockup-dots{display:flex;gap:.35rem}
.guide-mockup-dots span{
  width:10px;height:10px;border-radius:50%;
  background:var(--parchment-dark);
}
.guide-mockup-url{
  flex:1;
  font-size:.7rem;color:var(--muted-text);
  background:var(--white);
  padding:.3rem .7rem;
  border-radius:6px;
  border:1px solid var(--light-border);
  font-family:'Newsreader',Georgia,serif;
}

/* Guide body */
.guide-mockup-body{
  background:#fff;padding:2rem;
}
.guide-mockup-header{margin-bottom:1.8rem}
.guide-mockup-title{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.4rem;font-weight:400;color:var(--dark-text);
  margin-bottom:.3rem;
}
.guide-mockup-meta{
  font-size:.75rem;color:var(--muted-text);
}

/* Guide steps */
.guide-steps-mock{display:flex;flex-direction:column;gap:1.5rem}
.guide-step-mock{display:flex;gap:1rem;align-items:flex-start}
.guide-step-num{
  width:28px;height:28px;border-radius:50%;
  background:var(--forest);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:.75rem;font-weight:600;flex-shrink:0;
  margin-top:.1rem;
  font-family:'Newsreader',Georgia,serif;
}
.guide-step-body{flex:1}
.guide-step-text{
  font-size:.9rem;color:var(--dark-text);
  margin-bottom:.7rem;line-height:1.5;
}
.guide-step-text strong{font-weight:600}

/* Screenshot mockups */
.guide-step-screenshot{
  position:relative;
  height:100px;
  background:#f8f6f2;
  border:1px solid var(--light-border);
  border-radius:8px;
  overflow:hidden;
}
.guide-screenshot-bar{
  height:12px;background:#ece8e0;
  border-bottom:1px solid var(--light-border);
}
.guide-screenshot-sidebar{
  position:absolute;top:12px;left:0;
  width:25%;height:calc(100% - 12px);
  background:#f0ede8;
  border-right:1px solid var(--light-border);
}
.guide-screenshot-content{
  position:absolute;top:20px;left:30%;right:5%;
  height:30px;
}
.guide-screenshot-btn{
  width:60px;height:16px;
  background:var(--forest-light);
  border:1px solid rgba(26,61,46,.15);
  border-radius:4px;
}
.guide-screenshot-form{
  position:absolute;top:20px;left:10%;right:10%;
  display:flex;flex-direction:column;gap:6px;
}
.guide-form-line{
  height:10px;background:#ece8e0;border-radius:3px;
}
.guide-form-line--short{width:65%}

/* Annotation circle */
.guide-annotation{
  position:absolute;
  width:22px;height:22px;border-radius:50%;
  background:var(--terracotta);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:.65rem;font-weight:700;
  box-shadow:0 0 0 3px rgba(196,101,74,.25);
  font-family:'Newsreader',Georgia,serif;
}

.guide-mockup-more{
  padding-top:1.2rem;
  margin-top:1.2rem;
  border-top:1px solid var(--light-border);
  text-align:center;
}
.guide-mockup-more span{
  font-size:.82rem;color:var(--terracotta);font-weight:500;
  cursor:pointer;
}

/* ══════════════════════════════════════════════
   USE CASES
   ══════════════════════════════════════════════ */
.use-cases{background:var(--white);padding:var(--section-pad) 0}

.use-cases-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.2rem}
.use-case-card{
  padding:2rem;border-radius:var(--radius);
  background:var(--parchment-light);border:1px solid var(--light-border);
  transition:all .3s var(--ease);text-decoration:none;
  display:flex;flex-direction:column;
}
.use-case-card:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(0,0,0,.06)}
.use-case-icon{
  margin-bottom:.8rem;
  width:44px;height:44px;display:flex;align-items:center;justify-content:center;
  background:var(--forest-light);border-radius:10px;
  color:var(--forest);
}
.use-case-card h3{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.05rem;font-weight:400;color:var(--dark-text);margin-bottom:.3rem;
}
.use-case-card p{font-size:.9rem;color:var(--body-text);line-height:1.7}

/* ══════════════════════════════════════════════
   PRIVACY
   ══════════════════════════════════════════════ */
.privacy{background:var(--parchment);padding:var(--section-pad) 0}
.privacy-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.privacy-card{
  padding:2rem;border-radius:var(--radius);
  background:var(--white);border:1px solid var(--light-border);
  transition:all .3s var(--ease);
}
.privacy-card:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(0,0,0,.06)}
.privacy-icon{
  margin-bottom:1rem;
  width:48px;height:48px;display:flex;align-items:center;justify-content:center;
  background:var(--forest-light);border-radius:12px;
  color:var(--forest);
}
.privacy-card h3{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:1.05rem;font-weight:400;color:var(--dark-text);margin-bottom:.4rem;
}
.privacy-card p{font-size:.9rem;color:var(--body-text);line-height:1.7}

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq{background:var(--white);padding:var(--section-pad) 0}
.faq-list{max-width:680px;margin:0 auto;display:flex;flex-direction:column;gap:.6rem}

.faq-item{
  background:var(--parchment-light);border:1px solid var(--light-border);
  border-radius:var(--radius);overflow:hidden;
  transition:border-color .2s;
}
.faq-item[open]{border-color:var(--medium-border)}
.faq-item[open] .faq-icon{transform:rotate(45deg)}

.faq-item summary{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.1rem 1.4rem;cursor:pointer;list-style:none;
  user-select:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary h3{font-size:.95rem;font-weight:500;color:var(--dark-text);margin:0;font-family:'Newsreader',Georgia,serif}
.faq-icon{
  font-size:1.2rem;color:var(--muted-text);font-weight:300;
  transition:transform .25s var(--ease);flex-shrink:0;margin-left:1rem;
}
.faq-answer{padding:0 1.4rem 1.3rem}
.faq-answer p{font-size:.9rem;color:var(--body-text);line-height:1.75;margin:0}

/* ══════════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════════ */
.final-cta{background:var(--parchment);padding:var(--section-pad) 0}
.cta-box{
  text-align:center;padding:4rem 2rem;
  background:var(--forest);border-radius:var(--radius-lg);
  color:#fff;
}
.cta-box h2{
  font-family:'DM Serif Display',Georgia,serif;
  font-size:clamp(1.6rem,3.5vw,2.5rem);
  font-weight:400;color:#fff;margin-bottom:.7rem;
}
.cta-box p{font-size:1.05rem;color:rgba(255,255,255,.8);max-width:420px;margin:0 auto 1.8rem}
.cta-buttons{display:flex;gap:.7rem;justify-content:center}
.cta-box .btn-primary-dark{background:#fff;color:var(--forest)}
.cta-box .btn-primary-dark:hover{background:var(--parchment);transform:translateY(-2px)}
.cta-box .btn-ghost{color:#fff;border-color:rgba(255,255,255,.3)}
.cta-box .btn-ghost:hover{border-color:#fff}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer{background:var(--parchment);padding:3.5rem 0 2rem;border-top:1px solid var(--light-border)}
.footer-top{display:grid;grid-template-columns:1.5fr repeat(3,1fr);gap:2rem;margin-bottom:2.5rem}
.footer-brand{display:flex;flex-direction:column;gap:.6rem}
.footer-tagline{font-size:.88rem;color:var(--muted-text);max-width:240px;line-height:1.5}
.footer-col h4{font-size:.72rem;font-weight:600;color:var(--dark-text);margin-bottom:.7rem;text-transform:uppercase;letter-spacing:.06em}
.footer-col ul{display:flex;flex-direction:column;gap:.4rem}
.footer-col a{font-size:.88rem;color:var(--muted-text);transition:color .2s}
.footer-col a:hover{color:var(--dark-text)}
.footer-bottom{padding-top:1.5rem;border-top:1px solid var(--light-border);font-size:.75rem;color:var(--muted-text)}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media(max-width:1024px){
  .features-grid{grid-template-columns:1fr}
  .showcase-panel{grid-template-columns:1fr;gap:2rem}
  .showcase-visual{order:-1}
  .privacy-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr;gap:2rem}
}
@media(max-width:768px){
  .nav-links,.nav-actions{display:none}
  .nav-burger{display:flex}
  .hero-headline{font-size:clamp(2rem,8vw,3rem)}
  .showcase-tabs{flex-direction:column;width:100%;border-radius:var(--radius)}
  .showcase-tab{width:100%;text-align:center;border-radius:8px}
  .showcase-panel{grid-template-columns:1fr}
  .use-cases-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr}
  .cta-buttons{flex-direction:column;align-items:center}
  .hero-cta-group{flex-direction:column;align-items:center}
  .guide-mockup-body{padding:1.2rem}
}

@media(prefers-reduced-motion:reduce){
  *{animation:none !important;transition:none !important}
}
