/*
Theme Name: 7Conecta
Description: Tema customizado para o portal de classificados 7Conecta
Version: 1.0.0
Author: MiracleTech
Text Domain: 7conecta
*/

:root {
  --c-primary:        #0155DE;
  --c-primary-2:      #0366EA;
  --c-orange:         #FE7F0D;
  --c-orange-d:       #E66B00;
  --c-green:          #21B63E;
  --c-dark:           #022757;
  --c-dark-2:         #03306B;
  --c-bg:             #f8f9fa;
  --c-bg-2:           #eef1f5;
  --c-white:          #ffffff;
  --c-line:           #e6eaf0;
  --c-line-strong:    #d5dce6;
  --c-text:           #022757;
  --c-text-2:         #4a5a73;
  --c-text-3:         #76859a;
  --c-text-light:     #ffffff;
  --ff: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(2, 39, 87, .06), 0 1px 3px rgba(2, 39, 87, .04);
  --sh-2: 0 4px 14px rgba(2, 39, 87, .08), 0 2px 6px rgba(2, 39, 87, .05);
  --sh-3: 0 14px 38px rgba(2, 39, 87, .12), 0 6px 14px rgba(2, 39, 87, .08);
  --sh-orange: 0 8px 24px rgba(254, 127, 13, .35);
  --max: 1200px;
  --gap: clamp(1rem, 2vw, 2rem);
  --hdr-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.18; letter-spacing: -.01em; color: var(--c-dark); font-weight: 700; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .97rem;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; }
.btn-orange { background: var(--c-orange); color: #fff; box-shadow: var(--sh-orange); }
.btn-orange:hover { background: var(--c-orange-d); transform: translateY(-2px); text-decoration: none; }
.btn-blue { background: var(--c-primary); color: #fff; }
.btn-blue:hover { background: #0148B8; transform: translateY(-2px); text-decoration: none; }
.btn-outline { background: #fff; color: var(--c-primary); border-color: var(--c-primary); }
.btn-outline:hover { background: var(--c-primary); color: #fff; text-decoration: none; transform: translateY(-2px); }
.btn-ghost-light { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); text-decoration: none; }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-dark);
  color: #fff;
  height: var(--hdr-h);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 2px 18px rgba(0,0,0,.18); }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 38px; width: auto; }
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(.4rem, 1.5vw, 1.8rem);
}
.primary-nav a {
  display: inline-block;
  padding: .55rem .8rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .95rem;
  border-radius: 6px;
  transition: color .15s ease, background .15s ease;
  text-decoration: none;
}
.primary-nav a:hover { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }
.primary-nav .nav-cta {
  background: var(--c-orange);
  color: #fff;
  padding: .65rem 1.1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(254,127,13,.35);
}
.primary-nav .nav-cta:hover { background: var(--c-orange-d); }
.primary-nav .nav-login { border: 1px solid rgba(255,255,255,.25); }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255,255,255,.2);
}
.hamburger span {
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-dark) 0%, #02327A 50%, var(--c-primary) 100%);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  min-height: 540px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg .blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35; }
.blob-a { width: 380px; height: 380px; background: #1A6BFF; top: -120px; right: -100px; }
.blob-b { width: 260px; height: 260px; background: var(--c-orange); bottom: -80px; left: 8%; opacity: .22; }
.blob-c { width: 220px; height: 220px; background: var(--c-green); top: 38%; right: 22%; opacity: .15; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy { text-align: left; }

.hero-media { position: relative; }
.hero-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 420px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45), 0 10px 28px rgba(0,0,0,.25);
  transform: rotate(1.2deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,39,87,0) 50%, rgba(2,39,87,.55) 100%);
}
.hero-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: var(--c-dark);
  padding: .6rem .9rem;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  transform: rotate(-1.2deg);
}
.hero-tag--top { top: 1.1rem; left: 1rem; }
.hero-tag--bottom {
  bottom: 1.2rem; right: 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  padding: .65rem 1rem;
}
.hero-tag--bottom strong { color: var(--c-primary); }
.tag-stars { color: var(--c-orange); font-size: .8rem; letter-spacing: .05em; }
.tag-dot { width: 9px; height: 9px; border-radius: 50%; }
.tag-dot--green { background: var(--c-green); box-shadow: 0 0 0 4px rgba(33,182,62,.25); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .9rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .85rem;
  font-weight: 500;
  color: #DCE7FF;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.eyebrow strong { color: #fff; }
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 4px rgba(33,182,62,.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(33,182,62,.05); } }

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  letter-spacing: -.02em;
  margin: 0 0 .9rem;
  max-width: 14ch;
  text-wrap: balance;
}
.hero-title .hl {
  background: linear-gradient(120deg, var(--c-orange), #FFB571);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  max-width: 50ch;
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  color: rgba(255,255,255,.84);
  line-height: 1.6;
  text-wrap: pretty;
}

/* Search card */
.search-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: .5rem;
  padding: .55rem;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  max-width: 620px;
  text-align: left;
}
.search-field { display: flex; flex-direction: column; padding: .35rem .85rem; border-radius: 10px; transition: background .15s; }
.search-field + .search-field { border-left: 1px solid var(--c-line); }
.search-field:focus-within { background: var(--c-bg); }
.search-field label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--c-text-3);
  margin-bottom: .15rem;
}
.field-row { display: flex; align-items: center; gap: .55rem; }
.field-row .ico { width: 18px; height: 18px; color: var(--c-primary); flex-shrink: 0; }
.field-row input {
  flex: 1; min-width: 0;
  border: 0; outline: 0;
  background: transparent;
  font-size: 1rem;
  color: var(--c-text);
  font-family: inherit;
  padding: .25rem 0;
}
.field-row input::placeholder { color: var(--c-text-3); }
.btn-search { padding: 0 1.6rem; min-height: 56px; font-size: 1rem; }

