:root {
  --green: #0e6b3f;
  --green-dark: #074a2c;
  --green-deep: #063b25;
  --yellow: #f6c648;
  --ink: #151a17;
  --muted: #69726d;
  --line: #e2e7e3;
  --surface: #f4f5f1;
  --paper: #ffffff;
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1480px;
  --shadow: 0 20px 60px rgba(12, 44, 29, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.container {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
}

.section-frame {
  width: calc(100% - 28px);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: calc(100% - 28px);
  max-width: none;
  margin: 14px auto 0;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(14,107,63,.08);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(18,39,28,.08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo { width: 158px; height: auto; }
.logo-link { display: inline-flex; flex: 0 0 auto; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.25vw, 34px);
  font-size: 14px;
  font-weight: 600;
  color: #505954;
}
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--green); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span { width: 18px; height: 2px; background: var(--green); border-radius: 99px; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 21px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--green); }
.btn-primary:hover { background: var(--green-dark); }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.38); background: rgba(255,255,255,.08); }
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.62); }
.btn-accent { color: #18180f; background: var(--yellow); min-height: 54px; padding: 0 26px; }
.nav-cta { min-height: 44px; white-space: nowrap; }

.hero {
  min-height: clamp(610px, 74vh, 760px);
  margin-top: 18px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1d2b23;
  box-shadow: var(--shadow);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 54%; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,22,14,.82) 0%, rgba(5,27,17,.64) 35%, rgba(5,25,16,.24) 66%, rgba(5,20,14,.10) 100%),
    linear-gradient(180deg, rgba(7,18,12,.05), rgba(7,18,12,.18));
}
.hero-content {
  min-height: inherit;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 90px;
  padding-bottom: 90px;
  color: #fff;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 2px; border-radius: 99px; background: var(--yellow); }
.eyebrow.light { color: rgba(255,255,255,.82); }
.hero h1,
.section-heading h2,
.process-intro h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -.045em;
}
.hero h1 { max-width: 760px; font-size: clamp(48px, 6vw, 78px); line-height: .99; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-content > p { max-width: 610px; margin: 24px 0 0; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-meta {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(6,25,16,.44);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.hero-meta svg { width: 15px; }

.value-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 18px;
  background: var(--paper);
  border: 1px solid rgba(14,107,63,.09);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(18,39,28,.045);
  overflow: hidden;
}
.value-item { display: grid; grid-template-columns: auto 1fr; gap: 15px; padding: 26px 25px; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: 0; }
.value-number { padding-top: 2px; color: var(--green); font-size: 12px; font-weight: 700; }
.value-item strong { display: block; margin-bottom: 5px; font-family: 'Poppins', sans-serif; font-size: 15px; }
.value-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.content-section,
.services-section,
.about-section {
  margin-top: 18px;
  padding: clamp(56px, 6vw, 82px) clamp(28px, 4.5vw, 64px);
  background: var(--paper);
  border: 1px solid rgba(14,107,63,.08);
  border-radius: var(--radius);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 38px;
}
.section-heading.compact { grid-template-columns: 1fr; }
.section-heading h2,
.process-intro h2,
.about-copy h2,
.contact-copy h2 { font-size: clamp(34px, 4.2vw, 56px); line-height: 1.08; }
.section-heading > p { max-width: 470px; justify-self: end; margin: 0 0 6px; color: var(--muted); font-size: 15px; line-height: 1.75; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.project-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.project-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(13,43,27,.08); }
.project-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #e7ebe8; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.project-card:hover .project-media img { transform: scale(1.025); }
.project-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.project-copy { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 19px 20px 21px; }
.project-copy h3 { margin: 0 0 5px; font-family: 'Poppins', sans-serif; font-size: 20px; letter-spacing: -.02em; }
.project-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.project-copy > span { color: var(--green); font-size: 22px; }

.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.service-card {
  min-height: 288px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfa 100%);
}
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 38px; border-radius: 14px; background: #edf5f0; color: var(--green); }
.service-icon svg { width: 27px; height: 27px; }
.service-index { display: block; margin-bottom: 8px; color: #8b958f; font-size: 11px; font-weight: 700; letter-spacing: .11em; }
.service-card h3 { margin: 0 0 12px; font-family: 'Poppins', sans-serif; font-size: 21px; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.process-section {
  margin-top: 18px;
  padding: clamp(58px, 6.5vw, 88px) clamp(28px, 4.5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.process-intro { align-self: start; position: sticky; top: 130px; }
.process-intro p { max-width: 480px; margin: 22px 0 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.75; }
.process-list { border-top: 1px solid rgba(255,255,255,.16); }
.process-step { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.process-step > span { color: var(--yellow); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.process-step h3 { margin: 0 0 9px; font-family: 'Poppins', sans-serif; font-size: 21px; letter-spacing: -.02em; }
.process-step p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.65; }

.about-section { display: grid; grid-template-columns: minmax(260px, .6fr) minmax(0, 1.4fr); gap: clamp(42px, 8vw, 110px); align-items: center; }
.about-mark { min-height: 380px; border-radius: 18px; display: grid; place-items: center; background: #eef5f0; overflow: hidden; }
.about-mark img { width: min(54%, 220px); opacity: .95; }
.about-copy > p { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.about-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.about-points span { padding: 10px 13px; border: 1px solid #dbe5de; border-radius: 999px; color: var(--green-dark); background: #fbfdfb; font-size: 12px; font-weight: 700; }

.contact-section {
  margin-top: 18px;
  padding: clamp(52px, 6vw, 76px) clamp(28px, 4.5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 48px;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  color: #fff;
  border-radius: var(--radius);
}
.contact-section::after { content: ''; position: absolute; right: -120px; top: -170px; width: 430px; height: 430px; border: 1px solid rgba(246,198,72,.18); border-radius: 50%; box-shadow: 0 0 0 78px rgba(246,198,72,.035), 0 0 0 155px rgba(246,198,72,.025); }
.contact-copy, .contact-actions { position: relative; z-index: 1; }
.contact-copy p { max-width: 680px; margin: 20px 0 0; color: rgba(255,255,255,.72); line-height: 1.75; }
.contact-actions { justify-self: end; display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-phone { color: #fff; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.08); min-height: 54px; }
.contact-phone:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); }
.contact-socials { display: flex; flex-wrap: wrap; gap: 9px; }
.social-link { min-height: 38px; display: inline-flex; align-items: center; gap: 8px; padding: 0 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 700; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.social-link:hover { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }
.social-link svg { width: 14px; height: 14px; flex: 0 0 auto; }
.contact-note { color: rgba(255,255,255,.58); font-size: 12px; }

.site-footer {
  margin-top: 18px;
  margin-bottom: 22px;
  padding: 40px clamp(28px, 4.5vw, 64px) 24px;
  background: #10251a;
  color: #fff;
  border-radius: var(--radius);
}
.footer-main { display: flex; align-items: flex-start; justify-content: space-between; gap: 50px; padding-bottom: 34px; }
.footer-logo { width: 176px; margin-bottom: 17px; }
.footer-brand p { max-width: 360px; margin: 0; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 28px; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 600; }
.footer-nav a:hover { color: var(--yellow); }
.footer-socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.footer-socials .social-link { color: rgba(255,255,255,.66); }
.footer-bottom { padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.10); color: rgba(255,255,255,.44); font-size: 12px; }

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .nav-cta { display: none; }
  .value-strip { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; display: grid; grid-template-columns: 64px 1fr; gap: 20px; }
  .service-icon { margin: 0; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 92px; }
  .container { width: min(calc(100% - 38px), var(--container)); }
  .site-header { top: 8px; margin-top: 8px; }
  .nav-wrap { min-height: 70px; }
  .logo { width: 142px; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 20px 48px rgba(12,44,29,.13);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 10px; border-radius: 10px; }
  .site-nav a:hover { background: #f3f7f4; }
  .hero { min-height: 650px; }
  .hero-image { object-position: 58% center; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .section-heading > p { justify-self: start; max-width: 650px; }
  .process-section { grid-template-columns: 1fr; gap: 42px; }
  .process-intro { position: static; }
  .about-section { grid-template-columns: 1fr; }
  .about-mark { min-height: 260px; }
  .contact-section { grid-template-columns: 1fr; align-items: start; }
  .contact-actions { justify-self: start; }
}

@media (max-width: 680px) {
  .section-frame, .site-header { width: calc(100% - 12px); }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .hero { margin-top: 10px; min-height: 620px; border-radius: 18px; }
  .hero-content { padding-top: 92px; padding-bottom: 100px; justify-content: flex-end; }
  .hero-image { object-position: 60% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(4,22,14,.18) 0%, rgba(4,22,14,.38) 40%, rgba(4,22,14,.91) 100%); }
  .hero h1 { font-size: clamp(42px, 12vw, 57px); }
  .hero-content > p { font-size: 15px; line-height: 1.65; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { right: 16px; bottom: 16px; }
  .value-strip { grid-template-columns: 1fr; border-radius: 18px; }
  .value-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 21px 20px; }
  .value-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }
  .content-section, .services-section, .about-section, .process-section, .contact-section { border-radius: 18px; }
  .content-section, .services-section, .about-section { padding: 46px 20px; }
  .process-section, .contact-section { padding: 48px 20px; }
  .section-heading h2, .process-intro h2, .about-copy h2, .contact-copy h2 { font-size: 35px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-media { aspect-ratio: 4 / 3; }
  .project-copy { padding: 17px; }
  .project-copy h3 { font-size: 18px; }
  .service-card { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .process-step { grid-template-columns: 42px 1fr; gap: 12px; }
  .about-mark { min-height: 220px; }
  .contact-actions, .contact-buttons, .contact-actions .btn { width: 100%; }
  .contact-buttons { flex-direction: column; }
  .contact-socials { width: 100%; }
  .contact-socials .social-link { flex: 1 1 140px; justify-content: center; }
  .site-footer { margin-bottom: 10px; border-radius: 18px; padding: 34px 20px 20px; }
  .footer-main { flex-direction: column; gap: 28px; }
  .footer-nav { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

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

/* Conversion & trust additions */
.inspiration-cta {
  margin-top: 22px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid #dbe6df;
  border-radius: 16px;
  background: #f7faf8;
}
.inspiration-cta strong { display: block; margin-bottom: 5px; font-family: 'Poppins', sans-serif; font-size: 16px; }
.inspiration-cta p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.inspiration-cta .btn { flex: 0 0 auto; white-space: nowrap; }

.style-section,
.trust-section,
.faq-section,
.social-proof-section {
  margin-top: 18px;
  padding: clamp(56px, 6vw, 82px) clamp(28px, 4.5vw, 64px);
  background: var(--paper);
  border: 1px solid rgba(14,107,63,.08);
  border-radius: var(--radius);
}

.style-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.style-card {
  min-height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #d9dfdb;
}
.style-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 34%, rgba(5,24,15,.82) 100%); }
.style-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .55s ease; }
.style-card:hover img { transform: scale(1.035); }
.style-overlay { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; color: #fff; }
.style-overlay > span { display: block; margin-bottom: 9px; color: var(--yellow); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.style-overlay h3 { margin: 0 0 7px; font-family: 'Poppins', sans-serif; font-size: 21px; letter-spacing: -.025em; }
.style-overlay p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.5; }

.trust-section { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: clamp(42px, 7vw, 90px); align-items: start; }
.trust-heading { position: sticky; top: 126px; }
.trust-heading h2,
.faq-intro h2,
.social-proof-section h2 { margin: 0; font-family: 'Poppins', sans-serif; font-size: clamp(34px, 4.2vw, 56px); line-height: 1.08; letter-spacing: -.045em; }
.trust-heading > p,
.faq-intro > p { max-width: 560px; margin: 22px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.trust-grid article { min-height: 220px; padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(180deg, #fff, #fafcfb); }
.trust-grid article > span { display: block; margin-bottom: 36px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.trust-grid h3 { margin: 0 0 9px; font-family: 'Poppins', sans-serif; font-size: 18px; letter-spacing: -.025em; }
.trust-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.faq-section { display: grid; grid-template-columns: minmax(270px, .78fr) minmax(0, 1.22fr); gap: clamp(42px, 7vw, 90px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  list-style: none;
  cursor: pointer;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.015em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--green); transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: -4px 50px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.social-proof-section {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  background: #edf5f0;
}
.social-proof-section h2 { max-width: 760px; font-size: clamp(30px, 3.6vw, 48px); }
.social-proof-actions { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.text-link { color: var(--green-dark); font-size: 13px; font-weight: 700; }
.text-link:hover { text-decoration: underline; }

.floating-contact {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.floating-contact a { box-shadow: 0 12px 28px rgba(4,44,24,.18); }
.floating-phone,
.floating-whatsapp {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
.floating-phone { width: 48px; background: #fff; color: var(--green); border: 1px solid #dce7df; }
.floating-whatsapp { gap: 8px; padding: 0 17px; background: var(--green); color: #fff; font-size: 13px; font-weight: 700; }
.floating-contact svg { width: 19px; height: 19px; }
.floating-contact a:hover { transform: translateY(-2px); }

:focus-visible { outline: 3px solid rgba(246,198,72,.72); outline-offset: 3px; }

@media (max-width: 1080px) {
  .style-grid { grid-template-columns: 1fr 1fr; }
  .style-card:last-child { grid-column: 1 / -1; min-height: 360px; }
  .trust-section, .faq-section { grid-template-columns: 1fr; gap: 36px; }
  .trust-heading { position: static; }
  .social-proof-section { align-items: flex-start; flex-direction: column; gap: 26px; }
}

@media (max-width: 680px) {
  body { padding-bottom: 70px; }
  .style-section, .trust-section, .faq-section, .social-proof-section { padding: 46px 20px; border-radius: 18px; }
  .inspiration-cta { padding: 20px; align-items: stretch; flex-direction: column; gap: 18px; }
  .inspiration-cta .btn { width: 100%; white-space: normal; text-align: center; }
  .style-grid { grid-template-columns: 1fr; }
  .style-card, .style-card:last-child { grid-column: auto; min-height: 360px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: 0; }
  .trust-grid article > span { margin-bottom: 24px; }
  .faq-list summary { min-height: 72px; font-size: 15px; }
  .faq-list details p { margin-right: 36px; }
  .social-proof-actions, .social-proof-actions .btn { width: 100%; }
  .floating-contact { left: 6px; right: 6px; bottom: 6px; gap: 6px; padding: 6px; border: 1px solid rgba(14,107,63,.08); border-radius: 16px; background: rgba(255,255,255,.96); box-shadow: 0 12px 28px rgba(4,44,24,.15); backdrop-filter: blur(12px); }
  .floating-contact a { box-shadow: none; }
  .floating-phone { width: 48px; flex: 0 0 48px; }
  .floating-whatsapp { flex: 1; }
}
