/* ============================================================
   MIRAMAR LABS — styles.css
   Forest Green #2C5F2E | Sand Yellow #E8B84B
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #2C5F2E;
  --green-dark:  #1E4320;
  --green-mid:   #3D7A40;
  --green-light: #6AAB6D;
  --yellow:      #E8B84B;
  --yellow-dark: #C99A30;
  --yellow-pale: #FDF3D7;
  --bg:          #0E1A0F;
  --bg-light:    #F7F3EA;
  --surface:     #141F15;
  --surface2:    #1C2B1D;
  --text:        #F0EDE6;
  --text-muted:  #8A9E8C;
  --border:      rgba(255,255,255,.08);
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --font:        'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---------- TYPOGRAPHY ---------- */
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; line-height: 1.05; letter-spacing: -.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; letter-spacing: -.025em; }
h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
p  { color: var(--text-muted); line-height: 1.75; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { color: var(--text); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-size: .95rem; font-weight: 700;
  padding: 13px 26px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: all .22s var(--ease);
}
.btn:active { transform: scale(.97); }

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: .85rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--yellow);
  color: #12220F;
  border-color: var(--yellow);
  font-weight: 800;
  letter-spacing: .01em;
}
.btn--primary:hover {
  background: #f0c84e;
  border-color: #f0c84e;
  box-shadow: 0 0 36px rgba(232,184,75,.4);
  transform: translateY(-2px);
}

.btn--outline {
  background: rgba(255,255,255,.06);
  color: #F0EDE6;
  border-color: rgba(255,255,255,.25);
  font-weight: 700;
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.5);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(14,26,15,.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}

.nav__logo {
  font-size: 1.25rem; font-weight: 900;
  letter-spacing: -.03em; color: var(--text);
}
.nav__logo span { color: var(--yellow); }

.nav__links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav__links a {
  font-size: .875rem; font-weight: 500; color: var(--text-muted);
  transition: color .2s;
}
.nav__links a:not(.btn):hover { color: var(--text); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s;
}

.nav__mobile {
  display: none; flex-direction: column;
  padding: 16px 24px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.nav__mobile a {
  padding: 13px 0; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--border); font-size: 1rem;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh; display: flex; align-items: center;
  padding: 120px 0 80px;
}

/* animated gradient background */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--bg);
}

.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(44,95,46,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,95,46,.15) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(44,95,46,.6) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: drift1 12s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,184,75,.3) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation: drift2 15s ease-in-out infinite alternate;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(61,122,64,.4) 0%, transparent 70%);
  top: 40%; right: 30%;
  animation: drift1 9s ease-in-out 3s infinite alternate;
}

@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -60px) scale(1.15); }
}
@keyframes drift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-30px, 50px) scale(1.1); }
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-light);
  background: rgba(44,95,46,.2);
  border: 1px solid rgba(44,95,46,.4);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero__tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero__headline {
  color: var(--text); margin-bottom: 24px;
}
.hero__headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--yellow), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__stroke {
  -webkit-text-stroke: 2px var(--yellow);
  color: transparent;
}

.hero__sub {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 440px; margin-bottom: 40px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* card stack */
.hero__visual { position: relative; height: 460px; }

.hero__card-stack { position: relative; width: 100%; height: 100%; }

.hcard {
  position: absolute; border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .4s var(--ease);
}
.hcard img { width: 100%; height: 100%; object-fit: cover; }

.hcard--back {
  width: 72%; height: 72%;
  top: 0; right: 0;
  transform: rotate(6deg) translateY(-10px);
  opacity: .6;
  animation: float2 7s ease-in-out infinite;
}
.hcard--mid {
  width: 76%; height: 76%;
  top: 10%; left: 8%;
  transform: rotate(-3deg);
  opacity: .75;
  animation: float3 9s ease-in-out 1s infinite;
}
.hcard--front {
  width: 80%; height: 78%;
  bottom: 0; right: 0;
  animation: float1 6s ease-in-out 2s infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(1deg); }
}
@keyframes float2 {
  0%, 100% { transform: rotate(6deg) translateY(-10px); }
  50%       { transform: rotate(4deg) translateY(4px); }
}
@keyframes float3 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%       { transform: rotate(-1deg) translateY(-10px); }
}

