:root {
  --black: #080808;
  --graphite: #121212;
  --dark: #181818;
  --soft-black: #222;
  --white: #ffffff;
  --off-white: #f6f3ee;
  --light: #ebe6de;
  --muted: #6d6a66;
  --copper: #c87843;
  --copper-light: #e6a16f;
  --line: rgba(200, 120, 67, 0.28);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--soft-black);
  background: var(--off-white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.35rem, 6vw, 5.5rem);
  color: var(--white);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.15rem;
}

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

.narrow {
  max-width: 880px;
  text-align: center;
}

.section {
  padding: 96px 0;
}

.section-kicker,
.eyebrow {
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--copper-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: Georgia, serif;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.site-nav a:hover {
  color: var(--copper-light);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

.header-cta,
.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--copper-light), var(--copper));
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-outline {
  margin-top: 10px;
  color: var(--black);
  border: 1px solid var(--copper);
}

.btn.large {
  min-height: 56px;
  padding: 0 34px;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 43%, rgba(0, 0, 0, 0.25) 100%),
    url("assets/wallpaper.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--off-white));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 90px;
}

.hero-copy {
  max-width: 690px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.intro p {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card,
.feature {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(8, 8, 8, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(8, 8, 8, 0.06);
}

.card h3,
.feature h3 {
  margin-bottom: 12px;
}

.card p,
.feature p {
  color: var(--muted);
  font-size: 0.96rem;
}

.dark-section {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 120, 67, 0.26), transparent 26%),
    linear-gradient(135deg, #080808, #1b1714);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.dark-section p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.benefits {
  display: grid;
  gap: 14px;
}

.benefits span {
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.feature {
  min-height: 190px;
}

.about {
  background: var(--white);
}

.about-grid p,
.founder p {
  color: var(--muted);
}

.logo-card {
  overflow: hidden;
  background: var(--graphite);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.logo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.founder {
  background: var(--light);
}

.founder-photo {
  min-height: 520px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.84), rgba(8, 8, 8, 0.55)),
    radial-gradient(circle at center, rgba(200, 120, 67, 0.45), transparent 45%),
    #101010;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.founder-photo span {
  max-width: 240px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 8, 8, 0.96), rgba(8, 8, 8, 0.82)),
    url("assets/wallpaper.webp") center / cover no-repeat;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
  text-align: left;
}

.contact-list span {
  padding: 16px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--black);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 0;
}

.footer-content strong {
  color: var(--white);
}

.footer-content p {
  margin-top: 6px;
  margin-bottom: 0;
}