.hero-quick {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
}
.quick-label { color: rgba(255,255,255,.7); margin-right: .25rem; }
.chip {
  padding: .42rem .9rem;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  transition: background .15s, transform .15s;
}
.chip:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }

/* Section heads */
.section-head { margin-bottom: 2.5rem; max-width: 60ch; }
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: none;
}
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-primary);
  margin-bottom: .65rem;
}
.kicker--light { color: rgba(255,255,255,.85); }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); color: var(--c-dark); text-wrap: balance; }
.section-head .lede { margin-top: .9rem; color: var(--c-text-2); font-size: 1.05rem; line-height: 1.65; }
.link-arrow {
  font-weight: 600;
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
}
.link-arrow:hover span { transform: translateX(3px); }
.link-arrow span { display: inline-block; transition: transform .2s; }

/* Como funciona */
.how { padding: clamp(3rem, 7vw, 5rem) 0; background: #fff; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem 1.75rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: transparent; }
.step-num {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--c-bg-2);
  letter-spacing: -.04em;
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(1,85,222,.08), rgba(1,85,222,.16));
  color: var(--c-primary);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}
.step-icon svg { width: 26px; height: 26px; }
.step:nth-child(2) .step-icon { background: linear-gradient(135deg, rgba(254,127,13,.1), rgba(254,127,13,.18)); color: var(--c-orange); }
.step:nth-child(3) .step-icon { background: linear-gradient(135deg, rgba(33,182,62,.1), rgba(33,182,62,.2)); color: var(--c-green); }
.step h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.step p { color: var(--c-text-2); }

/* Categorias */
.categories { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--c-bg); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.1rem;
}
.cat-card {
  --accent: var(--c-primary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1.5rem 1.4rem 1.3rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--c-line);
  text-decoration: none;
  color: var(--c-text);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.cat-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: transparent; text-decoration: none; }
.cat-card:hover::before { transform: scaleX(1); }
.cat-ic {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: color-mix(in oklch, var(--accent), white 86%);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: .5rem;
}
.cat-ic svg { width: 24px; height: 24px; }
.cat-card h3 { font-size: 1.05rem; color: var(--c-dark); }
.cat-card p { color: var(--c-text-2); font-size: .9rem; line-height: 1.5; }
.cat-count { margin-top: .5rem; font-size: .82rem; font-weight: 600; color: var(--accent); }

