:root {
  --bg: #fafafc;
  --bg-alt: #efedfb;
  --ink: #1e2233;
  --ink-soft: #565a6e;
  --teal: #1c7c8c;
  --teal-dark: #145f6c;
  --green: #5c9a3d;
  --indigo: #423e8f;
  --white: #ffffff;
  --line: rgba(30, 34, 51, 0.09);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(30, 34, 51, 0.06);
  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.15;
  font-weight: 700;
}
h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

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

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section {
  padding: 100px 0;
}
.section.alt {
  background: var(--bg-alt);
}
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-lead {
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(28, 124, 140, 0.28);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.btn-light {
  background: var(--white);
  color: var(--teal-dark);
}
.btn-light:hover {
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  gap: 10px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}
.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.chip {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--teal-dark);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 252, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.logo {
  height: 64px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 32px;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a {
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav a:hover {
  color: var(--teal);
}
.header-cta {
  white-space: nowrap;
}
.menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.hero {
  padding: 60px 0 60px;
}
.hero-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.lead {
  font-size: 1.1rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin: 32px 0 24px;
  flex-wrap: wrap;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-mark-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-core {
  position: relative;
  width: 60%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 16px 32px rgba(30, 34, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10%;
}
.hero-core svg {
  width: 100%;
  height: 100%;
}
.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  animation: heroChipFloat 5s ease-in-out infinite;
}
.hero-chip svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.chip-teal svg {
  color: var(--teal);
}
.chip-green svg {
  color: var(--green);
}
.chip-indigo svg {
  color: var(--indigo);
}
.hero-chip-1 {
  top: 4%;
  left: 0;
  animation-delay: 0s;
}
.hero-chip-2 {
  bottom: 10%;
  right: 0;
  animation-delay: 1.2s;
}
.hero-chip-3 {
  bottom: -2%;
  left: 14%;
  animation-delay: 2.4s;
}
@keyframes heroChipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-chip {
    animation: none;
  }
}
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--teal);
}
.hero-dot-1 {
  width: 14px;
  height: 14px;
  top: 10%;
  right: 12%;
  opacity: 0.8;
}
.hero-dot-2 {
  width: 9px;
  height: 9px;
  top: 2%;
  right: 28%;
  background: var(--green);
  opacity: 0.7;
}
.hero-dot-3 {
  width: 10px;
  height: 10px;
  bottom: 30%;
  right: 2%;
  background: var(--indigo);
  opacity: 0.5;
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.marquee-row span:nth-child(odd) {
  color: var(--teal-dark);
}

.about-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.about-text {
  max-width: 560px;
}
.about-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.about-visual::before {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  border-radius: var(--radius);
  transform: translate(18px, 18px);
  z-index: 0;
}
.about-photo-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
  z-index: 1;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 960px) {
  .about-row {
    grid-template-columns: 1fr;
  }
  .about-visual {
    order: -1;
  }
}
.check-list {
  margin-top: 24px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
}

.mission-box {
  border-left: 3px solid var(--teal);
  padding: 18px 24px;
  margin-top: 24px;
  background: var(--bg-alt);
  border-radius: 0 12px 12px 0;
}
.mission-text {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--ink);
  margin: 0;
  font-size: 1rem;
}

.value {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.value .icon {
  margin-left: auto;
  margin-right: auto;
}
.value h3 {
  margin: 0;
  font-size: 1rem;
}

.risk-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.risk-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.risk-list li {
  position: relative;
  padding: 18px 20px 18px 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font-weight: 500;
}
.risk-list li::before {
  content: "!";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.group-title {
  font-size: 1.1rem;
  color: var(--teal-dark);
  margin-bottom: 24px;
}
.group-title-spaced {
  margin-top: 56px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon svg {
  width: 24px;
  height: 24px;
}
.icon-teal {
  background: rgba(28, 124, 140, 0.12);
  color: var(--teal-dark);
}
.icon-green {
  background: rgba(92, 154, 61, 0.14);
  color: var(--green);
}
.icon-indigo {
  background: rgba(66, 62, 143, 0.12);
  color: var(--indigo);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  border-top: 3px solid var(--teal);
  padding-top: 20px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
}

.banner {
  background: linear-gradient(120deg, var(--teal-dark), var(--indigo));
  padding: 64px 0;
}
.banner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.banner h2 {
  color: var(--white);
  margin: 0;
  max-width: 600px;
}

.quote p {
  color: var(--ink);
  font-size: 1.02rem;
  margin-bottom: 20px;
}
.quote-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px;
  box-shadow: 0 2px 8px rgba(30, 34, 51, 0.06);
}
.quote-author {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}
.quote-author:hover {
  color: var(--indigo);
  text-decoration: underline;
}

.faq-row {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 56px;
}
.faq {
  border-bottom: 1px solid var(--line);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--teal);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq.open .faq-icon {
  transform: rotate(45deg);
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-panel p {
  padding-bottom: 22px;
  margin: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  font-weight: 500;
}
.contact-info a:hover {
  color: var(--teal);
}
.contact-people {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.form input,
.form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  resize: vertical;
}
.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}
.form-btn {
  margin-top: 8px;
}
.form-hint {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0;
}
.form-msg {
  font-size: 0.9rem;
  color: var(--teal-dark);
  min-height: 20px;
  margin: 0;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 24px;
}
.footer-row {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.logo-footer {
  filter: brightness(0) invert(1);
  opacity: 0.92;
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 8px;
  max-width: 320px;
}
.footer-address {
  font-size: 0.85rem;
}
.footer-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a:hover {
  color: var(--white);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.footer-contact a:hover {
  color: var(--white);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-icon svg {
  width: 19px;
  height: 19px;
}
.social-icon:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  z-index: 60;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .faq-icon,
  .faq-panel {
    transition: none;
  }
}

@media (max-width: 960px) {
  .hero-row,
  .faq-row,
  .contact-row,
  .risk-row {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-chip {
    padding: 7px 11px;
    font-size: 0.68rem;
    gap: 5px;
  }
  .hero-chip svg {
    width: 13px;
    height: 13px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav,
  .header-cta {
    display: none;
  }
  .menu {
    display: flex;
  }
  .header.open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .grid,
  .grid-3,
  .grid-5 {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .logo {
    height: 48px;
  }
  .banner-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}
