:root {
  --green-dark: #025a5b;
  --green: #54b345;
  --black: #010101;
  --white: #ffffff;
  --gray: #787878;
  --soft: #f2f5f2;
  --line: #dce3df;
  --danger: #a92727;
  --shadow: 0 24px 70px rgb(1 1 1 / 12%);
  --font: "Poppins", "Segoe UI", Arial, sans-serif;
  --container: 1180px;
  --radius: 20px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--black); background: var(--white); font-family: var(--font); line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 130px) 0; }
.section-dark { color: var(--white); background: var(--black); }
.section-soft { background: var(--soft); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 200; padding: 12px 18px; color: var(--white); background: var(--green-dark); }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgb(255 255 255 / 96%); border-bottom: 1px solid rgb(1 1 1 / 8%); backdrop-filter: blur(12px); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 245px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 25px; font-size: .92rem; font-weight: 650; }
.main-nav > a:not(.button) { text-decoration: none; position: relative; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; inset: auto 0 -7px; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--black); transition: transform .2s, opacity .2s; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 12px 24px; border: 2px solid var(--green); border-radius: 999px; color: var(--black); background: var(--green); font-weight: 750; text-decoration: none; cursor: pointer; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); background: #62c251; }
.button-small { min-height: 42px; padding: 8px 19px; }
.button-ghost { color: var(--white); background: transparent; border-color: rgb(255 255 255 / 65%); }
.button-ghost:hover { color: var(--black); background: var(--white); }
.button-full { width: 100%; }
.button:disabled { cursor: not-allowed; opacity: .55; transform: none; }

