:root {
  --ink: #101a2d;
  --ink-soft: #466064;
  --muted: #718387;
  --paper: #f5f8f7;
  --white: #fff;
  --line: #dce7e3;
  --green: #1266d6;
  --green-deep: #07152f;
  --mint: #e5f0ff;
  --coral: #1b8fe3;
  --shadow: 0 18px 50px rgba(20, 55, 55, .1);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

select {
  appearance: none;
  min-height: 46px;
  padding: 11px 40px 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, var(--green) 50%), linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}

select:hover {
  border-color: #9abbb3;
  background-color: #fbfefd;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 102, 214, .12);
}

.nav {
  height: 96px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100% - 1240px) / 2));
  background: #000;
  border-bottom: 1px solid #1f1f1f;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.5px;
}

.brand>span:last-child {
  display: none;
}

.brand-mark {
  display: block;
  width: 190px;
  height: 95px;
  border-radius: 0;
  background: #000 url("/uploads/Belize-logo.png") center / contain no-repeat;
  color: transparent !important;
  font-size: 0;
  box-shadow: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

nav a {
  padding: 38px 0;
  transition: color .2s, transform .2s;
}

nav a:hover {
  color: #55bfff;
  transform: translateY(-1px);
}

.nav-provider {
  padding: 12px 16px !important;
  border-radius: 10px;
  background: var(--green);
  color: #fff !important;
  box-shadow: 0 7px 16px rgba(13, 107, 92, .2);
}

.nav-phone {
  color: #8ed6ff;
}

.menu {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 24px;
}

.hero {
    position: relative;
    min-height: min(860px, 100vh);
    padding: 180px max(24px, calc((100% - 1240px) / 2)) 100px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(5,14,35,.88) 0%,
            rgba(5,14,35,.64) 42%,
            rgba(5,14,35,.18) 78%,
            rgba(5,14,35,.12) 100%
        ),
        url("/uploads/hero.png") center / cover no-repeat;
    overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 17px 0 18px;
  color: #fff;
  font-size: clamp(45px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -4px;
  font-weight: 900;
}

.hero h1 em,
h2 em {
  color: var(--coral);
  font-style: normal;
}

.hero-copy>p {
  max-width: 530px;
  margin-bottom: 26px;
  color: #e8f5f1;
  font-size: 18px;
  line-height: 1.6;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 650px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.search-box span {
  padding: 0 8px;
  color: var(--green);
  font-size: 23px;
}

.search-box input,
.search-box select {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 13px 8px;
  color: var(--ink);
  background: #fff;
}

.search-box input {
  flex: 1;
}

.search-box select {
  border-left: 1px solid var(--line);
}

.search-box button,
.primary {
  border: 0;
  padding: 13px 18px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(13, 107, 92, .18);
  transition: transform .2s, box-shadow .2s;
}

.search-box button:hover,
.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(13, 107, 92, .25);
}

.hero-request {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.quick {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.quick button {
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 12px;
}

.hero .eyebrow {
  color: #9ed8ff;
}

.hero-art {
  display: none;
}

.hero-photo {
  display: none;
}

.floating-card {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 17px;
  background: #fff;
  border: 1px solid #e8f0ed;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 800;
}

.floating-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.fc1 {
  top: 28px;
  left: -20px;
}

.fc2 {
  right: -20px;
  bottom: 35px;
}

.section {
  padding: 88px max(24px, calc((100% - 1100px) / 2));
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 35px;
  margin-bottom: 28px;
}

.section-head h2,
.why h2,
.join h2 {
  margin: 10px 0 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.03;
  letter-spacing: -2.5px;
}

.section-head>p {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.category-view-all {
  align-self: end;
  white-space: nowrap;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}

.category {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(20, 55, 55, .05);
  transition: transform .25s, box-shadow .25s;
}

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

.category::before {
  content: "";
  position: absolute;
  inset: 0 0 0 47%;
  background: linear-gradient(90deg, var(--category-fade, rgba(255,255,255,.86)) 0%, rgba(255,255,255,.28) 48%, rgba(255,255,255,.06) 100%), var(--category-image, none) center / cover;
}

.category>* {
  position: relative;
  z-index: 1;
}

.category .icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--mint);
  font-size: 23px;
}

.category h3 {
  max-width: 250px;
  margin: 34px 0 6px;
  color: var(--ink);
  font-size: 23px;
  letter-spacing: -1px;
}

.category p {
  max-width: 235px;
  color: #344f55;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.category .arrow {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--green);
  font-size: 23px;
}

.category:nth-child(2) {
  background: var(--green-deep);
  color: #fff;
}

.category:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(8, 74, 67, .9), rgba(8, 74, 67, .2) 45%, rgba(8, 74, 67, .08) 100%), var(--category-image, none) center / cover;
}

.category:nth-child(2) p {
  color: #c9e4dc;
}

.category:nth-child(2) h3 {
  color: #fff;
}

.category:nth-child(2) .icon {
  background: #276e63;
}

.category:nth-child(2) .arrow {
  color: #fff;
}

.providers-section {
  background: #edf5f2;
}

.filters {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.filters input,
.filters select,
.form-card input,
.form-card select,
.form-card textarea,
.results-toolbar input,
.results-toolbar select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px;
  outline: 0;
  background: #fff;
  color: var(--ink);
}

.filters select,
.filter-row select,
.form-card select {
  background-color: #fbfefd;
  font-weight: 700;
}

.filters input {
  flex: 1;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.provider {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(20, 55, 55, .05);
  transition: transform .2s, box-shadow .2s;
}

.provider:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.provider:hover .provider-image img {
  transform: scale(1.07);
}

.provider-image {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  height: 190px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0b5b51, #74b39d);
  color: #fff;
  font-size: 44px;
}

.provider-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  font-size: 12px;
  color: transparent;
  transition: transform .4s ease;
}

.provider-image-overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  z-index: 2;
  pointer-events: none;
}

.provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 20, 30, .55);
  backdrop-filter: blur(2px);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .3px;
  white-space: nowrap;
}

.provider-badge.is-verified {
  background: rgba(18, 102, 214, .85);
}

.provider-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(120deg, #f4e4bb, #c9a24b);
  color: #3a2c05;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .3px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(201, 162, 75, .4);
}

.provider-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 20px;
}

.badge {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .4px;
}

.provider h3 {
  margin: 0 0 7px;
  font-size: 20px;
  letter-spacing: -.5px;
}

.provider p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 40px;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.provider-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.provider-rating-stars {
  color: #c9a24b;
  letter-spacing: 1px;
}

.meta {
  margin: 13px 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.services-empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.tag {
  padding: 6px 8px;
  border-radius: 7px;
  background: #f0f6f3;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
}

.actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.actions a,
.actions button {
  flex: 1;
  padding: 11px 8px;
  border: 0;
  border-radius: 9px;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  transition: background .15s, color .15s;
}

.actions a:last-child {
  background: #edf5f2;
  color: var(--green);
}

.actions a:hover {
  filter: brightness(1.08);
}

.outline {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 11px 14px;
  background: #fff;
  color: var(--green);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(85, 191, 255, .72);
  border-radius: 28px;
  background: linear-gradient(145deg, #07152f, #0c2144);
  box-shadow: 0 18px 45px rgba(7, 21, 47, .22), 0 0 28px rgba(18, 102, 214, .14);
}

#how .section-head,
.how-steps .section-head {
  justify-content: center;
  text-align: center;
}

#how .section-head > p,
.how-steps .section-head > p {
  max-width: 520px;
}

.steps article {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(85, 191, 255, .35);
  border-radius: 20px;
  background: rgba(5, 14, 35, .72);
  color: #fff;
  box-shadow: inset 0 0 24px rgba(18, 102, 214, .08);
}

.steps article>b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 26px;
  border-radius: 999px;
  background: rgba(27, 143, 227, .18);
  color: #8ed6ff;
  font-size: 12px;
}

.steps article>span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 30px 0 24px;
  border-radius: 15px;
  background: rgba(18, 102, 214, .18);
  color: #55bfff;
  font-size: 27px;
}

.process-icon {
  color: #55bfff;
}

.process-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.steps article:nth-child(2)>span {
  background: rgba(27, 143, 227, .18);
  color: #ff9b65;
}

.steps article:nth-child(3)>span {
  background: rgba(85, 191, 255, .18);
  color: #8ed6ff;
}

.steps h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.steps p {
  margin: 0;
  color: #c8dcf4;
  font-size: 13px;
  line-height: 1.6;
}

.steps h3 {
  margin-top: 0;
  color: #fff;
}

.why {
  background: var(--green-deep);
  color: #fff;
}

.why .eyebrow {
  color: #a8ddc9;
}

.why p {
  max-width: 590px;
  color: #c5e0d8;
  line-height: 1.7;
}

.ticks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.ticks span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  color: #e5f4ef;
  font-size: 13px;
}

.join {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: #fdf0e4;
}

.join .eyebrow {
  color: var(--coral);
}

.join p {
  color: var(--ink-soft);
}

.join .primary {
  white-space: nowrap;
  background: var(--coral);
}

