/* ==========================================================================
   Driven Reviews — Landing Page Styles
   Brand palette sourced from bemoredriven.com
   ========================================================================== */

:root{
  --bg:            #0A0D0F;
  --bg-raise:      #0F1518;
  --bg-raise-2:    #12181B;
  --surface:       #1A2228;
  --surface-2:     #2A343A;
  --border:        #232D33;
  --border-light:  #2A343A;

  --teal:          #25A0B0;
  --teal-light:    #3FC9DB;
  --teal-lighter:  #7FC4CF;
  --teal-dim:      #16323A;

  --yellow:        #FFC24B;
  --green:         #22A45B;
  --red:           #E0564A;

  --text:          #F4F6F6;
  --text-secondary:#9AA1A5;
  --text-tertiary: #5A6166;
  --text-quiet:    #8A9296;

  --white:         #FFFFFF;

  --font-head: 'Jost', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --container: 1180px;
}

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

html{ scroll-behavior:smooth; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

html{ overflow-x:hidden; }

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ list-style:none; margin:0; padding:0; }

::selection{ background:var(--teal); color:var(--bg); }

.wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--teal-light);
}
.eyebrow::before{
  content:'';
  width:6px; height:6px;
  border-radius:50%;
  background:var(--teal-light);
  box-shadow:0 0 0 4px rgba(63,201,219,0.15);
}

h1,h2,h3,h4{
  font-family:var(--font-head);
  color:var(--text);
  margin:0;
  font-weight:500;
  letter-spacing:-0.01em;
}

.section-tag{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--text-tertiary);
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:15px;
  padding:15px 28px;
  border-radius:var(--radius-pill);
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--teal);
  color:#03191d;
  box-shadow:0 8px 24px -8px rgba(37,160,176,0.65);
}
.btn-primary:hover{
  background:var(--teal-light);
  transform:translateY(-1px);
  box-shadow:0 12px 30px -8px rgba(63,201,219,0.75);
}
.btn-ghost{
  background:transparent;
  border-color:var(--border-light);
  color:var(--text);
}
.btn-ghost:hover{
  border-color:var(--teal);
  color:var(--teal-light);
}
.btn-lg{
  padding:18px 36px;
  font-size:16px;
}
.btn-block{ width:100%; }

/* ---------- Nav ---------- */
header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(10,13,15,0.85);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:78px;
}
.logo{
  display:flex;
  align-items:center;
  gap:11px;
}
.logo-mark{
  width:22px;
  height:26px;
  flex-shrink:0;
}
.logo-word{
  font-family:var(--font-head);
  font-size:19px;
  letter-spacing:0.06em;
  color:var(--white);
  font-weight:500;
}
.logo-word b{
  font-weight:500;
  color:var(--teal-light);
}
.nav-links{
  display:flex;
  align-items:center;
  gap:36px;
}
.nav-links a:not(.btn){
  font-size:14.5px;
  color:var(--text-secondary);
  transition:color .15s ease;
}
.nav-links a:not(.btn):hover{ color:var(--text); }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:96px 0 60px;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  top:-220px; right:-200px;
  width:640px; height:640px;
  background:radial-gradient(circle, rgba(37,160,176,0.22), transparent 70%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:40px;
  align-items:center;
  position:relative;
}
.hero h1{
  font-size:clamp(38px,4.6vw,60px);
  line-height:1.06;
  margin:20px 0 24px;
}
.hero h1 em{
  font-style:normal;
  color:var(--teal-light);
}
.hero p.lead{
  font-size:18px;
  line-height:1.6;
  color:var(--text-secondary);
  max-width:480px;
  margin:0 0 34px;
}
.hero-ctas{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:34px;
}
.hero-note{
  font-size:13.5px;
  color:var(--text-tertiary);
}
.hero-stats{
  display:flex;
  gap:36px;
  padding-top:28px;
  border-top:1px solid var(--border);
  max-width:480px;
}
.hero-stat b{
  display:block;
  font-family:var(--font-head);
  font-size:26px;
  color:var(--text);
  font-weight:500;
}
.hero-stat span{
  font-size:13px;
  color:var(--text-tertiary);
}

