@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap");

:root{
  --studio-green:#063f3c;
  --studio-deep:#022b29;
  --studio-gold:#b9923a;
  --studio-paper:#f7f8f6;
  --studio-white:#fff;
  --studio-ink:#10201f;
  --studio-muted:#60716d;
  --studio-line:#dce8e2;
  --studio-soft:#eef4f1;
  --studio-shadow:0 18px 46px rgba(2,43,41,.10);
  --studio-ease:cubic-bezier(.2,.8,.2,1);
}

html{
  scroll-padding-top:110px;
  overflow-x:hidden;
  font-family:"Cairo","Segoe UI",Tahoma,Arial,sans-serif !important;
}

body{
  font-family:"Cairo","Segoe UI",Tahoma,Arial,sans-serif !important;
  color:var(--studio-ink);
  background:
    linear-gradient(180deg,rgba(238,244,241,.75),rgba(247,248,246,0) 360px),
    var(--studio-paper) !important;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

body,
body *,
body *::before,
body *::after{
  font-family:"Cairo","Segoe UI",Tahoma,Arial,sans-serif !important;
  letter-spacing:0 !important;
}

h1,h2,h3{
  text-wrap:balance;
}

p,.lead,li,span{
  text-wrap:pretty;
}

img{
  height:auto;
}

header,.site-header{
  box-shadow:0 10px 30px rgba(2,43,41,.06);
}

.navlinks a{
  position:relative;
  padding:8px 2px;
  transition:color .2s var(--studio-ease);
}

.navlinks a::after{
  content:"";
  position:absolute;
  right:0;
  left:0;
  bottom:2px;
  height:2px;
  border-radius:2px;
  background:var(--studio-gold);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .24s var(--studio-ease);
}

.navlinks a:hover::after{
  transform:scaleX(1);
}

.studio-brand{
  flex-shrink:0;
}

.studio-brand span{
  display:flex;
  flex-direction:column;
  line-height:1.28;
}

.studio-brand small{
  margin-top:2px;
  color:var(--studio-muted);
  font-size:11px;
  font-weight:800;
}

.studio-logo{
  object-fit:cover !important;
  padding:0 !important;
}

.product-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:42px;
  padding:7px 11px;
  border:1px solid rgba(185,146,58,.34);
  border-radius:8px;
  background:linear-gradient(135deg,#ffffff,#f6faf8);
  color:var(--studio-green);
  font-weight:900;
  box-shadow:0 10px 24px rgba(6,63,60,.08);
  white-space:nowrap;
}

.product-logo{
  width:30px;
  height:30px;
  object-fit:contain;
  flex:0 0 auto;
}

.header-whatsapp{
  min-width:max-content;
}

.contact-actions{
  justify-content:flex-end;
}

.hero-contact,
.contact-primary{
  box-shadow:inset 0 -3px 0 rgba(255,255,255,.18), 0 14px 30px rgba(2,43,41,.12);
}

.btn{
  border-radius:8px !important;
  min-height:44px;
  touch-action:manipulation;
}

.btn:not(.primary):not(.gold):not(.dark):not(.ghost):not(.whatsapp-float):not(.active){
  color:var(--studio-green) !important;
}

.cta .btn:not(.gold):not(.dark):not(.primary):not(.ghost):not(.whatsapp-float):not(.active),
.cta-box .btn:not(.gold):not(.dark):not(.primary):not(.ghost):not(.whatsapp-float):not(.active){
  background:var(--studio-white) !important;
  border-color:rgba(255,255,255,.75) !important;
  color:var(--studio-green) !important;
}

.back-to-top{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:45;
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border:1px solid rgba(185,146,58,.44);
  border-radius:8px;
  background:var(--studio-green);
  color:#fff;
  font-size:23px;
  font-weight:900;
  line-height:1;
  box-shadow:0 18px 42px rgba(2,43,41,.22);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .22s var(--studio-ease), visibility .22s var(--studio-ease), transform .22s var(--studio-ease), background .2s var(--studio-ease);
}

.back-to-top:hover{
  background:var(--studio-deep);
  transform:translateY(6px);
}

.back-to-top.is-visible{
  opacity:1;
  visibility:visible;
  transform:none;
}

.lead-modal-backdrop{
  position:fixed;
  inset:0;
  z-index:80;
  display:grid;
  place-items:center;
  padding:18px;
  background:rgba(2,43,41,.62);
  backdrop-filter:blur(10px);
  opacity:0;
  visibility:hidden;
  transition:opacity .2s var(--studio-ease), visibility .2s var(--studio-ease);
}

.lead-modal-backdrop.is-open{
  opacity:1;
  visibility:visible;
}

.lead-modal{
  width:min(880px,100%);
  max-height:min(92vh,860px);
  overflow:auto;
  border:1px solid rgba(185,146,58,.38);
  border-radius:8px;
  background:var(--studio-white);
  box-shadow:0 30px 90px rgba(0,0,0,.28);
}

.lead-modal-head{
  position:sticky;
  top:0;
  z-index:2;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:20px 22px;
  border-bottom:1px solid var(--studio-line);
  background:linear-gradient(135deg,#ffffff,#f6faf8);
}

.lead-modal-title{
  margin:0;
  color:var(--studio-green);
  font-size:26px;
  line-height:1.25;
}

.lead-modal-subtitle{
  margin:6px 0 0;
  color:var(--studio-muted);
  font-weight:700;
}

.lead-close{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border:1px solid var(--studio-line);
  border-radius:8px;
  background:#fff;
  color:var(--studio-green);
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.lead-modal-body{
  padding:22px;
}

.lead-section{
  display:grid;
  gap:14px;
  margin-bottom:20px;
}

.lead-section-title{
  display:flex;
  align-items:center;
  gap:9px;
  margin:0;
  color:var(--studio-green);
  font-size:18px;
}

.lead-section-title::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--studio-gold);
}

.lead-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.lead-field{
  display:grid;
  gap:6px;
}

.lead-field label{
  color:var(--studio-green);
  font-weight:900;
  font-size:14px;
}

.lead-field input,
.lead-field textarea{
  width:100%;
  border:1px solid var(--studio-line);
  border-radius:8px;
  background:#fff;
  color:var(--studio-ink);
  padding:11px 12px;
  font-size:15px;
  font-weight:700;
  outline:0;
}

.lead-field textarea{
  min-height:94px;
  resize:vertical;
}

.lead-field input:focus,
.lead-field textarea:focus{
  border-color:rgba(185,146,58,.8);
  box-shadow:0 0 0 3px rgba(185,146,58,.16);
}

.lead-choice-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.lead-choice{
  position:relative;
  display:grid;
  gap:6px;
  min-height:118px;
  padding:14px;
  border:1px solid var(--studio-line);
  border-radius:8px;
  background:#fff;
  cursor:pointer;
  transition:border-color .2s var(--studio-ease), box-shadow .2s var(--studio-ease), transform .2s var(--studio-ease);
}

.lead-choice:hover{
  transform:translateY(-2px);
  border-color:rgba(185,146,58,.48);
  box-shadow:0 14px 34px rgba(2,43,41,.08);
}

.lead-choice input{
  position:absolute;
  inset-inline-start:12px;
  top:14px;
  width:18px;
  height:18px;
  accent-color:var(--studio-green);
}

.lead-choice strong{
  color:var(--studio-green);
  font-size:17px;
  padding-inline-start:28px;
}

.lead-choice span{
  color:var(--studio-muted);
  font-weight:700;
  line-height:1.7;
}

.lead-choice em{
  color:var(--studio-gold);
  font-style:normal;
  font-weight:900;
}

.lead-price-line{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  padding:7px 10px;
  border:1px solid rgba(185,146,58,.3);
  border-radius:8px;
  background:#fff9e9;
  color:var(--studio-green) !important;
  font-weight:900 !important;
  line-height:1.5 !important;
}

.payment-choice{
  min-height:136px;
}

.payment-action-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  max-width:100%;
  min-height:38px;
  padding:8px 14px;
  border:1px solid rgba(185,146,58,.45);
  border-radius:8px;
  background:var(--studio-green);
  color:#fff !important;
  font-size:14px;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 12px 24px rgba(2,43,41,.12);
}