/* Empresas em destaque */
.featured { padding: clamp(3rem, 7vw, 5rem) 0; background: #fff; }
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  background: var(--c-bg);
  padding: .35rem;
  border-radius: var(--r-pill);
}
.tab {
  padding: .55rem 1.15rem;
  border-radius: var(--r-pill);
  font-size: .88rem;
  font-weight: 600;
  color: var(--c-text-2);
  transition: background .18s, color .18s;
}
.tab:hover { color: var(--c-dark); }
.tab.is-active { background: var(--c-primary); color: #fff; box-shadow: 0 4px 10px rgba(1,85,222,.25); }

.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.biz-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.biz-card:hover { transform: translateY(-5px); box-shadow: var(--sh-3); border-color: transparent; }
.biz-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--cv1, #0155DE), var(--cv2, #0366EA));
  overflow: hidden;
}
.biz-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 12px, transparent 12px 24px);
}
.biz-cover .biz-rating {
  position: absolute;
  top: .8rem; left: .8rem;
  background: rgba(255,255,255,.95);
  color: var(--c-dark);
  padding: .3rem .55rem;
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.biz-cover .biz-rating svg { width: 12px; height: 12px; color: var(--c-orange); }
.biz-cover .biz-verified {
  position: absolute;
  top: .8rem; right: .8rem;
  background: var(--c-green);
  color: #fff;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(33,182,62,.4);
}
.biz-cover .biz-verified svg { width: 14px; height: 14px; }
.biz-logo {
  position: absolute;
  left: 1rem; bottom: -22px;
  width: 60px; height: 60px;
  border-radius: 14px;
  background: #fff;
  display: grid; place-items: center;
  box-shadow: var(--sh-2);
  font-weight: 800;
  color: var(--c-dark);
  font-size: 1.3rem;
  border: 3px solid #fff;
}
.biz-body { padding: 2rem 1.2rem 1rem; flex: 1; display: flex; flex-direction: column; }
.biz-cat {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-primary);
  margin-bottom: .35rem;
}
.biz-name { font-size: 1.1rem; color: var(--c-dark); margin-bottom: .35rem; }
.biz-tag { color: var(--c-text-2); font-size: .9rem; line-height: 1.45; margin-bottom: .9rem; flex: 1; }
.biz-meta {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  color: var(--c-text-2);
  border-top: 1px solid var(--c-line);
  padding-top: .9rem;
}
.biz-meta svg { width: 14px; height: 14px; color: var(--c-primary); flex-shrink: 0; }
.biz-foot { display: flex; gap: .5rem; padding: 0 1.2rem 1.2rem; }
.biz-foot .btn-mini {
  flex: 1;
  padding: .65rem .8rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  text-decoration: none;
  transition: background .15s, color .15s, transform .15s;
}
.biz-foot .btn-mini svg { width: 14px; height: 14px; }
.btn-call { background: var(--c-bg); color: var(--c-dark); }
.btn-call:hover { background: var(--c-line); transform: translateY(-1px); }
.btn-wpp { background: var(--c-green); color: #fff; }
.btn-wpp:hover { background: #1A9B33; transform: translateY(-1px); text-decoration: none; }
.featured-foot { text-align: center; margin-top: 2rem; }

/* Sobre / benefícios */
.about { padding: clamp(3rem, 7vw, 5rem) 0; background: var(--c-bg); }
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: 3rem;
}
.about-photo {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--sh-3);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo__badge {
  position: absolute;
  left: 1.2rem; bottom: 1.2rem;
  background: #fff;
  border-radius: 14px;
  padding: .9rem 1.1rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-2);
  border-left: 4px solid var(--c-orange);
}
.ap-num { font-size: 1.5rem; font-weight: 800; color: var(--c-dark); letter-spacing: -.02em; line-height: 1; }
.ap-lbl { font-size: .82rem; color: var(--c-text-2); margin-top: .15rem; }
.about-head { margin-bottom: 0; max-width: none; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.benefit {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--c-line);
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.benefit:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: transparent; }
.bn-ic {
  --c: var(--c-primary);
  width: 64px; height: 64px;
  border-radius: 16px;
  background: color-mix(in oklch, var(--c), white 86%);
  color: var(--c);
  display: grid; place-items: center;
  margin: 0 auto 1.1rem;
}
.bn-ic svg { width: 30px; height: 30px; }
.benefit h3 { font-size: 1.1rem; margin-bottom: .45rem; }
.benefit p { color: var(--c-text-2); font-size: .95rem; }

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(115deg, var(--c-dark), var(--c-primary));
  color: #fff;
  overflow: hidden;
}
.cta-photo { position: absolute; inset: 0; z-index: 0; }
.cta-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .22; mix-blend-mode: luminosity; }
.cta-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(2,39,87,.85) 0%, rgba(1,85,222,.7) 100%);
}
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-banner::before { width: 380px; height: 380px; background: var(--c-orange); opacity: .25; top: -120px; left: -80px; }
.cta-banner::after  { width: 320px; height: 320px; background: var(--c-green); opacity: .18; bottom: -120px; right: -60px; }
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 2rem;
}
.cta-copy h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: #fff; margin: .35rem 0 .65rem; text-wrap: balance; }
.cta-copy p { color: rgba(255,255,255,.85); max-width: 50ch; }
.cta-actions { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: flex-end; }

