:root {
    --ink: #16252c;
    --muted: #60717a;
    --line: #dce8e7;
    --paper: #ffffff;
    --cloud: #f5faf9;
    --mist: #eaf7f5;
    --teal: #0f766e;
    --teal-strong: #0b5f64;
    --blue: #2563eb;
    --green: #22a66a;
    --amber: #f3b843;
    --coral: #f26d5b;
    --shadow: 0 16px 40px rgba(15, 42, 50, 0.12);
    --radius: 8px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
  }
  
  body.modal-open {
    overflow: hidden;
  }
  
  img,
  svg {
    max-width: 100%;
  }
  
  [hidden] {
    display: none !important;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  input,
  select,
  textarea {
    font: inherit;
  }
  
  button {
    cursor: pointer;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    min-height: 72px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(220, 232, 231, 0.85);
    backdrop-filter: blur(16px);
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--ink);
  }
  
  .brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    box-shadow: 0 8px 22px rgba(15, 118, 110, 0.24);
  }
  
  .main-nav {
    display: none;
  }
  
  .main-nav.open {
    position: absolute;
    top: 72px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 2px;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  
  .main-nav a {
    padding: 12px;
    border-radius: 6px;
    color: var(--muted);
    font-weight: 700;
  }
  
  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--teal-strong);
    background: var(--mist);
    outline: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .icon-button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
  }
  
  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: var(--ink);
    border-radius: 999px;
  }
  
  .hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    background: #dff4f0;
  }
  
