/* Accurate Graphics — shared layout */
:root {
  --font-display: "Syne", "Outfit", sans-serif;
  --font-brand: "Bebas Neue", "Syne", sans-serif;
  --font-body: "DM Sans", "Outfit", sans-serif;
  --container: 1120px;
  --radius: 18px;
  --header-h: 74px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding-left: 1.1rem; }

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: var(--bg-art);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-right: auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, var(--magenta), var(--teal) 55%, var(--yellow));
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--teal) 35%, transparent);
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #2C353D;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
}
.brand-logo-lg {
  width: 64px;
  height: 64px;
  border-radius: 14px;
}

.brand-text { display: grid; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}
.brand-name .ag-letter { color: var(--teal); }
.brand-name .ag-word { color: var(--text); }
.brand-name .accu { color: var(--magenta); }
.brand-name .rate { color: var(--teal); }
.brand-sub {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-top: .2rem;
}

.site-nav {
  display: flex;
  gap: 1.15rem;
  align-items: center;
}
.site-nav a {
  font-size: .92rem;
  font-weight: 500;
  opacity: .86;
  transition: opacity .2s var(--ease), color .2s;
}
.site-nav a:hover { opacity: 1; color: var(--accent); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .78rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--btn-bg);
  color: var(--btn-text);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--teal) 30%, transparent);
}
.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}
.btn-whatsapp { background: #19c37d; color: #042814; }
.btn-lg { padding: 1rem 1.5rem; font-size: 1rem; }

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: auto auto 10% -10%;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--teal) 28%, transparent), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 .85rem;
}

.hero-copy {
  max-width: 34rem;
  display: grid;
  align-content: center;
}

.hero-logo-wrap {
  width: min(160px, 42vw);
  margin: 0 0 1rem;
}
.hero-logo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--panel-shadow);
  background: #2C353D;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 5.8rem);
  line-height: .92;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 800;
}
.hero-brand .ag-letter { color: var(--teal); }
.hero-brand .ag-design { color: var(--text); }
.hero-brand .accu { color: var(--magenta); }
.hero-brand .rate { color: var(--teal); }
.hero-brand .graphics-word {
  display: block;
  font-family: var(--font-display);
  font-size: .32em;
  letter-spacing: .22em;
  color: var(--text-soft);
  margin-top: .55rem;
  font-weight: 700;
}

.hero-tagline {
  margin: .7rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-card-logo {
  object-fit: cover;
  object-position: center;
  background: #2C353D;
}

.hero-lead {
  max-width: 32rem;
  font-size: 1.08rem;
  color: var(--text-soft);
  margin: 1.1rem 0 1.5rem;
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-note {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: .92rem;
}

.hero-panel {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--panel-shadow);
  transform: translateY(18px);
  opacity: 0;
  animation: riseIn .9s var(--ease) .15s forwards;
}

.hero-panel-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: #111;
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .45rem .7rem;
  border-radius: 999px;
}

.hero-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.hero-stats li {
  padding: 1rem .75rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.hero-stats li:last-child { border-right: 0; }
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.hero-stats span {
  font-size: .75rem;
  color: var(--muted);
}

.scroll-hint {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  animation: bounce 2s infinite;
}

.design-picker { padding: 2.5rem 0 1rem; }
.design-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.1fr);
  gap: 2rem;
  align-items: start;
}
.design-copy {
  position: sticky;
  top: calc(var(--header-h) + 1.2rem);
  max-width: 28rem;
  margin-bottom: 0;
}
.design-grid {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-height: min(70vh, 640px);
  overflow-y: auto;
  padding-right: .35rem;
  scrollbar-width: thin;
}
.design-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: .85rem;
  align-items: center;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  min-height: 0;
}
.design-card:hover {
  transform: translateX(-3px);
  box-shadow: var(--panel-shadow);
}
.design-card.is-active {
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal), var(--panel-shadow);
}
.design-swatches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem;
  height: 52px;
  margin-bottom: 0;
}
.design-swatches span {
  border-radius: 7px;
  border: 1px solid rgba(0,0,0,.12);
}
.design-card-text {
  display: grid;
  gap: .2rem;
  min-width: 0;
}
.design-card strong { font-size: .95rem; }
.design-card span { font-size: .8rem; color: var(--muted); line-height: 1.4; }
.design-active-tag,
.design-try-tag {
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .15rem;
}
.design-active-tag { color: var(--teal); }
.design-try-tag { color: var(--muted); }

.theme-swatch-row {
  display: flex;
  gap: .3rem;
  margin-bottom: .35rem;
}
.theme-swatch-row i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(255,255,255,.2);
}
.theme-more {
  display: block;
  text-align: center;
  font-size: .8rem;
  color: var(--accent);
  padding: .35rem 0 .1rem;
  font-weight: 600;
}

.channels { padding: 1.5rem 0 3rem; }
.section-kicker {
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 .8rem;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.channel-item {
  display: grid;
  gap: .35rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform .3s var(--ease), border-color .3s;
}
.channel-item:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--teal) 55%, var(--line));
}
.channel-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.channel-item strong { font-size: 1rem; }
.channel-item span:last-child { color: var(--text-soft); font-size: .88rem; }

.about { padding: 4rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.about h2,
.section-head h2,
.cta-inner h2,
.inquiry h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -.02em;
}
.about-lead { color: var(--text-soft); font-size: 1.05rem; }
.about-cards {
  display: grid;
  gap: 1rem;
}
.about-cards article {
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--accent);
  background: var(--panel-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about-cards h3 {
  margin: 0 0 .4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.about-cards p { margin: 0; color: var(--text-soft); }

.services { padding: 4rem 0; }
.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}
.section-head p:last-child { color: var(--text-soft); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.service-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--panel-shadow);
}
.service-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: .9rem;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  margin: 0 0 .45rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.service-card p { color: var(--text-soft); margin: 0 0 .7rem; }
.service-card ul { margin: 0; color: var(--muted); font-size: .92rem; }