.payment-action-link:hover{
  background:var(--studio-deep);
}

.lead-choice:has(input:checked){
  border-color:var(--studio-gold);
  background:linear-gradient(180deg,#ffffff,#fffaf0);
  box-shadow:0 16px 38px rgba(185,146,58,.13);
}

.lead-payment{
  display:none;
}

.lead-billing{
  display:none;
}

.lead-payment.is-visible{
  display:grid;
}

.lead-billing.is-visible{
  display:grid;
}

.lead-goal-section.is-hidden{
  display:none;
}

.payment-note{
  margin:0;
  padding:12px 14px;
  border:1px solid rgba(185,146,58,.34);
  border-radius:8px;
  background:#fff9e9;
  color:var(--studio-green);
  font-weight:800;
}

.payment-summary{
  display:none;
  margin:0;
  padding:12px 14px;
  border:1px solid rgba(185,146,58,.4);
  border-radius:8px;
  background:linear-gradient(135deg,#063f3c,#092c2a);
  color:#fff;
  font-weight:900;
  line-height:1.7;
}

.payment-summary.is-visible{
  display:block;
}

.wallet-fee-note{
  display:none;
  margin:0;
  padding:12px 14px;
  border:1px solid rgba(2,43,41,.14);
  border-radius:8px;
  background:#edf8f5;
  color:var(--studio-green);
  font-weight:900;
  line-height:1.7;
}

.wallet-fee-note.is-visible{
  display:block;
}

.lead-error{
  display:none;
  margin:0 0 14px;
  padding:10px 12px;
  border:1px solid rgba(180,35,24,.22);
  border-radius:8px;
  background:#fff1f0;
  color:#9f1d14;
  font-weight:900;
}

.lead-error.is-visible{
  display:block;
}

.lead-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:8px;
  border-top:1px solid var(--studio-line);
}

.lead-actions .btn{
  min-width:190px;
}

.lead-privacy{
  margin:0;
  color:var(--studio-muted);
  font-size:13px;
  font-weight:700;
}

.btn:focus-visible,
.navlinks a:focus-visible,
button:focus-visible,
.back-to-top:focus-visible{
  outline:3px solid rgba(185,146,58,.42);
  outline-offset:3px;
}

.hero{
  position:relative;
}

.hero::after{
  content:"";
  position:absolute;
  right:0;
  left:0;
  bottom:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(185,146,58,.7),transparent);
  pointer-events:none;
}

