/* =========================
 TG SERVICES — FULL CSS (CLEANED / NO DUPLICATES)
 Modern nav + hero + services + calculator + pricing + contact
 ========================= */

/* Global */
*,
*::before,
*::after{ box-sizing: border-box; }

body{
  margin:0;
  padding-top:45px;            /* keeps content below fixed nav */
  font-family: Inter, sans-serif;
  color:#222;
  background:#fff;
}

/* =========================
 NAVBAR (DESKTOP DEFAULT)
 ========================= */

.nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  z-index: 9999;
}

.nav-container{
  position: relative;          /* anchor for dropdown on mobile */
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
}

.logo img{
  height:50px;
  width:auto;
  display:block;
}

#navMenu{
  display:flex;
  align-items:center;
  gap:30px;
}

#navMenu a{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

#navMenu a:hover{ color:#2c3b2d; }

#navMenu .nav-button{
  background:#2c3b2d;
  color:white;
  padding:10px 18px;
  border-radius:4px;
}
#navMenu .nav-button:hover{ background:#1e2a20; }

.menu-toggle{
  display:none;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  user-select:none;
  color:#2c3b2d;
  background: transparent;
  border: 0;
  padding: 8px 10px;
}

/* =========================
 HOME HERO
 ========================= */

.hero{
  position:relative;
  height:90vh;
  background-image:
    linear-gradient(rgba(20,30,20,.55), rgba(20,30,20,.55)),
    url('House.png');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  display:flex;
  align-items:center;
  color:white;
}

.hero-content{
  max-width:700px;
  margin-left:80px;
}

.hero h1{
  font-size:56px;
  margin:0 0 20px 0;
}
.hero p{
  font-size:22px;
  margin:0 0 30px 0;
}

.hero-buttons a{
  margin-right:15px;
  text-decoration:none;
  display:inline-block;
}

.button-primary{
  background:#2c3b2d;
  padding:14px 28px;
  color:white;
  border-radius:4px;
  text-decoration:none;
  display:inline-block;
}
.button-primary:hover{ background:#1e2a20; }

.button-secondary{
  border:1px solid white;
  padding:14px 28px;
  color:white;
  border-radius:4px;
  text-decoration:none;
  display:inline-block;
}
.button-secondary:hover{
  background:white;
  color:black;
}

/* =========================
 TRUST SECTION
 ========================= */

.trust{
  padding:100px 20px;
  text-align:center;
}
.trust h2{
  font-size:36px;
  margin:0 0 20px 0;
}
.trust p{
  font-size:18px;
  color:#555;
  margin:0;
}

/* =========================
 SERVICES PAGE — BASE
 ========================= */

body.services-page{
  background:#e6dfcf;
}

/* shared section backgrounds */
.page-hero,
.services-wrap,
.pricing-split,
.price-calc,
.pricing-hub{
  background:#e6dfcf;
}

/* HERO */
.page-hero{
  padding: 56px 20px 34px;
  scroll-margin-top: 100px;
}

.services-page .page-hero{
  padding: 120px 20px 44px; /* more intentional spacing under fixed nav */
}

.page-hero-inner{
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  backdrop-filter: blur(6px);
}

/* richer hero card on services page */
.services-page .page-hero-inner{
  max-width: 1120px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 18px 60px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
}

.page-hero h1{
  color:#1e2a20;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
}
.page-hero p{
  color:#3b3b3b;
  font-size: 18px;
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 0 22px 0;
}

.page-hero .hero-buttons{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* SERVICES GRID */
.services-wrap{
  padding: 10px 20px 70px;
}
.services-page .services-wrap{
  padding: 24px 20px 70px;
}

.services-grid{
  max-width:1100px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.service-card{
  height: 100%;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 12px 34px rgba(0,0,0,.08);
  padding: 26px;
  border-radius: 14px;
  transition: transform .18s ease, box-shadow .18s ease;
  backdrop-filter: blur(6px);
}
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0,0,0,.12);
}

.service-card h3{
  color:#2c3b2d;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0 0 10px 0;
}
.service-card p{
  color:#444;
  line-height: 1.6;
  margin: 0 0 14px 0;
}
.service-card ul{
  margin: 0;
  padding-left: 18px;
  color:#444;
}
.service-card li{ margin: 10px 0; }

/* SERVICES PAGE PREMIUM BUTTON OVERRIDE */
.services-page .button-primary,
.services-page .button-secondary{
  background:white;
  color:#2c3b2d;
  border:1px solid #2c3b2d;
  transition: all .2s ease;
}

.services-page .button-primary{
  box-shadow: 0 10px 26px rgba(44,59,45,.18);
}
.services-page .button-primary:hover{
  background:transparent;
  color:#2c3b2d;
}
.services-page .button-secondary:hover{
  background:grey;
  color:#2c3b2d;
}

/* =========================
 TABLES (shared)
 ========================= */

.pricing-table{
  width:100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);
  box-shadow: 0 18px 46px rgba(0,0,0,.10);
}

