/* ═══════════════════════════════════════════════════════════
   REVONA – style.css
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:        #0b0f0e;
  --dark-2:      #111a16;
  --dark-3:      #1a2620;
  --emerald:     #10b981;
  --emerald-lt:  #34d399;
  --emerald-dk:  #059669;
  --off-white:   #f2f0eb;
  --off-white-2: #e6e3dc;
  --text-light:  #d4d0c8;
  --text-muted:  #7a8c84;
  --border-dark: rgba(255,255,255,.07);
  --border-light:rgba(0,0,0,.09);
  --radius:      14px;
  --radius-sm:   8px;
  --trans:       .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dark);
  color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
h1,h2,h3,h4 { font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }

em { font-style: normal; color: var(--emerald); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--emerald);
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: ''; width: 20px; height: 2px; background: var(--emerald);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { font-size: clamp(2rem,4vw,3rem); }
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }

/* ─── SECTION THEMES ───────────────────────────────────────── */
.section-dark    { background: var(--dark); color: var(--off-white); }
.section-offwhite{ background: var(--off-white); color: var(--dark); }
.section-light   { background: var(--off-white-2); color: var(--dark); }
.section-emerald { background: var(--emerald); color: var(--dark); }

section { padding: 7rem 0; }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .85rem 2rem; border-radius: 50px;
  font-size: .92rem; font-weight: 600; letter-spacing: .01em;
  cursor: pointer; transition: var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--emerald {
  background: var(--emerald); color: var(--dark);
  border-color: var(--emerald);
}
.btn--emerald:hover {
  background: var(--emerald-lt); border-color: var(--emerald-lt);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent; color: var(--off-white);
  border-color: rgba(255,255,255,.25);
}
.btn--outline:hover {
  border-color: var(--emerald); color: var(--emerald);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent; color: var(--off-white);
  border-color: transparent; padding-left: 0;
}
.btn--ghost:hover { color: var(--emerald); }
.btn--ghost .arrow { transition: var(--trans); }
.btn--ghost:hover .arrow { transform: translateX(5px); }
.btn--dark {
  background: var(--dark); color: var(--off-white);
  border-color: var(--dark);
}
.btn--dark:hover { background: var(--dark-2); transform: translateY(-2px); }

.w-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ─── NAV ──────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--trans), box-shadow var(--trans);
}
.nav.scrolled {
  background: rgba(11,15,14,.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border-dark);
}
.nav__inner {
  display: flex; align-items: center; gap: 2rem;
  width: min(1200px, 92vw); margin-inline: auto;
  padding: 1.2rem 0;
}
.nav__logo {
  display: flex; align-items: center; gap: .7rem;
  flex-shrink: 0;
}
.nav__brand {
  font-size: 1.15rem; font-weight: 800; letter-spacing: .08em;
  color: var(--off-white);
}
.nav__links {
  display: flex; gap: .2rem; margin-left: auto;
}
.nav__link {
  padding: .5rem .9rem;
  font-size: .88rem; font-weight: 500;
  color: var(--text-light); border-radius: 6px;
  transition: var(--trans);
}
.nav__link:hover, .nav__link.active { color: var(--off-white); }
.nav__cta { margin-left: 1rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto; }
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--off-white); border-radius: 2px;
  transition: var(--trans);
}
.nav__mobile {
  display: none; background: var(--dark-2);
  padding: 1.5rem; border-top: 1px solid var(--border-dark);
}
.nav__mobile ul { display: flex; flex-direction: column; gap: .5rem; }
.nav__mobile a {
  display: block; padding: .7rem 1rem;
  font-size: 1.05rem; font-weight: 500;
  border-radius: 8px; transition: var(--trans);
}
.nav__mobile a:hover { color: var(--emerald); }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh; position: relative;
  display: flex; align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero__container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: stretch;
  position: relative; z-index: 1;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(16,185,129,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__glow {
  position: absolute; top: -200px; right: -100px;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,.28) 0%, transparent 65%);
}
.hero__glow::after {
  content: '';
  position: absolute; bottom: -1100px; left: -300px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,.16) 0%, transparent 70%);
}

