:root{
    --red:#C1272D;
    --red-dark:#9E1F24;
    --black:#141414;
    --off-white:#F6F5F3;
    --gray:#555555;
    --light-gray:#E7E5E1;
    --yellow: #e0b226;
    --yellow-dark: #89690a;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  body{
    font-family:Arial, Helvetica, sans-serif;
    color:var(--black);
    background:#fff;
  }
  h1,h2,h3,.brand,.plan-name,.stat-label,.btn,.badge{
    font-family:'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing:0.5px;
  }
  img{max-width:100%;display:block;}
  .img-logo {width:40px;height:40px;object-fit:cover;border-radius:4px 4px 6px 6px;}
  .wrap{max-width:1100px;margin:0 auto;padding:0 32px;}

  /* HEADER */
  header{
    display:grid;grid-template-columns:1fr auto 1fr;align-items:center;
    padding:16px 32px;background:#fff;border-bottom:1px solid var(--light-gray);
  }
  .logo{display:flex;align-items:center;gap:10px;}
  .logo{justify-self:start;}
  .logo-icon{
    width:40px;height:40px;background:var(--black);border-radius:4px 4px 6px 6px;
    position:relative;display:flex;align-items:center;justify-content:center;
  }
  .logo-icon::before{
    content:"";position:absolute;top:-6px;left:8px;width:24px;height:6px;background:var(--black);border-radius:2px 2px 0 0;
  }
  .logo-icon i{color:var(--red);font-size:20px;font-style:normal;font-weight:900;}
  .logo-text{line-height:1.05;}
  .logo-text .n1{color:var(--red);font-size:20px;font-weight:900;}
  .logo-text .n2{font-size:20px;font-weight:900;color:var(--black);}
  .logo-text .llc{font-size:10px;color:var(--gray);font-weight:700;letter-spacing:1px;}
  .menu-toggle{
    display:none;
    align-items:center;
    gap:8px;
    border:1px solid var(--light-gray);
    background:#fff;
    color:var(--black);
    border-radius:6px;
    padding:9px 12px;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
  }
  .menu-toggle:focus-visible{
    outline:2px solid var(--yellow);
    outline-offset:2px;
  }
  .menu-toggle i{font-size:16px;}
  .menu-toggle-text{font-size:12px;letter-spacing:0.6px;text-transform:uppercase;}
  nav{display:flex;gap:32px;align-items:center;justify-self:center;}
  nav a{font-size:15px;font-weight:700;color:var(--black);text-decoration:none;}
  nav a.active{color:var(--yellow);border-bottom:2px solid var(--yellow);padding-bottom:4px;}
  .nav-dropdown{position:relative;}
  .nav-dropdown::after{
    content:"";
    position:absolute;
    top:100%;
    left:0;
    width:220px;
    height:10px;
  }
  .dropdown-toggle{display:inline-flex;align-items:center;gap:8px;cursor:pointer;}
  .dropdown-menu{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    min-width:220px;
    background:#fff;
    border:1px solid var(--light-gray);
    border-radius:8px;
    box-shadow:0 10px 22px rgba(0,0,0,0.12);
    padding:8px;
    display:none;
    z-index:20;
  }
  .dropdown-menu a{
    display:block;
    padding:9px 12px;
    border-radius:6px;
    white-space:nowrap;
  }
  .dropdown-menu a:hover,
  .dropdown-menu a:focus-visible{background:var(--off-white);outline:none;}
  .dropdown-menu a.active{color:var(--red);border-bottom:none;padding-bottom:9px;background:rgba(193,39,45,0.08);}
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu{display:block;}
  .pay-btn{
    background:var(--red);color:#fff;padding:12px 20px;border-radius:4px;
    font-size:13px;font-weight:900;display:flex;align-items:center;gap:8px;
    justify-self:end;
  }

  /* HERO */
  .hero{position:relative;color:#fff;min-height:520px;display:flex;align-items:center;overflow:hidden;background:#3a4a3a;}
  .hero-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
  .hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.05) 100%);}
  .hero-inner{position:relative;z-index:2;width:100%;min-height:520px;display:flex;align-items:center;}
  .hero-content{position:relative;z-index:2;padding:60px 0;max-width:600px;}
  .hero h1{font-size:44px;line-height:1.1;color:#fff;text-transform:uppercase;}
  .hero .tagline{
    font-family:'Brush Script MT','Comic Sans MS',cursive;
    color:var(--yellow);
    font-size:34px;font-weight:400;margin:6px 0 18px;
    transform:rotate(-2deg);display:inline-block;
  }
  .hero p{font-size:18px;line-height:1.6;color:#f0f0f0;max-width:420px;margin-bottom:28px;}
  .btn{
    display:inline-flex;align-items:center;gap:10px;
    background:var(--yellow);color:#000;padding:14px 26px;border-radius:4px;
    font-size:14px;font-weight:900;letter-spacing:1px;border:none;cursor:pointer;
    text-decoration: none;
  }
  .btn:hover{background:var(--yellow-dark);}
  .btn-outline{
    background:transparent;border:2px solid var(--yellow);color:var(--yellow);text-decoration:none;
  }

  /* FEATURES */
  .features{background:var(--off-white);padding:48px 32px;}
  .features-grid{
    max-width:1100px;margin:0 auto;
    display:grid;grid-template-columns:repeat(4,1fr);gap:0;
  }
  .feature{text-align:center;padding:0 20px;border-left:1px solid var(--light-gray);}
  .feature:first-child{border-left:none;}
  .feature i{font-size:34px;color:var(--yellow);margin-bottom:14px;display:block;}
  .feature h3{font-size:15px;letter-spacing:0.5px;margin-bottom:8px;}
  .feature p{font-size:16px;color:var(--gray);line-height:1.5;}

  /* PRICING */
  .pricing{background:var(--light-gray);padding:56px 32px;}
  .pricing h2{
    text-align:center;font-size:26px;letter-spacing:2px;margin-bottom:36px;
  }
  .pricing-layout{
    max-width:925px;margin:0 auto;
    display:grid;grid-template-columns:1fr 1fr 25px;gap:20px;align-items:start;
  }
  .plan-card{
    background:#fff;border-radius:6px;overflow:hidden;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
  }
  .plan-badge{
    background:var(--yellow);color:var(--black);text-align:center;font-size:12px;
    font-weight:900;letter-spacing:1px;padding:8px;
  }
  .plan-body{padding:24px;display:flex;flex-direction:column;align-items:center;text-align:center;}
  .plan-body.no-badge{padding-top:32px;}
  .plan-name{font-size:17px;margin-bottom:6px;}
  .plan-desc{font-size:17px;color:var(--gray);margin-bottom:18px;line-height:1.5;}
  .bin-icon{
    width:100px;height:140px;margin:0 auto 18px;position:relative;
  }
  .dumpster-icon {
    width: 175px; height: 140px;margin: 0 auto 18px; position: relative;
  }
  .price{font-size:36px;font-weight:900;color:var(--black);}
  .price sup{font-size:18px;vertical-align:top;top:4px;position:relative;}
  .price-period{font-size:16px;color:var(--gray);font-weight:700;letter-spacing:1px;margin-bottom:18px;}
  .learn-more{
    background:var(--yellow);color:var(--black);font-size:16px;font-weight:900;
    padding:10px 24px;border-radius:4px;letter-spacing:1px;text-decoration:none;
  }
  .perks{background:#fff;border-radius:6px;padding:24px;box-shadow:0 2px 6px rgba(0,0,0,0.08);}
  .perk{display:flex;gap:10px;align-items:flex-start;margin-bottom:18px;font-size:15px;font-weight:700;line-height:1.4;}
  .perk:last-child{margin-bottom:0;}
  .perk i{color:var(--yellow);font-size:16px;flex-shrink:0;margin-top:1px;}

  /* ABOUT / NEIGHBORS */
  .neighbors{display:grid;grid-template-columns:1fr 1fr;min-height:340px;}
  .neighbors-text{
    background:var(--black);color:#fff;padding:56px 48px;display:flex;flex-direction:column;justify-content:center;
  }
  .neighbors-text i{font-size:32px;color:var(--yellow);margin-bottom:16px;}
  .neighbors-text h2{font-size:24px;letter-spacing:1px;margin-bottom:16px;}
  .neighbors-text p{font-size:16px;line-height:1.7;color:#ddd;margin-bottom:24px;max-width:400px;}
  .neighbors-photo{position:relative;background:#7a8a99;}
  .neighbors-photo img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}

  /* REVIEWS */
  .reviews{
    padding:64px 32px;
    background:linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
  }
  .reviews-wrap{max-width:1100px;}
  .reviews-header{
    max-width:760px;
    margin:0 auto 28px;
    text-align:center;
  }
  .reviews-header h2{
    font-size:30px;
    line-height:1.2;
    margin-bottom:10px;
  }
  .reviews-header p{
    font-size:17px;
    line-height:1.6;
    color:var(--gray);
  }
  .reviews-tabs{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:24px;
  }
  .review-tab{
    border:1px solid var(--light-gray);
    background:#fff;
    color:var(--black);
    padding:14px 22px;
    border-radius:999px;
    font-size:15px;
    font-weight:900;
    letter-spacing:0.4px;
    cursor:pointer;
    transition:background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
  }
  .review-tab:hover{transform:translateY(-1px);}
  .review-tab.is-active{
    background:var(--yellow);
    border-color:var(--yellow);
    color:var(--black);
  }
  .review-tab:focus-visible,
  .reviews-link:focus-visible{
    outline:2px solid var(--yellow-dark);
    outline-offset:3px;
  }
  .reviews-panels{
    background:#fff;
    border:1px solid var(--light-gray);
    border-radius:20px;
    box-shadow:0 10px 24px rgba(0,0,0,0.06);
    padding:28px;
  }
  .reviews-panel{display:none;}
  .reviews-panel.is-active{display:block;}
  .reviews-panel-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:16px;
    margin-bottom:22px;
  }
  .reviews-panel-header h3{
    font-size:22px;
    margin-bottom:6px;
  }
  .reviews-panel-header p{
    color:var(--gray);
    font-size:15px;
    line-height:1.5;
  }
  .reviews-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius:999px;
    background:var(--black);
    color:#fff;
    font-size:14px;
    font-weight:900;
    text-decoration:none;
    white-space:nowrap;
  }
  .reviews-link:hover{background:var(--red);}
  .reviews-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
  }
  .review-card{
    border:1px solid #ece7df;
    border-radius:16px;
    padding:22px;
    background:linear-gradient(180deg, #fff 0%, #fcfbf9 100%);
  }
  .review-card-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
    margin-bottom:14px;
  }
  .review-card h4{
    font-size:18px;
    margin-bottom:4px;
  }
  .review-rating{
    display:flex;
    align-items:center;
    gap:5px;
    color:var(--yellow);
    font-size:14px;
    font-weight:900;
    flex-wrap:wrap;
    justify-content:flex-end;
  }
  .review-rating span{
    color:var(--black);
    margin-left:2px;
  }
  .review-card p{
    font-size:16px;
    line-height:1.7;
    color:var(--gray);
  }

  /* CTA BAR */
  .cta-bar{
    background:var(--yellow);color:var(--black);padding:28px 32px;
    display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;
  }
  .cta-left{display:flex;align-items:center;gap:16px;}
  .cta-left i{font-size:28px;}
  .cta-left h3{font-size:18px;letter-spacing:0.5px;margin-bottom:4px;}
  .cta-left p{font-size:16px;color:#262626;}
  .cta-phone{font-size:26px;font-weight:900;letter-spacing:0.5px;}

  .placeholder-note{
    position:absolute;top:12px;right:12px;z-index:3;
    background:rgba(0,0,0,0.65);color:#fff;font-size:11px;
    padding:5px 10px;border-radius:4px;font-family:Arial, sans-serif;letter-spacing:0.3px;
  }
  .neighbors-photo .placeholder-note{background:rgba(0,0,0,0.55);}

  /* SERVICE PAGE */
  .service-page{background:var(--off-white);}
  .service-page .logo i{color:var(--yellow);}
  .service-page-main{max-width:1200px;margin:0 auto;padding:48px 24px 64px;}
  .service-intro{text-align:center;max-width:760px;margin:0 auto 32px;}
  .eyebrow{
    display:inline-block;margin-bottom:10px;padding:6px 12px;border-radius:999px;
    background:rgba(193, 180, 39, 0.12);color:var(--black);font-size:12px;font-weight:900;
    letter-spacing:1.5px;text-transform:uppercase;
  }
  .service-intro h1{font-size:32px;line-height:1.2;margin-bottom:12px;}
  .service-intro p{font-size:17px;line-height:1.6;color:var(--gray);}
  .service-cards{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;}
  .service-card{
    background:#fff;border:1px solid var(--light-gray);border-radius:14px;padding:24px;
    box-shadow:0 4px 12px rgba(0,0,0,0.06);display:flex;flex-direction:column;gap:12px;
  }
  .service-card.featured{border:2px solid var(--yellow);box-shadow:0 6px 16px rgba(224,178,38,0.14);}
  .service-card h2{font-size:20px;}
  .service-card-subtitle{font-size:15px;color:var(--gray);line-height:1.5;}
  .service-price{font-size:36px;font-weight:900;color:var(--black);line-height:1;}
  .service-price-subtitle {font-size:14px;color:var(--gray);margin-top:4px;}
  .service-description{font-size:14px;font-weight:700;color:var(--gray);letter-spacing:1px;}
  .service-features{list-style:none;display:flex;flex-direction:column;gap:8px;padding:0;margin:10px 0 6px;color:var(--gray);font-size:15px;}
  .service-features li{position:relative;padding-left:14px;}
  .service-features li::before{content:'•';color:var(--yellow);position:absolute;left:0;font-weight:900;}
  .service-btn{
    display:inline-block;margin-top:auto;padding:12px 16px;text-align:center;border-radius:6px;
    background:var(--yellow);color:var(--black);font-weight:900;letter-spacing:0.5px;font-size:15px;
  }
  .service-btn:hover{background:var(--yellow-dark);}
  .service-card-disabled{
    opacity:0.65;
    filter:grayscale(0.25);
  }
  .service-btn-disabled,
  .service-btn-disabled:hover{
    background:#a8a8a8;
    color:#f5f5f5;
    cursor:not-allowed;
    pointer-events:none;
  }
  .text-disclaimer {font-size:14px;color:var(--gray);margin-top:8px;line-height:1.5;display:block;}
  p.existing-customer{background:#f7efe8;border:1px solid #e0d0b8;text-align:center; margin-bottom: 10px; padding: 5px;}
  p.existing-customer a {color:var(--yellow-dark);text-decoration:underline;}
  p.additional-plans{background:#f7f5af;border:1px solid #5a797a;text-align:center; margin-bottom: 10px; padding: 5px;}
  p.additional-plans a {color:var(--yellow-dark);text-decoration:underline;}

  /* HOW TO PAY PAGE */
  .how-to-pay-guide{
    text-align:left;
    background:#fff;
    border:1px solid #ddd6cc;
    border-radius:16px;
    padding:28px;
    box-shadow:0 8px 22px rgba(0,0,0,0.06);
  }
  .how-to-pay-guide .eyebrow{
    margin-bottom:14px;
  }
  .how-to-pay-guide h1{
    margin-bottom:14px;
  }
  .how-to-pay-guide .intro-copy{
    font-size:18px;
    color:#3b3b3b;
    margin-bottom:18px;
    max-width:62ch;
  }
  .payment-steps{
    background:#fcfaf6;
    border:1px solid #ebe2d2;
    border-left:5px solid var(--yellow);
    border-radius:12px;
    padding:18px 20px;
    margin-bottom:24px;
  }
  .payment-steps ol{
    margin:0;
    padding-left:22px;
    display:flex;
    flex-direction:column;
    gap:12px;
  }
  .payment-steps li{
    font-size:17px;
    line-height:1.7;
    color:#363636;
  }
  .email-screenshots{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    margin-bottom:20px;
  }
  .email-screenshots figure{
    margin:0;
    border:1px solid #e6e0d7;
    border-radius:12px;
    background:#fff;
    overflow:hidden;
    box-shadow:0 5px 16px rgba(0,0,0,0.08);
  }
  .email-screenshots img{
    width:100%;
    max-height:440px;
    object-fit:contain;
    background:#f8f8f8;
    padding:8px;
  }
  .email-screenshots figcaption{
    font-size:15px;
    line-height:1.5;
    color:#444;
    background:#faf7f2;
    border-top:1px solid #eee5d8;
    padding:10px 12px;
  }
  .how-to-pay-guide .help-copy{
    font-size:17px;
    color:#2f2f2f;
    margin-top:4px;
  }

  /* SIGNUP FORM */
.signup-page{background:#f7f5f2;}
  .signup-shell{max-width:920px;margin:0 auto;padding:40px 20px 60px;}
  .signup-card{background:#fff;border:1px solid #d8d2c8;border-radius:12px;padding:32px;box-shadow:0 2px 10px rgba(0,0,0,0.05);}
  .signup-intro{margin-bottom:28px;}
  .signup-intro h1{font-size:34px;line-height:1.2;margin-bottom:10px;font-weight:700;}
  .signup-intro p{font-size:18px;line-height:1.7;color:var(--gray);} 
  .signup-form{display:flex;flex-direction:column;gap:20px;}
  .signup-form fieldset{border:1px solid #e0d9cf;background:#fcfbf8;padding:20px;border-radius:10px;display:flex;flex-direction:column;gap:16px;}
  .signup-form legend{font-size:20px;font-weight:700;color:var(--black);margin-bottom:4px;padding:0 4px;}
  .legend-title{display:inline-flex;align-items:center;gap:8px;}
  .legend-title i{color:var(--yellow);font-size:18px;}
  .form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
  .signup-form label{display:flex;flex-direction:column;gap:8px;font-size:17px;font-weight:700;color:var(--black);} 
  .field-label{display:inline-flex;align-items:center;gap:6px;}
  .signup-form input,.signup-form select,.signup-form textarea{
    border:1px solid #bdb6aa;border-radius:8px;padding:14px 16px;font-size:17px;font-family:inherit;color:var(--black);background:#fff;min-height:48px;
  }
  .signup-form textarea{min-height:120px;resize:vertical;}
  .checkbox-row{display:flex;align-items:center;gap:10px;font-size:17px;font-weight:700;color:var(--black);line-height:1.4;max-width:100%;}
  .checkbox-row input{margin:0;width:auto;transform:scale(1.2);flex-shrink:0;}
  .checkbox-row label{display:inline-block;margin:0;font-size:17px;font-weight:700;color:var(--black);line-height:1.4;}

  .policy-fieldset{background:#f7efe8;border:1px solid #e0d0b8;}
  .policy-intro{font-size:16px;color:var(--gray);margin-bottom:4px;}
  .policy-list{padding-left:20px;color:var(--gray);display:flex;flex-direction:column;gap:10px;font-size:16px;line-height:1.6;}
  .billing-block{margin-top:4px;padding-left:12px;border-left:2px solid #e0d9cf;}
  .payment-options{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
  .radio-card{display:flex;align-items:center;gap:10px;padding:14px 16px;border:1px solid #d8d2c8;border-radius:10px;background:#fff;font-weight:700;font-size:17px;}
  .radio-card input{width:auto;transform:scale(1.15);}
  .signup-submit{border:0;background:var(--red);color:#fff;padding:16px 22px;border-radius:8px;font-size:18px;font-weight:700;cursor:pointer;min-height:50px;}
  .signup-submit:hover{background:var(--red-dark);}
  .required{color:red;}


  /* Garbage-pickup Page */
  article a { text-decoration:none;color:var(--yellow);font-weight:700;}
  .section-title{font-size:18px;font-weight:700;color:var(--black);margin-bottom:8px;padding-bottom:8px; border-bottom: 1px solid #ccc;}
  .signup-card { margin-bottom: 12px; }
  .policy-text {font-size:16px;color:var(--gray);line-height:1.6;}
  .sticker-question{
    cursor:pointer;
    user-select:none;
    text-decoration:underline;
    text-decoration-style:dashed;
    text-underline-offset:3px;
  }
  .sticker-question:focus-visible{
    outline:2px solid var(--red);
    outline-offset:2px;
    border-radius:4px;
  }
  .sticker-spoiler{
    margin-top:4px;
    border:1px solid #d8d2c8;
    border-radius:10px;
    overflow:hidden;
    max-width:340px;
    filter:blur(10px);
    transform:scale(0.98);
    opacity:0.85;
    transition:filter 220ms ease, transform 220ms ease, opacity 220ms ease;
  }
  .sticker-spoiler.revealed{
    filter:blur(0);
    transform:scale(1);
    opacity:1;
  }
  textarea{color:var(--black);font-size:16px;padding:3px;}
  textarea::placeholder{color:#ccc;font-size:16px;}
  .refund-card {background:#f7efe8;border:1px solid #d8d2c8;border-radius:12px;padding:24px;box-shadow:0 2px 10px rgba(0,0,0,0.05);}
  .important{font-weight:700;}
  .yellow-text{color:var(--yellow) !important;}
  footer {background:var(--yellow);text-align:center;color:var(--black);}

  @media (max-width:900px){
    header{grid-template-columns:1fr auto;row-gap:12px;padding:14px 16px;}
    .menu-toggle{display:inline-flex;justify-self:end;}
    nav{
      display:none;
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      flex-direction:column;
      align-items:flex-start;
      gap:10px;
      padding-top:10px;
      border-top:1px solid var(--light-gray);
    }
    header.nav-open nav{display:flex;}
    nav a{width:100%;padding:8px 0;}
    nav a.active{border-bottom:none;padding-bottom:8px;}
    .nav-dropdown{width:100%;}
    .nav-dropdown::after{display:none;}
    .dropdown-toggle{width:100%;justify-content:space-between;}
    .dropdown-menu{
      display:block;
      position:static;
      min-width:0;
      width:100%;
      border:none;
      box-shadow:none;
      border-radius:0;
      padding:4px 0 0 10px;
      margin-top:2px;
    }
    .dropdown-menu a{padding:8px 0;border-radius:0;}
    .pricing-layout{grid-template-columns:1fr;}
    .features-grid{grid-template-columns:1fr 1fr;row-gap:28px;}
    .feature{border-left:none;}
    .neighbors{grid-template-columns:1fr;}
    .hero h1{font-size:32px;}
    .service-cards{grid-template-columns:1fr 1fr;}
    .reviews-grid{grid-template-columns:1fr;}
  }

  @media (max-width:640px){
    .service-page-main{padding:32px 16px 48px;}
    .service-intro h1{font-size:26px;}
    .how-to-pay-guide{padding:20px 16px;}
    .how-to-pay-guide .intro-copy{font-size:17px;}
    .payment-steps{padding:14px 14px 14px 16px;}
    .payment-steps li{font-size:16px;line-height:1.6;}
    .email-screenshots{grid-template-columns:1fr;gap:14px;}
    .email-screenshots img{max-height:none;}
    .service-cards{grid-template-columns:1fr;}
    .service-card{padding:20px;}
    .signup-shell{padding:24px 14px 42px;}
    .signup-card{padding:20px;}
    .signup-intro h1{font-size:26px;}
    .form-grid,.payment-options{grid-template-columns:1fr;}
    .reviews{padding:48px 16px;}
    .reviews-panels{padding:20px;}
    .reviews-panel-header{flex-direction:column;align-items:flex-start;}
    .reviews-header h2{font-size:26px;}
  }