.footer-content nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom {
  padding: 18px;
  color: rgba(255, 255, 255, 0.48);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

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

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

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

  .founder-photo {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .site-header {
    min-height: 68px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .hero {
    min-height: 94vh;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.74) 100%),
      url("assets/wallpaper.webp") center / cover no-repeat;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .cards-grid,
  .feature-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .card,
  .feature {
    min-height: auto;
  }

  .footer-content {
    display: block;
  }

  .footer-content nav {
    margin-top: 18px;
  }
}



/* ===== Atualizações de contato e fundador ===== */
.founder-photo {
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(36, 36, 36, 0.9));
  border: 1px solid rgba(184, 129, 86, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 22px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  min-width: 176px;
  justify-content: center;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: 1px solid rgba(184, 129, 86, 0.22);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.social-btn:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}

.social-btn.whatsapp {
  color: #ffffff;
  background: linear-gradient(135deg, #1fa463, #26d366);
}

.social-btn.instagram {
  color: #ffffff;
  background: linear-gradient(135deg, #515bd4, #8134af, #dd2a7b, #f58529);
}

.social-btn.email {
  color: var(--white);
  background: linear-gradient(135deg, #b88156, #8a5734);
}

.social-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  flex: 0 0 20px;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list strong {
  color: var(--copper);
}

@media (max-width: 860px) {
  .founder-photo,
  .founder-photo img {
    min-height: 420px;
  }

  .social-btn {
    width: 100%;
    min-width: 0;
  }
}




/* ===== Refinamento visual: seção de contato ===== */
.contact .narrow {
  max-width: 980px;
}

.contact-main-cta {
  margin-top: 26px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(184, 129, 86, 0.95), rgba(140, 84, 46, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.social-buttons.elegant {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 28px;
}

.social-btn.elegant-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  min-width: 0;
  width: 100%;
  border-radius: 20px;
  text-decoration: none;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    linear-gradient(135deg, rgba(18,18,18,0.96), rgba(27,27,27,0.92));
  border: 1px solid rgba(184, 129, 86, 0.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.social-btn.elegant-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(184,129,86,0.08), transparent 40%);
}

.social-btn.elegant-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  border-color: rgba(184, 129, 86, 0.38);
}

.social-btn.elegant-btn.whatsapp { --accent: #25d366; }
.social-btn.elegant-btn.instagram { --accent: #d84b8a; }
.social-btn.elegant-btn.email { --accent: #b88156; }

.social-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.social-btn.elegant-btn .social-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.social-btn.elegant-btn .social-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.social-btn.elegant-btn .social-copy strong {
  font-size: 1.12rem;
  line-height: 1.2;
  color: var(--white);
}

.social-btn.elegant-btn .social-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  line-height: 1.35;
}

.social-btn.elegant-btn .social-arrow {
  color: rgba(255,255,255,0.62);
  font-size: 1.15rem;
  line-height: 1;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}

.contact-item {
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    rgba(13, 13, 13, 0.88);
  border: 1px solid rgba(184, 129, 86, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.contact-label {
  color: var(--copper);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.02rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-item a:hover {
  color: #f2d2b6;
}

@media (max-width: 980px) {
  .social-buttons.elegant,
  .contact-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .contact-main-cta {
    margin-bottom: 20px;
  }

  .social-btn.elegant-btn {
    padding: 16px;
    border-radius: 18px;
  }

  .social-icon-wrap {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 14px;
  }

  .social-btn.elegant-btn .social-copy strong {
    font-size: 1.04rem;
  }

  .social-btn.elegant-btn .social-copy small {
    font-size: 0.8rem;
  }

  .contact-item {
    padding: 16px;
  }

  .contact-item a {
    font-size: 0.98rem;
  }
}



/* ===== Contato simplificado por solicitação ===== */
.social-buttons.minimalist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.social-btn.minimalist-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  min-width: 0;
  padding: 20px 22px;
  border-radius: 22px;
  text-decoration: none;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    rgba(15, 15, 15, 0.92);
  border: 1px solid rgba(184, 129, 86, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.social-btn.minimalist-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 129, 86, 0.34);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.social-btn.minimalist-btn .social-icon-wrap {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
}

.social-btn.minimalist-btn .social-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
}

.social-btn.minimalist-btn.whatsapp .social-icon { color: #25d366; }
.social-btn.minimalist-btn.instagram .social-icon { color: #d84b8a; }
.social-btn.minimalist-btn.email .social-icon { color: #b88156; }

.social-btn.minimalist-btn .social-title {
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--white);
}

@media (max-width: 980px) {
  .social-buttons.minimalist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .social-btn.minimalist-btn {
    padding: 18px;
    border-radius: 18px;
  }

  .social-btn.minimalist-btn .social-icon-wrap {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 14px;
  }

  .social-btn.minimalist-btn .social-title {
    font-size: 1.12rem;
  }
}



/* ===== Ajustes finais de contato ===== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1fa463, #25d366);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  border: 2px solid rgba(255,255,255,0.14);
  z-index: 999;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  display: block;
}

@media (max-width: 860px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}


.whatsapp-float-icon {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
}

@media (max-width: 860px) {
  .whatsapp-float-icon {
    font-size: 1.65rem;
  }
}



/* ===== Correções finais solicitadas ===== */

/* Remove destaque de CTA intermediária na seção de contato */
.contact-main-cta {
  display: none !important;
}

/* Botão flutuante estável e limpo */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1ea95f, #25d366);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  border: 2px solid rgba(255,255,255,0.16);
  z-index: 999;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.whatsapp-float-label {
  font-size: 1.08rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
}

/* Melhor ajuste do herói em mobile */
@media (max-width: 860px) {
  .hero {
    min-height: auto !important;
    padding: 96px 0 74px;
    background-position: center center;
  }

  .hero-content {
    width: min(100%, calc(100% - 32px));
    padding-top: 8px !important;
    padding-bottom: 32px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 4.35rem) !important;
    line-height: 0.98 !important;
    max-width: 100%;
    letter-spacing: -0.03em;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 18px !important;
    font-size: 1rem !important;
    line-height: 1.55;
  }

  .whatsapp-float {
    width: 58px;
    height: 58px;
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float-label {
    font-size: 1rem;
  }
}



/* ===== Ícone personalizado do WhatsApp flutuante ===== */
.whatsapp-float {
  overflow: hidden;
  padding: 0;
}

.whatsapp-float-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}



/* ===== Refino desktop: topo e marca ===== */
.brand-refined {
  gap: 14px;
}

.brand-refined .brand-mark {
  width: 46px;
  height: 46px;
  color: var(--copper-light);
  border: 1px solid rgba(230, 161, 111, 0.34);
  background:
    radial-gradient(circle at 35% 30%, rgba(230,161,111,0.10), transparent 45%),
    rgba(8, 8, 8, 0.38);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.brand-name {
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  min-height: 74px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-nav {
  align-items: center;
}

@media (max-width: 640px) {
  .brand-refined .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }
}



/* ===== Missão, visão, valores e proteção de dados ===== */
.mvv-section {
  background: var(--off-white);
}

.mvv-main-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 54px;
}

.mvv-card,
.value-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 8, 8, 0.06);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(8, 8, 8, 0.06);
}

.mvv-featured {
  padding: 34px;
  min-height: 330px;
}

.mvv-label {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mvv-card h3 {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.mvv-card p,
.value-card p {
  color: var(--muted);
}

.values-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.values-heading h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  min-height: 230px;
  padding: 26px;
}

.value-card h4 {
  margin: 0 0 12px;
  color: var(--soft-black);
  font-size: 1.08rem;
  line-height: 1.24;
  letter-spacing: -0.01em;
}

.data-security-section {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(200, 120, 67, 0.24), transparent 28%),
    linear-gradient(135deg, #090909, #1a1512);
}

.data-security-section h2 {
  max-width: 560px;
}

.data-security-text {
  padding: 34px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
}

.data-security-text p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.data-security-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .mvv-main-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .mvv-featured,
  .value-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .mvv-featured,
  .value-card,
  .data-security-text {
    padding: 24px;
  }
}