.pricing-table th{
  background: #2b2b2b;
  color:white;
  padding: 16px;
  text-align:left;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.pricing-table td{
  padding: 16px;
  border-top: 1px solid rgba(0,0,0,.06);
  color:#222;
  font-size: 15px;
}

/* default “price” column alignment */
.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2){
  text-align:right;
  font-weight:600;
}

/* zebra + hover */
.pricing-table tbody tr:nth-child(even){
  background: rgba(0,0,0,.04);
}
.pricing-table tbody tr:hover{
  background: rgba(44,59,45,.06);
}
.pricing-table i{ opacity: .8; }

/* =========================
 PRICE CALCULATOR — PREMIUM + DESKTOP CLICK FIX
 ========================= */

.price-calc{
  padding: 28px 20px 18px;
  position: relative;
  z-index: 5;
  isolation: isolate;
}

.price-calc,
.price-calc .calc-inner,
.price-calc .calc-grid,
.price-calc .calc-card{
  overflow: visible !important;
}

.calc-inner{
  max-width: 1120px;
  margin: 0 auto;
}

.calc-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 16px;
}

.calc-top h2{
  margin: 0 0 6px 0;
  font-size: 34px;
  letter-spacing: -0.02em;
  color:#1e2a20;
}
.calc-top p{
  margin: 0;
  color:#444;
  line-height: 1.6;
  max-width: 70ch;
}

.calc-badge{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.08);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  color:#2c3b2d;
  white-space: nowrap;
}

.calc-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: start;
}

.calc-card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  backdrop-filter: blur(6px);
}

.calc-label{
  font-weight: 700;
  color:#2c3b2d;
  display:block;
  margin-bottom: 10px;
}

.calc-select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.16);
  font-size: 15px;
  background: rgba(255,255,255,.95);
  position: relative;
  z-index: 10;
}

/* dropdown menu shouldn’t be hidden behind anything */
.price-calc .calc-select:focus,
.price-calc .calc-select:active{ z-index: 9998; }

/* force native controls to behave */
.price-calc select,
.price-calc input[type="checkbox"]{
  appearance: auto !important;
  -webkit-appearance: auto !important;
  opacity: 1;
  visibility: visible;
}
.price-calc input[type="checkbox"]{
  accent-color:#2c3b2d;
}

.calc-divider{
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 16px 0;
}

.calc-checks{
  display:grid;
  gap: 10px;
}

.calc-check{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.62);
  transition: transform .12s ease, box-shadow .12s ease;
  cursor:pointer;
}
.calc-check:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.calc-check input{
  width: 18px;
  height: 18px;
}
.calc-check span{
  flex:1;
  color:#333;
}
.calc-check em{
  font-style: normal;
  font-weight: 700;
  color:#2c3b2d;
  white-space: nowrap;
}

.calc-note{
  margin: 14px 0 0;
  color:#555;
  font-size: 13px;
  line-height: 1.5;
}

.calc-result .result-row{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding: 10px 0;
  color:#333;
  font-size: 15px;
}

.result-total{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding-top: 8px;
}

.result-total strong{
  font-size: 28px;
  letter-spacing: -0.02em;
  color:#1e2a20;
}

.calc-fineprint{
  margin-top: 14px;
  font-size: 12px;
  color:#666;
  line-height: 1.5;
}

/* center only the CTA button in the result card */
.calc-result .pricing-cta{
  display:flex;
  justify-content:center;
  margin-top: 18px;
}

/* =========================
 PRICING HUB — TWO TABLES
 ========================= */

.pricing-hub{
  padding: 40px 20px 90px;
}

.pricing-inner{
  max-width:1120px;
  margin: 0 auto;
}

.pricing-head h2{
  margin: 0 0 8px 0;
  font-size: 34px;
  color:#1e2a20;
  letter-spacing: -0.02em;
}

.pricing-head p{
  margin: 0 0 18px 0;
  color:#444;
  line-height: 1.6;
  max-width: 75ch;
}

.pricing-panels{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:stretch;
}

.price-panel{
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  backdrop-filter: blur(6px);
}

.panel-title{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.55);
}

.panel-title h3{
  margin:0;
  font-size: 16px;
  color:#2c3b2d;
  letter-spacing: -0.01em;
}

.panel-sub{
  font-size: 13px;
  color:#555;
}

.pricing-hub .pricing-table{
  width:100%;
  border-collapse: collapse;
  border:0;
  border-radius:0;
  box-shadow:none;
  background: transparent;
}