/* ---------- Hero visual: phone mockup ---------- */
.hero-visual{ position:relative; }
.phone{
  position:relative;
  width:300px;
  margin:0 auto;
  background:linear-gradient(180deg,#12181B,#0C1012);
  border:1px solid var(--border-light);
  border-radius:38px;
  padding:14px;
  box-shadow:0 40px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.02);
}
.phone-notch{
  width:90px; height:18px;
  background:#000;
  border-radius:12px;
  margin:0 auto 10px;
}
.phone-screen{
  background:#0A0D0F;
  border-radius:24px;
  padding:18px 14px 20px;
  min-height:420px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.phone-header{
  display:flex;
  align-items:center;
  gap:8px;
  padding-bottom:12px;
  border-bottom:1px solid var(--border);
  margin-bottom:6px;
}
.phone-avatar{
  width:28px; height:28px;
  border-radius:50%;
  background:var(--teal-dim);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--teal-light);
  font-family:var(--font-mono);
  font-size:11px;
}
.phone-header span{ font-size:13px; color:var(--text-secondary); font-weight:600; }

.bubble{
  font-size:13px;
  line-height:1.45;
  padding:11px 14px;
  max-width:88%;
  animation:rise .5s ease both;
}
.bubble.in{
  background:var(--surface);
  border:1px solid var(--border-light);
  color:var(--text-secondary);
  border-radius:14px 14px 14px 4px;
  align-self:flex-start;
}
.bubble.out{
  background:var(--teal);
  color:#03191d;
  border-radius:14px 14px 4px 14px;
  align-self:flex-end;
  font-weight:500;
}
.bubble.delay{ animation-delay:.3s; }
.bubble.delay2{ animation-delay:.6s; }

.stars-row{
  display:flex;
  gap:6px;
  align-self:flex-end;
  background:var(--surface);
  border:1px solid var(--border-light);
  padding:10px 12px;
  border-radius:14px 14px 4px 14px;
}
.stars-row svg{ width:16px; height:16px; }

.gbtn{
  align-self:flex-end;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--white);
  color:#1A1A1A;
  font-size:12.5px;
  font-weight:700;
  padding:10px 14px;
  border-radius:var(--radius-pill);
  margin-top:2px;
}

.float-card{
  position:absolute;
  background:var(--surface);
  border:1px solid var(--border-light);
  border-radius:var(--radius-md);
  padding:14px 16px;
  box-shadow:0 20px 40px -12px rgba(0,0,0,0.55);
}
.float-card.rating{
  top:8%; left:-14%;
  display:flex;
  align-items:center;
  gap:10px;
}
.float-card.rating .num{
  font-family:var(--font-head);
  font-size:24px;
  color:var(--text);
}
.float-card.rating .sub{
  font-size:11px;
  color:var(--text-tertiary);
}
.float-card.notify{
  bottom:10%; right:-16%;
  width:190px;
}
.float-card.notify .top{
  display:flex; align-items:center; gap:8px;
  font-size:11px; color:var(--green); font-family:var(--font-mono);
  margin-bottom:6px;
}
.float-card.notify .dot{
  width:6px; height:6px; border-radius:50%; background:var(--green);
}
.float-card.notify p{
  margin:0; font-size:12.5px; color:var(--text-secondary); line-height:1.4;
}

@keyframes rise{
  from{ opacity:0; transform:translateY(10px); }
  to{ opacity:1; transform:translateY(0); }
}
@keyframes floatY{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}
.float-card.rating{ animation:floatY 5s ease-in-out infinite; }
.float-card.notify{ animation:floatY 6s ease-in-out infinite 1s; }

/* ---------- Logo strip ---------- */
.strip{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:26px 0;
}
.strip p{
  text-align:center;
  font-size:13px;
  color:var(--text-tertiary);
  margin:0;
  letter-spacing:0.02em;
}

