/* ============================================================
   EDEN PLACEMENT PLATFORM — MAIN STYLES
   Component & section styles, mobile navigation, responsive layout.
   ============================================================ */

/* ============ TOP BAR ============ */
.topbar {
  background: var(--eden-green-900);
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-sm);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 42px;
}

.topbar__contact {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.topbar__link,
.topbar__location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  transition: color var(--duration);
}

.topbar__link:hover {
  color: var(--eden-white);
}

.topbar__contact svg {
  width: 15px;
  height: 15px;
  color: #7FC39B;
  flex-shrink: 0;
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.topbar__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: background-color var(--duration), color var(--duration);
}

.topbar__social-link svg {
  width: 15px;
  height: 15px;
}

.topbar__social-link:hover {
  background: var(--eden-green);
  color: var(--eden-white);
}

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--eden-white);
  border-bottom: 1px solid var(--eden-line);
  transition: box-shadow var(--duration), border-color var(--duration);
}

.header.is-scrolled {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: var(--header-h);
}

.header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo {
  height: 52px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  position: relative;
  display: inline-block;
  padding: 0.55rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--eden-text);
  border-radius: var(--radius-sm);
  transition: color var(--duration);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  border-radius: 2px;
  background: var(--eden-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease-out);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--eden-green);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--eden-green);
  padding: 9px 12px;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: background var(--duration), border-color var(--duration);
}
.header__cta-link svg { width: 15px; height: 15px; }
.header__cta-link:hover {
  background: color-mix(in srgb, var(--eden-green) 8%, #fff);
  border-color: color-mix(in srgb, var(--eden-green) 30%, #fff);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--eden-line-strong);
  background: var(--eden-white);
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 3px;
  background: var(--eden-green);
  transition: transform var(--duration), opacity var(--duration);
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(380px, 88vw);
  z-index: 80;
  background: var(--eden-white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  padding: var(--space-5);
  transform: translateX(105%);
  transition: transform 0.35s var(--ease-out);
  visibility: hidden;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--eden-line);
}

.mobile-menu__logo {
  height: 40px;
  width: auto;
}

.mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--eden-text);
  background: var(--eden-surface);
  transition: background-color var(--duration), color var(--duration);
}

.mobile-menu__close:hover {
  background: var(--eden-accent);
  color: var(--eden-white);
}

.mobile-menu__close svg {
  width: 22px;
  height: 22px;
}

.mobile-menu__list {
  padding-block: var(--space-4);
  overflow-y: auto;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.5rem;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--eden-text);
  border-bottom: 1px solid var(--eden-line);
  transition: color var(--duration), padding-left var(--duration);
}

.mobile-menu__link:hover {
  color: var(--eden-green);
  padding-left: 0.9rem;
}

.mobile-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-4);
}

.mobile-menu__cta {
  width: 100%;
}

.mobile-menu__contact {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--eden-green-50);
  font-size: var(--text-sm);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-menu__contact a {
  color: var(--eden-green-700);
  font-weight: 600;
}

.mobile-menu__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-4);
}

.mobile-menu__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--eden-surface);
  color: var(--eden-green);
  transition: background-color var(--duration), color var(--duration);
}

.mobile-menu__social a:hover {
  background: var(--eden-green);
  color: var(--eden-white);
}

.mobile-menu__social svg {
  width: 18px;
  height: 18px;
}

.mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(11, 46, 24, 0.55);
  backdrop-filter: blur(2px);
}

body.menu-open {
  overflow: hidden;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60rem 38rem at 88% -10%, rgba(46, 125, 79, 0.14), transparent 60%),
    radial-gradient(40rem 30rem at -10% 110%, rgba(229, 57, 53, 0.06), transparent 60%),
    linear-gradient(180deg, var(--eden-green-50), var(--eden-white) 70%);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.hero__title {
  font-size: var(--text-5xl);
  margin-top: var(--space-5);
  letter-spacing: -0.03em;
}

.hero__title-accent {
  position: relative;
  color: var(--eden-green);
}

.hero__title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.35em;
  background: var(--eden-accent);
  opacity: 0.14;
  border-radius: 4px;
  z-index: -1;
}