.hero__content {
  max-width: 580px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.25);
  color: var(--emerald-lt); font-size: .8rem; font-weight: 600;
  padding: .45rem 1rem; border-radius: 50px;
  margin-bottom: 2rem; letter-spacing: .05em;
  align-self: flex-start;
  opacity: 0;
}
.hero__tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--emerald); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero__h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  line-height: 1.05; letter-spacing: -.035em;
  margin-bottom: 1.8rem;
  display: flex; flex-direction: column;
}
.hero__h1 .line { display: block; }
.hero__h1 .line:nth-child(3) { margin-top: 0; }
.hero__h1 .em { color: var(--emerald); }

.hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.12rem);
  color: var(--text-light); line-height: 1.7;
  max-width: 500px; margin-bottom: 2.5rem;
  opacity: 0;
}
.hero__actions {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  opacity: 0;
}

.hero__image-wrap {
  position: relative;
  opacity: 0;
  display: flex;
}
.hero__img {
  width: 100%; height: 100%; min-height: 460px;
  object-fit: cover; border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.hero__img-badge {
  position: absolute; bottom: 32px; left: -28px;
  background: var(--dark-2);
  border: 1px solid var(--border-dark);
  border-radius: 14px; padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: .85rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  max-width: calc(100% - 24px);
}
.hero__img-badge .badge-text {
  font-size: .92rem; font-weight: 700; color: var(--off-white);
  line-height: 1.3; letter-spacing: -.005em;
}
@media (max-width: 1024px) {
  .hero__img-badge { left: -16px; }
}
@media (max-width: 600px) {
  .hero__img-badge {
    left: 12px; bottom: 16px;
    padding: .75rem 1rem; gap: .65rem;
  }
  .hero__img-badge .badge-text { font-size: .82rem; }
  .hero__img-badge svg { width: 20px; height: 20px; }
}

.hero__scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); z-index: 1;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(var(--emerald), transparent);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─── LOGOS ────────────────────────────────────────────────── */
.logos { padding: 3.5rem 0; border-top: 1px solid var(--border-light); }
.logos__label {
  text-align: center; font-size: .76rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 2rem;
}
.logos__track { overflow: hidden; position: relative; }
.logos__track::before,.logos__track::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1;
}
.logos__track::before { left: 0; background: linear-gradient(90deg, var(--off-white-2), transparent); }
.logos__track::after  { right: 0; background: linear-gradient(-90deg, var(--off-white-2), transparent); }
.logos__inner {
  display: flex; gap: 4rem; width: max-content;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  font-size: 1.1rem; font-weight: 700; letter-spacing: .05em;
  color: var(--text-muted); white-space: nowrap;
  transition: var(--trans);
}
.logo-item:hover { color: var(--dark); }
.logo-item img { height: 30px; width: auto; display: block; opacity: .7; transition: var(--trans); }
.logo-item img:hover { opacity: 1; }
.partner-logos { display: flex; gap: 3.5rem; align-items: center; justify-content: center; flex-wrap: wrap; margin: 2.5rem 0 1.5rem; }
.partner-logos img { height: 46px; width: auto; display: block; }

/* ─── INTRO ────────────────────────────────────────────────── */
.intro__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: start;
}
.intro__h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}
.intro__body {
  font-size: 1.05rem; line-height: 1.75; color: var(--text-light);
  margin-bottom: 3rem;
}
.intro__stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.stat { }
.stat { display: block; }
.stat__num + .stat__unit { margin-left: .15rem; }
.stat__num {
  display: inline; font-size: 2.8rem; font-weight: 800;
  color: var(--emerald); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__unit { display: inline; font-size: 1.4rem; font-weight: 700; color: var(--emerald); }
.stat__label {
  display: block; font-size: .8rem; color: var(--text-muted);
  margin-top: .4rem; line-height: 1.4;
}

/* ─── SERVICES ─────────────────────────────────────────────── */
.services__h2 { font-size: clamp(2rem,4vw,3rem); }
.services__sub {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 460px; margin-inline: auto; margin-top: .8rem;
}

.section-offwhite .section-label { color: var(--emerald-dk); }
.section-offwhite .section-label::before { background: var(--emerald-dk); }
.section-offwhite h2 { color: var(--dark); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  transition: var(--trans);
  display: flex; flex-direction: column; gap: 1rem;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
  border-color: rgba(16,185,129,.3);
}
.service-card__icon svg { width: 48px; height: 48px; }
.service-card h3 { font-size: 1.15rem; color: var(--dark); }
.service-card p  { font-size: .92rem; color: #5a6660; line-height: 1.65; flex: 1; }

.card-link {
  font-size: .85rem; font-weight: 600; color: var(--emerald-dk);
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--trans);
}
.card-link span { transition: var(--trans); }
.card-link:hover span { transform: translateX(5px); }

.service-card--dark {
  background: var(--dark); border-color: rgba(255,255,255,.22);
  color: var(--off-white);
}
.service-card--dark h3 { color: var(--off-white); }
.service-card--dark p  { color: var(--text-light); }
.service-card--dark:hover { border-color: var(--emerald); }

/* ─── HOW IT WORKS ──────────────────────────────────────────── */
.how__steps {
  display: flex; align-items: flex-start; gap: 0;
}
.how__step {
  flex: 1; text-align: center; padding: 0 1.5rem;
}
.how__connector {
  flex-shrink: 0; width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--emerald-dk), var(--emerald));
  margin-top: 2.3rem; opacity: .4;
}
.step-num {
  font-size: 3rem; font-weight: 900; color: var(--emerald);
  opacity: .25; line-height: 1; margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}