footer.site-footer{background:#050b14!important;color:#fff!important;padding:64px max(24px,calc((100% - 1180px)/2)) 24px;min-height:0;display:block}.footer-grid{display:grid;grid-template-columns:minmax(260px,1.6fr) repeat(3,minmax(150px,1fr));gap:42px;align-items:start;padding-bottom:46px}.footer-brand{display:inline-flex;align-items:center;gap:12px;color:#fff!important;text-decoration:none}.site-footer .footer-brand .brand-mark{width:78px;height:78px;flex:0 0 78px;background-size:contain;transform: translate(50px, -25px) scale(2.3);}.footer-brand>span:last-child{font-size:24px;font-weight:900;letter-spacing:-.6px}.footer-brand>span:last-child span{color:#55bfff}.footer-tagline{margin:18px 0 7px;color:#fff!important;font-size:15px;font-weight:800}.footer-location,.footer-social-copy{margin:0;max-width:310px;color:#9db0c5!important;font-size:12px;line-height:1.7}.footer-col{display:grid;align-content:start;gap:11px}.footer-col h3{margin:3px 0 9px;color:#fff;font-size:13px;text-transform:uppercase;letter-spacing:.12em}.footer-col a{color:#a9c4dd;font-size:13px;text-decoration:none;transition:color .2s,transform .2s}.footer-col a:hover{color:#55bfff;transform:translateX(2px)}.footer-social{display:flex;gap:10px;align-items:center}.footer-social a{position:relative;display:grid;place-items:center;width:42px;height:42px;border:1px solid rgba(142,214,255,.35);border-radius:12px;background:rgba(255,255,255,.04);color:#8ed6ff;font-size:0;transition:.2s ease}.footer-social a:hover{background:#8ed6ff;color:#050b14;transform:translateY(-2px)}.footer-social a::before{content:"";width:19px;height:19px;background:currentColor;mask-repeat:no-repeat;mask-position:center;mask-size:contain;-webkit-mask-repeat:no-repeat;-webkit-mask-position:center;-webkit-mask-size:contain}.footer-social a[aria-label="Facebook"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8h3V4h-3c-3.3 0-5 1.7-5 5v3H6v4h3v8h4v-8h3.5l.5-4H13V9c0-.7.3-1 1-1Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8h3V4h-3c-3.3 0-5 1.7-5 5v3H6v4h3v8h4v-8h3.5l.5-4H13V9c0-.7.3-1 1-1Z'/%3E%3C/svg%3E")}.footer-social a[aria-label="TikTok"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 3h3.1c.3 1.8 1.4 3.2 2.9 4v3.2c-1.1-.1-2.1-.4-3-1v6.5a6.3 6.3 0 1 1-5.4-6.2v3.3a3 3 0 1 0 2.1 2.9V3Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 3h3.1c.3 1.8 1.4 3.2 2.9 4v3.2c-1.1-.1-2.1-.4-3-1v6.5a6.3 6.3 0 1 1-5.4-6.2v3.3a3 3 0 1 0 2.1 2.9V3Z'/%3E%3C/svg%3E")}.footer-social a[aria-label="YouTube"]::before{mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.5 12 3.5 12 3.5s-7.5 0-9.4.6A3 3 0 0 0 .5 6.2 31 31 0 0 0 0 12a31 31 0 0 0 .5 5.8 3 3 0 0 0 2.1 2.1c1.9.6 9.4.6 9.4.6s7.5 0 9.4-.6a3 3 0 0 0 2.1-2.1A31 31 0 0 0 24 12a31 31 0 0 0-.5-5.8ZM9.6 15.6V8.4l6.3 3.6-6.3 3.6Z'/%3E%3C/svg%3E");-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.5 12 3.5 12 3.5s-7.5 0-9.4.6A3 3 0 0 0 .5 6.2 31 31 0 0 0 0 12a31 31 0 0 0 .5 5.8 3 3 0 0 0 2.1 2.1c1.9.6 9.4.6 9.4.6s7.5 0 9.4-.6a3 3 0 0 0 2.1-2.1A31 31 0 0 0 24 12a31 31 0 0 0-.5-5.8ZM9.6 15.6V8.4l6.3 3.6-6.3 3.6Z'/%3E%3C/svg%3E")}.footer-bottom{display:flex;justify-content:space-between;align-items:center;gap:18px;padding-top:20px;border-top:1px solid rgba(255,255,255,.1);color:#8095aa;font-size:11px}.footer-legal{display:flex;gap:22px}.footer-legal a{color:#a9c4dd;text-decoration:none}.footer-legal a:hover{color:#55bfff}.contact-link-icon svg{width:18px;height:18px;fill:currentColor;display:block}.contact-link-phone .contact-link-icon{background:var(--pro-ink);color:#fff}@media(max-width:800px){.footer-grid{grid-template-columns:repeat(2,minmax(150px,1fr));gap:32px 24px}.footer-brand-col{grid-column:1/-1}.footer-bottom{flex-wrap:wrap}}@media(max-width:560px){footer.site-footer{padding:48px 20px 22px}.footer-grid{grid-template-columns:1fr 1fr}.footer-brand-col{grid-column:1/-1}.footer-bottom{display:grid;gap:12px}.footer-legal{order:-1;gap:14px;flex-wrap:wrap}}@media(max-width:560px){.site-footer .footer-brand .brand-mark{transform:translate(20px,-15px) scale(1.7);}}

.profile-wrap,
.form-wrap {
  min-height: 75vh;
  padding: 135px 24px 80px;
  max-width: 900px;
  margin: auto;
}

.profile-wrap {
  max-width: 1180px;
  padding-left: 0;
  padding-right: 0;
}

.profile {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.profile-gallery {
  position: relative;
  height: 410px;
  overflow: hidden;
  background: var(--green-deep);
}

.profile-gallery>img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-count {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .65);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  background: rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.gallery-prev {
  left: 18px;
}

.gallery-next {
  right: 18px;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}

.gallery-thumb {
  flex: 0 0 72px;
  height: 54px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #edf5f2;
}

.gallery-thumb.active {
  border-color: var(--green);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 42px 0 34px;
  border-bottom: 1px solid var(--line);
}

.profile-summary h1 {
  margin: 8px 0;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -2.5px;
}

.profile-location {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.profile-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.profile-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr);
  gap: 80px;
  padding: 42px 0 50px;
}

.profile-main h2:first-child {
  margin-top: 0;
}

.profile-top {
  padding: 48px;
  background: var(--green-deep);
  color: #fff;
}

.profile-top h1 {
  margin: 12px 0;
  font-size: clamp(38px, 6vw, 58px);
  letter-spacing: -3px;
}

.profile-content {
  padding: 34px;
}

.profile-content h2 {
  margin-top: 30px;
  font-size: 24px;
}

.contact-cta {
  align-self: start;
  margin-top: 0;
  padding: 28px;
  border: 0;
  border-left: 4px solid var(--green);
  border-radius: 0;
  background: #eef7ff;
}

.contact-cta h2 {
  margin-top: 0;
  color: var(--ink);
}

.contact-cta p {
  color: var(--ink-soft);
}

/* ---------- Tiered provider profile: FREE plan keeps the styles above; ---------- */
/* ---------- FEATURED / PREMIUM plans get the elevated "portfolio" treatment below. ---------- */

.profile-pro {
  --pro-gold: #c9a24b;
  --pro-ink: #0b1120;
}

.profile-pro .pro-gallery {
  height: 480px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.profile-pro .pro-gallery>img {
  filter: saturate(1.06);
}

.badge-pro {
  background: linear-gradient(120deg, #f4e4bb, var(--pro-gold));
  color: #3a2c05;
  box-shadow: 0 6px 16px rgba(201, 162, 75, .35);
}

.pro-summary {
  align-items: flex-start;
  padding: 46px 0 38px;
  border-bottom: 1px solid var(--line);
}

.eyebrow-pro {
  color: var(--pro-gold);
}

.pro-heading {
  font-family: "Fraunces", "DM Sans", serif;
  font-weight: 600;
  letter-spacing: -1.5px;
  position: relative;
  display: inline-block;
}

.pro-heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--pro-gold), transparent);
  border-radius: 3px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.stat-pill-stars {
  color: var(--pro-gold);
  letter-spacing: 1px;
}

.pro-cta {
  background: linear-gradient(120deg, var(--pro-ink), #1b2a4a);
  box-shadow: 0 14px 30px rgba(11, 17, 32, .28);
}

.pro-about {
  font-size: 16px;
  line-height: 1.7;
}

.tag-pro {
  background: #101a2d;
  color: #f4e4bb;
  border: 1px solid var(--pro-gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.portfolio-item {
  padding: 0;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #edf5f2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.contact-cta-pro {
  border-left: 4px solid var(--pro-gold);
  background: linear-gradient(160deg, #fbf6ea, #f3f7ff);
  box-shadow: var(--shadow);
}

.direct-contact {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 162, 75, .35);
}

.direct-contact-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.direct-contact-heading strong {
  display: block;
  margin-top: 3px;
  color: var(--pro-ink);
  font-family: "Fraunces", "DM Sans", serif;
  font-size: 20px;
}

.contact-spark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--pro-ink);
  color: var(--pro-gold);
  font-size: 18px;
}

.direct-contact-copy {
  margin: 12px 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.contact-links {
  display: grid;
  gap: 9px;
}

.contact-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 9px 11px;
  border: 1px solid rgba(11, 17, 32, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .78);
  color: var(--pro-ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: var(--pro-gold);
  box-shadow: 0 8px 18px rgba(11, 17, 32, .12);
}

.contact-link-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--pro-ink);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.contact-link-whatsapp .contact-link-icon {
  background: #168c4b;
}

.contact-link-email .contact-link-icon {
  background: var(--pro-gold);
  color: var(--pro-ink);
}

.contact-link b,
.contact-link small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-link b {
  font-size: 13px;
}

.contact-link small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.contact-link-arrow {
  color: var(--pro-gold);
  font-size: 18px;
  font-weight: 800;
}

.plan-current {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(18, 102, 214, .12);
}

.current-plan-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

@media (max-width: 640px) {
  .profile-pro .pro-gallery {
    height: 300px;
  }
}

.form-card {
  max-width: 720px;
  margin: auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.provider-login-card .back-link {
  margin-bottom: 28px;
}

.provider-login-card .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.form-card h1 {
  margin: 12px 0;
  font-size: clamp(37px, 5vw, 55px);
  letter-spacing: -2.5px;
}

.form-card>p {
  color: var(--muted);
  line-height: 1.6;
}

.application-fee-note {
  padding: 14px 16px;
  border: 1px solid #f6c76b;
  border-radius: 12px;
  background: linear-gradient(180deg, #fffaf0 0%, #fff3d8 100%);
  color: #7a3f00 !important;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(122, 63, 0, 0.08);
}

.application-fee-note a,
.verify-email-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  font-weight: 900;
}

.form-card label {
  display: grid;
  gap: 7px;
  margin: 16px 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.form-card .primary {
  margin-top: 10px;
}

.form-card #formMsg {
  margin-top: 15px;
  color: var(--green);
  font-weight: 700;
}

.hidden {
  display: none;
}

.service-page {
  min-height: 75vh;
  padding: 130px max(24px, calc((100% - 1100px) / 2)) 70px;
}

.legal-page {
  min-height: 75vh;
  padding: 135px max(24px, calc((100% - 900px) / 2)) 80px;
}

.legal-hero {
  padding: 42px;
  border-radius: 18px;
  background: linear-gradient(135deg, #07152f, #1266d6);
  color: #fff;
}

.legal-hero .eyebrow { color: #9ed8ff; }

.legal-hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -3px;
  line-height: 1;
}

.legal-hero p {
  max-width: 620px;
  margin: 0 0 16px;
  color: #dcecff;
  line-height: 1.6;
}

.legal-hero small { color: #b8d9f5; font-size: 12px; }

.legal-content {
  margin-top: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(20, 55, 55, .05);
}

.legal-content h2 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 21px;
}

.legal-content h2:first-of-type { margin-top: 8px; }

.legal-content p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.service-hero {
  padding: 58px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .45)), var(--service-image, url("/uploads/hero.png")) center / cover;
}

.service-hero h1 {
  margin: 12px 0;
  font-size: clamp(42px, 6vw, 70px);
  letter-spacing: -3px;
}

.service-hero p {
  max-width: 520px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.service-results {
  padding-top: 60px;
}

.provider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(20, 55, 55, .05);
}

.search-page {
  min-height: 75vh;
  padding: 135px max(24px, calc((100% - 1100px) / 2)) 75px;
}

.directory-page,
.how-page {
  min-height: 75vh;
  padding: 135px max(24px, calc((100% - 1100px) / 2)) 75px;
}

.directory-hero,
.how-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 70px;
  align-items: end;
  padding-bottom: 72px;
}

.directory-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
  gap: 56px;
}

.directory-hero-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 20px;
  background: #dcecff;
}

.directory-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.directory-hero-copy {
  min-width: 0;
}

.directory-hero h1,
.how-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(42px, 6vw, 70px);
  letter-spacing: -3px;
  line-height: .98;
}

.directory-hero p,
.how-hero p {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.7;
}

.directory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.category-directory {
  padding: 64px 0 20px;
  border-top: 1px solid var(--line);
}

.category-directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.category-directory-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(20, 55, 55, .05);
}

.category-directory-image {
  display: grid;
  place-items: center;
  height: 150px;
  background: linear-gradient(135deg, rgba(7, 21, 47, .12), rgba(18, 102, 214, .08)), var(--category-image, none) center/cover;
  color: #fff;
}

.category-directory-image .icon {
  font-size: 46px;
}

.category-directory-body {
  padding: 18px;
}

.category-directory-body h3 {
  margin: 7px 0 6px;
  font-size: 22px;
}

.category-directory-body p {
  min-height: 38px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.category-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 16px;
}

.category-service-list span {
  padding: 6px 8px;
  border-radius: 7px;
  background: #f0f6f3;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
}

.category-directory-body .outline {
  display: inline-block;
}

.how-hero {
  padding-bottom: 88px;
}

.how-hero-note {
  padding: 28px;
  border-left: 4px solid var(--coral);
  background: #fdf0e4;
}

.how-hero-note strong {
  display: block;
  margin: 14px 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.15;
}

.how-hero-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.how-steps {
  padding: 64px 0 78px;
  border-top: 1px solid var(--line);
}

.how-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(85, 191, 255, .72);
  border-radius: 28px;
  background: linear-gradient(145deg, #07152f, #0c2144);
  box-shadow: 0 18px 45px rgba(7, 21, 47, .22), 0 0 28px rgba(18, 102, 214, .14);
}

.how-step-grid article {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(85, 191, 255, .35);
  border-radius: 20px;
  background: rgba(5, 14, 35, .72);
  color: #fff;
  box-shadow: inset 0 0 24px rgba(18, 102, 214, .08);
}

.how-step-grid article>b {
  color: #8ed6ff;
  font-size: 12px;
}

.how-step-grid article>span {
  display: block;
  margin: 30px 0 24px;
  color: #55bfff;
  font-size: 34px;
}

.how-step-grid .process-icon svg {
  width: 42px;
  height: 42px;
}

.how-step-grid article:nth-child(2)>span { color: #ff9b65; }
.how-step-grid article:nth-child(3)>span { color: #8ed6ff; }

.how-step-grid h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 20px;
}

.how-step-grid p {
  min-height: 78px;
  margin: 0 0 18px;
  color: #c8dcf4;
  font-size: 13px;
  line-height: 1.6;
}

.how-step-grid a {
  margin-top: auto;
  color: #55bfff;
  font-size: 12px;
  font-weight: 800;
}

/* Keep the homepage preview and full process page visually identical. */
.steps article,
.how-step-grid article {
  min-height: 245px;
}

.steps article>span,
.how-step-grid article>span {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 30px 0 24px;
  place-items: center;
}

.steps .process-icon svg,
.how-step-grid .process-icon svg {
  width: 42px;
  height: 42px;
}

.steps h3,
.how-step-grid h3 {
  margin-top: 0;
  font-size: 20px;
}

.steps p,
.how-step-grid p {
  min-height: 78px;
  margin: 0 0 18px;
}

.how-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr);
  gap: 80px;
  padding: 72px 0;
  background: #edf5f2;
}

