*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  background:#0b1117;
  color:#fff;
  line-height:1.55
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

:root{
  --bg:#0b1117;
  --bg-soft:#0f141b;
  --bg-card:#151c25;
  --bg-card-soft:#111821;
  --text:#ffffff;
  --text-soft:rgba(255,255,255,.72);
  --text-muted:rgba(255,255,255,.58);
  --text-faint:rgba(255,255,255,.38);
  --line:rgba(255,255,255,.10);
  --line-soft:rgba(255,255,255,.08);
  --line-strong:rgba(255,255,255,.16);
  --green:#78d12f;
  --green-hover:#8cdf42;
  --green-soft:rgba(120,209,47,.14);
  --radius-sm:14px;
  --radius-md:22px;
  --radius-lg:32px;
  --shadow-soft:0 16px 36px rgba(0,0,0,.16);
  --shadow-card:0 22px 50px rgba(0,0,0,.20);
  --shadow-card-hover:0 28px 58px rgba(0,0,0,.28);
  --shadow-strong:0 35px 70px rgba(0,0,0,.35);
}

a,
button,
input,
select,
textarea{
  transition:all .2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:2px solid var(--green);
  outline-offset:2px;
}

.container{width:min(1180px,calc(100% - 32px));margin:0 auto}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid var(--line);
  background:rgba(11,17,23,.82);
  backdrop-filter:blur(14px)
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:20px
}

.brand img{
  height:72px;
  width:auto;
  display:block
}

.site-nav{
  display:flex;
  gap:24px;
  color:rgba(255,255,255,.74);
  font-size:14px
}

.site-nav a:hover,
.site-nav a[aria-current="page"]{
  color:#fff
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:14px;
  padding:15px 22px;
  font-weight:700;
  font-size:15px;
  line-height:1;
  transition:.2s ease;
  border:1px solid transparent;
  cursor:pointer
}

.btn-primary{
  background:var(--green);
  color:#071019;
  box-shadow:0 10px 24px rgba(120,209,47,.18)
}

.btn-primary:hover{
  background:var(--green-hover);
  transform:translateY(-1px)
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(10px);
  color:#fff
}

.btn-secondary:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.22);
  transform:translateY(-1px)
}

.header-cta-live{display:inline-flex}

.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:60;
  border-radius:999px;
  background:var(--green);
  padding:15px 22px;
  color:#071019;
  font-size:14px;
  font-weight:700;
  box-shadow:0 20px 40px rgba(0,0,0,.38)
}

/* Hero */
.hero{
  position:relative;
  min-height:88vh;
  border-bottom:1px solid var(--line);
  overflow:hidden;
  background:#0a1016
}

.hero-bg,
.hero-overlay,
.hero-glow{
  position:absolute;
  inset:0
}

.hero-bg{
  background-size:cover;
  background-position:center right;
  transform:scale(1.02);
  opacity:.98
}

.hero-overlay{
  background:linear-gradient(
    to left,
    rgba(7,11,16,.05) 0%,
    rgba(7,11,16,.12) 15%,
    rgba(7,11,16,.25) 30%,
    rgba(7,11,16,.55) 55%,
    rgba(7,11,16,.85) 80%,
    rgba(7,11,16,.96) 100%
  )
}

.hero-glow{
  background:
    radial-gradient(circle at top right,rgba(120,209,47,.12),transparent 24%),
    radial-gradient(circle at 85% 80%,rgba(120,209,47,.08),transparent 18%),
    radial-gradient(circle at bottom left,rgba(20,56,94,.16),transparent 30%)
}

.hero::before{
  content:"";
  position:absolute;
  right:9%;
  bottom:95px;
  width:210px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(120,209,47,0),rgba(120,209,47,.9),rgba(120,209,47,0));
  transform:rotate(-12deg);
  box-shadow:0 0 16px rgba(120,209,47,.24);
  z-index:2
}

.hero::after{
  content:"";
  position:absolute;
  right:4%;
  bottom:54px;
  width:300px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(120,209,47,0),rgba(120,209,47,.95),rgba(120,209,47,0));
  transform:rotate(-12deg);
  box-shadow:0 0 18px rgba(120,209,47,.26);
  z-index:2
}

.hero-minimal .hero-content{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:1fr;
  align-items:center;
  max-width:760px;
  min-height:88vh;
  padding:160px 0 120px
}

.hero-copy{max-width:640px}

.hero-title{
  font-size:clamp(48px,7vw,80px);
  line-height:1.05;
  font-weight:800;
  margin:0 0 18px
}