.pricing-hub .pricing-table th{
  background: #2b2b2b;
  color:white;
  padding: 14px 16px;
  text-align:left;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.pricing-hub .pricing-table td{
  padding: 14px 16px;
  border-top: 1px solid rgba(0,0,0,.06);
  color:#222;
  font-size: 14px;
}

/* Center pricing columns inside pricing hub tables */
.pricing-hub .pricing-table th:nth-child(2),
.pricing-hub .pricing-table th:nth-child(3),
.pricing-hub .pricing-table td:nth-child(2),
.pricing-hub .pricing-table td:nth-child(3){
  text-align:center;
  font-weight: 600;
}

/* Pricing CTA (general) */
.pricing-cta{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

.price-panel .panel-title{ flex: 0 0 auto; }
.price-panel .pricing-table{ flex: 1 1 auto; }

/* =========================
 FOOTER
 ========================= */

.site-footer{
  background:#2c3b2d;
  color:white;
  text-align:center;
  padding: 22px 14px;
}

/* =========================
 CONTACT PAGE — PREMIUM
 ========================= */

body.contact-page{
  background:#e6dfcf;
}

.contact-hero{
  background:#e6dfcf;
  padding: 120px 20px 26px;
}

.contact-hero-inner{
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 18px 60px rgba(0,0,0,.08);
  backdrop-filter: blur(8px);
}

.contact-hero h1{
  margin: 0 0 10px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color:#1e2a20;
}

.contact-hero p{
  margin: 0 0 16px;
  color:#444;
  line-height: 1.6;
  max-width: 70ch;
}

.contact-hero-badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill{
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(0,0,0,.08);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  color:#2c3b2d;
  white-space: nowrap;
}

.contact-wrap{
  background:#e6dfcf;
  padding: 18px 20px 90px;
}

.contact-grid{
  max-width: 1120px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: start;
}

.contact-card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
  backdrop-filter: blur(6px);
}

.card-head h2{
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -0.02em;
  color:#1e2a20;
}

.card-head p{
  margin: 0 0 18px;
  color:#555;
  line-height: 1.5;
}

/* CONTACT FORM */
.contact-form label{
  display:block;
  font-weight:700;
  color:#2c3b2d;
  margin-bottom: 8px;
}

.contact-form .form-row{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form .form-field{
  min-width:0;
  margin-bottom: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  min-width:0;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.16);
  font-size: 15px;
  background: rgba(255,255,255,.95);
  color:#222;
}

.contact-form textarea{ resize: vertical; }

.form-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
  align-items:center;
}

.button-ghost{
  display:inline-block;
  padding: 14px 18px;
  border-radius: 4px;
  text-decoration:none;
  border: 1px solid rgba(44,59,45,.35);
  color:#2c3b2d;
  background: rgba(255,255,255,.6);
}
.button-ghost:hover{
  background: rgba(255,255,255,.9);
}

.form-fineprint{
  margin: 14px 0 0;
  font-size: 12px;
  color:#666;
  line-height: 1.5;
}

/* Agreement checkbox row */
.form-check{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  margin: 12px 0 16px;
  cursor: pointer;
  color:#444;
  font-size: 14px;
}

.form-check input[type="checkbox"]{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 2px 0 0 0;
  padding: 0;
  border-radius: 4px;
  appearance: auto;
  -webkit-appearance: checkbox;
  background: transparent;
  box-shadow: none;
  accent-color:#2c3b2d;
}

.form-check span{
  line-height: 1.5;
}

/* Service / Add-on groups (radios + checkboxes) */
.check-group{
  display:grid;
  gap: 10px;
}

/* If you add these classes in HTML:
   <div class="check-group single"> ... </div>
   <div class="check-group multi"> ... </div>
*/
.check-group.multi{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}
.check-group.single{
  grid-template-columns: 1fr;
}

/* Backward compatibility with earlier class name */
.single-select{ grid-template-columns: 1fr; }

.check-option{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.62);
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}

.check-option:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.check-option input{
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color:#2c3b2d;
}

.check-option span{
  color:#333;
  font-weight:500;
  line-height: 1.3;
}

/* RIGHT SIDE INFO (contact) */
.info-list{
  display:grid;
  gap: 12px;
  margin-bottom: 18px;
}

.info-item{
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 14px;
}

.info-kicker{
  font-size: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color:#666;
  margin-bottom: 6px;
}

.info-value{
  font-weight: 800;
  color:#1e2a20;
  margin-bottom: 4px;
}

.info-sub{
  color:#555;
  font-size: 13px;
}

.contact-mini h3{
  margin: 0 0 10px;
  color:#2c3b2d;
  font-size: 16px;
}