.how-details h2 {
  margin: 12px 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -2px;
}

.how-details p {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.7;
}

.how-detail-list {
  display: grid;
  gap: 10px;
}

.how-detail-list div {
  display: grid;
  gap: 5px;
  padding: 17px;
  border-bottom: 1px solid rgba(11, 91, 81, .18);
}

.how-detail-list strong {
  color: var(--ink);
}

.how-detail-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.how-next {
  padding: 72px 0 10px;
}

.how-next h2 {
  margin: 12px 0 8px;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -2px;
}

.how-next p {
  margin: 0;
  color: var(--muted);
}

.how-next .primary {
  display: inline-block;
  margin-top: 22px;
}

.search-heading h1 {
  margin: 12px 0;
  font-size: clamp(40px, 5vw, 60px);
  letter-spacing: -3px;
}

.search-heading p {
  color: var(--muted);
}

.search-panel {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(20, 55, 55, .05);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 6px 5px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #f8fbff;
}

.search-input-wrap>span {
  color: var(--green);
  font-size: 22px;
}

.search-input-wrap input {
  flex: 1;
  min-width: 0;
  padding: 11px 5px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search-input-wrap .primary {
  padding: 11px 20px;
}

.filter-row {
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 14px;
}

.filter-row label:not(.check) {
  flex: 1;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.filter-row select,
.filter-row input[list] {
  width: 100%;
}

.filter-row input[list] {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfefd;
  color: var(--ink);
  font-weight: 700;
  outline: 0;
}

.filter-row input[list]:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 91, 81, .08);
}

.filter-row .check {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.filter-row .check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-box {
  width: 18px;
  height: 18px;
  border: 2px solid #aac4de;
  border-radius: 5px;
  background: #fff;
}

.filter-row .check input:checked+.check-box {
  border-color: var(--green);
  background: var(--green);
  box-shadow: inset 0 0 0 3px #fff;
}

.results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 30px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.results-meta strong {
  color: var(--ink);
}

.view-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.view-button {
  width: 34px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 17px;
}

.view-button.active {
  background: var(--mint);
  color: var(--green);
}

.search-results.list-view {
  grid-template-columns: 1fr;
}

.search-results.list-view .provider {
  display: grid;
  grid-template-columns: 230px 1fr;
}

.search-results.list-view .provider-image {
  height: 100%;
  min-height: 205px;
}

.results-loading {
  grid-column: 1/-1;
  padding: 60px 20px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
}

.empty-results {
  grid-column: 1/-1;
  text-align: center;
}

.empty-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-size: 25px;
}

.results-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.results-toolbar input {
  flex: 1;
  min-width: 220px;
}

.check {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 13px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 15px;
}

.form-grid .full {
  grid-column: 1/-1;
}

.image-fields {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.image-field-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbff;
}

.image-field-row>img {
  width: 120px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
}

.image-field-row>div {
  min-width: 0;
}

.image-field-row strong,
.upload-row b {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.image-field-row label {
  margin: 0 0 10px;
}

.image-field-row label:last-child {
  margin-bottom: 0;
}

.remove-image {
  display: block;
  margin: 7px 0 10px;
  padding: 6px 9px;
  border: 1px solid #e4b8b2;
  border-radius: 7px;
  background: #fff4f2;
  color: #b42318;
  font-size: 11px;
  font-weight: 800;
}

.progress {
  display: flex;
  gap: 8px;
  margin: 25px 0;
}

.progress span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #e6efeb;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.progress span.active {
  background: var(--green);
  color: #fff;
}

.request-step {
  display: none;
}

.request-step.active {
  display: block;
}

.step-actions {
  display: flex;
  gap: 10px;
}

.step-actions>* {
  flex: 1;
}