/* ---------- Problem section ---------- */
.problem{ padding:110px 0; }
.problem-head{
  max-width:640px;
  margin:0 auto 56px;
  text-align:center;
}
.problem-head .section-tag{ display:block; margin-bottom:14px; }
.problem-head h2{
  font-size:clamp(28px,3.4vw,42px);
  line-height:1.15;
  margin-bottom:16px;
}
.problem-head p{
  color:var(--text-secondary);
  font-size:16.5px;
  line-height:1.6;
}
.problem-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.problem-card{
  background:var(--surface);
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  padding:32px 28px;
}
.problem-card .icon{
  width:44px; height:44px;
  border-radius:12px;
  background:rgba(224,86,74,0.12);
  color:var(--red);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
}
.problem-card .icon svg{ width:22px; height:22px; }
.problem-card h3{
  font-size:18px;
  margin-bottom:10px;
  font-family:var(--font-body);
  font-weight:700;
}
.problem-card p{
  font-size:14.5px;
  color:var(--text-secondary);
  line-height:1.6;
  margin:0;
}

/* ---------- How it works ---------- */
.how{
  padding:110px 0;
  background:var(--bg-raise);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.how-head{
  max-width:640px;
  margin:0 auto 64px;
  text-align:center;
}
.how-head .section-tag{ display:block; margin-bottom:14px; }
.how-head h2{ font-size:clamp(28px,3.4vw,42px); line-height:1.15; }

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  position:relative;
}
.step{
  background:var(--surface);
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  padding:32px 26px 30px;
  position:relative;
}
.step .num{
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--teal-light);
  border:1px solid var(--teal-dim);
  background:rgba(37,160,176,0.1);
  width:34px; height:34px;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:22px;
}
.step h3{
  font-size:19px;
  font-weight:700;
  font-family:var(--font-body);
  margin-bottom:10px;
}
.step p{
  font-size:14.5px;
  line-height:1.65;
  color:var(--text-secondary);
  margin:0;
}
.step-visual{
  margin-top:20px;
  border-radius:var(--radius-sm);
  overflow:hidden;
  border:1px solid var(--border-light);
}