.connect { padding: 3.5rem 0; }
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.connect-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: .4rem;
  transition: transform .3s var(--ease);
}
.connect-card:hover { transform: translateY(-4px); }
.connect-card span {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.connect-card strong { font-size: 1.05rem; word-break: break-word; }
.connect-card p { margin: 0; color: var(--text-soft); }

.social { padding: 3.5rem 0 2.5rem; }
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.social-card {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  min-height: 118px;
  height: 100%;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--panel-shadow);
  border-color: color-mix(in srgb, var(--teal) 50%, var(--line));
}
.social-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--panel-soft);
  color: var(--accent);
}
.social-icon svg { width: 22px; height: 22px; }
.social-meta {
  display: grid;
  gap: .15rem;
  min-width: 0;
}
.social-meta strong {
  font-family: var(--font-display);
  font-size: 1rem;
}
.social-meta em {
  font-style: normal;
  font-size: .82rem;
  color: var(--teal);
  font-weight: 600;
}
.social-meta span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}

.cta-band {
  padding: 3.5rem 0;
  background: var(--cta-bg);
  color: var(--cta-text);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(115deg, var(--teal), var(--magenta) 70%, transparent);
  opacity: .35;
  clip-path: polygon(0 0, 85% 0, 55% 100%, 0 100%);
}
.cta-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-inner p { opacity: .88; max-width: 32rem; }

.inquiry { padding: 4rem 0; }
.inquiry-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.inquiry-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
label {
  display: grid;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--input-bg);
  color: var(--text);
  border-radius: 12px;
  padding: .85rem 1rem;
  font: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--teal) 55%, transparent);
  border-color: var(--teal);
}
.alert {
  padding: .85rem 1rem;
  border-radius: 12px;
  margin: 1rem 0 0;
  font-weight: 600;
}
.alert-success { background: #d8ffe8; color: #0d5b32; }
.alert-error { background: #ffe0e0; color: #8a1f1f; }

.site-footer {
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--footer-bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr 1.1fr;
  gap: 1.5rem;
}
.footer-brand p { color: var(--text-soft); max-width: 26rem; }
.site-footer h4 {
  margin: 0 0 .9rem;
  font-family: var(--font-display);
  font-size: 1rem;
}
.footer-links, .footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
  color: var(--text-soft);
}
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: .9rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #19c37d;
  color: #042814;
  padding: .8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(25, 195, 125, .35);
  animation: pulseSoft 2.8s ease-in-out infinite;
}
.whatsapp-float span { font-size: .88rem; }

.theme-gear {
  position: fixed;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--btn-bg);
  color: var(--btn-text);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.theme-gear:hover {
  transform: translateY(-50%) rotate(45deg) scale(1.05);
}
.theme-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
}
.theme-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(380px, 92vw);
  height: 100%;
  background: var(--panel);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 50px rgba(0,0,0,.28);
  transform: translateX(105%);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1rem 1.25rem;
}
.theme-drawer.is-open { transform: translateX(0); }
.theme-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: .5rem;
}
.theme-drawer-kicker {
  margin: 0 0 .35rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.theme-drawer-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.theme-drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.theme-drawer-note {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .88rem;
}
.theme-drawer-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  overflow-y: auto;
  flex: 1;
  padding-right: .2rem;
  scrollbar-width: thin;
}
body.theme-drawer-open { overflow: hidden; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  to { opacity: 1; transform: none; }
}
@keyframes floatGlow {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(8%, -6%) scale(1.08); }
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: .55; }
  50% { transform: translate(-50%, -6px); opacity: 1; }
}
@keyframes pulseSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .inquiry-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .channel-grid,
  .service-grid,
  .connect-grid,
  .social-grid { grid-template-columns: 1fr 1fr; }
  .design-layout { grid-template-columns: 1fr; gap: 1.25rem; }
  .design-copy { position: static; }
  .design-grid { max-height: none; overflow: visible; padding-right: 0; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-block; margin-left: auto; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(var(--header-h) + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--header-bg);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .site-nav a {
    padding: .85rem 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav.is-open { display: flex; }
  .scroll-hint { display: none; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .btn { min-height: 44px; }
  .theme-gear {
    top: auto;
    bottom: 5.5rem;
    transform: none;
  }
  .theme-gear:hover { transform: rotate(45deg) scale(1.05); }
}

@media (max-width: 640px) {
  .container { width: min(var(--container), calc(100% - 1.25rem)); }
  .channel-grid,
  .service-grid,
  .connect-grid,
  .social-grid,
  .form-row,
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-stats li:last-child { border-bottom: 0; }
  .whatsapp-float {
    right: .85rem;
    bottom: .85rem;
    padding: .85rem;
  }
  .whatsapp-float span { display: none; }
  .theme-gear {
    right: .85rem;
    bottom: 4.4rem;
  }
  .hero {
    min-height: auto;
    padding: 1.75rem 0 2.5rem;
  }
  .hero-brand {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }
  .hero-lead { font-size: 1rem; margin-bottom: 1.25rem; }
  .hero-tagline { letter-spacing: .12em; }
  .hero-actions .btn { width: 100%; }
  .hero-panel-badge { font-size: .65rem; max-width: calc(100% - 28px); }
  .about, .services, .connect, .inquiry { padding: 2.75rem 0; }
  .section-head h2,
  .about h2,
  .cta-inner h2,
  .inquiry h2 { font-size: clamp(1.55rem, 7vw, 2rem); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .brand-name { font-size: 1.25rem; }
  .brand-sub { letter-spacing: .18em; }
}