/* Footer */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,.78);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot-logo { height: 38px; margin-bottom: 1rem; }
.foot-brand p { font-size: .92rem; line-height: 1.6; max-width: 36ch; }
.foot-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; letter-spacing: -.005em; }
.foot-col ul li { margin-bottom: .6rem; font-size: .92rem; }
.foot-col ul li a { color: rgba(255,255,255,.7); transition: color .15s; text-decoration: none; }
.foot-col ul li a:hover { color: #fff; }
.contact-list li { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.78); }
.contact-list svg { width: 16px; height: 16px; color: var(--c-orange); flex-shrink: 0; }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  color: rgba(255,255,255,.85);
  transition: background .15s, transform .15s, border-color .15s;
}
.socials a:hover { background: var(--c-orange); border-color: var(--c-orange); color: #fff; transform: translateY(-2px); text-decoration: none; }
.socials svg { width: 18px; height: 18px; }
.foot-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

/* Toast */
.toast {
  position: fixed;
  left: 50%; bottom: 2rem;
  transform: translate(-50%, 30px);
  background: var(--c-dark);
  color: #fff;
  padding: .85rem 1.25rem;
  border-radius: 10px;
  box-shadow: var(--sh-3);
  font-size: .92rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  transition: opacity .25s, transform .25s;
  max-width: 90vw;
}
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* Responsive */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; text-align: left; }
  .cta-actions { justify-content: flex-start; }
  .section-head--row { align-items: flex-start; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 420px; margin: 1rem auto 0; }
  .hero-photo { aspect-ratio: 16 / 11; transform: none; }
  .hero-tag--top { left: 1rem; }
  .hero-tag--bottom { right: 1rem; }
  .about-intro { grid-template-columns: 1fr; }
  .about-photo { max-width: 520px; }
}

@media (max-width: 768px) {
  :root { --hdr-h: 64px; }
  .brand-logo { height: 32px; }
  .hamburger { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: var(--hdr-h);
    left: 0; right: 0;
    background: var(--c-dark);
    border-top: 1px solid rgba(255,255,255,.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .primary-nav.is-open { max-height: 480px; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .75rem 1rem 1.5rem;
  }
  .primary-nav li { width: 100%; }
  .primary-nav a { display: block; padding: .9rem 1rem; border-radius: 8px; font-size: 1rem; }
  .primary-nav .nav-cta { text-align: center; margin-top: .5rem; }
  .hero { padding: 3rem 0; min-height: 0; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .search-card { grid-template-columns: 1fr; gap: .25rem; padding: .75rem; }
  .search-field + .search-field { border-left: 0; border-top: 1px solid var(--c-line); }
  .btn-search { width: 100%; padding: 1rem; min-height: 52px; margin-top: .35rem; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
  .filter-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
  .tab { white-space: nowrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-quick { gap: .35rem; }
  .quick-label { width: 100%; text-align: center; margin-bottom: .25rem; }
  .biz-grid, .cat-grid, .benefits-grid, .how-steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