.hero__lead {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  color: var(--eden-text-soft);
  max-width: 52ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.hero__points {
  margin-top: var(--space-6);
}

/* Hero visual */
.hero__visual {
  position: relative;
}

.hero__panel {
  position: relative;
  background: linear-gradient(165deg, var(--eden-green-800), var(--eden-green-900));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  color: var(--eden-white);
  box-shadow: var(--shadow-glow);
}

.hero__panel-head {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.hero__panel-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--eden-green-600), var(--eden-green));
  border: 2px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-display);
  font-weight: 600;
  flex-shrink: 0;
}

.hero__panel-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
}

.hero__panel-role {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.hero__panel-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-5);
}

.hero__panel-skills span {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__match {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__match-ring {
  position: relative;
  width: 68px;
  height: 68px;
  flex-shrink: 0;
}

.hero__match-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.hero__match-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 3;
}

.hero__match-fg {
  fill: none;
  stroke: #7FC39B;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 97.4;
  stroke-dashoffset: 1.9;
  animation: ringPulse 4s var(--ease-out) infinite;
}

@keyframes ringPulse {
  0%, 100% { stroke-dashoffset: 1.9; }
  50% { stroke-dashoffset: 12; }
}

.hero__match-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
}

.hero__match-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
}

.hero__match-sub {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.hero__toast {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--eden-white);
  color: var(--eden-text);
  box-shadow: var(--shadow-lg);
}

.hero__toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--eden-green-100);
  color: var(--eden-green);
  flex-shrink: 0;
}

.hero__toast-icon svg {
  width: 18px;
  height: 18px;
}

.hero__toast p {
  font-size: var(--text-sm);
  color: var(--eden-text-soft);
}

.hero__toast strong {
  color: var(--eden-text);
}

.hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  background: var(--eden-white);
  border: 1px solid var(--eden-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero__badge svg {
  width: 26px;
  height: 26px;
  color: var(--eden-accent);
}

.hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.1;
  color: var(--eden-text);
}

.hero__badge span {
  font-size: var(--text-xs);
  color: var(--eden-muted);
}

.hero__badge--tl {
  top: -1.5rem;
  left: -2.5rem;
  animation: floatY 6s ease-in-out infinite;
}

.hero__badge--br {
  bottom: -1.75rem;
  right: -1.25rem;
  animation: floatY 6s ease-in-out infinite reverse;
}

.hero__badge--br svg {
  color: var(--eden-green);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============ STATS ============ */
.stats {
  background: var(--eden-green);
  color: var(--eden-white);
  padding-block: var(--space-8);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.stats__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--eden-white);
}

.stats__label {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
}

/* ============ STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  counter-reset: step;
}

.step {
  position: relative;
  padding: var(--space-6);
  border: 1px solid var(--eden-line);
  border-radius: var(--radius-lg);
  background: var(--eden-white);
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration), border-color var(--duration);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #CBE2D3;
}

.step__num {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--eden-green-100);
  line-height: 1;
}

.step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--eden-green-100);
  color: var(--eden-green);
  margin-bottom: var(--space-5);
}

.step__icon svg {
  width: 28px;
  height: 28px;
}

.step__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.step__text {
  font-size: var(--text-sm);
  color: var(--eden-text-soft);
}

.step__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--eden-accent);
  transition: gap var(--duration);
}

.step__link svg {
  width: 16px;
  height: 16px;
}

.step__link:hover {
  gap: 0.7rem;
}

/* ============ FEATURES ============ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature {
  padding: var(--space-6);
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--eden-green-100), var(--eden-green-50));
  color: var(--eden-green);
  border: 1px solid #D6E8DC;
  margin-bottom: var(--space-4);
}

.feature__icon svg {
  width: 26px;
  height: 26px;
}

.feature__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.feature__text {
  font-size: var(--text-sm);
  color: var(--eden-text-soft);
}

/* ============ COMPARISON ============ */
.compare {
  background: var(--eden-white);
  border: 1px solid var(--eden-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.compare__table {
  width: 100%;
}

.compare__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--eden-line);
}