.hero-title span{display:block}

.hero-subtitle{
  max-width:620px;
  font-size:19px;
  color:rgba(255,255,255,.78);
  margin:0;
  line-height:1.7
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:34px
}

.hero-benefits{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px
}
.hero-subtitle-strong{
  max-width:700px;
  font-size:24px;
  line-height:1.4;
  font-weight:700;
  color:#fff;
  margin-top:4px;
}

.hero-subtitle-support{
  max-width:620px;
  font-size:18px;
  color:rgba(255,255,255,.74);
  margin-top:18px;
  line-height:1.75;
}

.hero-benefits span{
  display:inline-flex;
  align-items:center;
  border:1px solid rgba(120,209,47,.18);
  background:rgba(255,255,255,.05);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  backdrop-filter:blur(8px)
}

/* General sections */
.section{padding:88px 0}
.band-dark .section{padding:96px 0}

.section-head{
  max-width:760px;
  margin-bottom:10px
}

.section-head h2,
.copy-block h2{
  font-size:clamp(30px,4.2vw,46px);
  line-height:1.12;
  margin:12px 0 0
}

.section-head p,
.copy-block p{
  font-size:18px;
  color:rgba(255,255,255,.68);
  line-height:1.75
}

.eyebrow,
.section-eyebrow,
.card-eyebrow{
  text-transform:uppercase;
  letter-spacing:.2em;
  color:var(--green);
  font-size:12px
}

.band-dark{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg,#0f141b,#0b1117)
}

.section-head + .service-grid,
.section-head + .project-grid,
.section-head + .project-grid-compact,
.section-head + .review-grid,
.section-head + .seo-grid,
.section-head + .cert-logos,
.section-head + .cost-grid,
.section-head + .pricing-grid,
.section-head + .steps-grid,
.section-head + .legal-grid{
  margin-top:34px;
}

/* Cards / shared */
.service-grid,
.project-grid,
.review-grid,
.seo-grid,
.cert-grid,
.gallery-grid,
.cert-logos,
.service-overview-grid,
.cv-highlight-grid,
.storing-highlight-grid,
.cv-home-grid,
.cost-grid,
.pricing-grid,
.steps-grid,
.legal-grid{
  display:grid;
  gap:24px
}

.service-grid{grid-template-columns:repeat(2,1fr)}
.project-grid{grid-template-columns:repeat(2,1fr)}
.project-grid-compact{grid-template-columns:repeat(3,1fr);margin-top:32px}
.seo-grid{grid-template-columns:repeat(2,1fr);margin-top:24px}
.review-grid{grid-template-columns:repeat(3,1fr);margin-top:36px}
.cert-logos{grid-template-columns:repeat(3,1fr);margin-top:40px}
.cost-grid,
.pricing-grid,
.legal-grid{grid-template-columns:repeat(3,1fr);margin-top:32px}
.steps-grid{grid-template-columns:repeat(4,1fr);margin-top:32px}
.cv-highlight-grid,
.storing-highlight-grid,
.service-overview-grid{grid-template-columns:repeat(3,1fr)}

.service-card,
.project-card,
.cost-card,
.emergency-card,
.pricing-card,
.cv-highlight-card,
.storing-highlight-card,
.service-overview-card,
.cv-home-card{
  border:1px solid var(--line);
  background:linear-gradient(180deg,#151c25,#0f141b);
  box-shadow:var(--shadow-card);
  position:relative
}

.review-card,
.form-card,
.faq-item,
.legal-card,
.step-card,
.contact-clean-card,
.cert-logo-card{
  border:1px solid var(--line-soft);
  background:linear-gradient(180deg,#111821,#0f141b);
  box-shadow:var(--shadow-soft);
  position:relative
}

.seo-card,
.cert-card{
  border:1px solid var(--line-soft);
  background:rgba(255,255,255,.03);
  box-shadow:none;
  position:relative
}

.service-card,
.project-card{
  border-radius:32px;
  overflow:hidden
}

.service-card:hover,
.project-card:hover,
.cost-card:hover,
.pricing-card:hover{
  transform:translateY(-3px);
  transition:.22s ease;
  box-shadow:var(--shadow-card-hover)
}

.pricing-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-strong)
}

.service-card::after,
.project-card::after,
.cost-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(120,209,47,.04)
}

.service-card-link{
  display:block;
  height:100%
}