.how__step h3 { font-size: 1.15rem; margin-bottom: .7rem; }
.how__step p  { font-size: .9rem; color: var(--text-light); line-height: 1.65; }

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.testi-card {
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 2.2rem 2rem;
  transition: var(--trans);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}
.testi-stars { color: var(--emerald); font-size: 1rem; margin-bottom: 1rem; }
.testi-card blockquote {
  font-size: .95rem; line-height: 1.7; color: #3a4a44;
  margin-bottom: 1.5rem; font-style: italic;
}
.testi-author {
  display: flex; align-items: center; gap: .9rem;
}
.testi-author img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--dark); }
.testi-author span   { display: block; font-size: .78rem; color: #7a8c84; }

/* ─── ABOUT TEASER ──────────────────────────────────────────── */
.about-teaser__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
}
.about-teaser__img-wrap {
  position: relative;
}
.about-teaser__img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.about-teaser__img2-wrap {
  position: absolute; bottom: -40px; right: -40px;
  width: 200px; border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
  border: 4px solid var(--dark);
}
.about-teaser__img2 { width: 100%; height: 180px; object-fit: cover; }
.about-teaser__badge {
  position: absolute; top: 30px; left: -30px;
  background: var(--dark-2); border: 1px solid var(--border-dark);
  border-radius: 12px; padding: 1rem 1.2rem;
  backdrop-filter: blur(10px);
  max-width: calc(100% - 24px);
}
@media (max-width: 1024px) {
  .about-teaser__badge { left: -16px; }
}
@media (max-width: 600px) {
  .about-teaser__badge {
    left: 12px; top: 16px;
    padding: .75rem 1rem;
  }
}
.badge-inner {
  display: flex; align-items: center; gap: .7rem;
  font-size: .82rem; font-weight: 600; line-height: 1.3;
  color: var(--off-white);
}

.about-teaser__text h2 {
  font-size: clamp(2rem,3.5vw,3rem); margin-bottom: 1.5rem;
}
.about-teaser__text > p {
  font-size: 1.05rem; color: var(--text-light); line-height: 1.75;
  margin-bottom: 2rem;
}
.about-teaser__list {
  display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2.5rem;
}
.about-teaser__list li {
  display: flex; align-items: center; gap: .8rem;
  font-size: .95rem; color: var(--text-light);
}
.check { color: var(--emerald); font-size: 1rem; flex-shrink: 0; }

/* ─── CTA ───────────────────────────────────────────────────── */
.cta { padding: 6rem 0; }
.section-emerald .section-label { color: var(--dark); opacity: .75; }
.section-emerald .section-label::before { background: var(--dark); }
.cta__text .section-label { margin-bottom: 1.1rem; }
.cta__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 3rem;
  flex-wrap: wrap;
}
.cta__text h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1.15rem; }
.cta__text { max-width: 620px; }
.cta__text p  { font-size: 1.05rem; margin-top: 0; margin-bottom: .6rem; opacity: .85; max-width: 54ch; }
.cta__inner.cta--center { flex-direction: column; text-align: center; }
.cta__inner.cta--center .cta__text { max-width: 640px; margin: 0 auto; }
.cta__inner.cta--center .cta__text p { max-width: 100%; }
.cta__inner.cta--center .cta__actions { align-items: center; }
.cta__actions {
  display: flex; flex-direction: column; gap: 1rem; align-items: flex-start;
  flex-shrink: 0;
}
.cta__tel {
  font-size: .88rem; font-weight: 500; color: var(--dark); opacity: .75;
  transition: var(--trans);
}
.cta__tel:hover { opacity: 1; }