.compare__row:last-child {
  border-bottom: 0;
}

.compare__row--head {
  background: var(--eden-green-900);
  color: var(--eden-white);
}

.compare__col {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compare__col--feature {
  color: var(--eden-text);
}

.compare__col svg {
  width: 22px;
  height: 22px;
}

.compare__row--head .compare__col {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
}

.compare__row--head .compare__col:not(.compare__col--feature) {
  justify-content: center;
}

.compare__col--eden {
  color: var(--eden-green);
  font-weight: 600;
  justify-content: center;
}

.compare__col--eden .compare__mark {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  flex-shrink: 0;
}

.compare__row:not(.compare__row--head) .compare__col:last-child {
  justify-content: center;
  color: #B7C4BC;
}

/* ============ ROLES ============ */
.roles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.roles__card {
  padding: var(--space-5);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color var(--duration), border-color var(--duration), transform var(--duration);
}

.roles__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(127, 195, 155, 0.5);
  transform: translateY(-3px);
}

.roles__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(127, 195, 155, 0.15);
  color: #7FC39B;
  margin-bottom: var(--space-3);
}

.roles__icon svg {
  width: 22px;
  height: 22px;
}

.roles__card h3 {
  font-size: var(--text-base);
  color: var(--eden-white);
  margin-bottom: 0.25rem;
}

.roles__card p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
}

.section-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-5);
  margin-top: var(--space-10);
  text-align: center;
}

.section-foot p {
  color: rgba(255, 255, 255, 0.8);
}

.section-foot strong {
  color: var(--eden-white);
}

/* ============ COMPANIES / LOGOS ============ */
.logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  border: 1px solid var(--eden-line);
  border-radius: var(--radius-md);
  background: var(--eden-white);
  transition: border-color var(--duration), transform var(--duration), box-shadow var(--duration);
}

.logos__item:hover {
  border-color: #CBE2D3;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.logos__item img {
  max-height: 56px;
  width: auto;
}

.logos__tile {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid var(--eden-line);
  border-radius: var(--radius-md);
  background: var(--eden-white);
  transition: border-color var(--duration), transform var(--duration), box-shadow var(--duration);
}

.logos__tile:hover {
  border-color: #CBE2D3;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.logos__tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--eden-green-100);
  color: var(--eden-green-700);
  flex-shrink: 0;
}

.logos__tile-icon svg {
  width: 22px;
  height: 22px;
}

.logos__tile strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--eden-text);
}

.logos__tile div span {
  display: block;
  font-size: var(--text-xs);
  color: var(--eden-muted);
}

.logos__note {
  margin-top: var(--space-5);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--eden-muted);
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  color: #F2B01E;
  margin-bottom: var(--space-4);
}

.testimonial__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial__quote {
  font-size: var(--text-base);
  color: var(--eden-text-soft);
  flex: 1;
}

.testimonial__person {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--eden-line);
}

.testimonial__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--eden-green-600), var(--eden-green));
  color: var(--eden-white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testimonial__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--eden-text);
}

.testimonial__role {
  font-size: var(--text-xs);
  color: var(--eden-muted);
}

/* ============ CTA BANNER ============ */
.cta {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.cta__panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(40rem 24rem at 85% -30%, rgba(127, 195, 155, 0.25), transparent 60%),
    radial-gradient(30rem 20rem at 0% 120%, rgba(229, 57, 53, 0.14), transparent 55%),
    linear-gradient(160deg, var(--eden-green-800), var(--eden-green-900));
  color: var(--eden-white);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
  box-shadow: var(--shadow-glow);
}

.cta__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7FC39B;
  margin-bottom: var(--space-4);
}

.cta__title {
  font-size: var(--text-4xl);
  color: var(--eden-white);
}