.hcard__badge {
  position: absolute; bottom: 16px; left: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(14,26,15,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232,184,75,.3);
  padding: 8px 16px; border-radius: 100px;
  font-size: .8rem; font-weight: 600; color: var(--text);
}

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
  transition: border-color .2s, color .2s;
  z-index: 1;
}
.hero__scroll:hover { border-color: var(--yellow); color: var(--yellow); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--yellow);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex; align-items: center; gap: 32px;
  animation: marquee 22s linear infinite;
  font-size: .85rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-dark);
}
.marquee__dot { color: var(--green); font-size: .6rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 120px 0;
  background: var(--bg);
}

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

.scard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s;
  cursor: default;
}
.scard:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.scard:hover .scard__img img { transform: scale(1.06); }

.scard--yellow { border-color: rgba(232,184,75,.25); }
.scard--yellow .scard__overlay { background: linear-gradient(to top, rgba(201,154,48,.85) 0%, transparent 60%); }
.scard--yellow .scard__num { color: var(--yellow); }
.scard--yellow ul li::before { background: var(--yellow); }

.scard__img {
  position: relative; height: 220px; overflow: hidden;
}
.scard__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.scard__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,31,21,.9) 0%, transparent 60%);
}

.scard__body { padding: 28px 28px 32px; }

.scard__num {
  font-size: .75rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 10px;
}

.scard__body h3 { color: var(--text); margin-bottom: 10px; }
.scard__body p  { font-size: .95rem; margin-bottom: 20px; }

.scard__body ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.scard__body ul li {
  font-size: .875rem; font-weight: 500; color: var(--text-muted);
  padding-left: 18px; position: relative;
}
.scard__body ul li::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--green-light); border-radius: 50%;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 120px 0;
  position: relative; overflow: hidden;
  background: var(--surface);
}
.about__bg {
  position: absolute; inset: 0; pointer-events: none;
}
.about__orb {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,95,46,.15) 0%, transparent 70%);
  filter: blur(80px);
  top: -200px; right: -200px;
  animation: drift1 18s ease-in-out infinite alternate;
}

.about__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.about__image {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  height: 520px;
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
}
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,95,46,.3) 0%, transparent 60%);
}

.about__image-badge {
  position: absolute; bottom: 24px; left: 24px; z-index: 1;
  background: rgba(14,26,15,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232,184,75,.3);
  border-radius: var(--radius);
  padding: 14px 20px;
}
.about__image-badge strong { display: block; font-size: .95rem; color: var(--text); }
.about__image-badge span  { font-size: .8rem; color: var(--text-muted); }

.about__content h2 { color: var(--text); margin-bottom: 20px; }
.about__content p  { margin-bottom: 16px; }

.about__pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.about__pills span {
  font-size: .8rem; font-weight: 600;
  padding: 7px 16px; border-radius: 100px;
  background: rgba(44,95,46,.2);
  border: 1px solid rgba(44,95,46,.4);
  color: var(--green-light);
  letter-spacing: .04em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0;
  background: var(--bg);
}

.contact__inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}

.contact__header { margin-bottom: 52px; }
.contact__header h2 { color: var(--text); margin-bottom: 14px; }
.contact__header p  { font-size: 1.05rem; max-width: 460px; margin: 0 auto; }

.contact__links {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 36px;
}

.clink {
  display: flex; align-items: center; gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s, background .25s;
  text-align: left;
}
.clink:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

.clink--email {
  background: rgba(232,184,75,.07);
  border-color: rgba(232,184,75,.25);
}
.clink--email:hover {
  background: rgba(232,184,75,.14);
  border-color: rgba(232,184,75,.5);
}
.clink--email .clink__icon { color: var(--yellow); background: rgba(232,184,75,.12); }
.clink--email .clink__value { color: var(--yellow); }
.clink--email .clink__arrow { color: var(--yellow); }

.clink--linkedin {
  background: rgba(44,95,46,.1);
  border-color: rgba(44,95,46,.3);
}
.clink--linkedin:hover {
  background: rgba(44,95,46,.2);
  border-color: rgba(106,171,109,.5);
}
.clink--linkedin .clink__icon { color: var(--green-light); background: rgba(44,95,46,.2); }
.clink--linkedin .clink__value { color: var(--green-light); }
.clink--linkedin .clink__arrow { color: var(--green-light); }

.clink__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}

.clink__body {
  flex: 1;
  display: flex; flex-direction: column; gap: 4px;
}
.clink__label {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
}
.clink__value {
  font-size: 1rem; font-weight: 700;
}