/* ─── CONTACT STRIP ─────────────────────────────────────────── */
.contact-strip__grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start;
}
.contact-strip__info h2 {
  font-size: clamp(2.2rem,4vw,3.2rem); margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: .9rem; }
.cd {
  display: flex; align-items: center; gap: .8rem;
  font-size: .95rem; color: var(--text-light);
}

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
  font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--text-muted);
}
.form-group input, .form-group textarea {
  background: var(--dark-3); border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm); padding: .9rem 1.1rem;
  font-size: .95rem; color: var(--off-white);
  font-family: inherit;
  transition: border-color var(--trans);
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--emerald);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border-dark);
}
.footer__inner {
  padding: 5rem 0 3rem;
  display: grid; grid-template-columns: 1fr 2fr; gap: 5rem;
  align-items: start;
}
.footer__brand .nav__logo { margin-bottom: 1rem; }
.footer__brand p {
  font-size: .9rem; color: var(--text-muted); line-height: 1.65;
  max-width: 260px;
}
.footer__social {
  display: flex; gap: .7rem; margin-top: 1.4rem;
}
.footer__social a {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--border-dark);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-light); transition: var(--trans);
}
.footer__social a:hover {
  border-color: var(--emerald); color: var(--emerald);
  transform: translateY(-2px);
}
.footer__links {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem;
}
.footer__col { display: flex; flex-direction: column; gap: .7rem; }
.footer__col h4 {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: .3rem;
}
.footer__col a, .footer__col span {
  font-size: .9rem; color: var(--text-light); transition: var(--trans);
}
.footer__col a:hover { color: var(--emerald); }
.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding: 1.5rem 0;
}
.footer__bottom .container {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--text-muted);
}

/* ─── PROCESS FLOW (sera-style) ────────────────────────────── */
.flow__chain {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; max-width: 1100px; margin: 0 auto;
}
.flow__node { text-align: center; flex: 0 0 auto; max-width: 160px; }
.flow__dot {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 800; color: var(--emerald);
  margin: 0 auto 1rem; transition: var(--trans);
  position: relative;
}
.flow__node--end .flow__dot {
  background: var(--emerald); color: var(--dark);
  box-shadow: 0 0 0 6px rgba(16,185,129,.15);
}
.flow__node:hover .flow__dot { transform: scale(1.08); border-color: var(--emerald); }
.flow__node h4 { font-size: .95rem; margin-bottom: .3rem; }
.flow__node p  { font-size: .8rem; color: var(--text-muted); line-height: 1.4; }
.flow__line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--border-dark), var(--emerald), var(--border-dark));
  position: relative; max-width: 80px;
  opacity: .5;
}
@media (max-width: 900px) {
  .flow__chain { flex-direction: column; gap: 1.5rem; }
  .flow__line { width: 1px; height: 30px; max-width: none; background: linear-gradient(var(--emerald), var(--border-dark)); }
}

/* ─── SPECIALISTS / AGENT CARDS ────────────────────────────── */
.specialists__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.spec-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: var(--trans);
}
.spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16,185,129,.4);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.spec-card__head {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
}
.spec-card__avatar {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dk));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.spec-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: .15rem; }
.spec-tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--emerald-dk);
}
.spec-card p {
  font-size: .9rem; color: #5a6660; line-height: 1.65;
}
@media (max-width: 900px) { .specialists__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .specialists__grid { grid-template-columns: 1fr; } }

/* ─── TESTI METRIC ─────────────────────────────────────────── */
.testi-metric {
  display: inline-flex; align-items: baseline; gap: .5rem;
  margin-bottom: 1.2rem; padding: .4rem .9rem;
  background: rgba(16,185,129,.1); border-radius: 50px;
}
.testi-metric__num {
  font-size: 1.1rem; font-weight: 800; color: var(--emerald-dk);
  letter-spacing: -.02em;
}
.testi-metric span:last-child {
  font-size: .78rem; font-weight: 600; color: var(--emerald-dk);
  text-transform: uppercase; letter-spacing: .04em;
}