/* mini routing visual for step 3 */
.route{
  background:var(--bg-raise-2);
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.route-row{
  display:flex; align-items:center; gap:10px;
  font-size:12px;
}
.route-row .tag{
  font-family:var(--font-mono);
  font-size:10.5px;
  padding:4px 8px;
  border-radius:6px;
}
.route-row.good .tag{ background:rgba(34,164,91,0.15); color:var(--green); }
.route-row.bad .tag{ background:rgba(224,86,74,0.15); color:var(--red); }
.route-row span.dest{ color:var(--text-tertiary); }

/* mini rating tap visual for step 2 */
.rate-visual{
  background:var(--bg-raise-2);
  padding:20px 16px;
  display:flex;
  justify-content:center;
  gap:8px;
}
.rate-visual svg{ width:22px; height:22px; }

/* mini timeline visual for step 1 */
.timeline-visual{
  background:var(--bg-raise-2);
  padding:18px 16px;
  display:flex;
  align-items:center;
  gap:0;
}
.timeline-visual .t-dot{
  width:9px; height:9px; border-radius:50%;
  background:var(--text-tertiary);
  flex-shrink:0;
}
.timeline-visual .t-dot.on{ background:var(--teal-light); box-shadow:0 0 0 4px rgba(63,201,219,0.18); }
.timeline-visual .t-line{
  flex:1; height:1px; background:var(--border-light);
}

/* ---------- Features ---------- */
.features{ padding:110px 0; }
.features-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:56px;
  flex-wrap:wrap;
}
.features-head h2{
  font-size:clamp(28px,3.4vw,42px);
  line-height:1.15;
  max-width:520px;
}
.features-head .section-tag{ display:block; margin-bottom:14px; }
.features-head p{
  color:var(--text-secondary);
  font-size:16px;
  max-width:340px;
  line-height:1.6;
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--border-light);
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  overflow:hidden;
}
.feature{
  background:var(--surface);
  padding:32px 28px;
  transition:background .2s ease;
}
.feature:hover{ background:#1E282E; }
.feature .icon{
  width:40px; height:40px;
  border-radius:11px;
  background:var(--teal-dim);
  color:var(--teal-light);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px;
}
.feature .icon svg{ width:20px; height:20px; }
.feature h3{
  font-size:17px;
  font-weight:700;
  font-family:var(--font-body);
  margin-bottom:8px;
}
.feature p{
  font-size:14px;
  color:var(--text-secondary);
  line-height:1.6;
  margin:0;
}

/* ---------- Screens / product showcase ---------- */
.showcase{
  padding:110px 0;
  background:var(--bg-raise);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.showcase-head{
  max-width:640px;
  margin:0 auto 56px;
  text-align:center;
}
.showcase-head .section-tag{ display:block; margin-bottom:14px; }
.showcase-head h2{ font-size:clamp(28px,3.4vw,42px); line-height:1.15; margin-bottom:14px; }
.showcase-head p{ color:var(--text-secondary); font-size:16.5px; line-height:1.6; }

.showcase-main{
  border:1px solid var(--border-light);
  border-radius:var(--radius-xl);
  overflow:hidden;
  background:var(--bg-raise-2);
  box-shadow:0 30px 70px -30px rgba(0,0,0,0.6);
  margin-bottom:28px;
}
.showcase-main .browser-bar{
  display:flex;
  align-items:center;
  gap:8px;
  padding:14px 18px;
  border-bottom:1px solid var(--border);
  background:var(--bg-raise);
}
.browser-bar .dot{ width:9px; height:9px; border-radius:50%; background:var(--surface-2); }
.browser-bar .url{
  margin-left:12px;
  font-family:var(--font-mono);
  font-size:11.5px;
  color:var(--text-tertiary);
  background:var(--bg);
  padding:5px 12px;
  border-radius:6px;
}
.showcase-main img{ width:100%; display:block; }

.showcase-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.showcase-card{
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:var(--bg-raise-2);
}
.showcase-card .sc-label{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 20px;
  border-bottom:1px solid var(--border);
}
.showcase-card .sc-label b{
  font-size:14px; font-weight:700;
}
.showcase-card .sc-label span{
  font-family:var(--font-mono);
  font-size:10.5px;
  color:var(--teal-light);
  background:rgba(37,160,176,0.1);
  padding:4px 9px;
  border-radius:var(--radius-pill);
}
.showcase-card .sc-body{ padding:22px 20px 26px; }

/* review request card mockup */
.msg-line{
  display:flex; flex-direction:column; gap:8px; margin-bottom:14px;
}
.msg-line .bubble{ font-size:12.5px; padding:10px 13px; max-width:92%; }

/* rating trend mockup */
.trend-bars{
  display:flex;
  align-items:flex-end;
  gap:8px;
  height:120px;
  margin-bottom:14px;
}
.trend-bars .bar{
  flex:1;
  background:var(--surface-2);
  border-radius:5px 5px 0 0;
  position:relative;
}
.trend-bars .bar.on{ background:linear-gradient(180deg,var(--teal-light),var(--teal)); }
.trend-legend{
  display:flex; justify-content:space-between;
  font-family:var(--font-mono);
  font-size:10px; color:var(--text-tertiary);
}
.trend-summary{
  display:flex; align-items:baseline; gap:8px; margin-top:16px;
}
.trend-summary b{ font-family:var(--font-head); font-size:26px; font-weight:500; }
.trend-summary span{ font-size:12.5px; color:var(--green); font-weight:600; }

/* ---------- Industries ---------- */
.industries{ padding:100px 0; }
.industries-head{ text-align:center; margin-bottom:48px; }
.industries-head .section-tag{ display:block; margin-bottom:14px; }
.industries-head h2{ font-size:clamp(26px,3vw,36px); }
.chip-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  max-width:880px;
  margin:0 auto;
}
.chip{
  display:flex; align-items:center; gap:9px;
  border:1px solid var(--border-light);
  background:var(--surface);
  padding:12px 20px;
  border-radius:var(--radius-pill);
  font-size:14px;
  color:var(--text-secondary);
}
.chip svg{ width:16px; height:16px; color:var(--teal-light); }

/* ---------- Final CTA / Demo ---------- */
.demo{
  padding:110px 0 120px;
  position:relative;
  overflow:hidden;
  border-top:1px solid var(--border);
}
.demo::before{
  content:'';
  position:absolute;
  bottom:-260px; left:50%;
  transform:translateX(-50%);
  width:800px; height:600px;
  background:radial-gradient(circle, rgba(37,160,176,0.18), transparent 70%);
  pointer-events:none;
}
.demo-head{
  max-width:600px;
  margin:0 auto 40px;
  text-align:center;
  position:relative;
}
.demo-head .section-tag{ display:block; margin-bottom:14px; }
.demo-head h2{ font-size:clamp(30px,4vw,46px); line-height:1.12; margin-bottom:16px; }
.demo-head p{ color:var(--text-secondary); font-size:17px; line-height:1.6; }

.demo-panel{
  max-width:900px;
  margin:0 auto;
  background:var(--surface);
  border:1px solid var(--border-light);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:0 40px 90px -30px rgba(0,0,0,0.65);
  position:relative;
}
.meetings-iframe-container{ min-height:600px; }

.demo-fallback{
  padding:60px 40px;
  text-align:center;
}
.demo-fallback p{ color:var(--text-secondary); margin-bottom:22px; }

/* ---------- Footer ---------- */
footer{
  border-top:1px solid var(--border);
  padding:40px 0;
}
footer .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:18px;
}
.footer-links{
  display:flex;
  gap:26px;
}
.footer-links a{
  font-size:13.5px;
  color:var(--text-tertiary);
}
.footer-links a:hover{ color:var(--text-secondary); }
.footer-copy{
  font-size:13px;
  color:var(--text-tertiary);
}