.hero { position: relative; min-height: calc(100svh - 84px); display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--black); }
.hero-media, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgb(1 1 1 / 88%) 0%, rgb(1 1 1 / 62%) 50%, rgb(1 1 1 / 15%) 100%); }
.hero-content { position: relative; z-index: 2; padding-block: 90px; }
.hero h1 { max-width: 880px; margin: 12px 0 24px; font-size: clamp(2.7rem, 6.2vw, 5.8rem); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.hero-content > p:not(.eyebrow) { max-width: 690px; margin: 0 0 34px; color: rgb(255 255 255 / 85%); font-size: clamp(1rem, 1.8vw, 1.25rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-scroll { position: absolute; z-index: 3; bottom: 28px; right: max(24px, calc((100vw - var(--container)) / 2)); width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgb(255 255 255 / 45%); border-radius: 50%; color: var(--white); text-decoration: none; }

.eyebrow { margin: 0 0 10px; color: var(--green-dark); font-size: .76rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow-light { color: var(--green); }
.section-heading { margin-bottom: 48px; }
.section-heading h2, .section-copy h2, .contact-copy h2 { margin: 0; font-size: clamp(2.15rem, 4.6vw, 4.3rem); line-height: 1.06; letter-spacing: -.04em; text-wrap: balance; }
.section-heading > p, .split-heading > p { color: var(--gray); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(250px, .6fr); align-items: end; gap: 70px; }
.split-heading > p { margin: 0; font-size: 1.08rem; }
.section-dark .split-heading > p { color: rgb(255 255 255 / 68%); }
.centered-heading { max-width: 850px; margin-inline: auto; text-align: center; }
.centered-heading > p:last-child { max-width: 650px; margin: 18px auto 0; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit-card { min-height: 250px; padding: 32px; border-right: 1px solid var(--line); }
.benefit-card:last-child { border-right: 0; }
.card-number { color: var(--green-dark); font-size: .78rem; font-weight: 800; }
.benefit-card h3 { margin: 55px 0 12px; font-size: 1.25rem; line-height: 1.2; }
.benefit-card p { margin: 0; color: var(--gray); }

.media-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px, 8vw, 110px); align-items: center; }
.media-frame { position: relative; overflow: hidden; border-radius: var(--radius); }
.media-frame img { width: 100%; min-height: 570px; object-fit: cover; }
.media-badge { position: absolute; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 11px; padding: 16px 20px; border-radius: 999px; color: var(--black); background: var(--white); font-size: .8rem; }
.media-badge span { color: var(--green); }
.section-copy > p:not(.eyebrow) { color: rgb(255 255 255 / 72%); font-size: 1.05rem; }
.mission { margin-top: 34px; padding: 24px 0 0 24px; border-top: 1px solid rgb(255 255 255 / 22%); border-left: 4px solid var(--green); }
.mission span { color: var(--green); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.mission p { margin: 6px 0 0; font-size: 1.15rem; }

.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.fact-grid article { padding: 30px; background: var(--white); }
.fact-grid h3 { margin: 0 0 12px; color: var(--green-dark); font-size: 1.1rem; }
.fact-grid p { margin: 0; color: var(--gray); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { overflow: hidden; border-radius: var(--radius); background: var(--soft); }
.feature-card img { width: 100%; aspect-ratio: 1.3; object-fit: cover; }
.feature-card > div { padding: 28px; }
.feature-card span { color: var(--green-dark); font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .12em; }
.feature-card h3 { margin: 8px 0 10px; font-size: 1.4rem; }
.feature-card p { margin: 0; color: var(--gray); }

.questions { padding-block: 80px; color: var(--white); background: var(--green-dark); }
.questions-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.questions .section-copy > p:not(.eyebrow) { color: rgb(255 255 255 / 75%); }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: inherit; font-weight: 750; text-underline-offset: 5px; }
.text-link span { color: var(--green); }
.question-list { margin: 0; padding: 0; list-style: none; }
.question-list li { display: grid; grid-template-columns: 50px 1fr; align-items: center; padding: 25px 0; border-bottom: 1px solid rgb(255 255 255 / 28%); font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 700; }
.question-list span { color: var(--green); font-size: .75rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 70px; }
.product-grid article { padding: 38px; border: 1px solid var(--line); border-right: 0; background: var(--white); }
.product-grid article:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.product-grid article:last-child { border-right: 1px solid var(--line); border-radius: 0 var(--radius) var(--radius) 0; }
.product-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 54px; border-radius: 50%; color: var(--white); background: var(--green-dark); font-size: .8rem; font-weight: 850; }
.product-grid h3 { margin: 0 0 12px; font-size: 1.35rem; }
.product-grid p { margin: 0; color: var(--gray); }
.dashboard-preview { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 50px; padding: clamp(30px, 5vw, 65px); overflow: hidden; border-radius: var(--radius); color: var(--white); background: var(--black); }
.dashboard-preview h3 { margin: 8px 0 16px; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.1; }
.dashboard-preview p:last-child { color: rgb(255 255 255 / 70%); }
.dashboard-preview img { width: 100%; border-radius: 12px; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.audience-grid article { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.audience-grid img { width: 100%; aspect-ratio: 1.08; object-fit: cover; }
.audience-grid article > div { padding: 28px; }
.audience-grid h3 { margin: 4px 0 10px; font-size: 1.35rem; }
.audience-grid article > div > p:last-child { margin: 0; color: var(--gray); }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.article-grid article { padding-bottom: 22px; border-bottom: 1px solid rgb(255 255 255 / 25%); }
.article-grid img { width: 100%; aspect-ratio: 1.45; margin-bottom: 24px; border-radius: 12px; object-fit: cover; }
.article-grid h3 { margin: 7px 0 10px; font-size: 1.45rem; }
.article-grid article > p:last-child { color: rgb(255 255 255 / 68%); }

.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(45px, 8vw, 100px); align-items: start; }
.faq .section-copy > p:not(.eyebrow) { color: var(--gray); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 48px 24px 0; cursor: pointer; font-size: 1.08rem; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 19px; right: 6px; color: var(--green-dark); font-size: 1.5rem; font-weight: 500; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -6px 48px 24px 0; color: var(--gray); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-grid article { text-align: center; }
.team-grid img { width: min(240px, 75%); aspect-ratio: 1; margin: 0 auto 24px; border-radius: 50%; object-fit: cover; background: var(--soft); }
.team-grid h3 { margin: 0 0 8px; }
.team-grid p { max-width: 340px; margin: 0 auto; color: var(--gray); }
.corfo-strip { display: flex; align-items: center; justify-content: center; gap: 25px; margin-top: 70px; padding-top: 35px; border-top: 1px solid var(--line); color: var(--gray); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
.corfo-strip img { width: 135px; height: auto; }

.contact { color: var(--white); background: var(--green-dark); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(45px, 8vw, 110px); align-items: start; }
.contact-copy > p:not(.eyebrow) { color: rgb(255 255 255 / 72%); font-size: 1.05rem; }
.contact-details { margin: 45px 0 0; padding: 0; list-style: none; }
.contact-details li { display: grid; grid-template-columns: 90px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgb(255 255 255 / 22%); }
.contact-details span { color: var(--green); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-details a, .contact-details p { margin: 0; text-decoration: none; }
.contact-panel { padding: clamp(28px, 5vw, 54px); border-radius: var(--radius); color: var(--black); background: var(--white); box-shadow: var(--shadow); }
.contact-panel h3 { margin: 0 0 30px; font-size: clamp(1.55rem, 3vw, 2.3rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid label { display: grid; gap: 7px; color: #333; font-size: .86rem; font-weight: 700; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid input { width: 100%; min-height: 50px; padding: 10px 13px; border: 1px solid #bbc4bf; border-radius: 8px; color: var(--black); background: var(--white); }
.form-grid input:focus { border-color: var(--green-dark); outline: 3px solid rgb(84 179 69 / 20%); }
.form-grid input[aria-invalid="true"] { border-color: var(--danger); outline: 3px solid rgb(169 39 39 / 14%); }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 11px; margin: 23px 0; color: #4b4b4b; font-size: .78rem; font-weight: 400; }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--green-dark); }
.consent a { color: var(--green-dark); font-weight: 700; }
.required-note, .form-status { margin: 11px 0 0; color: var(--gray); font-size: .76rem; text-align: center; }
.form-alert { margin-bottom: 22px; padding: 14px 16px; border-radius: 8px; font-size: .88rem; }
.form-alert.success { color: #15470d; background: #e7f6e3; }
.form-alert.error { color: #711a1a; background: #fbe8e8; }
.contact-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }

.site-footer { padding-top: 70px; color: var(--white); background: var(--black); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 50px; padding-bottom: 55px; }
.footer-logo {
    width: 250px;
    height: auto;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff;
}
/* .footer-logo { width: 250px; filter: brightness(0) invert(1); } */
.footer-grid > div:first-child p { max-width: 320px; color: rgb(255 255 255 / 62%); }
.footer-grid h2 { margin: 0 0 15px; color: var(--green); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid a { display: block; margin: 8px 0; color: rgb(255 255 255 / 72%); text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0; border-top: 1px solid rgb(255 255 255 / 14%); color: rgb(255 255 255 / 55%); font-size: .78rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: inherit; }

.legal-page { background: var(--soft); }
.legal-content { max-width: 860px; padding-top: 40px; }
.legal-content h1 { margin: 8px 0 35px; font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1.05; }
.legal-content h2 { margin-top: 35px; color: var(--green-dark); }
.legal-content p { color: #444; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 84px 0 auto; min-height: calc(100svh - 84px); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 30px 24px; background: var(--white); transform: translateX(100%); visibility: hidden; transition: transform .25s, visibility .25s; }
  .main-nav.open { transform: translateX(0); visibility: visible; }
  .main-nav > a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1.15rem; }
  .main-nav .button { margin-top: 20px; }
  .split-heading, .media-split, .questions-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card:nth-child(2) { border-right: 0; }
  .benefit-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .fact-grid, .feature-grid, .audience-grid, .article-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-grid article, .product-grid article:first-child, .product-grid article:last-child { border: 1px solid var(--line); border-radius: var(--radius); }
  .product-icon { margin-bottom: 25px; }
  .dashboard-preview { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 72px; }
  .brand { width: 205px; }
  .main-nav { top: 72px; min-height: calc(100svh - 72px); }
  .hero { min-height: calc(100svh - 72px); }
  .hero-overlay { background: linear-gradient(90deg, rgb(1 1 1 / 88%), rgb(1 1 1 / 48%)); }
  .button-row { align-items: stretch; flex-direction: column; }
  .benefit-grid, .fact-grid, .feature-grid, .audience-grid, .article-grid, .team-grid, .form-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-card:last-child { border-bottom: 0; }
  .benefit-card h3 { margin-top: 30px; }
  .media-frame img { min-height: 410px; }
  .dashboard-preview { padding: 28px 20px; }
  .contact-panel { padding: 28px 20px; }
  .form-grid .full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