/* ─── FOUNDERS (buukki-style) ──────────────────────────────── */
.founders__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 1000px; margin: 0 auto;
}
.founder-card {
  display: grid; grid-template-columns: 200px 1fr;
  background: var(--dark-3);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.founder-card:hover {
  border-color: rgba(16,185,129,.3);
  transform: translateY(-4px);
}
.founder-card img {
  width: 100%; height: 100%; min-height: 280px;
  object-fit: cover; object-position: center;
}
.founder-card__body {
  padding: 1.8rem; display: flex; flex-direction: column;
  justify-content: center;
}
.founder-card__top { margin-bottom: 1rem; }
.founder-card__top h3 { font-size: 1.15rem; margin-bottom: .25rem; }
.founder-card__top span {
  font-size: .8rem; color: var(--emerald); font-weight: 600;
  letter-spacing: .04em;
}
.founder-card__body > p {
  font-size: .92rem; color: var(--text-light); line-height: 1.7;
  font-style: italic; margin-bottom: 1.4rem;
  border-left: 2px solid var(--emerald);
  padding-left: 1rem;
}
.founder-card__contact {
  display: flex; flex-wrap: wrap; gap: .8rem;
}
.founder-card__contact a {
  font-size: .82rem; color: var(--text-light);
  transition: var(--trans);
}
.founder-card__contact a:hover { color: var(--emerald); }
.founder-li {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--emerald); color: var(--dark) !important;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem;
}
@media (max-width: 768px) {
  .founders__grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-card img { height: 280px; }
}

/* ─── FLOATING CHAT WIDGET ─────────────────────────────────── */
.chat-fab {
  position: fixed; bottom: 30px; right: 30px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--emerald);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(16,185,129,.4), 0 4px 12px rgba(0,0,0,.2);
  transition: var(--trans);
}
.chat-fab:hover {
  transform: scale(1.08); background: var(--emerald-lt);
}
.chat-fab__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--emerald);
  animation: chatPulse 2s infinite;
  pointer-events: none;
}
@keyframes chatPulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 480px) {
  .chat-fab { width: 52px; height: 52px; bottom: 20px; right: 20px; }
}

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  will-change: opacity, transform;
}
@media (max-width: 768px) {
  .reveal { transform: translateY(14px); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ─── UTILITY ───────────────────────────────────────────────── */
.mt-lg { margin-top: 2rem; }
.mt-md { margin-top: 1.5rem; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { padding-top: 9rem; text-align: center; }
  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__content {
    max-width: 640px; margin-inline: auto;
  }
  .hero__image-wrap {
    max-width: 560px; margin-inline: auto;
  }
  .hero__img { height: 440px; min-height: 0; }
  .hero__tag { align-self: center; }
  .hero__h1 { align-items: center; }
  .hero__sub { margin-inline: auto; }
  .hero__actions { justify-content: center; }

  .intro__grid       { grid-template-columns: 1fr; gap: 3rem; }
  .services__grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid{ grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .about-teaser__grid{ grid-template-columns: 1fr; gap: 4rem; }
  .about-teaser__img2-wrap { right: 0; }
  .about-teaser__badge { left: 0; }
  .founders__grid    { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .contact-strip__grid { grid-template-columns: 1fr; gap: 3rem; }
  .how__steps { flex-wrap: wrap; gap: 2rem; }
  .how__connector { display: none; }
  .how__step { flex: 0 0 calc(50% - 1rem); }
}

@media (max-width: 768px) {
  section { padding: 5rem 0; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: block; }

  .services__grid      { grid-template-columns: 1fr; }
  .testimonials__grid  { grid-template-columns: 1fr; }
  .intro__stats        { grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .footer__inner       { grid-template-columns: 1fr; gap: 3rem; }
  .footer__links       { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom .container { flex-direction: column; gap: .5rem; text-align: center; }
  .form-row            { grid-template-columns: 1fr; }
  .cta__inner          { flex-direction: column; text-align: center; }
  .cta__actions        { align-items: center; width: 100%; }
  .hero__img           { height: 380px; }
  .how__step           { flex: 0 0 100%; }
  .hero__scroll-hint   { display: none; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .intro__stats   { grid-template-columns: 1fr; }
  .footer__links  { grid-template-columns: 1fr; }
}