/* ---------- Mobile nav ---------- */
.nav-toggle{
  display:none;
  background:none;
  border:none;
  padding:8px;
  color:var(--text);
}
.nav-toggle svg{ width:24px; height:24px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta{
  display:none;
  position:fixed;
  bottom:0; left:0; right:0;
  z-index:90;
  padding:14px 18px calc(14px + env(safe-area-inset-bottom));
  background:rgba(10,13,15,0.92);
  backdrop-filter:blur(14px);
  border-top:1px solid var(--border);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; margin-bottom:20px; }
  .problem-grid, .steps{ grid-template-columns:1fr; }
  .feature-grid{ grid-template-columns:1fr 1fr; }
  .showcase-grid{ grid-template-columns:1fr; }
}

@media (max-width: 700px){
  .wrap{ padding:0 20px; }
  .nav-links{ display:none; }
  .nav-toggle{ display:block; }
  .hero{ padding:44px 0 40px; }
  .hero-stats{ gap:22px; flex-wrap:wrap; }
  .feature-grid{ grid-template-columns:1fr; }
  .problem, .how, .features, .showcase, .industries{ padding:70px 0; }
  .demo{ padding:70px 0 140px; }
  .phone{ width:230px; margin:0 auto; }
  .float-card.rating, .float-card.notify{ display:none; }
  .sticky-cta{ display:block; }
  body{ padding-bottom:78px; }
  .chip-row{ gap:9px; }
  .chip{ padding:10px 15px; font-size:13px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in{
  opacity:1;
  transform:translateY(0);
}

/* ---------- Legal pages ---------- */
.legal{
  padding:64px 0 120px;
}
.legal .wrap{ max-width:760px; }
.legal .updated{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--text-tertiary);
  margin-bottom:8px;
}
.legal h1{
  font-size:clamp(30px,4vw,42px);
  margin-bottom:32px;
}
.legal h2{
  font-size:20px;
  font-weight:700;
  font-family:var(--font-body);
  margin:40px 0 14px;
}
.legal p, .legal li{
  font-size:15px;
  line-height:1.75;
  color:var(--text-secondary);
}
.legal ul{
  margin:0 0 16px;
  padding-left:20px;
  list-style:disc;
}
.legal li{ margin-bottom:8px; }
.legal a{
  color:var(--teal-light);
  text-decoration:underline;
}
.legal .intro{
  font-size:16px;
  color:var(--text-secondary);
  line-height:1.7;
  margin-bottom:8px;
}

/* mobile menu panel */
.mobile-menu{
  position:fixed;
  inset:0;
  z-index:200;
  background:var(--bg);
  display:none;
  flex-direction:column;
  padding:24px 24px;
}
.mobile-menu.open{ display:flex; }
.mobile-menu .top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:40px;
}
.mobile-menu a:not(.btn){
  font-family:var(--font-head);
  font-size:26px;
  padding:14px 0;
  border-bottom:1px solid var(--border);
  color:var(--text);
}
.mobile-menu .btn{ margin-top:24px; }