.service-card-link:hover .service-body h3{color:#fff}
.service-card-link:hover .service-image{transform:scale(1.02)}

.service-image,
.project-image{
  height:240px;
  background-size:cover;
  background-position:center;
  transition:transform .35s ease
}

.service-grid-compact .service-image,
.project-grid-compact .project-image{height:220px}

.service-body,
.project-body{padding:32px}

.service-body h3{
  margin:12px 0 0;
  font-size:28px;
  line-height:1.15
}

.project-body h3{
  margin:12px 0 0;
  font-size:24px;
  line-height:1.2
}

.form-card h3,
.contact-clean-card h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.2
}

.step-card h3,
.pricing-card h3,
.legal-card h3,
.cv-highlight-card h3,
.storing-highlight-card h3,
.service-overview-card h3{
  margin:10px 0 12px;
  font-size:24px
}

.service-body p,
.project-body p,
.review-card p,
.faq-item p,
.step-card p,
.pricing-card p,
.legal-card p,
.cv-highlight-card p,
.storing-highlight-card p,
.service-overview-card p,
.cv-home-copy p,
.cv-home-card p{
  color:rgba(255,255,255,.68);
  line-height:1.7
}

.copy-block,
.contact-list,
.plain-list,
.muted{
  color:rgba(255,255,255,.68)
}

.service-body ul{
  margin:20px 0 0;
  padding-left:18px;
  color:rgba(255,255,255,.72)
}

.two-col{
  display:grid;
  gap:40px;
  grid-template-columns:.95fr 1.05fr;
  align-items:center;
  padding:88px 0
}

.two-col-tight{grid-template-columns:.9fr 1.1fr}

.media-card{
  min-height:430px;
  border-radius:32px;
  background-size:cover;
  background-position:center 40%;
  box-shadow:var(--shadow-card)
}

/* Emergency */
.emergency-band{position:relative;overflow:hidden}

.emergency-band::before{
  content:"";
  position:absolute;
  left:-120px;
  top:36px;
  width:280px;
  height:280px;
  border:2px solid rgba(120,209,47,.06);
  border-radius:999px
}

.emergency-grid{
  display:grid;
  gap:32px;
  grid-template-columns:1.15fr .85fr;
  align-items:center;
  padding:88px 0
}

.emergency-copy p{
  font-size:18px;
  color:rgba(255,255,255,.68)
}

.emergency-card{
  border-radius:32px;
  padding:34px;
  border-color:rgba(120,209,47,.16)
}

.emergency-label{
  display:inline-flex;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--green);
  font-size:12px;
  font-weight:700;
  margin-bottom:14px
}

.emergency-number{
  font-size:clamp(34px,5vw,52px);
  line-height:1;
  font-weight:800;
  margin-bottom:18px
}

.emergency-card p{
  color:rgba(255,255,255,.70);
  margin:0
}

/* Costs / pricing / legal */
.cost-card,
.pricing-card,
.step-card,
.legal-card,
.review-card,
.faq-item,
.contact-clean-card,
.cert-logo-card,
.cv-highlight-card,
.storing-highlight-card,
.service-overview-card,
.cv-home-card{
  border-radius:28px;
  padding:30px
}

.cost-card p,
.pricing-card p,
.step-card p,
.legal-card p{margin:0;line-height:1.7}

.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:999px;
  background:var(--green-soft);
  color:var(--green);
  font-weight:800;
  margin-bottom:18px
}

.legal-note{
  margin-top:28px;
  padding:22px 24px;
  border:1px solid var(--line-soft);
  border-radius:22px;
  background:rgba(255,255,255,.03)
}

.legal-note p{
  margin:0;
  color:rgba(255,255,255,.56);
  font-size:15px;
  line-height:1.7
}

/* Contact / forms */
.form-card{
  padding:32px;
  border-radius:32px;
  display:grid;
  align-content:start;
  gap:0;
  min-height:100%
}

.form-card input,
.form-card textarea,
.form-card select{
  width:100%;
  margin-top:14px;
  padding:15px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:#0d1218;
  color:#fff;
  font:inherit
}

.form-card textarea{
  min-height:140px;
  resize:vertical
}

.form-card input::placeholder,
.form-card textarea::placeholder{
  color:rgba(255,255,255,.30)
}

.form-card button{margin-top:18px}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus{
  border-color:rgba(120,209,47,.45);
  box-shadow:0 0 0 3px rgba(120,209,47,.10)
}

.contact-section-clean .section-head{margin-bottom:32px}

.contact-clean-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:24px;
  align-items:start
}

.contact-clean-card{
  min-height:100%
}

.contact-clean-card h3{margin:0 0 18px}