.cta__text {
  max-width: 52ch;
  margin: var(--space-4) auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.cta__note {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
}

/* ============ CONTACT + MAP ============ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: start;
}

.contact__info {
  display: grid;
  gap: var(--space-4);
}

.contact__card {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  background: var(--eden-white);
  border: 1px solid var(--eden-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration), box-shadow var(--duration);
}

.contact__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--eden-green-100);
  color: var(--eden-green);
  flex-shrink: 0;
}

.contact__icon svg {
  width: 22px;
  height: 22px;
}

.contact__card h3 {
  font-size: var(--text-base);
  margin-bottom: 0.35rem;
}

.contact__card p {
  font-size: var(--text-sm);
  color: var(--eden-text-soft);
}

.contact__card a {
  color: var(--eden-green);
  font-weight: 600;
}

.contact__card a:hover {
  color: var(--eden-accent);
}

.contact__map {
  padding: var(--space-5);
  background: var(--eden-white);
  border: 1px solid var(--eden-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact__map-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

.map-frame {
  position: relative;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--eden-surface);
}

.map-frame iframe {
  filter: saturate(0.85);
}

.map-frame__cta {
  margin-top: var(--space-4);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--eden-green-900);
  color: rgba(255, 255, 255, 0.72);
  padding-top: clamp(3rem, 7vw, 5rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 0.9fr 1.2fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
}

.footer__logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1) hue-rotate(140deg) saturate(0.4);
  margin-bottom: var(--space-4);
}

.footer__about {
  font-size: var(--text-sm);
  max-width: 38ch;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-5);
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  transition: background-color var(--duration), color var(--duration), transform var(--duration);
}

.footer__social a:hover {
  background: var(--eden-green);
  color: var(--eden-white);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 17px;
  height: 17px;
}

.footer__heading {
  font-size: var(--text-base);
  color: var(--eden-white);
  margin-bottom: var(--space-4);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  transition: color var(--duration), padding-left var(--duration);
}

.footer__col a:hover {
  color: #7FC39B;
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--text-sm);
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  color: #7FC39B;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-block: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  gap: var(--space-5);
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal a:hover {
  color: #7FC39B;
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--eden-white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--duration), box-shadow var(--duration);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   RESPONSIVE LAYOUT
   ============================================================ */

/* Large tablets */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .hero__visual {
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }

  .hero__badge--tl {
    left: -0.5rem;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .roles {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

/* Tablets */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .logos__tile {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

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

  .map-frame {
    height: 320px;
  }
}

/* Phones */
@media (max-width: 640px) {
  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 64px;
  }

  .header__logo {
    height: 40px;
  }

  .header__actions .btn {
    display: none;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

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

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

  .compare__row {
    grid-template-columns: 1.5fr 0.9fr 0.9fr;
  }

  .compare__col {
    padding: var(--space-3);
    font-size: var(--text-xs);
  }

  .roles {
    grid-template-columns: repeat(2, 1fr);
  }

  .logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__badge {
    padding: 0.7rem 0.9rem;
  }

  .hero__badge--tl {
    top: -1rem;
  }

  .hero__badge--br {
    right: 0;
    bottom: -1.25rem;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .cta__actions .btn {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .roles {
    grid-template-columns: 1fr;
  }
}

/* ============ LEGAL PAGES (privacy / terms / 404 / 500) ============ */
.legal__title {
  font-size: var(--text-4xl);
  margin-top: var(--space-4);
}

.legal__updated {
  margin-top: 0.5rem;
  font-size: var(--text-sm);
  color: var(--eden-muted);
}

.legal__card {
  padding: var(--space-6);
  margin-top: var(--space-6);
}

.legal__card h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.legal__body {
  color: var(--eden-text-soft);
}

.legal__card .list-check li strong {
  color: var(--eden-text);
}

.legal__section {
  margin-top: var(--space-6);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
}

.legal__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--eden-green-100);
  color: var(--eden-green-700);
  font-size: var(--text-sm);
  margin-right: 0.6rem;
}

/* Error pages */
.error {
  min-height: 62vh;
  display: flex;
  align-items: center;
}

.error__code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--eden-green);
  line-height: 1;
}

.error__card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  max-width: 560px;
  margin-inline: auto;
}

.error__card h1 {
  font-size: var(--text-2xl);
  margin: var(--space-4) 0 var(--space-2);
}

.error__card p {
  color: var(--eden-text-soft);
  max-width: 46ch;
  margin: 0 auto var(--space-6);
}

.error__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