.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("assets/alamano-hero.svg");
    background-position: center;
    background-size: cover;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 46%, rgba(255, 255, 255, 0.2) 100%),
      linear-gradient(0deg, rgba(22, 37, 44, 0.45), rgba(22, 37, 44, 0) 38%);
  }
  
  .hero-content {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 116px 20px 52px;
  }
  
  .eyebrow,
  .section-kicker {
    margin: 0 0 12px;
    color: var(--teal-strong);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  
  .hero h1 {
    max-width: 700px;
    margin: 0;
    font-size: 2.7rem;
    line-height: 1.03;
  }
  
  .hero-copy {
    max-width: 620px;
    margin: 18px 0 0;
    color: #31464f;
    font-size: 1.05rem;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }
  
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  }
  
  .button:hover,
  .button:focus-visible {
    transform: translateY(-1px);
    outline: none;
  }
  
  .button.primary {
    color: #fff;
    background: var(--teal);
    box-shadow: 0 12px 26px rgba(15, 118, 110, 0.22);
  }
  
  .button.primary:hover,
  .button.primary:focus-visible {
    background: var(--teal-strong);
  }
  
  .button.secondary {
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
  }
  
  .button.ghost {
    color: var(--teal-strong);
    background: var(--mist);
    border: 1px solid rgba(15, 118, 110, 0.16);
  }
  
  .button.full {
    width: 100%;
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 650px;
    margin-top: 36px;
  }
  
  .hero-stats div {
    min-height: 92px;
    padding: 16px;
    border: 1px solid rgba(220, 232, 231, 0.8);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
  }
  
  .hero-stats strong {
    display: block;
    font-size: 1.55rem;
    line-height: 1.1;
  }
  
  .hero-stats span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
  }
  
  .section {
    padding: 72px 0;
  }
  
  .section-inner {
    width: min(100% - 36px, 1180px);
    margin: 0 auto;
  }
  
  .section-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
  }
  
  .section-heading.left {
    margin: 0;
    text-align: left;
  }
  
  .section-heading.compact {
    margin-bottom: 22px;
  }
  
  .section-heading h2,
  .quick-search h2,
  .location-layout h2,
  .request-copy h2,
  .provider-layout h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.12;
  }
  
  .section-heading p,
  .quick-search p,
  .location-layout p,
  .request-copy p,
  .provider-layout p {
    color: var(--muted);
  }
  
  .quick-search {
    position: relative;
    z-index: 2;
    margin-top: -34px;
    padding-bottom: 18px;
  }
  
  .quick-search-grid {
    display: grid;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }
  
  .quick-search-grid h2 {
    font-size: 1.55rem;
  }
  
  .quick-search-form,
  .filters-panel {
    display: grid;
    gap: 12px;
  }
  
  label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 700;
  }
  
  label span {
    font-size: 0.84rem;
  }
  
  input,
  select,
  textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #cfdedd;
    border-radius: 8px;
    outline: none;
  }
  
  textarea {
    resize: vertical;
  }
  
  input:focus,
  select:focus,
  textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
  }
  
  .category-grid,
  .provider-grid,
  .admin-grid,
  .steps-grid,
  .trust-grid {  display: grid;
    gap: 16px;
  }
  
  .category-card,
  .provider-card,
  .admin-card,
  .steps-grid article,
  .trust-grid article,
  .form-card,
  .location-tool,
  .price-note,
  .business-note {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 42, 50, 0.06);
  }
  
  .category-card {
    display: grid;
    min-height: 244px;
    padding: 18px;
  }
  
  .category-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    color: var(--teal-strong);
    background: var(--mist);
  }
  
  .category-icon svg {
    width: 25px;
    height: 25px;
    stroke-width: 2;
  }
  
  .category-card h3,
  .provider-card h3,
  .admin-card h3,
  .steps-grid h3,
  .trust-grid h3,
  .price-note h3,
  .business-note h3,
  .upload-box h3 {
    margin: 12px 0 8px;
    font-size: 1.05rem;
  }
  
  .category-card p,
  .provider-card p,
  .admin-card p,
  .steps-grid p,
  .trust-grid p,
  .price-note p,
  .business-note p,
  .upload-box p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
  }
  
  .category-card .button {
    align-self: end;
    margin-top: 18px;
  }
  
  .soft-band {
    background: var(--cloud);
  }
  
  .service-groups {
    display: grid;
    gap: 14px;
  }
  .service-group {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }
  
  .service-group h3 {
    margin: 0 0 12px;
    font-size: 1rem;
  }
  
  .service-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .chip {
    min-height: 34px;
    padding: 8px 12px;
    color: var(--teal-strong);
    background: var(--mist);
    border: 1px solid rgba(15, 118, 110, 0.18);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 800;
  }
  
  .chip:hover,
  .chip:focus-visible {
    background: #d9f0ec;
    outline: none;
  }
  
  .steps-grid article {
    min-height: 188px;
    padding: 18px;
  }
  
  .step-number {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    background: var(--teal);
    font-weight: 900;
  }
  
  .location-band {
    color: #fff;
    background:
      linear-gradient(120deg, rgba(15, 118, 110, 0.94), rgba(37, 99, 235, 0.76)),
      #0f766e;
  }
  
  .location-layout {
    display: grid;
    gap: 24px;
  }
  
  .location-layout .section-kicker,
  .location-layout p {
    color: rgba(255, 255, 255, 0.84);
  }
  
  .location-tool {
    padding: 18px;
  }
  
  .location-tool p {
    color: var(--muted);
  }
  
  .helper-text {
    min-height: 22px;
    color: var(--muted);
    font-size: 0.9rem;}

    .helper-text.success {
      color: var(--green);
      font-weight: 800;
    }
    
    .helper-text.warning,
    .form-error {
      color: #b44032;
      font-weight: 800;
    }
    
    .filters-panel {
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--cloud);
    }
    
    .check-filter {
      display: flex;
      align-items: center;
      gap: 9px;
      min-height: 46px;
      padding: 10px 12px;
      border: 1px solid #cfdedd;
      border-radius: 8px;
      background: #fff;
    }
    
    .check-filter input {
      width: 18px;
      min-height: 18px;
      accent-color: var(--teal);
    }
    
    .check-filter span {
      font-size: 0.9rem;
    }
    
    .results-bar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin: 18px 0;
      color: var(--muted);
    }
    
    .results-bar strong {
      color: var(--ink);
    }
    
    .provider-card {
      display: grid;
      gap: 14px;
      min-height: 380px;
      padding: 18px;
    }
    
    .provider-head {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      align-items: center;
    }
    
    .avatar {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(135deg, var(--teal-strong), var(--blue));
      font-weight: 900;
    }
    .provider-title h3 {
        margin: 0 0 3px;
      }
      
      .provider-title p {
        margin: 0;
      }
      
      .rating-line,
      .meta-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      
      .rating-line span,
      .tag {
        display: inline-flex;
        align-items: center;
        min-height: 28px;
        padding: 5px 9px;
        border-radius: 999px;
        background: var(--mist);
        color: var(--teal-strong);
        font-size: 0.82rem;
        font-weight: 800;
      }
      
      .tag.verified {
        background: #eaf7ee;
        color: #197448;
      }
      
      .tag.demand {
        background: #fff3dd;
        color: #946415;
      }
      
      .tag.today {
        background: #e9f1ff;
        color: #2457b8;
      }
      
      .provider-zones {
        color: var(--muted);
        font-size: 0.92rem;
      }
      
      .provider-card .button {
        align-self: end;
      }
      
      .request-layout,
      .provider-layout,
      .trust-layout {
        display: grid;
        gap: 28px;
      }
      
      .request-copy,
      .provider-layout > div:first-child {
        display: grid;
        align-content: start;
        gap: 16px;
      }
      
      .price-note,
      .business-note {
        padding: 18px;
      }
      
      .price-note ul,
      .provider-list {
        margin: 12px 0 0;
        padding-left: 18px;
        color: var(--muted);
      }
      
      .form-card {
        display: grid;  gap: 16px;
        padding: 18px;
      }
      
      .form-row {
        display: grid;
        gap: 14px;
      }
      
      .align-end {
        align-items: end;
      }
      
      .upload-box {
        display: grid;
        gap: 12px;
        padding: 16px;
        border: 1px dashed #9dc9c4;
        border-radius: var(--radius);
        background: #fbfefe;
      }
      
      .preview-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
        gap: 10px;
      }
      
      .preview-item {
        position: relative;
        overflow: hidden;
        aspect-ratio: 1;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--mist);
      }
      
      .preview-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      
      .preview-item button {
        position: absolute;
        top: 6px;
        right: 6px;
        display: grid;
        place-items: center;
        width: 28px;
        height: 28px;
        color: #fff;
        background: rgba(22, 37, 44, 0.82);
        border: 0;
        border-radius: 50%;
        font-weight: 900;
      }
      
      .success-box {
        padding: 16px;
        border: 1px solid rgba(34, 166, 106, 0.28);
        border-radius: var(--radius);
        background: #eefaf3;
        color: #175d39;
      }
      
      .success-box h3 {
        margin: 0 0 10px;
      }
      
      .success-box dl {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 0;
      }
      
      .success-box dt {
        font-weight: 900;
      }
          
          .provider-title p {
            margin: 0;
          }
          
          .rating-line,
          .meta-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
          }
          
          .rating-line span,
          .tag {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 5px 9px;
            border-radius: 999px;
            background: var(--mist);
            color: var(--teal-strong);
            font-size: 0.82rem;
            font-weight: 800;
          }
          
          .tag.verified {
            background: #eaf7ee;
            color: #197448;
          }
          
          .tag.demand {
            background: #fff3dd;
            color: #946415;
          }
          
          .tag.today {
            background: #e9f1ff;
            color: #2457b8;
          }
          
          .provider-zones {
            color: var(--muted);
            font-size: 0.92rem;
          }
          
          .provider-card .button {
            align-self: end;
          }
          
          .request-layout,
          .provider-layout,
          .trust-layout {
            display: grid;
            gap: 28px;
          }
          
          .request-copy,
          .provider-layout > div:first-child {
            display: grid;
            align-content: start;
            gap: 16px;
          }
          
          .price-note,
          .business-note {
            padding: 18px;
          }
          
          .price-note ul,
          .provider-list {
            margin: 12px 0 0;
            padding-left: 18px;
            color: var(--muted);
          }
          
          .form-card {
            display: grid;  gap: 16px;
            padding: 18px;
          }
          
          .form-row {
            display: grid;
            gap: 14px;
          }
          
          .align-end {
            align-items: end;
          }
          
          .upload-box {
            display: grid;
            gap: 12px;
            padding: 16px;
            border: 1px dashed #9dc9c4;
            border-radius: var(--radius);
            background: #fbfefe;
          }
          
          .preview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
            gap: 10px;
          }
          
          .preview-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: var(--mist);
          }
          
          .preview-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
          }
          
          .preview-item button {
            position: absolute;
            top: 6px;
            right: 6px;
            display: grid;
            place-items: center;
            width: 28px;
            height: 28px;
            color: #fff;
            background: rgba(22, 37, 44, 0.82);
            border: 0;
            border-radius: 50%;
            font-weight: 900;
          }
          
          .success-box {
            padding: 16px;
            border: 1px solid rgba(34, 166, 106, 0.28);
            border-radius: var(--radius);
            background: #eefaf3;
            color: #175d39;
          }
          
          .success-box h3 {
            margin: 0 0 10px;
          }
          
          .success-box dl {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
            margin: 0;
          }
          
          .success-box dt {
            font-weight: 900;}

            .success-box dd {
              margin: 0;
            }
            
            .trust-grid article {
              min-height: 156px;
              padding: 18px;
            }
            
            .provider-band {
              background: #f7fbff;
            }
            
            .radio-row {
              display: grid;
              gap: 10px;
            }
            
            .admin-card {
              display: grid;
              gap: 12px;
              min-height: 336px;
              padding: 16px;
            }
            
            .admin-thumb {
              position: relative;
              min-height: 120px;
              overflow: hidden;
              border-radius: 8px;
              background:
                linear-gradient(135deg, rgba(15, 118, 110, 0.24), rgba(37, 99, 235, 0.2)),
                #eaf7f5;
            }
            
            .admin-thumb::before,
            .admin-thumb::after {
              content: "";
              position: absolute;
              border-radius: 999px;
              background: rgba(255, 255, 255, 0.76);
            }
            
            .admin-thumb::before {
              width: 92px;
              height: 92px;
              left: 18px;
              top: 22px;
            }
            
            .admin-thumb::after {
              width: 180px;
              height: 28px;
              right: -28px;
              bottom: 22px;
            }
            
            .admin-top {
              display: flex;
              align-items: start;
              justify-content: space-between;
              gap: 10px;
            }
            
            .status {
              display: inline-flex;
              align-items: center;
              min-height: 28px;
              padding: 5px 9px;
              border-radius: 999px;
              color: #fff;
              background: var(--teal);
              font-size: 0.78rem;
              font-weight: 900;
            }
            
            .status.review {
              background: var(--amber);  color: #4e3710;
            }
            
            .status.assigned {
              background: var(--blue);
            }
            
            .status.closed {
              background: var(--green);
            }
            
            .admin-meta {
              display: grid;
              gap: 7px;
              color: var(--muted);
              font-size: 0.9rem;
            }
            
            .admin-meta strong {
              color: var(--ink);
            }
            
            .admin-card .button {
              align-self: end;
            }
            
            .site-footer {
              padding: 34px 0;
              color: #d7e8e6;
              background: #142b30;
            }
            
            .footer-layout {
              display: grid;
              gap: 20px;
            }
            
            .footer-brand {
              color: #fff;
            }
            
            .site-footer p {
              margin: 12px 0 0;
            }
            
            .footer-links {
              display: flex;
              flex-wrap: wrap;
              gap: 12px;
            }
            
            .footer-links a {
              color: #d7e8e6;
              font-weight: 800;
            }
            
            .modal-backdrop {
              position: fixed;
              inset: 0;
              z-index: 50;
              display: grid;
              place-items: center;
              padding: 20px;
              background: rgba(8, 21, 26, 0.56);
            }
            
            .modal {
              position: relative;
              width: min(100%, 760px);
              max-height: min(86vh, 760px);
              overflow: auto;
              padding: 22px;
              border-radius: var(--radius);
              background: #fff;
              box-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
            }
            
            .modal-close {
              position: sticky;
              top: 0;  float: right;
              display: grid;
              place-items: center;
              width: 38px;
              height: 38px;
              margin: -6px -6px 8px 12px;
              color: var(--ink);
              background: var(--mist);
              border: 0;
              border-radius: 50%;
              font-size: 1.4rem;
              font-weight: 900;
            }
            
            .modal h2 {
              margin: 0 0 10px;
              font-size: 1.6rem;
            }
            
            .modal-actions {
              display: flex;
              flex-wrap: wrap;
              gap: 10px;
              margin-top: 18px;
            }
            
            .modal-photo-grid {
              display: grid;
              grid-template-columns: repeat(3, 1fr);
              gap: 10px;
              margin: 16px 0;
            }
            
            .modal-photo {
              aspect-ratio: 4 / 3;
              border: 1px solid var(--line);
              border-radius: 8px;
              background:
                linear-gradient(135deg, rgba(242, 109, 91, 0.18), rgba(15, 118, 110, 0.22)),
                var(--mist);
            }
            
            @media (min-width: 620px) {
              .site-header {
                padding-inline: 28px;
              }
            
              .hero-content {
                padding-inline: 28px;
              }
            
              .category-grid,
              .provider-grid,
              .admin-grid,
              .steps-grid,
              .trust-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
              }
            
              .form-row.two,
              .radio-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
              }
            
              .success-box dl {
                grid-template-columns: 160px 1fr;
              }
            }
            
            @media (min-width: 860px) {
              .site-header {
                grid-template-columns: auto 1fr auto;
                padding-inline: 34px;
              }
            
              .menu-toggle {
                display: none;
              }
            
              .main-nav {    display: flex;
                align-items: center;
                justify-content: center;
                gap: 2px;
              }
            
              .header-cta {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-height: 42px;
                padding: 10px 15px;
                color: #fff;
                background: var(--teal);
                border-radius: 999px;
                font-weight: 800;
              }
            
              .hero {
                min-height: 760px;
              }
            
              .hero-content {
                padding-top: 128px;
                padding-bottom: 74px;
              }
            
              .hero h1 {
                font-size: 4.1rem;
              }
            
              .hero-copy {
                font-size: 1.18rem;
              }
            
              .quick-search-grid {
                grid-template-columns: 0.8fr 1.2fr;
                align-items: end;
                padding: 24px;
              }
            
              .quick-search-form {
                grid-template-columns: 1fr 1fr auto;
                align-items: end;
              }
            
              .category-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
              }
            
              .filters-panel {
                grid-template-columns: repeat(4, minmax(0, 1fr));
              }
            
              .location-layout,
              .request-layout,
              .provider-layout,
              .trust-layout {
                grid-template-columns: 0.9fr 1.1fr;
                align-items: start;
              }
            
              .trust-layout {
                grid-template-columns: 0.78fr 1.22fr;
              }
            }
            
            @media (min-width: 1080px) {
              .section {
                padding: 86px 0;
              }
            
              .category-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
              }
            
              .provider-grid,
              .admin-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
              }
              
  .steps-grid,
  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .filters-panel {
    grid-template-columns: 1fr 1fr 0.9fr 1fr 1fr 1fr auto auto;
    align-items: end;
  }

  .footer-layout {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 700px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88) 60%, rgba(255, 255, 255, 0.38)),
      linear-gradient(0deg, rgba(22, 37, 44, 0.5), rgba(22, 37, 44, 0) 42%);
  }

  .hero-media {
    background-position: 56% center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .quick-search h2,
  .location-layout h2,
  .request-copy h2,
  .provider-layout h2 {
    font-size: 1.6rem;
  }

  .button {
    width: 100%;
  }
}    