.success-state {
  padding: 25px 0;
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-size: 32px;
  font-weight: 900;
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(24px, calc((100% - 1180px) / 2));
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.dashboard-head>div {
  display: flex;
  gap: 8px;
}

.dashboard {
  max-width: 1180px;
  margin: auto;
  padding: 55px 24px;
}

.dashboard-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.dashboard h1 {
  margin: 12px 0;
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -3px;
}

.dashboard-intro p {
  color: var(--muted);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dashboard-tabs {
  display: flex;
  gap: 4px;
  margin: 28px 0 18px;
  padding: 5px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #edf3f1;
}

.dashboard-tab {
  flex: 1 0 auto;
  padding: 11px 18px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-tab:hover,
.dashboard-tab[aria-selected="true"] {
  background: #fff;
  color: var(--green);
  box-shadow: 0 3px 10px rgba(20, 55, 55, .08);
}

.dashboard-tab-content {
  min-width: 0;
}

.dashboard-tab-panel {
  min-width: 0;
}

.dashboard-tab-panel>.panel,
.dashboard-tab-panel>.dashboard-stats {
  margin-top: 0;
}

.dashboard-tab-panel[hidden] {
  display: none;
}

.dashboard-tab-panel.is-active {
  animation: dashboard-tab-in .18s ease-out;
}

@keyframes dashboard-tab-in {
  from { opacity: .4; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.stat small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.stat strong {
  display: block;
  margin-top: 10px;
  font-size: 32px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 16px;
  margin-top: 16px;
}

.dashboard .panel {
  box-shadow: none;
}

.dashboard .panel label {
  display: grid;
  gap: 7px;
  margin: 12px 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.dashboard .panel input,
.dashboard .panel textarea {
  width: 100%;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.lead-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.lead-copy {
  min-width: 0;
}

.lead-actions {
  display: grid;
  justify-items: end;
  gap: 9px;
  width: min(260px, 45%);
}

.quote-form {
  display: grid;
  gap: 8px;
  width: 100%;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  resize: vertical;
}

.quote-form .primary {
  padding: 10px 12px;
}

.quote-status {
  color: var(--green);
  font-size: 11px;
}

.application-fee-note,
.lead-fee-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.site-dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 21, 47, .62);
}

.site-dialog {
  width: min(430px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 21, 47, .28);
}

.site-dialog h2 { margin: 0; font-size: 21px; }
.site-dialog-message { margin: 10px 0 16px; color: var(--muted); line-height: 1.5; white-space: pre-line; }
.site-dialog-input { width: 100%; padding: 11px; border: 1px solid var(--line); border-radius: 8px; resize: vertical; }
.site-dialog-actions { display: flex; justify-content: flex-end; gap: 9px; margin-top: 18px; }
.site-dialog-actions button { padding: 10px 14px; border: 0; border-radius: 8px; cursor: pointer; font-weight: 800; }
.site-dialog-cancel { background: #edf2f5; color: var(--ink); }
.site-dialog-confirm { background: var(--green); color: #fff; }
.site-dialog-danger { background: #b42318; }

.quote-sent {
  padding: 9px 12px;
  border-radius: 9px;
  background: var(--mint);
  color: var(--green);
  font-weight: 800;
  text-align: right;
}

.lead-item p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 13px;
}

.lead-item small {
  color: var(--muted);
}

.empty-state {
  padding: 30px 5px;
  text-align: center;
  color: var(--muted);
}

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

.plan {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.plan strong {
  display: block;
  margin: 9px 0;
  font-size: 27px;
}

.plan p {
  min-height: 40px;
  color: var(--muted);
  font-size: 13px;
}

.plan ul {
  display: grid;
  gap: 8px;
  min-height: 142px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 950px) {
  .hero {
    grid-template-columns: minmax(0, .85fr) minmax(350px, 1.15fr);
    gap: 36px;
  }

  .hero-art {
    min-height: 500px;
  }

  nav {
    gap: 16px;
  }
}

@media (max-width: 850px) {
  .nav {
    height: 82px;
    padding: 0 18px;
  }

  .nav nav.open {
    position: absolute;
    top: 82px;
    right: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: min(280px, calc(100vw - 28px));
    padding: 12px;
    border: 1px solid #252525;
    border-radius: 14px;
    background: #000;
    box-shadow: var(--shadow);
  }

  .nav nav.open a {
    padding: 12px;
    color: #fff;
  }

  .nav nav {
    display: none;
  }

  .menu {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: 115px 24px 55px;
  }

  .hero-art {
    min-height: 470px;
  }

  .hero-photo {
    inset: 0;
  }

  .fc2 {
    right: 0;
  }

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

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

  .section {
    padding: 68px 24px;
  }

  .section-head {
    display: block;
  }

  .category-view-all {
    display: inline-block;
    margin-top: 16px;
  }

  .section-head>p {
    margin-top: 15px;
  }

  .join {
    display: block;
  }

  .dashboard {
    padding: 38px 18px;
  }

  .dashboard-intro {
    display: block;
  }

  .dashboard-intro>.primary {
    display: inline-block;
    margin-top: 10px;
  }

  .dashboard-tabs {
    margin-top: 22px;
  }

  .dashboard-tab {
    padding: 10px 14px;
  }

  .directory-hero,
  .how-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .directory-hero-media {
    aspect-ratio: 16 / 9;
  }

  .how-details {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .join .primary {
    display: inline-block;
    margin-top: 15px;
  }

  .service-page {
    padding-top: 110px;
  }

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

  .profile-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-cta {
    width: 100%;
    text-align: center;
  }

  .profile-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .brand-mark {
    width: 160px;
    height: 72px;
    background-size: contain;
    background-position: center;
  }

  footer .brand-mark {
    width: 220px;
    height: 100px;
  }

  .hero h1 {
    letter-spacing: -2.5px;
  }

  .hero {
    padding: 105px 16px 35px;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.02;
  }

  .hero-art {
    min-height: 330px;
  }

  .hero-photo {
    border-radius: 22px 22px 22px 72px;
  }

  .floating-card {
    font-size: 11px;
    padding: 11px;
  }

  .fc1 {
    top: -10px;
    left: 8px;
  }

  .fc2 {
    right: 8px;
    bottom: -10px;
  }

  .search-box {
    display: grid;
    grid-template-columns: 1fr;
  }

  .search-box span {
    display: none;
  }

  .search-box input,
  .search-box select {
    width: 100%;
    min-height: 50px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .search-box button {
    width: 100%;
    min-height: 50px;
  }

  .filters input,
  .filters select {
    min-height: 44px;
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: 13px;
  }

  .providers-section .section-head>.outline {
    display: inline-block;
    margin-top: 16px;
    white-space: normal;
  }

  .provider-grid,
  .steps,
  .dashboard-stats,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .steps,
  .how-step-grid {
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
  }

  .steps article,
  .how-step-grid article {
    padding: 22px;
  }

  .category-directory-grid,
  .how-step-grid {
    grid-template-columns: 1fr;
  }

  .directory-page,
  .how-page {
    padding-top: 110px;
  }

  .legal-page {
    padding: 108px 16px 55px;
  }

  .legal-hero,
  .legal-content {
    padding: 24px 20px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }

  .directory-hero,
  .how-hero {
    padding-bottom: 55px;
  }

  .directory-hero h1,
  .how-hero h1 {
    font-size: 42px;
  }

  .category-directory,
  .how-steps {
    padding-top: 48px;
  }

  .actions {
    flex-direction: column;
  }

  .actions a,
  .actions button {
    width: 100%;
    min-height: 44px;
  }

  .lead-item {
    display: block;
  }

  .lead-actions {
    justify-items: stretch;
    width: 100%;
    margin-top: 12px;
  }

  .quote-sent {
    text-align: left;
  }

  .filters>* {
    width: 100%;
  }

  .filters {
    flex-wrap: wrap;
  }

  .form-card {
    width: calc(100% - 24px);
    padding: 22px 18px;
    border-radius: 16px;
  }

  .form-card h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.04;
  }

  .form-card>p {
    font-size: 14px;
  }

  .form-card label {
    font-size: 12px;
  }

  .form-card input,
  .form-card select,
  .form-card textarea {
    min-height: 50px;
    width: 100%;
  }

  .form-card textarea {
    min-height: 110px;
  }

  .image-upload-section {
    margin: 22px -4px 0;
    padding: 14px;
    border-radius: 12px;
  }

  .image-upload-section input[type="file"] {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    font-size: 12px;
  }

  .image-field-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .image-field-row>img {
    width: 100%;
    height: 150px;
  }

  .image-field-row strong,
  .upload-row b {
    line-height: 1.35;
  }

  .remove-image {
    width: 100%;
    min-height: 42px;
  }

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

  .form-grid .full {
    grid-column: auto;
  }

  .service-hero {
    padding: 34px 25px;
  }

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

  footer {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "brand" "tag" "links" "social" "legal";
    min-height: 0;
    padding: 38px 20px;
    gap: 18px;
  }

  footer .brand,
  footer>p,
  footer small {
    display: block;
  }

  footer .brand-mark {
    width: 190px;
    height: 72px;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding-top: 0;
  }

  .footer-social {
    padding-top: 0;
  }

  .dashboard-intro {
    display: block;
  }

  .dashboard-intro .primary {
    display: inline-block;
    margin-top: 15px;
  }

  .dashboard-head {
    padding: 14px 16px;
  }

  .dashboard-head .outline {
    min-height: 42px;
    padding: 10px 12px;
  }

  .dashboard-head .outline:first-child {
    display: none;
  }

  .search-page {
    padding-top: 105px;
  }

  .results-toolbar>* {
    width: 100%;
  }

  .results-toolbar .check {
    width: auto;
  }

  .search-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .search-panel {
    padding: 12px;
  }

  .search-input-wrap {
    display: grid;
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .search-input-wrap>span {
    display: none;
  }

  .search-input-wrap input,
  .search-input-wrap .primary {
    width: 100%;
  }

  .filter-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .filter-row .check {
    width: 100%;
  }

  .results-meta {
    margin-top: 22px;
  }

  .search-results.list-view .provider {
    display: block;
  }

  .search-results.list-view .provider-image {
    min-height: 170px;
    height: 170px;
  }

  .profile-wrap {
    padding: 108px 16px 55px;
  }

  .profile-gallery {
    height: 270px;
  }

  .profile-summary,
  .profile-content {
    padding-left: 0;
    padding-right: 0;
  }

  .profile-content {
    gap: 28px;
    padding-top: 30px;
  }

  .profile-summary h1 {
    font-size: 34px;
  }

  .contact-cta .primary {
    display: block;
    width: 100%;
    text-align: center;
  }
}

.form-error {
  color: #b42318;
  font-weight: 800;
}

.form-success {
  color: var(--green);
  font-weight: 800;
}

.verification-card {
  max-width: 820px;
  overflow: hidden;
}

.verification-body {
  padding: 28px 42px 38px;
}

.verification-status {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid #dfe8ef;
  background: #f7fafb;
}

.verification-status.is-success {
  border-color: rgba(35, 138, 89, 0.28);
  background: #edfaf2;
}

.verification-status.is-error {
  border-color: rgba(180, 35, 24, 0.22);
  background: #fff5f4;
}

.verification-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #dff4ea;
  color: var(--green);
  font-size: 24px;
  font-weight: 900;
}

.verification-status.is-error .verification-icon {
  background: #ffe1de;
  color: #b42318;
}

.verification-label {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 800px) {
  .verification-body {
    padding: 24px;
  }

  .verification-status {
    align-items: flex-start;
  }
}

.provider-tier-heading {
  margin: 34px 0 16px;
}

.provider-tier-heading h3 {
  margin: 7px 0 4px;
  font-size: 22px;
}

.provider-tier-heading p,
.results-empty {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.steps article:first-child>span { background: #e8f3ff; }
.steps article:nth-child(2)>span { background: #eaf7ef; }
.steps article:nth-child(3)>span { background: #fff1e6; }

/* =========================================================
   FEATURED vs PREMIUM PROVIDER DETAIL PAGES
   Distinct visual systems: Featured = energetic marketplace spotlight;
   Premium = dark editorial / luxury presentation.
   ========================================================= */
.profile-featured { --featured-blue:#1266d6; --featured-cyan:#49c6ff; --featured-soft:#eef7ff; }
.featured-intro { display:grid; grid-template-columns:minmax(0,.9fr) minmax(420px,1.1fr); min-height:540px; background:#f7fbff; border:1px solid #dfeaf5; border-radius:26px; overflow:hidden; box-shadow:0 22px 60px rgba(18,102,214,.12); }
.featured-intro-copy { padding:58px 54px; display:flex; flex-direction:column; justify-content:center; }
.eyebrow-featured { color:var(--featured-blue); }
.featured-intro h1 { margin:10px 0 18px; font-size:clamp(42px,5vw,70px); line-height:.98; letter-spacing:-3.5px; }
.featured-lead { max-width:570px; color:var(--ink-soft); font-size:17px; line-height:1.75; }
.featured-meta { display:flex; flex-wrap:wrap; gap:10px 18px; margin:20px 0 0; color:var(--muted); font-size:13px; font-weight:700; }
.featured-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:26px; }
.featured-cta { background:linear-gradient(135deg,#1266d6,#1787ee); box-shadow:0 14px 28px rgba(18,102,214,.22); }
.featured-visual { position:relative; min-height:540px; background:#dcecf9; overflow:hidden; }
.featured-visual::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(4,29,57,.28),transparent 45%,rgba(4,29,57,.08)); pointer-events:none; }
.featured-visual img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.featured-visual:hover img { transform:scale(1.025); }
.featured-photo-label,.featured-photo-count { position:absolute; z-index:2; top:20px; padding:8px 12px; border-radius:999px; background:rgba(255,255,255,.9); color:#0a386b; font-size:10px; font-weight:900; letter-spacing:.1em; }
.featured-photo-label { left:20px; }
.featured-photo-count { right:20px; }
.featured-thumbs { border:0; padding:14px 4px 18px; }
.featured-content { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(300px,.65fr); gap:58px; padding:48px 0 70px; }
.section-kicker h2 { margin:8px 0 18px; font-size:32px; letter-spacing:-1.4px; }
.featured-side-card { padding:30px; border-radius:22px; background:linear-gradient(155deg,#092744,#1266d6); color:#fff; box-shadow:0 20px 42px rgba(7,47,83,.2); }
.featured-side-card h3 { margin:8px 0 12px; font-size:25px; letter-spacing:-1px; }
.featured-side-card p { color:#dceeff; line-height:1.7; }
.featured-checks { display:grid; gap:10px; margin:20px 0 24px; color:#e9f6ff; font-size:13px; font-weight:700; }
.featured-side-card .full { display:block; text-align:center; width:100%; }
.profile-featured .direct-contact { border-top-color:rgba(18,102,214,.2); }
.profile-featured .contact-link:hover { border-color:var(--featured-blue); }

.profile-premium { --premium-gold:#d7b56a; --premium-dark:#070b13; --premium-panel:#0e1522; color:#eaf0f7; background:var(--premium-dark); border-radius:28px; padding:0 28px 12px; box-shadow:0 28px 80px rgba(4,8,15,.24); overflow:hidden; }
.premium-hero { position:relative; min-height:640px; margin:0 -28px; overflow:hidden; background:#03060b; }
.premium-hero > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.premium-hero-shade { position:absolute; inset:0; background:linear-gradient(90deg,rgba(2,6,12,.9) 0%,rgba(2,6,12,.55) 43%,rgba(2,6,12,.05) 80%),linear-gradient(0deg,rgba(2,6,12,.8),transparent 55%); }
.premium-topline { position:absolute; z-index:3; top:25px; left:30px; right:30px; display:flex; align-items:center; gap:10px; color:#f4dfaa; font-size:10px; font-weight:900; letter-spacing:.18em; }
.premium-crown { color:var(--premium-gold); }
.premium-photo-count { margin-left:auto; padding:8px 12px; border:1px solid rgba(215,181,106,.35); border-radius:999px; background:rgba(0,0,0,.25); letter-spacing:.08em; }
.premium-hero-content { position:absolute; z-index:3; left:58px; bottom:64px; max-width:670px; }
.premium-hero-content h1 { margin:10px 0 14px; color:#fff; font-family:"Fraunces","DM Sans",serif; font-size:clamp(46px,6vw,78px); line-height:.95; letter-spacing:-3px; }
.premium-hero-content p { max-width:590px; margin:0 0 18px; color:#d7e0eb; font-size:16px; line-height:1.7; }
.premium-location { color:#d9c58e; font-size:12px; font-weight:800; }
.premium-location span { margin:0 8px; color:#718096; }
.premium-thumbs { background:var(--premium-dark); border-bottom:1px solid rgba(255,255,255,.09); }
.profile-premium .gallery-thumb { background:#121c2a; border-color:transparent; }
.profile-premium .gallery-thumb.active { border-color:var(--premium-gold); }
.premium-info-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(320px,.52fr); gap:64px; padding:64px 18px 56px; }
.premium-story h2 { margin:8px 0 16px; color:#fff; font-family:"Fraunces","DM Sans",serif; font-size:38px; line-height:1.05; letter-spacing:-1.6px; }
.premium-story > p { max-width:720px; color:#aebdce; font-size:16px; line-height:1.8; }
.profile-premium .stat-pill { background:#111b29; border-color:rgba(255,255,255,.09); color:#b7c6d8; }
.premium-services { margin-top:42px; padding-top:28px; border-top:1px solid rgba(255,255,255,.1); }
.premium-services h3 { margin:0 0 15px; color:#fff; font-size:18px; }
.profile-premium .tag-pro { background:#131e2d; color:#f2d994; border-color:rgba(215,181,106,.55); }
.premium-contact-card { align-self:start; position:sticky; top:110px; padding:32px; border:1px solid rgba(215,181,106,.22); border-radius:20px; background:linear-gradient(160deg,#121b29,#0a101a); box-shadow:0 18px 45px rgba(0,0,0,.25); }
.premium-card-icon { display:grid; place-items:center; width:42px; height:42px; margin-bottom:20px; border:1px solid rgba(215,181,106,.45); border-radius:50%; color:var(--premium-gold); }
.premium-contact-card h2 { margin:8px 0 12px; color:#fff; font-family:"Fraunces","DM Sans",serif; font-size:28px; }
.premium-contact-card > p { color:#aebdce; line-height:1.65; font-size:13px; }
.profile-premium .direct-contact { border-top-color:rgba(215,181,106,.2); }
.profile-premium .contact-link { background:#111a27; border-color:rgba(255,255,255,.08); color:#fff; }
.profile-premium .contact-link-icon { background:#1c2a3e; }
.profile-premium .contact-link-whatsapp .contact-link-icon { background:#168c4b; }
.profile-premium .contact-link-phone .contact-link-icon { background:#24334a; }
.pro-portfolio-section { margin-top:38px; }
.portfolio-heading h2 { margin:8px 0 7px; }
.portfolio-heading p { color:var(--muted); font-size:13px; }
.profile-premium .portfolio-heading h2 { color:#fff; }
.profile-premium .portfolio-heading p { color:#93a5ba; }
.profile-premium .portfolio-item { background:#121c2a; border:1px solid rgba(255,255,255,.07); }
.portfolio-grid-featured { grid-template-columns:repeat(3,minmax(0,1fr)); }
.portfolio-grid-featured .portfolio-item:first-child { grid-column:span 2; aspect-ratio:16/9; }
.portfolio-grid-premium { grid-template-columns:repeat(4,minmax(0,1fr)); }
.portfolio-grid-premium .portfolio-item:first-child { grid-column:span 2; grid-row:span 2; }
.profile-premium .pro-cta { background:linear-gradient(135deg,#d7b56a,#a98339); color:#171006; box-shadow:0 12px 26px rgba(215,181,106,.18); }

@media(max-width:850px){
  .featured-intro,.featured-content,.premium-info-grid { grid-template-columns:1fr; }
  .featured-intro-copy { padding:42px 30px; }
  .featured-visual { min-height:400px; }
  .featured-content { gap:34px; padding-top:36px; }
  .premium-info-grid { gap:36px; padding:46px 8px; }
  .premium-contact-card { position:static; }
  .portfolio-grid-premium { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media(max-width:580px){
  .profile-featured { border-radius:18px; }
  .featured-intro { border-radius:18px; }
  .featured-intro-copy { padding:34px 22px; }
  .featured-intro h1 { font-size:42px; letter-spacing:-2.2px; }
  .featured-visual { min-height:300px; }
  .featured-actions { flex-direction:column; }
  .featured-actions a { width:100%; text-align:center; }
  .portfolio-grid-featured,.portfolio-grid-premium { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .portfolio-grid-featured .portfolio-item:first-child,.portfolio-grid-premium .portfolio-item:first-child { grid-column:span 2; grid-row:auto; }
  .profile-premium { margin:0 -16px; padding:0 16px 8px; border-radius:18px; }
  .premium-hero { min-height:500px; margin:0 -16px; }
  .premium-hero-content { left:24px; right:24px; bottom:38px; }
  .premium-hero-content h1 { font-size:48px; letter-spacing:-2.2px; }
  .premium-topline { left:20px; right:20px; }
}
/* Premium profile v2 — full-page editorial layout */
.profile-premium{--premium-gold:#d7b56a;--premium-gold-light:#f2d994;--premium-dark:#070b13;--premium-panel:#0e1522;width:100%;margin:0;padding:0;border-radius:0;overflow:hidden;background:var(--premium-dark);color:#eaf0f7;box-shadow:none}
.premium-stage{display:grid;grid-template-columns:minmax(0,1.65fr) minmax(300px,.55fr);min-height:680px;background:#050911}.premium-stage-main{position:relative;min-height:680px;overflow:hidden}.premium-stage-main>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.premium-stage-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,7,13,.88),rgba(3,7,13,.35) 48%,rgba(3,7,13,.04)),linear-gradient(0deg,rgba(3,7,13,.82),transparent 55%)}.premium-label{position:absolute;top:34px;left:42px;color:var(--premium-gold-light);font-size:10px;font-weight:900;letter-spacing:.2em}.premium-stage-copy{position:absolute;left:56px;right:45px;bottom:66px;max-width:760px}.premium-stage-copy h1{margin:10px 0 18px;color:#fff;font-family:"Fraunces","DM Sans",serif;font-size:clamp(52px,6.4vw,92px);line-height:.92;letter-spacing:-4px}.premium-stage-copy p{max-width:650px;margin:0 0 20px;color:#d7e0eb;font-size:16px;line-height:1.75}.premium-meta{display:flex;flex-wrap:wrap;gap:22px;color:#e2c983;font-size:12px;font-weight:800}.premium-stage .gallery-arrow{z-index:4}.premium-stage-side{display:flex;flex-direction:column;justify-content:center;padding:62px 48px;background:linear-gradient(155deg,#121a28,#080d15);border-left:1px solid rgba(215,181,106,.18)}.premium-side-number,.premium-index{color:#8c7650;font:700 11px/1 "DM Sans",sans-serif;letter-spacing:.15em}.premium-stage-side h2{margin:14px 0 18px;color:#fff;font-family:"Fraunces","DM Sans",serif;font-size:34px;line-height:1.08}.premium-stage-side p{color:#9eafc2;font-size:13px;line-height:1.8;margin-bottom:30px}.premium-stage-side .pro-cta{width:max-content}.premium-side-rule{width:100%;height:1px;margin:42px 0 22px;background:rgba(255,255,255,.1)}.premium-side-stat{display:flex;align-items:baseline;gap:10px}.premium-side-stat strong{color:var(--premium-gold-light);font:700 28px/1 "Fraunces",serif}.premium-side-stat span{color:#8293a8;font-size:11px;text-transform:uppercase;letter-spacing:.12em}.premium-thumbs{display:flex;gap:8px;padding:14px 28px;background:#050911;border-bottom:1px solid rgba(255,255,255,.08);overflow-x:auto}.premium-thumbs .gallery-thumb{flex:0 0 78px;width:78px;height:58px;background:#101927;border:1px solid transparent}.premium-thumbs .gallery-thumb.active{border-color:var(--premium-gold)}
.premium-overview{display:grid;grid-template-columns:minmax(300px,.85fr) minmax(0,1.15fr);gap:80px;padding:92px max(34px,calc((100% - 1160px)/2));background:#fff;color:#182131}.premium-overview-heading{display:flex;gap:25px}.premium-overview-heading h2{margin:10px 0 0;color:#111722;font-family:"Fraunces","DM Sans",serif;font-size:48px;line-height:1.02;letter-spacing:-2px}.premium-overview-heading h2 em{color:#a58342;font-style:normal}.premium-overview-body{padding-top:42px}.premium-overview-body>p{max-width:650px;margin:0;color:#586679;font-size:16px;line-height:1.9}.premium-stat-row{margin-top:34px}.profile-premium .stat-pill{background:#f5f6f8;border-color:#e2e6eb;color:#4e5d70}
.premium-service-band{display:grid;grid-template-columns:minmax(270px,.7fr) minmax(0,1.3fr);gap:70px;padding:82px max(34px,calc((100% - 1160px)/2));background:#0b111b}.premium-service-heading{display:flex;gap:25px}.premium-service-heading h2{margin:10px 0 0;color:#fff;font-family:"Fraunces","DM Sans",serif;font-size:42px;line-height:1.05}.premium-service-list{border-top:1px solid rgba(255,255,255,.12)}.premium-service-item{display:grid;grid-template-columns:52px 1fr 28px;align-items:center;gap:18px;min-height:78px;border-bottom:1px solid rgba(255,255,255,.1);color:#fff}.premium-service-item span{color:#7d8ba0;font-size:10px;font-weight:900;letter-spacing:.12em}.premium-service-item strong{font-size:17px}.premium-service-item b{color:var(--premium-gold);font-size:17px;text-align:right}
.premium-portfolio-section{margin:0;padding:92px max(34px,calc((100% - 1160px)/2));background:#f5f3ef}.premium-portfolio-section .portfolio-heading h2{color:#121824;font-family:"Fraunces","DM Sans",serif;font-size:45px}.premium-portfolio-section .portfolio-heading p{color:#657284}.portfolio-grid-premium{grid-template-columns:repeat(12,minmax(0,1fr));gap:14px;margin-top:34px}.portfolio-grid-premium .portfolio-item{grid-column:span 4;aspect-ratio:1.18;border:0;border-radius:0;background:#ddd}.portfolio-grid-premium .portfolio-item:first-child{grid-column:span 8;grid-row:span 2;aspect-ratio:auto}.profile-premium .portfolio-item img{transition:transform .5s ease}.profile-premium .portfolio-item:hover img{transform:scale(1.045)}.premium-empty-work{padding:90px max(34px,calc((100% - 1160px)/2));background:#f5f3ef}.premium-empty-work h2{color:#121824;font-family:"Fraunces",serif;font-size:42px;margin:10px 0}.premium-empty-work p{color:#687689}
.premium-contact-band{display:grid;grid-template-columns:1fr minmax(380px,.8fr);gap:70px;align-items:start;padding:88px max(34px,calc((100% - 1160px)/2));background:#050911}.premium-contact-band h2{margin:10px 0 12px;color:#fff;font-family:"Fraunces","DM Sans",serif;font-size:56px;letter-spacing:-2px}.premium-contact-band>div:first-child p{max-width:570px;color:#94a4b8;line-height:1.8}.premium-contact-actions>.pro-cta{margin-bottom:24px}.premium-contact-band .direct-contact{margin-top:0;border-top:1px solid rgba(215,181,106,.2)}.profile-premium .direct-contact-heading strong{color:#fff}.profile-premium .direct-contact-copy{color:#91a2b5}.profile-premium .contact-link{background:#101927;border-color:rgba(255,255,255,.08);color:#fff}.profile-premium .contact-link-icon{background:#1c2a3e}.profile-premium .contact-link-whatsapp .contact-link-icon{background:#168c4b}.profile-premium .contact-link-phone .contact-link-icon{background:#24334a}.profile-premium .pro-cta{display:inline-flex;align-items:center;justify-content:center;gap:12px;background:linear-gradient(135deg,#e2c77e,#aa8541);color:#171006;box-shadow:0 14px 30px rgba(215,181,106,.2)}.profile-premium .pro-cta span{font-size:16px}
footer.site-footer{background:#000!important;border-top:1px solid #1f1f1f}
@media(max-width:950px){.premium-stage{grid-template-columns:1fr}.premium-stage-side{min-height:330px;padding:48px 34px}.premium-overview,.premium-service-band,.premium-contact-band{grid-template-columns:1fr;gap:35px}.premium-overview-body{padding-top:0}.premium-service-band{padding-top:64px;padding-bottom:64px}.premium-contact-band{gap:30px}.premium-portfolio-section{padding-top:64px;padding-bottom:64px}.portfolio-grid-premium .portfolio-item,.portfolio-grid-premium .portfolio-item:first-child{grid-column:span 6;grid-row:auto;aspect-ratio:1.15}}
@media(max-width:580px){.premium-stage-main{min-height:570px}.premium-stage-copy{left:24px;right:24px;bottom:42px}.premium-stage-copy h1{font-size:48px;letter-spacing:-2.5px}.premium-label{left:24px;top:25px}.premium-stage-side{padding:42px 24px}.premium-overview,.premium-service-band,.premium-portfolio-section,.premium-contact-band{padding-left:24px;padding-right:24px}.premium-overview-heading h2,.premium-service-heading h2{font-size:36px}.premium-contact-band h2{font-size:44px}.portfolio-grid-premium .portfolio-item,.portfolio-grid-premium .portfolio-item:first-child{grid-column:span 12;aspect-ratio:1.25}.premium-thumbs{padding-left:16px;padding-right:16px}.premium-thumbs .gallery-thumb{flex-basis:68px;width:68px;height:52px}}

/* Premium services: compact, scalable directory instead of oversized cards */
.premium-services-directory{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 18px;margin-top:28px}
.premium-service-row{display:grid;grid-template-columns:42px 1fr 24px;align-items:center;min-height:62px;padding:0 16px;border:1px solid rgba(23,49,58,.13);background:rgba(255,255,255,.72);transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.premium-service-row:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(16,38,45,.08);border-color:rgba(185,151,91,.55)}
.premium-service-row .service-no{font-size:11px;letter-spacing:.14em;color:#b9975b;font-weight:700}
.premium-service-row strong{font-size:15px;line-height:1.3;color:#17313a;text-transform:none}
.premium-service-row .service-arrow{font-size:17px;color:#b9975b;text-align:center}
.premium-services-more{margin-top:14px;font-size:12px;color:#69777b}
.premium-website-link{display:inline-flex!important;align-items:center;gap:8px;margin-top:12px;text-decoration:none}
@media(max-width:700px){.premium-services-directory{grid-template-columns:1fr}.premium-service-row{min-height:58px}}

/* =========================================================
   PREMIUM PROFILE — REFINED SHOWCASE
   Services belong in the hero, not a repetitive section.
   ========================================================= */
.profile-premium{background:#070b12;color:#eaf0f7}
.premium-stage{min-height:720px;grid-template-columns:minmax(0,1.72fr) minmax(340px,.58fr);background:#050911}
.premium-stage-main{min-height:720px}
.premium-stage-overlay{background:linear-gradient(90deg,rgba(3,7,13,.94) 0%,rgba(3,7,13,.58) 42%,rgba(3,7,13,.08) 82%),linear-gradient(0deg,rgba(3,7,13,.9),transparent 58%)}
.premium-stage-copy{left:64px;right:54px;bottom:58px;max-width:850px}
.premium-stage-copy h1{font-size:clamp(58px,7vw,104px);max-width:900px;margin:12px 0 16px}
.premium-stage-copy p{max-width:700px;font-size:17px}
.premium-service-rail{display:flex;flex-wrap:wrap;gap:8px;margin-top:22px;max-width:760px}
.premium-service-rail span{display:inline-flex;align-items:center;min-height:34px;padding:7px 13px;border:1px solid rgba(226,199,126,.28);border-radius:999px;background:rgba(7,11,18,.52);backdrop-filter:blur(8px);color:#f3e2b0;font-size:11px;font-weight:800;letter-spacing:.02em}
.premium-service-rail .premium-service-more{color:#b9c4d0;border-color:rgba(255,255,255,.16)}
.premium-stage-side{padding:64px 48px;justify-content:flex-end}
.premium-stage-side h2{font-size:38px;letter-spacing:-1.2px}
.premium-stage-side p{font-size:14px;line-height:1.85}
.premium-side-actions{display:flex;flex-direction:column;align-items:stretch;gap:10px}
.premium-side-actions .pro-cta,.premium-side-actions .premium-website-link{width:100%;margin:0;box-sizing:border-box}
.premium-side-rule{margin:38px 0 20px}
.premium-side-metrics{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.premium-side-metrics>div{padding:15px 0;border-top:1px solid rgba(255,255,255,.09)}
.premium-side-metrics strong{display:block;color:#f2d994;font:700 30px/1 "Fraunces",serif}
.premium-side-metrics span{display:block;margin-top:6px;color:#8293a8;font-size:10px;text-transform:uppercase;letter-spacing:.14em}
.premium-thumbs{padding:16px 32px}
.premium-thumbs .gallery-thumb{flex-basis:86px;width:86px;height:62px}
.premium-portfolio-section{padding-top:100px;padding-bottom:100px}
.premium-portfolio-section .portfolio-heading{max-width:680px}
.premium-portfolio-section .portfolio-heading h2{font-size:54px;letter-spacing:-2px}
.premium-portfolio-section .portfolio-grid-premium{margin-top:42px}
.premium-contact-band{padding-top:100px;padding-bottom:100px}
.premium-contact-band h2{font-size:64px}
.premium-contact-actions{max-width:560px}
@media(max-width:950px){
 .premium-stage{grid-template-columns:1fr}
 .premium-stage-main{min-height:650px}
 .premium-stage-side{min-height:0;padding:52px 34px}
 .premium-portfolio-section{padding-top:72px;padding-bottom:72px}
 .premium-contact-band{padding-top:72px;padding-bottom:72px}
}
@media(max-width:580px){
 .premium-stage-main{min-height:610px}
 .premium-stage-copy{left:24px;right:24px;bottom:34px}
 .premium-stage-copy h1{font-size:48px;letter-spacing:-2.5px}
 .premium-service-rail{gap:6px;margin-top:16px}
 .premium-service-rail span{font-size:10px;padding:6px 10px;min-height:30px}
 .premium-stage-side{padding:42px 24px}
 .premium-stage-side h2{font-size:32px}
 .premium-portfolio-section{padding-left:24px;padding-right:24px}
 .premium-portfolio-section .portfolio-heading h2{font-size:40px}
 .premium-contact-band{padding-left:24px;padding-right:24px}
 .premium-contact-band h2{font-size:44px}
}

/* =========================================================
   PREMIUM FINAL POLISH — FULL SERVICES + PORTFOLIO CAROUSEL
   ========================================================= */
.profile-premium .gallery-arrow {
  z-index: 8;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 50%;
  background: rgba(5,9,17,.68);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.profile-premium .gallery-arrow:hover {
  background: rgba(215,181,106,.9);
  border-color: #e7cf8c;
  color: #111;
  transform: translateY(-50%) scale(1.04);
}
.profile-premium .gallery-prev { left: 22px; }
.profile-premium .gallery-next { right: 22px; }

.premium-services-showcase {
  padding: 92px max(34px, calc((100% - 1160px)/2));
  background: #0a1019;
  border-top: 1px solid rgba(215,181,106,.14);
  border-bottom: 1px solid rgba(215,181,106,.14);
}
.premium-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}
.premium-section-head h2 {
  margin: 10px 0 12px;
  color: #fff;
  font-family: "Fraunces", "DM Sans", serif;
  font-size: clamp(40px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -2.5px;
}
.premium-section-head p {
  max-width: 650px;
  margin: 0;
  color: #93a2b4;
  line-height: 1.8;
}
.premium-service-count {
  flex: 0 0 auto;
  padding: 11px 15px;
  border: 1px solid rgba(215,181,106,.28);
  color: #e1c47b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}
.premium-service-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.premium-service-card {
  min-height: 92px;
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(145deg, #101927, #0c131e);
  box-sizing: border-box;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.premium-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215,181,106,.45);
  background: linear-gradient(145deg, #152131, #0d1520);
}
.premium-service-number {
  color: #88734c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.premium-service-card strong {
  color: #f4f7fb;
  font-size: 15px;
  line-height: 1.35;
}
.premium-service-mark {
  color: #d7b56a;
  font-size: 17px;
  text-align: right;
}
.premium-services-empty { min-height: 250px; }

.premium-portfolio-section {
  background: #f3f0ea;
}
.premium-portfolio-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}
.premium-portfolio-viewport {
  min-width: 0;
  overflow: hidden;
}
.premium-portfolio-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 12px;
}
.premium-portfolio-track::-webkit-scrollbar { display: none; }
.premium-portfolio-card {
  position: relative;
  flex: 0 0 min(560px, 72vw);
  aspect-ratio: 1.42;
  scroll-snap-align: start;
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  background: #d9d6d0;
  cursor: pointer;
}
.premium-portfolio-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s ease;
}
.premium-portfolio-card:hover img { transform: scale(1.045); }
.premium-portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.5));
  pointer-events: none;
}
.premium-portfolio-card span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 15px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}
.premium-carousel-arrow {
  width: 52px;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17,24,36,.22);
  border-radius: 50%;
  background: #fff;
  color: #151c28;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform .2s ease, background .2s ease;
}
.premium-carousel-arrow:hover { transform: scale(1.05); background: #e6d2a0; }

@media(max-width:950px) {
  .premium-service-catalog { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .premium-section-head { align-items: flex-start; flex-direction: column; }
  .premium-portfolio-carousel { grid-template-columns: 46px minmax(0,1fr) 46px; gap: 10px; }
  .premium-carousel-arrow { width: 46px; height: 46px; }
}
@media(max-width:580px) {
  .profile-premium .gallery-arrow { width: 44px; height: 44px; font-size: 30px; }
  .profile-premium .gallery-prev { left: 14px; }
  .profile-premium .gallery-next { right: 14px; }
  .premium-services-showcase { padding: 68px 24px; }
  .premium-service-catalog { grid-template-columns: 1fr; gap: 9px; }
  .premium-service-card { min-height: 78px; }
  .premium-portfolio-carousel { grid-template-columns: 42px minmax(0,1fr) 42px; gap: 7px; }
  .premium-carousel-arrow { width: 42px; height: 42px; font-size: 28px; }
  .premium-portfolio-card { flex-basis: 82vw; }
}

/* =========================================================
   PREMIUM MINI-WEBSITE EXPERIENCE — FULL-BLEED PROFILE
   ========================================================= */
.profile-wrap:has(.profile-premium) {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 104px 0 0;
}
.profile-wrap:has(.profile-premium) > .back-link {
  display: block;
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto 18px;
  color: #667487;
}
.profile-premium {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.profile-premium .premium-stage {
  width: 100%;
  min-height: min(790px, calc(100vh - 140px));
  grid-template-columns: minmax(0, 1.7fr) minmax(330px, .55fr);
}
.profile-premium .premium-stage-main {
  min-height: min(790px, calc(100vh - 140px));
}

/* Services: compact, elegant directory — every service stays visible. */
.profile-premium .premium-services-showcase {
  padding: clamp(58px, 7vw, 100px) max(30px, 7vw);
  background: #0b111b;
}
.profile-premium .premium-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto 34px;
}
.profile-premium .premium-section-head h2 {
  margin: 8px 0 0;
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: .98;
  letter-spacing: -2px;
}
.profile-premium .premium-section-head p { margin: 12px 0 0; color: #8d9bae; max-width: 600px; }
.profile-premium .premium-service-count {
  flex: 0 0 auto;
  color: #d7b56a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  white-space: nowrap;
}
.profile-premium .premium-service-catalog {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
  border-top: 1px solid rgba(255,255,255,.11);
}
.profile-premium .premium-service-card {
  min-height: 58px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: padding .2s ease, background .2s ease;
}
.profile-premium .premium-service-card:hover { transform: none; padding-left: 12px; background: rgba(255,255,255,.025); }
.profile-premium .premium-service-number { color: #8a7650; font-size: 10px; letter-spacing: .12em; font-weight: 900; }
.profile-premium .premium-service-card strong { color: #f4f6f9; font-size: 14px; font-weight: 650; line-height: 1.3; }
.profile-premium .premium-service-mark { color: #d7b56a; font-size: 14px; text-align: center; }

/* Portfolio: real carousel, not a fake horizontally overflowing grid. */
.profile-premium .premium-portfolio-section {
  padding: clamp(65px, 8vw, 112px) max(30px, 7vw);
  background: #f3f0ea;
}
.profile-premium .premium-portfolio-section .portfolio-heading {
  width: min(1280px, 100%);
  margin: 0 auto;
}
.profile-premium .premium-portfolio-section .portfolio-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -3px;
}
.profile-premium .premium-portfolio-carousel {
  width: min(1280px, 100%);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 18px;
}
.profile-premium .premium-portfolio-viewport { overflow: hidden; width: 100%; }
.profile-premium .premium-portfolio-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  overflow: visible;
  padding: 4px 0 12px;
  transform: translateX(0);
  transition: transform .45s cubic-bezier(.2,.75,.2,1);
  will-change: transform;
}
.profile-premium .premium-portfolio-card {
  flex: 0 0 calc((100% - 36px) / 3);
  width: calc((100% - 36px) / 3);
  min-width: 0;
  aspect-ratio: 1.28;
  border: 0;
  border-radius: 0;
  background: #ddd;
  overflow: hidden;
}
.profile-premium .premium-portfolio-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-premium .premium-carousel-arrow {
  position: relative;
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  line-height: 0;
  box-sizing: border-box;
}
.profile-premium .premium-carousel-arrow .arrow-glyph,
.profile-premium .gallery-arrow .arrow-glyph {
  display: block;
  width: 1em;
  height: 1em;
  line-height: .82;
  transform: translateY(-1px);
  text-align: center;
}
.profile-premium .premium-carousel-arrow.is-disabled { opacity: .35; pointer-events: none; }

/* Main photo controls: true geometric centering. */
.profile-premium .gallery-arrow {
  display: grid;
  place-items: center;
  line-height: 0;
  padding: 0;
  box-sizing: border-box;
}
.profile-premium .gallery-arrow .arrow-glyph { font-size: 1em; }

/* Make the contact area feel like the final page of the mini-site. */
.profile-premium .premium-contact-band {
  min-height: 430px;
  padding-left: max(30px, 7vw);
  padding-right: max(30px, 7vw);
}

@media(max-width:1050px) {
  .profile-premium .premium-stage { grid-template-columns: 1fr; }
  .profile-premium .premium-stage-main { min-height: 680px; }
  .profile-premium .premium-stage-side { min-height: 360px; }
  .profile-premium .premium-service-catalog { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .profile-premium .premium-portfolio-card { flex-basis: calc((100% - 18px) / 2); width: calc((100% - 18px) / 2); }
}
@media(max-width:650px) {
  .profile-wrap:has(.profile-premium) { padding-top: 92px; }
  .profile-wrap:has(.profile-premium) > .back-link { width: calc(100% - 32px); }
  .profile-premium .premium-stage-main { min-height: 610px; }
  .profile-premium .premium-service-catalog { grid-template-columns: 1fr; }
  .profile-premium .premium-service-card { min-height: 54px; }
  .profile-premium .premium-portfolio-carousel { grid-template-columns: 44px minmax(0,1fr) 44px; gap: 8px; }
  .profile-premium .premium-carousel-arrow { width: 44px; height: 44px; min-width: 44px; min-height: 44px; font-size: 28px; }
  .profile-premium .premium-portfolio-card { flex-basis: 100%; width: 100%; }
}


/* Provider portfolio carousel — shared by Featured + Premium profiles. */
.provider-portfolio-carousel-section {
  width: 100%;
  box-sizing: border-box;
}
.provider-portfolio-carousel-section .premium-portfolio-carousel {
  width: min(1280px, 100%);
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 18px;
}
.provider-portfolio-carousel-section .premium-portfolio-viewport {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.provider-portfolio-carousel-section .premium-portfolio-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  width: max-content;
  padding: 4px 0 12px;
  transform: translate3d(0,0,0);
  transition: transform .42s cubic-bezier(.2,.75,.2,1);
  will-change: transform;
}
.provider-portfolio-carousel-section .premium-portfolio-card {
  flex: 0 0 calc((min(1280px, 100%) - 36px) / 3);
  width: calc((min(1280px, 100%) - 36px) / 3);
  min-width: 0;
  aspect-ratio: 1.35;
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #d9d9d9;
  cursor: pointer;
}
.provider-portfolio-carousel-section .premium-portfolio-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.provider-portfolio-carousel-section .premium-portfolio-card:hover img { transform: scale(1.045); }
.provider-portfolio-carousel-section .premium-portfolio-card span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.provider-portfolio-carousel-section .premium-carousel-arrow {
  position: relative;
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-self: center;
  justify-self: center;
  box-sizing: border-box;
  line-height: 0;
  cursor: pointer;
}
.provider-portfolio-carousel-section .premium-carousel-arrow .arrow-glyph {
  display: block;
  width: 1em;
  height: 1em;
  margin: 0;
  line-height: .78;
  text-align: center;
  transform: translateY(-1px);
}
.provider-portfolio-carousel-section .premium-carousel-arrow.is-disabled { opacity: .32; pointer-events: none; }

/* Featured gets the same functional carousel, while keeping its lighter visual identity. */
.profile-featured .featured-portfolio-section {
  margin-top: 58px;
  padding: 70px 0 10px;
  border-top: 1px solid rgba(18,24,36,.1);
}
.profile-featured .featured-portfolio-section .portfolio-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -2px;
}
.profile-featured .featured-portfolio-section .portfolio-heading p { color: #687689; }
.profile-featured .featured-portfolio-section .premium-portfolio-carousel { margin-top: 28px; }
.profile-featured .featured-portfolio-section .premium-carousel-arrow {
  border: 1px solid rgba(18,24,36,.14);
  background: #fff;
  color: #17202c;
  box-shadow: 0 8px 24px rgba(18,24,36,.08);
}
.profile-featured .featured-portfolio-section .premium-carousel-arrow:hover { transform: scale(1.05); }

/* Keep every main gallery arrow mathematically centered inside its circle. */
.profile-featured .gallery-arrow,
.profile-premium .gallery-arrow {
  display: grid !important;
  place-items: center !important;
  padding: 0 !important;
  line-height: 0 !important;
  box-sizing: border-box !important;
}
.profile-featured .gallery-arrow .arrow-glyph,
.profile-premium .gallery-arrow .arrow-glyph {
  display: block;
  width: 1em;
  height: 1em;
  margin: 0;
  line-height: .78;
  text-align: center;
  transform: translateY(-1px);
}

@media (max-width: 1050px) {
  .provider-portfolio-carousel-section .premium-portfolio-card {
    flex-basis: calc((100vw - 18px - 36px) / 2);
    width: calc((100vw - 18px - 36px) / 2);
  }
}
@media (max-width: 650px) {
  .provider-portfolio-carousel-section .premium-portfolio-carousel {
    grid-template-columns: 44px minmax(0,1fr) 44px;
    gap: 8px;
  }
  .provider-portfolio-carousel-section .premium-carousel-arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 25px;
  }
  .provider-portfolio-carousel-section .premium-portfolio-card {
    flex-basis: 100%;
    width: 100%;
  }
  .profile-featured .featured-portfolio-section { padding-top: 48px; }
}

/* FEATURED/PREMIUM PORTFOLIO CAROUSEL — functional scrolling */
.premium-portfolio-carousel { min-width: 0; }
.premium-portfolio-viewport { width: 100%; min-width: 0; overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; scrollbar-width: none; overscroll-behavior-x: contain; }
.premium-portfolio-viewport::-webkit-scrollbar { display:none; }
.premium-portfolio-track { width: max-content; min-width: 100%; display:flex; flex-wrap:nowrap; transform:none !important; overflow:visible; }
.premium-portfolio-card { flex: 0 0 clamp(280px, 31vw, 420px); }
.premium-carousel-arrow { display:flex; align-items:center; justify-content:center; width:52px; height:52px; min-width:52px; padding:0; line-height:1; box-sizing:border-box; }
.premium-carousel-arrow .arrow-glyph { display:block; width:1em; height:1em; line-height:.82; transform:translateY(-1px); text-align:center; }
.premium-carousel-arrow.is-disabled { opacity:.35; pointer-events:none; }
@media(max-width:1050px){ .premium-portfolio-card { flex-basis:clamp(280px, 44vw, 430px); } }
@media(max-width:650px){ .premium-portfolio-carousel { grid-template-columns:44px minmax(0,1fr) 44px; gap:8px; } .premium-carousel-arrow{width:44px;height:44px;min-width:44px;} .premium-portfolio-card{flex-basis:82vw;} }

/* =========================================================
   PROVIDER MOBILE CAROUSEL + REVIEWS
   ========================================================= */
.provider-portfolio-carousel-section .premium-portfolio-viewport {
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
}
.provider-portfolio-carousel-section .premium-portfolio-track {
  gap: 14px;
}
.provider-portfolio-carousel-section .premium-portfolio-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-width: 0;
  box-sizing: border-box;
}
.provider-portfolio-carousel-section .premium-portfolio-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.provider-portfolio-carousel-section .premium-carousel-arrow {
  min-width: 44px;
  min-height: 44px;
}

.provider-reviews {
  margin: 0;
  padding: 64px max(24px, calc((100% - 1160px) / 2));
  background: #f7fafc;
  border-top: 1px solid #e1e8ef;
}
.profile-premium .provider-reviews {
  background: #0a1019;
  color: #eef3f8;
  border-top-color: rgba(255,255,255,.08);
}
.reviews-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.reviews-heading h2 { margin: 8px 0 8px; font-size: clamp(30px, 4vw, 46px); letter-spacing: -1.5px; }
.reviews-heading p { margin: 0; color: var(--muted); }
.profile-premium .reviews-heading p { color: #91a1b3; }
.reviews-summary {
  flex: 0 0 auto;
  min-width: 120px;
  padding: 16px 18px;
  border: 1px solid #dce5ee;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}
.profile-premium .reviews-summary { background: #101927; border-color: rgba(255,255,255,.1); }
.reviews-summary strong { display: block; font-size: 30px; }
.reviews-summary span { display: block; margin: 4px 0; color: #c39a4b; letter-spacing: 1px; }
.reviews-summary small { color: var(--muted); }
.reviews-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.review-card, .reviews-empty, .review-submitted {
  padding: 20px;
  border: 1px solid #dce5ee;
  border-radius: 16px;
  background: #fff;
}
.profile-premium .review-card, .profile-premium .reviews-empty, .profile-premium .review-submitted { background: #101927; border-color: rgba(255,255,255,.1); }
.review-card-top { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.review-card-top span { color: #c39a4b; letter-spacing: 1px; white-space: nowrap; }
.review-card p { margin: 12px 0; color: #536273; line-height: 1.65; }
.profile-premium .review-card p { color: #b8c4d0; }
.review-card small { color: #8492a1; }
.review-form-wrap { margin-top: 22px; }
.review-form {
  max-width: 760px;
  padding: 24px;
  border: 1px solid #dce5ee;
  border-radius: 18px;
  background: #fff;
}
.profile-premium .review-form { background: #101927; border-color: rgba(255,255,255,.1); }
.review-form-head h3 { margin: 0 0 5px; font-size: 22px; }
.review-form-head p { margin: 0 0 18px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.review-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.review-form label { display: grid; gap: 7px; margin-top: 14px; font-size: 12px; font-weight: 800; color: var(--ink); }
.profile-premium .review-form label { color: #dce5ef; }
.review-form input, .review-form select, .review-form textarea { width: 100%; box-sizing: border-box; padding: 11px 12px; border: 1px solid #d5e0ea; border-radius: 10px; background: #fff; color: var(--ink); font: inherit; }
.review-form textarea { resize: vertical; min-height: 110px; }
.review-form button { margin-top: 16px; }
.review-form-msg { min-height: 18px; margin: 10px 0 0; color: #b42318; font-size: 12px; }
.review-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.review-submitted strong { display: block; color: #16794c; }
.profile-premium .review-submitted strong { color: #d7b56a; }
.review-submitted p { margin: 6px 0 0; color: var(--muted); line-height: 1.5; }

@media (max-width: 800px) {
  .reviews-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 650px) {
  .provider-reviews { padding: 48px 20px; }
  .reviews-heading { flex-direction: column; }
  .reviews-summary { width: 100%; box-sizing: border-box; }
  .reviews-list { grid-template-columns: 1fr; }
  .review-fields { grid-template-columns: 1fr; gap: 0; }
  .review-form { padding: 18px; }

  .provider-portfolio-carousel-section .premium-portfolio-carousel {
    width: 100%;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }
  .provider-portfolio-carousel-section .premium-portfolio-viewport {
    min-width: 0;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
  }
  .provider-portfolio-carousel-section .premium-portfolio-track {
    width: max-content;
    min-width: 100%;
    gap: 10px;
  }
  .provider-portfolio-carousel-section .premium-portfolio-card {
    flex: 0 0 calc(100vw - 104px);
    width: calc(100vw - 104px);
    aspect-ratio: 1 / .78;
    scroll-snap-align: center;
  }
  .provider-portfolio-carousel-section .premium-carousel-arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .profile-summary { flex-direction: column; align-items: stretch; gap: 16px; padding: 28px 0; }
  .profile-cta { width: 100%; text-align: center; box-sizing: border-box; }
  .profile-content { grid-template-columns: 1fr; gap: 28px; padding: 28px 0 40px; }
  .profile-gallery { height: 320px; }
  .gallery-arrow { width: 44px; height: 44px; min-width: 44px; min-height: 44px; }
  .gallery-prev { left: 12px; }
  .gallery-next { right: 12px; }
  .gallery-thumbs { padding-left: 12px; padding-right: 12px; }

  .featured-intro { grid-template-columns: 1fr; }
  .featured-visual { min-height: 320px; }
  .featured-content { grid-template-columns: 1fr; }
  .profile-featured .featured-intro h1 { font-size: 40px; }
  .profile-premium { width: 100%; max-width: 100%; margin: 0; box-sizing: border-box; }
  .profile-premium .premium-stage,
  .profile-premium .premium-services-showcase,
  .profile-premium .premium-portfolio-section,
  .profile-premium .premium-contact-band,
  .profile-premium .provider-reviews { width: 100%; max-width: 100%; box-sizing: border-box; }
  .premium-stage { grid-template-columns: 1fr; }
  .premium-stage-main { min-height: 520px; }
  .premium-stage-copy { left: 22px; right: 22px; bottom: 34px; }
  .premium-stage-copy h1 { font-size: 48px; letter-spacing: -2px; }
  .premium-stage-side { padding: 38px 22px; }
}

html,body{max-width:100%;overflow-x:clip;}
@media(max-width:650px){.profile-premium .premium-stage-side{width:100%;box-sizing:border-box;}.profile-premium .premium-stage-main{width:100%;box-sizing:border-box;}.profile-premium .premium-section-head{width:100%;box-sizing:border-box;}.profile-premium .premium-service-catalog{width:100%;box-sizing:border-box;}.profile-premium .premium-portfolio-carousel{width:100%;box-sizing:border-box;}.profile-premium .premium-contact-band{padding-left:20px;padding-right:20px;}.profile-premium .provider-reviews{padding-left:18px;padding-right:18px;}}

.request-provider-context{display:grid;gap:5px;margin:18px 0 22px;padding:14px 16px;border:1px solid var(--line);border-radius:12px;background:var(--mint);color:var(--ink-soft);font-size:13px;line-height:1.5}.request-provider-context strong{color:var(--ink);font-size:14px}.request-provider-context p{margin:2px 0 0}@media(max-width:560px){.request-provider-context{padding:13px 14px}}


/* Mobile service category quote action: keep it below the heading instead of overlapping text. */
@media (max-width: 650px) {
  .service-results .section-head {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
  }
  .service-results .section-head > div {
    width: 100%;
    min-width: 0;
  }
  .service-results .section-head > .outline {
    display: block;
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
  }
}

/* Search page: mobile uses one result layout only; hide the list/grid switcher. */
@media (max-width: 650px) {
  .search-page .view-toggle {
    display: none;
  }
}

/* Premium profiles: prevent the two-column stage from creating a right-side mobile gap. */
@media (max-width: 650px) {
  .profile-premium .premium-stage { grid-template-columns: minmax(0, 1fr); width: 100%; max-width: 100%; box-sizing: border-box; }
  .profile-premium .premium-stage-main,
  .profile-premium .premium-stage-side { min-width: 0; max-width: 100%; }
}

/* Keep provider/dashboard navigation consistent with the public website nav and footer. */
.dashboard-head{background:#000!important;border-bottom:1px solid #1f1f1f!important;color:#fff;min-height:96px;padding:0 max(28px,calc((100% - 1240px) / 2));display:flex;align-items:center;justify-content:space-between;box-sizing:border-box;box-shadow:0 8px 22px rgba(0,0,0,.22)}
.dashboard-head .brand{color:#fff}
.dashboard-head .outline{border-color:rgba(255,255,255,.2)!important;color:#fff!important;background:rgba(255,255,255,.04)!important}
.dashboard-head .outline:hover{background:rgba(255,255,255,.09)!important;color:#55bfff!important}
/* Enhanced provider, request and pricing experience */
.enhanced-form-page{background:linear-gradient(180deg,#f4faf7 0,#fff 45%)}.enhanced-card{max-width:860px;padding:0;overflow:hidden}.form-hero{padding:42px 42px 26px;background:linear-gradient(135deg,#073f39,#0d6b5c);color:#fff}.form-hero h1{color:#fff!important}.form-hero p{color:#d9eee9!important}.provider-form form{padding:8px 42px 38px}.request-card form{padding:8px 42px 38px}.form-section-label{display:flex;gap:14px;align-items:center;margin:28px 0 8px}.form-section-label>span{display:grid;place-items:center;width:38px;height:38px;border-radius:50%;background:#e4f2ee;color:var(--green);font-weight:900}.form-section-label strong,.form-section-label small{display:block}.form-section-label small{margin-top:3px;color:var(--muted)}.enhanced-grid{gap:4px 20px}.enhanced-grid label{margin:10px 0!important}.enhanced-grid label>span{font-size:12px;font-weight:900;color:#29443f}.enhanced-grid input,.enhanced-grid select,.enhanced-grid textarea{border-radius:12px!important;border-color:#cfe0db!important;background:#fcfffd!important;transition:.2s}.enhanced-grid input:focus,.enhanced-grid select:focus,.enhanced-grid textarea:focus{border-color:var(--green)!important;box-shadow:0 0 0 4px rgba(13,107,92,.09)}.enhanced-upload{margin-top:28px;padding:25px;border-radius:16px;background:#f2f8f5;border:1px solid #d7e8e1}.file-drop{display:grid!important;place-items:center;min-height:115px;padding:18px!important;border:1.5px dashed #8fb9ae;border-radius:14px;background:#fff;color:var(--green)!important;text-align:center;cursor:pointer}.file-drop input{display:none}.file-drop span{font-weight:900}.file-drop small{color:var(--muted);margin-top:4px}.enhanced-submit{display:flex;justify-content:center;align-items:center;gap:10px;width:100%;margin-top:24px!important;padding:15px!important;font-size:15px}.form-assurance{text-align:center;color:var(--muted);font-size:12px;margin:12px 0 0}.pricing-page{padding:130px max(24px,calc((100% - 1180px)/2)) 80px;background:#f7fbf9}.pricing-hero{text-align:center;max-width:760px;margin:0 auto 48px}.pricing-hero h1{font-size:clamp(40px,6vw,68px);letter-spacing:-3px;margin:14px 0}.pricing-hero p{color:var(--muted);font-size:17px;line-height:1.7}.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:stretch}.price-card{display:flex;flex-direction:column;padding:30px;border:1px solid #dce8e4;border-radius:22px;background:#fff;box-shadow:0 12px 30px rgba(13,55,47,.06)}.featured-price{border:2px solid var(--green);transform:translateY(-10px)}.premium-price{background:#073f39;color:#fff;border-color:#073f39}.price-kicker{font-size:10px;font-weight:900;letter-spacing:1.5px;color:var(--coral);margin-bottom:18px}.price-card h2{font-size:28px;margin:0 0 14px}.price{display:flex;align-items:end;gap:6px;margin-bottom:14px}.price b{font-size:42px;letter-spacing:-2px}.price span{font-size:12px;color:var(--muted);margin-bottom:8px}.premium-price .price span{color:#c5d8d3}.price-card>p{color:var(--muted);line-height:1.6;min-height:50px}.premium-price>p{color:#c5d8d3}.price-card ul{padding:0;margin:18px 0 26px;list-style:none;display:grid;gap:10px}.price-card li{font-size:13px;line-height:1.4}.price-card li:before{content:'✓';color:var(--green);font-weight:900;margin-right:9px}.premium-price li:before{color:#6ee0c8}.price-card a{margin-top:auto;text-align:center}.pricing-note{text-align:center;color:var(--muted);font-size:12px;margin-top:26px}@media(max-width:800px){.pricing-grid{grid-template-columns:1fr}.featured-price{transform:none}.form-hero{padding:32px 24px 20px}.provider-form form{padding:8px 24px 28px}}@media(max-width:560px){.pricing-page{padding-top:105px}.price-card{padding:24px}}

/* Request form card alignment fix */
.request-card form{width:100%;max-width:100%;margin:0 auto}
.request-card .progress{margin-left:42px;margin-right:42px}
.request-card .request-step{width:100%}
.request-card .request-step label{width:100%}
.request-card .request-step input,.request-card .request-step select,.request-card .request-step textarea{width:100%;max-width:100%;min-width:0}
.request-card .step-actions{width:100%;margin-top:18px}
@media(max-width:800px){.request-card form{padding:8px 24px 28px}.request-card .progress{margin-left:24px;margin-right:24px}}

/* Compact provider reviews layout: review form left, reviews right */
.reviews-layout{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:24px;align-items:start}
.reviews-panel{min-width:0;padding:22px;border:1px solid #dce5ee;border-radius:18px;background:#fff}
.profile-premium .reviews-panel{background:#101927;border-color:rgba(255,255,255,.1)}
.reviews-panel-head{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:14px}
.reviews-panel-head h3{margin:0 0 4px;font-size:20px}
.reviews-panel-head p{margin:0;color:var(--muted);font-size:12px}
.profile-premium .reviews-panel-head p{color:#91a1b3}
.reviews-count-badge{display:inline-flex;align-items:center;justify-content:center;min-width:30px;height:30px;padding:0 9px;border-radius:999px;background:#eef4f8;color:#34485b;font-size:12px;font-weight:800}
.profile-premium .reviews-count-badge{background:#172334;color:#dce5ef}
.reviews-layout .review-form-wrap{margin-top:0}
.reviews-layout .review-form{max-width:none;height:100%;box-sizing:border-box}
.reviews-panel .reviews-list{display:grid;grid-template-columns:1fr;gap:10px}
.reviews-panel .review-card{padding:15px;border-radius:13px}
.reviews-panel .review-card p{margin:9px 0;font-size:13px}
.reviews-more{margin-top:10px;border:1px solid #dce5ee;border-radius:13px;background:#f8fafc;overflow:hidden}
.profile-premium .reviews-more{background:#0d1520;border-color:rgba(255,255,255,.1)}
.reviews-more summary{cursor:pointer;list-style:none;padding:13px 15px;font-size:13px;font-weight:800;color:var(--ink);display:flex;align-items:center;justify-content:space-between;gap:12px}
.reviews-more summary::-webkit-details-marker{display:none}
.profile-premium .reviews-more summary{color:#eef3f8}
.reviews-more summary span{font-size:17px;transition:transform .2s ease}
.reviews-more[open] summary span{transform:rotate(180deg)}
.reviews-more-list{display:grid;gap:10px;padding:0 10px 10px}
@media(max-width:850px){.reviews-layout{grid-template-columns:1fr}.reviews-panel{order:2}.reviews-layout .review-form-wrap{order:1}}


/* Provider lead + quote access */
.stat-locked{background:#f7f9fc}.stat span{display:block;margin-top:6px;color:var(--muted);font-size:11px}.paid-tool-lock{padding:28px;border:1px dashed var(--line);border-radius:14px;background:#f8fafc;text-align:center}.paid-tool-lock strong{display:block;font-size:15px}.paid-tool-lock p{max-width:520px;margin:8px auto 18px;color:var(--muted);line-height:1.6}.lead-tool-head{padding-bottom:16px;border-bottom:1px solid var(--line);margin-bottom:4px}.lead-tool-head h3{margin:4px 0}.lead-tool-head p{margin:0;color:var(--muted);font-size:12px}.quote-form-title{font-size:12px;font-weight:900;letter-spacing:.04em;color:var(--ink)}.quote-form input,.quote-form textarea{box-sizing:border-box}.quote-form button:disabled{opacity:.6;cursor:wait}
@media(max-width:760px){.dashboard-stats{grid-template-columns:1fr}.lead-item{display:grid}.lead-actions{width:100%;justify-items:stretch}.quote-form{width:100%}}

/* Provider application payment flow */
.selected-plan-panel,.payment-summary,.bank-details,.payment-complete,.payment-error{border:1px solid rgba(20,35,45,.12);border-radius:18px;padding:20px;margin:18px 0;background:#fff}
.selected-plan-panel>div{display:flex;justify-content:space-between;gap:16px;align-items:center;font-size:1.15rem}.selected-plan-panel>div strong{font-size:1.35rem}
.application-fee-note{font-size:.95rem;padding:12px 14px;border-left:3px solid currentColor;margin:14px 0}
.payment-card{max-width:760px}.payment-amount{font-size:2rem;font-weight:800;margin:14px 0}.payment-amount small{font-size:.85rem;font-weight:500}.payment-instruction{max-width:620px}
.bank-details dl{margin:0}.bank-details dl>div{display:flex;justify-content:space-between;gap:20px;padding:13px 0;border-bottom:1px solid rgba(20,35,45,.09)}.bank-details dl>div:last-child{border-bottom:0}.bank-details dt{font-weight:700}.bank-details dd{margin:0;text-align:right;word-break:break-word}
.payment-actions{display:flex;flex-wrap:wrap;gap:12px;margin:22px 0}.payment-note{font-size:.9rem;opacity:.8}.payment-complete h2{margin-top:8px}
@media(max-width:640px){.bank-details dl>div{display:block}.bank-details dd{text-align:left;margin-top:5px}.payment-actions button{width:100%}}

.premium-share-box{margin-top:18px;padding:16px;border:1px solid rgba(20,35,45,.12);border-radius:14px}.premium-share-box p{margin:.35rem 0 10px}.share-link-row{display:flex;gap:8px}.share-link-row input{min-width:0;flex:1;padding:10px;border:1px solid rgba(20,35,45,.16);border-radius:10px;background:#f7f8f8}@media(max-width:640px){.share-link-row{flex-direction:column}}

/* Premium mini-website: location map replaces marketplace reviews. */
.premium-mini-map {
  margin: 0 auto 48px;
  max-width: 1180px;
  padding: 0 24px;
}
.premium-mini-map-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background: #101927;
}
.premium-mini-map-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px 22px;
}
.premium-mini-map-head h2 { margin: 6px 0 0; font-size: clamp(28px, 4vw, 42px); letter-spacing: -1px; }
.premium-mini-map-head p { margin: 6px 0 0; color: #91a1b3; }
.premium-mini-map-address { color: #cbd5e1; font-size: 14px; text-align: right; }
.premium-mini-map-frame { display: block; width: 100%; height: 390px; border: 0; background: #e8edf2; }
.premium-mini-map-link { display: inline-flex; margin-top: 12px; color: #fff; text-decoration: none; font-weight: 700; }
@media (max-width: 650px) {
  .premium-mini-map { padding: 0 18px; margin-bottom: 30px; }
  .premium-mini-map-head { align-items: flex-start; flex-direction: column; padding: 22px 20px 18px; }
  .premium-mini-map-address { text-align: left; }
  .premium-mini-map-frame { height: 300px; }
}

.contact-link-icon svg{width:18px;height:18px;fill:currentColor;display:block}.contact-link-facebook .contact-link-icon{background:#1877f2;color:#fff}.contact-link-whatsapp .contact-link-icon,.contact-link-phone .contact-link-icon,.contact-link-email .contact-link-icon,.contact-link-facebook .contact-link-icon{display:grid;place-items:center}.profile-premium .contact-link-facebook .contact-link-icon{background:#1877f2;color:#fff}

.pricing-back-link{display:inline-block;margin-bottom:26px;font-weight:800;color:var(--green)}
.form-back-link{display:block;padding:22px 42px 0;color:#fff!important;font-weight:800;opacity:.95;text-decoration:none}
.form-back-link:hover{opacity:1}
@media(max-width:800px){.form-back-link{padding:18px 24px 0}}

/* Premium mini-site map place summary */
.premium-mini-map-place{display:flex;align-items:center;gap:.65rem;flex-wrap:wrap;padding:.85rem 1rem;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08);font-size:.95rem}
.premium-mini-map-place strong{font-size:1rem}
.premium-mini-map-place span{opacity:.78}
.premium-mini-map-coords{font-variant-numeric:tabular-nums;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:.82rem}
.account-tools{display:flex;align-items:center;justify-content:space-between;gap:20px;margin:22px 0}.account-actions{display:flex;gap:8px;flex-wrap:wrap}.danger-zone{margin-top:24px;padding:16px;border:1px solid #ffd6cf;border-radius:12px;background:#fff7f5}.danger-btn{border-color:#efb1a5!important;color:#a53b2b!important}@media(max-width:700px){.account-tools{align-items:flex-start;flex-direction:column}.account-actions{width:100%}.account-actions button{flex:1}}

/* Homepage category cards: six-card, two-row presentation with richer image fades. */
.category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.category::before {
  background: linear-gradient(90deg, var(--category-fade, rgba(255,255,255,.96)) 0%, rgba(255,255,255,.34) 48%, rgba(255,255,255,.04) 100%), var(--category-image, none) center / cover;
}
.category:nth-child(1)::before { --category-fade: rgba(221,245,255,.94); }
.category:nth-child(2)::before { --category-fade: rgba(222,238,255,.94); }
.category:nth-child(3)::before { --category-fade: rgba(255,231,242,.94); }
.category:nth-child(4)::before { --category-fade: rgba(226,250,244,.94); }
.category:nth-child(5)::before { --category-fade: rgba(255,241,218,.94); }
.category:nth-child(6)::before { --category-fade: rgba(232,228,255,.94); }


@media (max-width: 760px) {
  .category-grid { grid-template-columns: 1fr; }
}

/* Request service: allow typing as an alternative to the dropdowns. */
.request-field-hint{display:block;margin:-3px 0 10px;color:var(--muted);font-size:11px;line-height:1.4}.request-card .request-step label>input:first-of-type + select{margin-top:6px}