.mini-steps{
  margin: 0;
  padding-left: 18px;
  color:#444;
  line-height: 1.7;
}
/* ===== CONTACT PAGE: LAYOUT + CHECK OPTIONS FIX ===== */

/* Ensure the grid actually takes full available width so it can center */
.contact-grid,
.contact-hero-inner{
  width: 100%;
}

/* Keep the two-column layout on desktop */
.contact-grid{
  grid-template-columns: 1.25fr .75fr;
  justify-content: center;
}

/* Make cards fill their grid columns */
.contact-card{
  width: 100%;
}

/* --- Fix “tiny pill” check/radio items --- */
.check-group{
  width: 100%;
}

.check-option{
  width: 100%;              /* <- forces each option to fill its grid cell */
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Let long labels wrap instead of squishing into narrow pills */
.check-option span{
  white-space: normal;
}

/* Add-Ons two-column layout (desktop) */
.check-group.multi{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
/* ===== INLINE RADIO/CHECK OPTIONS ===== */
.check-inline{
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;       /* row gap / column gap */
}

.inline-option{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.60);
  cursor: pointer;
  user-select:none;
}

.inline-option input{
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color:#2c3b2d;
}

.inline-option span{
  font-weight: 600;
  color:#2c3b2d;
  line-height: 1.1;
  white-space: nowrap;
}
/* ===== CONTACT: FORCE ONE COLUMN AFTER USER INFO ===== */
.after-user-info .form-row{
  grid-template-columns: 1fr !important;
}

.after-user-info .form-field{
  width: 100%;
}
/* Optional: highlight the selected option (nice polish) */
.inline-option:has(input:checked){
  background: rgba(44,59,45,.12);
  border-color: rgba(44,59,45,.35);
}

.after-user-info .check-inline{
  max-width: 100%;
}


.form-success{
  background:#e7f4ea;
  border:1px solid #b7dfc0;
  color:#1e2a20;
  padding:14px;
  border-radius:10px;
  margin-bottom:18px;
  font-weight:600;
}

.form-error{
  background:#fdecec;
  border:1px solid #f3b5b5;
  color:#7a1e1e;
  padding:14px;
  border-radius:10px;
  margin-bottom:18px;
  font-weight:600;
}
/* ===== CONTACT FORM STATUS BANNER ===== */
.form-status{
  display:none;
  padding: 14px 14px;
  border-radius: 12px;
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.4;
}

.form-status.is-success{
  background: rgba(231, 244, 234, 1);
  border: 1px solid rgba(183, 223, 192, 1);
  color: #1e2a20;
}

.form-status.is-error{
  background: rgba(253, 236, 236, 1);
  border: 1px solid rgba(243, 181, 181, 1);
  color: #7a1e1e;
}

/* Disabled submit styling */
#submitBtn:disabled{
  opacity: .7;
  cursor: not-allowed;
}

/* On smaller screens, stack add-ons */
@media (max-width: 900px){
  .check-group.multi{
    grid-template-columns: 1fr;
  }
}
/* =========================
 RESPONSIVE
 ========================= */

/* MOBILE NAV + HOME HERO */
@media (max-width: 768px){

  body{ padding-top: 80px; }

  .nav-container{ padding: 16px 20px; }

  .menu-toggle{ display: block; }

  #navMenu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    pointer-events: none;
  }

  #navMenu.open{
    display: flex;
    pointer-events: auto;
  }

  #navMenu a{
    padding: 16px 18px;
    border-bottom: 1px solid #eee;
  }

  #navMenu .nav-button{
    margin: 12px 18px 18px 18px;
    text-align: center;
    border-bottom: none;
  }

  .hero{ height: 75vh; }

  .hero-content{
    margin-left: 20px;
    margin-right: 20px;
    max-width: 600px;
  }

  .hero h1{ font-size: 40px; }
  .hero p{ font-size: 18px; }
}

/* TABLET + DOWN (services / calc / pricing / contact) */
@media (max-width: 900px){

  /* Services */
  .services-grid{ grid-template-columns: 1fr; }
  .services-wrap{ padding: 10px 18px 56px; }
  .service-card{ padding: 22px; }

  .page-hero{ padding: 44px 18px 28px; }
  .page-hero h1{ font-size: 40px; }

  /* Calculator */
  .calc-top{
    flex-direction: column;
    align-items: flex-start;
  }
  .calc-badge{ width: fit-content; }
  .calc-grid{ grid-template-columns: 1fr; }

  /* Pricing hub */
  .pricing-panels{ grid-template-columns: 1fr; }

  /* Contact */
  .contact-hero{ padding: 98px 18px 18px; }
  .contact-hero h1{ font-size: 40px; }
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-form .form-row{ grid-template-columns: 1fr; }
  .check-group.multi{ grid-template-columns: 1fr; }
}