.clink__arrow {
  flex-shrink: 0; opacity: .6;
  transition: transform .25s var(--ease), opacity .25s;
}
.clink:hover .clink__arrow { transform: translateX(4px); opacity: 1; }

.contact__location {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .875rem; color: var(--text-muted);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw {
  padding: 120px 0;
  background: var(--surface);
}

.hiw__steps {
  display: flex; align-items: flex-start;
  gap: 0;
}

.hiw__step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.hiw__step-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(44,95,46,.15);
  border: 1.5px solid rgba(44,95,46,.3);
  color: var(--green-light);
  margin: 0 auto 16px;
}

.hiw__step-num {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.hiw__step h3 { color: var(--text); margin-bottom: 10px; font-size: 1.2rem; }
.hiw__step p  { font-size: .925rem; max-width: 220px; margin: 0 auto; }

.hiw__connector {
  flex-shrink: 0;
  width: 80px;
  margin-top: 30px;
  color: rgba(44,95,46,.4);
}
.hiw__connector svg { width: 100%; height: 16px; }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section {
  padding: 120px 0;
  background: var(--bg);
}

.products__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 760px; margin: 0 auto;
}

.pcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  border-color: rgba(232,184,75,.2);
}

.pcard__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}

.pcard__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.pcard__icon--1 {
  background: linear-gradient(135deg, rgba(44,95,46,.4), rgba(61,122,64,.2));
  border: 1px solid rgba(44,95,46,.4);
  color: var(--green-light);
}
.pcard__icon--2 {
  background: linear-gradient(135deg, rgba(232,184,75,.25), rgba(201,154,48,.1));
  border: 1px solid rgba(232,184,75,.3);
  color: var(--yellow);
}

.pcard__badge {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(232,184,75,.1);
  border: 1px solid rgba(232,184,75,.25);
  color: var(--yellow);
}

.pcard h3 { color: var(--text); margin-bottom: 8px; font-size: 1.15rem; }
.pcard p  { font-size: .9rem; margin-bottom: 20px; }

.pcard__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pcard__tag {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--green-light);
  background: rgba(44,95,46,.15);
  padding: 4px 10px; border-radius: 100px;
}
.pcard__status {
  font-size: .78rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.pcard__status::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================================
   LANG TOGGLE
   ============================================================ */
.lang-toggle {
  font-family: var(--font);
  font-size: .78rem; font-weight: 800;
  letter-spacing: .1em;
  background: rgba(255,255,255,.07);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.lang-toggle:hover {
  background: rgba(232,184,75,.12);
  border-color: rgba(232,184,75,.4);
  color: var(--yellow);
}

/* contact whatsapp card */
.clink--whatsapp {
  background: rgba(44,95,46,.1);
  border-color: rgba(44,95,46,.3);
}
.clink--whatsapp:hover {
  background: rgba(44,95,46,.2);
  border-color: rgba(106,171,109,.5);
}
.clink--whatsapp .clink__icon { color: var(--green-light); background: rgba(44,95,46,.2); }
.clink--whatsapp .clink__value { color: var(--green-light); }
.clink--whatsapp .clink__arrow { color: var(--green-light); }

/* linkedin neutral */
.clink--linkedin {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.1);
}
.clink--linkedin:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.2);
}
.clink--linkedin .clink__icon { color: var(--text-muted); background: rgba(255,255,255,.06); }
.clink--linkedin .clink__value { color: var(--text); }
.clink--linkedin .clink__arrow { color: var(--text-muted); }

/* nav actions group */
.nav__actions {
  display: flex; align-items: center; gap: 10px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg);
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer__copy  { font-size: .85rem; color: var(--text-muted); }
.footer__links a { font-size: .85rem; color: var(--text-muted); transition: color .2s; }
.footer__links a:hover { color: var(--yellow); }

/* ============================================================
   REVEAL (scroll animation)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* stagger for grid children */
.services__grid .scard:nth-child(2) { transition-delay: .1s; }
.services__grid .scard:nth-child(3) { transition-delay: .2s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { height: 360px; max-width: 520px; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__image { height: 380px; }
  .clink { padding: 20px; }
}

@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }
  .hero { padding: 110px 0 72px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .footer__inner { flex-direction: column; text-align: center; }
  .hiw__steps { flex-direction: column; align-items: center; gap: 8px; }
  .hiw__connector { transform: rotate(90deg); width: 40px; margin: 0; }
  .hiw__step { padding: 0 16px; }
  .products__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero__visual { display: none; }
  .contact__form { padding: 24px; }
}