.studio-preview,
.shot,
.hero-shot,
.work-shot{
  transform:translateZ(0);
}

.work-card,
.service,
.card,
.feature,
.proof,
.about-point,
.reason,
.plan,
.page-card,
.screen,
.step,
.cta,
.cta-box{
  border-radius:8px !important;
}

.work-card,
.service,
.card,
.feature,
.about-point,
.reason,
.page-card,
.step,
.plan{
  transition:transform .24s var(--studio-ease), box-shadow .24s var(--studio-ease), border-color .24s var(--studio-ease);
}

.work-card:hover,
.service:hover,
.card:hover,
.feature:hover,
.about-point:hover,
.reason:hover,
.page-card:hover,
.step:hover,
.plan:hover{
  transform:translateY(-3px);
  border-color:rgba(185,146,58,.45) !important;
  box-shadow:0 20px 48px rgba(2,43,41,.12) !important;
}

[data-reveal]{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .58s var(--studio-ease), transform .58s var(--studio-ease);
  transition-delay:var(--reveal-delay,0ms);
}

[data-reveal].is-visible{
  opacity:1;
  transform:none;
}

.pricing-pro{
  background:linear-gradient(180deg,#ffffff 0%,#f2f7f4 100%);
  border-block:1px solid var(--studio-line);
}

.pricing-pro .wrap{
  display:grid;
  gap:22px;
}

.pricing-intro{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(240px,.46fr);
  gap:18px;
  align-items:end;
}

.pricing-intro h2{
  margin:0 0 10px;
  color:var(--studio-green);
}

.pricing-intro p,
.discount-card p{
  margin:0;
  color:var(--studio-muted);
}

.discount-card{
  border:1px solid rgba(185,146,58,.38);
  background:linear-gradient(135deg,#fff9e9,#ffffff);
  border-radius:8px;
  padding:16px;
  box-shadow:0 16px 38px rgba(185,146,58,.10);
}

.discount-card strong{
  display:block;
  color:var(--studio-green);
  font-size:18px;
  margin-bottom:5px;
}

.pricing-offers{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.pricing-offers article{
  display:grid;
  gap:7px;
  min-height:118px;
  padding:15px;
  border:1px solid var(--studio-line);
  border-radius:8px;
  background:var(--studio-white);
  box-shadow:0 14px 32px rgba(2,43,41,.06);
}

.pricing-offers article.featured{
  border-color:rgba(185,146,58,.55);
  background:linear-gradient(135deg,#063f3c,#0a4f49);
  color:#fff;
}

.pricing-offers strong{
  color:var(--studio-green);
  font-size:18px;
  line-height:1.4;
}

.pricing-offers span{
  color:var(--studio-muted);
  font-weight:800;
  line-height:1.75;
}

.pricing-offers .featured strong,
.pricing-offers .featured span{
  color:#fff;
}

.pricing-toolbar{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}

.billing-toggle{
  display:inline-grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
  padding:6px;
  border:1px solid var(--studio-line);
  background:var(--studio-white);
  border-radius:8px;
}

.billing-toggle button{
  border:0;
  border-radius:8px;
  padding:9px 16px;
  background:transparent;
  color:var(--studio-muted);
  font:800 14px/1.2 "Cairo","Segoe UI",Tahoma,Arial,sans-serif;
  cursor:pointer;
}

.billing-toggle button.active{
  background:var(--studio-green);
  color:#fff;
  box-shadow:inset 0 -2px 0 var(--studio-gold);
}

.pricing-note-pro{
  color:var(--studio-muted);
  font-weight:700;
  margin:0;
}

.price-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}

.price-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:100%;
  border:1px solid var(--studio-line);
  background:var(--studio-white);
  border-radius:8px;
  padding:20px;
  box-shadow:var(--studio-shadow);
  transition:transform .24s var(--studio-ease), box-shadow .24s var(--studio-ease), border-color .24s var(--studio-ease);
}

.price-card:hover{
  transform:translateY(-4px);
  border-color:rgba(185,146,58,.55);
  box-shadow:0 24px 58px rgba(2,43,41,.14);
}

.price-card.featured{
  border:2px solid var(--studio-gold);
  background:linear-gradient(180deg,#ffffff 0%,#fffaf0 100%);
}

.price-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:flex-start;
}

.plan-label{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:4px 10px;
  border-radius:8px;
  background:#eef4f1;
  color:var(--studio-green);
  font-weight:900;
  font-size:13px;
}

.price-card.featured .plan-label{
  background:var(--studio-green);
  color:#fff;
}

.price-card h3{
  margin:12px 0 4px;
  color:var(--studio-green);
  font-size:28px;
  line-height:1.15;
}

.plan-subtitle{
  color:var(--studio-gold);
  font-weight:900;
}

.plan-desc{
  min-height:58px;
  margin:10px 0 16px;
  color:var(--studio-muted);
}

.price-box{
  padding:15px;
  border-radius:8px;
  background:#f6faf8;
  border:1px solid var(--studio-line);
}

.price-main{
  display:flex;
  align-items:flex-end;
  gap:8px;
  flex-wrap:wrap;
}

.price-current{
  color:var(--studio-green);
  font-size:33px;
  line-height:1;
  font-weight:900;
}

.price-period{
  color:var(--studio-muted);
  font-weight:800;
}

.price-old{
  margin-top:8px;
  color:var(--studio-muted);
  font-weight:800;
}

.price-old span{
  text-decoration:line-through;
}

.price-old-title{
  text-decoration:none !important;
  color:var(--studio-green);
}

.annual-copy{
  margin-top:8px;
  color:#2f6e45;
  font-weight:900;
  line-height:1.7;
}

.billing-comparison{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.billing-comparison article{
  display:grid;
  gap:10px;
  padding:18px;
  border:1px solid var(--studio-line);
  border-radius:8px;
  background:var(--studio-white);
  box-shadow:0 16px 38px rgba(2,43,41,.07);
}

.billing-comparison article.featured{
  border-color:rgba(185,146,58,.55);
  background:linear-gradient(180deg,#fffaf0,#ffffff);
}

.billing-comparison span{
  width:max-content;
  max-width:100%;
  padding:5px 10px;
  border-radius:8px;
  background:#eef4f1;
  color:var(--studio-green);
  font-size:13px;
  font-weight:900;
}

.billing-comparison h3{
  margin:0;
  color:var(--studio-green);
  font-size:22px;
}

.billing-comparison p{
  margin:0;
  color:var(--studio-muted);
  font-weight:800;
  line-height:1.8;
}

.billing-comparison ul{
  margin:0;
  padding:0 20px 0 0;
  color:var(--studio-muted);
  font-weight:800;
}

.billing-comparison li{
  margin-bottom:6px;
}

.limits{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin:16px 0;
}

.limit{
  border:1px solid var(--studio-line);
  border-radius:8px;
  padding:10px 8px;
  background:#fff;
}

.limit span{
  display:block;
  color:var(--studio-muted);
  font-size:12px;
  font-weight:800;
}

.limit b{
  display:block;
  color:var(--studio-green);
  font-size:17px;
  margin-top:2px;
}

.plan-features{
  margin:0;
  padding:0 20px 0 0;
  color:var(--studio-muted);
}

.plan-features li{
  margin-bottom:8px;
}

.price-actions{
  display:grid;
  gap:8px;
  margin-top:auto;
  padding-top:16px;
}

.comparison-wrap{
  overflow-x:auto;
  border:1px solid var(--studio-line);
  border-radius:8px;
  background:var(--studio-white);
  box-shadow:0 16px 38px rgba(2,43,41,.06);
}

.comparison-table{
  width:100%;
  min-width:690px;
  border-collapse:collapse;
}

.comparison-table th,
.comparison-table td{
  padding:14px 16px;
  border-bottom:1px solid var(--studio-line);
  text-align:right;
  color:var(--studio-muted);
}

.comparison-table th{
  color:var(--studio-green);
  background:#f6faf8;
  font-weight:900;
}

.comparison-table tr:last-child td{
  border-bottom:0;
}

.comparison-table td:not(:first-child){
  font-weight:900;
  color:var(--studio-green);
}

@media(max-width:980px){
  html{
    scroll-padding-top:150px;
  }

  .nav{
    display:grid !important;
    grid-template-columns:1fr;
    justify-items:center;
    padding:10px 0;
    gap:10px !important;
  }

  .brand{
    justify-content:center;
    min-width:0;
    text-align:center;
  }

  .studio-brand{
    order:1;
  }

  .product-badge{
    order:2;
  }

  .navlinks{
    order:3;
    display:flex !important;
    width:100%;
    max-width:100%;
    overflow:visible;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px !important;
    padding:4px 1px 8px;
    min-width:0;
  }

  .navlinks a{
    flex:0 0 auto;
    padding:8px 11px;
    border:1px solid var(--studio-line);
    border-radius:8px;
    background:rgba(255,255,255,.82);
    color:var(--studio-green);
    font-size:13px;
    min-width:0;
  }

  .navlinks a::after{
    display:none;
  }

  header .btn,
  .site-header .btn{
    order:4;
    min-height:40px;
    padding:8px 14px;
  }

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

  .pricing-intro,
  .pricing-offers,
  .price-cards,
  .billing-comparison{
    grid-template-columns:1fr;
  }

  .plan-desc{
    min-height:0;
  }
}

@media(max-width:620px){
  html{
    scroll-padding-top:176px;
  }

  body{
    font-size:15.5px;
  }

  .wrap{
    width:calc(100% - 24px) !important;
  }

  .brand-logo,
  .logo{
    width:44px !important;
    height:44px !important;
  }

  .studio-brand small{
    display:none;
  }

  .product-badge{
    min-height:38px;
    padding:6px 10px;
    font-size:13px;
  }

  .product-logo{
    width:26px;
    height:26px;
  }

  .navlinks{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px !important;
    width:100%;
  }

  .navlinks a{
    width:100%;
    text-align:center;
    white-space:normal;
  }

  .navlinks a:last-child:nth-child(odd){
    grid-column:1 / -1;
  }

  .header-whatsapp{
    display:none !important;
  }

  .brand-text{
    font-size:13px !important;
  }

  h1{
    font-size:28px !important;
    line-height:1.25 !important;
    max-width:318px !important;
    margin-inline:auto !important;
    padding-inline:8px !important;
    text-align:center !important;
    overflow-wrap:anywhere;
  }

  h2{
    font-size:25px !important;
    line-height:1.32 !important;
  }

  .lead{
    font-size:16.5px !important;
    line-height:1.95 !important;
    max-width:318px !important;
    margin-inline:auto  !important;
    padding-inline:8px !important;
    text-align:center !important;
  }

  section{
    padding:48px 0 !important;
  }

  .hero{
    padding:42px 0 32px !important;
  }

  .hero-actions,
  .actions{
    display:grid !important;
    grid-template-columns:1fr;
    width:100%;
  }

  .hero-grid > div:first-child{
    text-align:center;
    min-width:0;
    overflow:visible !important;
  }

  .btn{
    width:100%;
    white-space:normal !important;
  }

  .studio-preview{
    min-height:280px !important;
  }

  .price-card{
    padding:17px;
  }

  .price-current{
    font-size:30px;
  }

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

  .pricing-toolbar{
    display:grid;
    grid-template-columns:1fr;
  }

  .billing-toggle{
    width:100%;
  }

  .comparison-wrap{
    margin-inline:-2px;
  }

  .whatsapp-float{
    width:auto !important;
    right:12px !important;
    left:auto !important;
    bottom:12px !important;
    min-height:42px !important;
    padding:9px 14px !important;
    border-radius:8px !important;
    font-size:14px !important;
  }

  .back-to-top{
    right:auto;
    left:12px;
    bottom:12px;
    width:42px;
    height:42px;
    font-size:21px;
  }

  .lead-modal-backdrop{
    padding:10px;
    align-items:end;
  }

  .lead-modal{
    max-height:92vh;
  }

  .lead-modal-head,
  .lead-modal-body{
    padding:16px;
  }

  .lead-modal-title{
    font-size:22px;
  }

  .lead-grid,
  .lead-choice-grid{
    grid-template-columns:1fr;
  }

  .lead-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .lead-actions .btn{
    min-width:0;
  }
}

@media(prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
  }

  [data-reveal]{
    opacity:1;
    transform:none;
  }
}