.contact-list{
  display:grid;
  gap:12px;
  margin-top:24px
}

.plain-list{
  padding-left:18px;
  margin:22px 0 0
}

.checkbox{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:18px;
  color:rgba(255,255,255,.68);
  font-size:14px;
  line-height:1.6
}

.checkbox input{width:auto;margin-top:4px}
.checkbox a{color:var(--green)}
.checkbox a:hover{color:var(--green-hover)}

/* Pricing cards */
.pricing-card{
  border:1px solid rgba(255,255,255,.12);
  border-radius:30px;
  padding:40px;
  text-align:center;
  box-shadow:0 25px 50px rgba(0,0,0,.25);
  transition:.25s
}

.pricing-card.featured{
  border:2px solid var(--green);
  transform:scale(1.03)
}

.pricing-badge{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:var(--green);
  color:#071019;
  padding:6px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:700
}

.pricing-name{
  font-size:24px;
  font-weight:700;
  margin-bottom:12px
}

.pricing-price{
  font-size:38px;
  font-weight:800;
  margin-bottom:25px
}

.pricing-price span{
  font-size:16px;
  color:rgba(255,255,255,.6)
}

.pricing-features{
  list-style:none;
  padding:0;
  margin:0 0 30px;
  display:grid;
  gap:12px;
  color:rgba(255,255,255,.75)
}

.pricing-features li{
  background:rgba(255,255,255,.04);
  padding:12px;
  border-radius:12px
}

/* Misc */
.cert-grid{grid-template-columns:repeat(5,1fr);margin-top:40px}
.cert-grid-2{grid-template-columns:repeat(3,1fr)}

.cert-card{
  padding:26px;
  border-radius:28px;
  text-align:center;
  color:rgba(255,255,255,.78)
}

.cert-logo-card{
  display:flex;
  align-items:center;
  justify-content:center;
  height:150px;
  overflow:hidden
}

.cert-logo-card img{
  display:block;
  max-width:100%;
  max-height:72px;
  width:auto;
  height:auto;
  object-fit:contain
}

.seo-card{
  padding:18px 20px;
  border-radius:18px;
  color:rgba(255,255,255,.74);
  font-weight:600;
  letter-spacing:.01em
}

.gallery-grid{grid-template-columns:repeat(3,1fr);margin-top:28px}

.gallery-item{
  height:224px;
  border-radius:24px;
  border:1px solid var(--line);
  background-size:cover;
  background-position:center;
  box-shadow:var(--shadow-card)
}

.stars{color:var(--green);margin-bottom:12px}
.review-source{
  margin-top:18px;
  font-size:14px;
  color:rgba(255,255,255,.35)
}

.faq-list{display:grid;gap:16px;margin-top:24px}
.faq-item h3{margin:0 0 10px;font-size:22px;color:#fff}
.projects-cta{margin-top:28px}

/* Page hero */
.page-hero{
  padding:120px 0 72px;
  border-bottom:1px solid var(--line)
}

.page-hero-dark{background:linear-gradient(180deg,#0f141b,#0b1117)}
.page-hero-inner{max-width:860px}

.page-hero-inner h1{
  font-size:clamp(38px,5vw,62px);
  line-height:1.06;
  margin:12px 0 0
}

.page-hero-inner p{
  margin-top:20px;
  font-size:18px;
  color:rgba(255,255,255,.70);
  max-width:760px
}

/* Footer */
.site-footer{
  border-top:1px solid var(--line);
  background:#090d12
}

.footer-main{
  display:grid;
  grid-template-columns:1.5fr .8fr .8fr;
  gap:40px;
  padding:42px 0 28px
}

.footer-brand{
  display:grid;
  gap:10px
}

.footer-title{
  font-size:20px;
  font-weight:800;
  color:#fff
}

.footer-heading{
  font-size:13px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--green);
  margin-bottom:14px
}

.footer-column{
  display:grid;
  align-content:start;
  gap:10px
}

.footer-column a{
  color:rgba(255,255,255,.58);
  transition:.2s
}

.footer-column a:hover{color:#fff}

.footer-text{
  color:rgba(255,255,255,.48);
  line-height:1.6
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:18px 0 28px;
  border-top:1px solid var(--line-soft);
  color:rgba(255,255,255,.34);
  font-size:14px
}

/* Image tuning */
.service-card:nth-child(1) .service-image{background-position:center 30%}
.service-card:nth-child(2) .service-image{background-position:center 30%}
.service-card:nth-child(3) .service-image{background-position:center 35%}
.service-card:nth-child(4) .service-image{background-position:center 38%}

.project-card:nth-child(1) .project-image{background-position:center 42%}
.project-card:nth-child(2) .project-image{background-position:center 50%}
.project-card:nth-child(3) .project-image{background-position:center 36%}

.cv-media-card{background-position:center 42%;background-size:cover}
.cv-media-card-secondary{background-position:center 40%;background-size:cover}
.storing-media-card{background-position:center 42%;background-size:cover}
.storing-media-card-secondary{background-position:center 36%;background-size:cover}

/* Feature bands */
.cv-highlight-band,
.storing-highlight-band,
.service-overview-band,
.cv-home-band{
  background:linear-gradient(180deg,#111821,#0f141b);
  border-top:1px solid var(--line-soft);
  border-bottom:1px solid var(--line-soft)
}

.cv-highlight-card,
.storing-highlight-card,
.service-overview-card,
.cv-home-card{
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03));
  box-shadow:0 18px 40px rgba(0,0,0,.16)
}

.service-overview-card .btn{margin-top:24px}

.cv-home-grid{
  grid-template-columns:1.15fr .85fr;
  align-items:center;
  padding:88px 0
}

.cv-home-copy h2{
  font-size:clamp(34px,4.8vw,54px);
  line-height:1.08;
  margin:12px 0 0
}

.cv-home-copy p{
  margin-top:18px;
  font-size:18px;
  color:rgba(255,255,255,.70);
  max-width:760px
}

.cv-home-points{
  list-style:none;
  padding:0;
  margin:24px 0 0;
  display:grid;
  gap:12px
}

.cv-home-points li{
  padding:14px 16px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.82)
}

.cv-home-card-label{
  display:inline-flex;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--green);
  font-size:12px;
  font-weight:700;
  margin-bottom:14px
}

.cv-home-price{
  font-size:clamp(34px,5vw,52px);
  line-height:1;
  font-weight:800;
  margin-bottom:18px
}

.cv-home-price span{
  font-size:18px;
  color:rgba(255,255,255,.55);
  font-weight:600
}

/* Responsive */
@media (max-width:1100px){
  .site-nav,
  .header-cta-live{display:none}

  .service-grid,
  .project-grid,
  .project-grid-compact,
  .review-grid,
  .gallery-grid,
  .seo-grid,
  .cert-grid,
  .cert-grid-2,
  .cert-logos,
  .two-col,
  .contact-clean-grid,
  .emergency-grid,
  .cost-grid,
  .pricing-grid,
  .steps-grid,
  .legal-grid,
  .footer-main,
  .cv-highlight-grid,
  .storing-highlight-grid,
  .service-overview-grid,
  .cv-home-grid{
    grid-template-columns:1fr 1fr
  }

  .footer-brand{grid-column:1 / -1}
}

@media (max-width:800px){
  .container{width:min(1180px,calc(100% - 24px))}
  .brand img{height:54px}
  .hero{min-height:auto}

  .hero-minimal .hero-content{
    min-height:auto;
    padding:120px 0 78px;
    gap:32px
  }

  .hero-title{font-size:40px}

  .hero-subtitle,
  .section-head p,
  .copy-block p,
  .page-hero-inner p,
  .cv-home-copy p{
    font-size:17px
  }

  .hero-subtitle{line-height:1.65}

  .hero::after{width:170px;bottom:52px;right:-12px}
  .hero::before{width:110px;bottom:92px;right:20px}

  .hero-benefits{gap:10px}

  .hero-benefits span{
    font-size:13px;
    padding:9px 12px
  }

  .service-grid,
  .project-grid,
  .project-grid-compact,
  .review-grid,
  .gallery-grid,
  .seo-grid,
  .cert-grid,
  .cert-grid-2,
  .cert-logos,
  .two-col,
  .contact-clean-grid,
  .emergency-grid,
  .cost-grid,
  .pricing-grid,
  .steps-grid,
  .legal-grid,
  .footer-main,
  .cv-highlight-grid,
  .storing-highlight-grid,
  .service-overview-grid,
  .cv-home-grid{
    grid-template-columns:1fr
  }

  .service-image,
  .project-image,
  .gallery-item{height:220px}

  .media-card{min-height:380px}
  .page-hero{padding:104px 0 56px}

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    padding:16px 0 24px
  }

  .whatsapp-float{
    right:16px;
    bottom:16px;
    padding:14px 18px
  }

  .pricing-card.featured{transform:none}
  .cv-home-grid{padding:72px 0}
}