/* CIACRI Modern */
:root {
  --ci-green: #10682f;
  --ci-green-dark: #06461f;
  --ci-green-deep: #033919;
  --ci-green-soft: #edf7f0;
  --ci-gold: #ffd863;
  --ci-gold-dark: #d5a91c;
  --ci-gold-soft: #fff8df;
  --ci-ink: #13231a;
  --ci-muted: #5f6f65;
  --ci-line: #dfe9e2;
  --ci-bg: #f8fbf8;
  --ci-white: #ffffff;
  --ci-shadow: 0 22px 65px rgba(10, 73, 35, .12);
  --ci-radius: 26px;
  --ci-font-body: "Leelawadee UI", "Segoe UI", Arial, sans-serif;
  --ci-font-display: "PostOffice", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ci-ink); background: #fff; font-family: var(--ci-font-body); font-size: 17px; line-height: 1.67; -webkit-font-smoothing: antialiased; }
body.ci-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--ci-green); text-decoration: none; }
a:hover { color: var(--ci-green-dark); }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 { margin: 0 0 .55em; color: var(--ci-green-deep); font-family: var(--ci-font-display); line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.8rem, 5.4vw, 5.7rem); }
h2 { font-size: clamp(2.05rem, 3.9vw, 3.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.25em; }
ul, ol { padding-left: 1.25em; }
blockquote { margin: 28px 0; padding: 24px 28px; border-left: 5px solid var(--ci-gold); border-radius: 0 16px 16px 0; background: var(--ci-gold-soft); color: var(--ci-green-dark); font-family: var(--ci-font-display); font-size: 1.35rem; }
.screen-reader-text { position: absolute!important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.ci-skip-link { position: fixed; left: 12px; top: -100px; z-index: 9999; padding: 10px 16px; border-radius: 9px; background: #fff; color: var(--ci-green-dark); box-shadow: var(--ci-shadow); }
.ci-skip-link:focus { top: 12px; }
.ci-container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.ci-main { overflow: hidden; }

.ci-topbar { background: var(--ci-green-dark); color: rgba(255,255,255,.88); font-size: .82rem; }
.ci-topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ci-topbar__contact { display: flex; gap: 22px; }
.ci-topbar a { color: #fff; }
.ci-header { position: relative; z-index: 1000; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(16,104,47,.09); transition: box-shadow .25s ease, background .25s ease; }
.ci-header.is-scrolled { position: sticky; top: 0; box-shadow: 0 10px 40px rgba(5,60,25,.09); backdrop-filter: blur(14px); }
.admin-bar .ci-header.is-scrolled { top: 32px; }
.ci-header__inner { min-height: 92px; display: flex; align-items: center; gap: 28px; }
.ci-brand { flex: 0 0 150px; display: flex; align-items: center; }
.ci-brand img, .ci-brand .custom-logo { width: auto; max-height: 74px; object-fit: contain; }
.ci-brand .custom-logo-link { display: flex; }
.ci-nav { margin-left: auto; }
.ci-menu { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); margin: 0; padding: 0; list-style: none; }
.ci-menu li { position: relative; }
.ci-menu a { display: block; padding: 12px 0; color: #20362a; font-size: .88rem; font-weight: 760; }
.ci-menu a:hover, .ci-menu .current-menu-item > a { color: var(--ci-green); }
.ci-menu .current-menu-item > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 3px; border-radius: 20px; background: var(--ci-gold); }
.ci-menu .sub-menu { position: absolute; left: -20px; top: calc(100% - 4px); min-width: 240px; padding: 12px 0; border: 1px solid var(--ci-line); border-radius: 16px; background: #fff; box-shadow: var(--ci-shadow); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; list-style: none; }
.ci-menu li:hover > .sub-menu, .ci-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.ci-menu .sub-menu a { padding: 9px 20px; }
.ci-header__actions { display: flex; gap: 10px; }
.ci-menu-toggle { display: none; width: 48px; height: 44px; padding: 11px; border: 1px solid var(--ci-line); border-radius: 12px; background: #fff; cursor: pointer; }
.ci-menu-toggle span:not(.screen-reader-text) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ci-green-dark); }

.ci-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border: 1px solid transparent; border-radius: 12px; font-size: .91rem; font-weight: 800; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; }
.ci-button:hover { transform: translateY(-2px); }
.ci-button--small { min-height: 42px; padding: 10px 16px; font-size: .8rem; }
.ci-button--primary { background: var(--ci-green); color: #fff; box-shadow: 0 12px 28px rgba(16,104,47,.22); }
.ci-button--primary:hover { background: var(--ci-green-dark); color: #fff; }
.ci-button--gold { background: var(--ci-gold); color: #3b3107; box-shadow: 0 12px 28px rgba(213,169,28,.22); }
.ci-button--gold:hover { background: #f8cb43; color: #271f00; }
.ci-button--soft { border-color: #cfe5d5; background: var(--ci-green-soft); color: var(--ci-green-dark); }
.ci-button--light { background: #fff; color: var(--ci-green-dark); }
.ci-button--whatsapp { border-color: rgba(255,255,255,.4); background: transparent; color: #fff; }
.ci-button--wide { width: 100%; }
.ci-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.ci-text-link { display: inline-flex; font-weight: 800; }
.ci-eyebrow { display: inline-block; margin-bottom: 16px; color: var(--ci-green); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.ci-hero { position: relative; padding: 72px 0 44px; background: linear-gradient(135deg, #fff 0%, #f6fbf7 52%, #fff8df 100%); overflow: hidden; }
.ci-hero::after { content: ""; position: absolute; left: -5%; right: -5%; bottom: -88px; height: 180px; border-radius: 50% 50% 0 0; background: #fff; }
.ci-hero__shape { position: absolute; border-radius: 50%; filter: blur(1px); }
.ci-hero__shape--one { width: 400px; height: 400px; right: -130px; top: -160px; background: rgba(255,216,99,.25); }
.ci-hero__shape--two { width: 280px; height: 280px; left: -130px; bottom: 0; background: rgba(16,104,47,.08); }
.ci-hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr); align-items: center; gap: clamp(42px, 7vw, 90px); }
.ci-hero__copy { padding: 55px 0 95px; }
.ci-hero h1 { max-width: 730px; }
.ci-hero__copy > p { max-width: 680px; color: var(--ci-muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.ci-hero__trust { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 34px; }
.ci-hero__trust span { display: flex; align-items: center; gap: 10px; color: #375141; font-size: .82rem; font-weight: 750; }
.ci-hero__trust b { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 9px; background: #fff; color: var(--ci-green); box-shadow: 0 6px 20px rgba(16,104,47,.1); font-size: .68rem; }
.ci-hero__visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.ci-hero__image-wrap { position: relative; width: 100%; max-width: 525px; overflow: hidden; border: 10px solid #fff; border-radius: 44% 56% 30% 70% / 46% 32% 68% 54%; box-shadow: var(--ci-shadow); background: #d8eadc; }
.ci-hero__image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,57,25,.14), transparent 45%); }
.ci-hero__image-wrap img { width: 100%; height: 570px; object-fit: cover; object-position: center; display: block; }
.ci-float-card { position: absolute; z-index: 3; max-width: 220px; padding: 16px 18px; border: 1px solid rgba(16,104,47,.12); border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: var(--ci-shadow); backdrop-filter: blur(12px); }
.ci-float-card span { float: left; display: grid; width: 42px; height: 42px; place-items: center; margin-right: 11px; border-radius: 12px; background: var(--ci-gold); color: var(--ci-green-dark); font-size: 1.2rem; }
.ci-float-card strong { display: block; color: var(--ci-green-dark); font-size: .9rem; }
.ci-float-card small { display: block; margin-top: 3px; color: var(--ci-muted); font-size: .72rem; line-height: 1.35; }
.ci-float-card--save { left: -36px; top: 110px; }
.ci-float-card--community { right: -22px; bottom: 78px; }
.ci-float-card--community span { background: var(--ci-green); color: #fff; }

.ci-quick-strip { position: relative; z-index: 4; margin-top: -28px; }
.ci-quick-strip__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border: 1px solid var(--ci-line); border-radius: 20px; background: #fff; box-shadow: 0 15px 45px rgba(16,104,47,.08); overflow: hidden; }
.ci-quick-strip a { display: flex; align-items: center; gap: 13px; padding: 23px; border-right: 1px solid var(--ci-line); color: var(--ci-ink); }
.ci-quick-strip a:last-child { border-right: 0; }
.ci-quick-strip a:hover { background: var(--ci-green-soft); }
.ci-icon { display: grid; width: 45px; height: 45px; flex: 0 0 45px; place-items: center; border-radius: 13px; background: var(--ci-gold-soft); color: var(--ci-green); font-weight: 900; }
.ci-quick-strip strong, .ci-quick-strip small { display: block; }
.ci-quick-strip small { color: var(--ci-muted); }

.ci-section { position: relative; padding: 100px 0; }
.ci-section--soft { background: var(--ci-bg); }
.ci-section--green { background: linear-gradient(135deg, var(--ci-green-deep), var(--ci-green)); color: #fff; }
.ci-section-heading { max-width: 780px; margin-bottom: 45px; }
.ci-section-heading--center { margin-inline: auto; text-align: center; }
.ci-section-heading p { color: var(--ci-muted); }
.ci-section-heading--light h2, .ci-section-heading--light .ci-eyebrow { color: #fff; }
.ci-section-heading--light p { color: rgba(255,255,255,.75); }
.ci-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.ci-product-card { position: relative; padding: 30px; border: 1px solid var(--ci-line); border-radius: 22px; background: #fff; box-shadow: 0 8px 28px rgba(16,104,47,.04); transition: .25s ease; overflow: hidden; }
.ci-product-card::after { content: ""; position: absolute; width: 100px; height: 100px; right: -55px; bottom: -55px; border-radius: 50%; background: var(--ci-gold-soft); transition: .25s ease; }
.ci-product-card:hover { transform: translateY(-7px); border-color: #b9d8c2; box-shadow: var(--ci-shadow); }
.ci-product-card:hover::after { transform: scale(1.5); }
.ci-product-card__icon { display: grid; width: 55px; height: 55px; place-items: center; margin-bottom: 23px; border-radius: 17px; background: var(--ci-green-soft); color: var(--ci-green); font-weight: 900; }
.ci-product-card p { color: var(--ci-muted); font-size: .94rem; }
.ci-product-card a { position: relative; z-index: 2; font-size: .86rem; font-weight: 800; }

.ci-about-home { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.ci-about-home__visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.ci-crown-orbit { display: grid; width: 350px; height: 350px; place-items: center; border: 1px solid #bdd9c4; border-radius: 50%; background: #fff; box-shadow: var(--ci-shadow); }
.ci-crown-orbit::before, .ci-crown-orbit::after { content: ""; position: absolute; border: 1px dashed rgba(16,104,47,.22); border-radius: 50%; }
.ci-crown-orbit::before { width: 430px; height: 430px; }
.ci-crown-orbit::after { width: 500px; height: 500px; }
.ci-crown-orbit img { width: 72%; }
.ci-orbit-label { position: absolute; padding: 9px 14px; border: 1px solid var(--ci-line); border-radius: 99px; background: #fff; color: var(--ci-green); font-size: .78rem; font-weight: 800; box-shadow: 0 10px 25px rgba(16,104,47,.08); }
.ci-orbit-label--one { left: 15px; top: 75px; }
.ci-orbit-label--two { right: 0; top: 170px; }
.ci-orbit-label--three { left: 70px; bottom: 40px; }
.ci-about-home__copy > p { color: var(--ci-muted); }
.ci-mini-values { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 30px 0; }
.ci-mini-values article { padding: 22px; border-left: 4px solid var(--ci-gold); border-radius: 0 16px 16px 0; background: #fff; }
.ci-mini-values strong { color: var(--ci-green); }
.ci-mini-values p { margin: 7px 0 0; color: var(--ci-muted); font-size: .88rem; }

.ci-calculator-promo { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: clamp(50px, 9vw, 120px); padding: 65px; border: 1px solid var(--ci-line); border-radius: 32px; background: linear-gradient(135deg, #fff, var(--ci-gold-soft)); box-shadow: 0 20px 55px rgba(16,104,47,.08); }
.ci-mini-calc { padding: 28px; border-radius: 25px; background: var(--ci-green-dark); color: #fff; box-shadow: 0 26px 60px rgba(4,70,31,.25); transform: rotate(2deg); }
.ci-mini-calc__top { display: flex; gap: 7px; margin-bottom: 28px; }
.ci-mini-calc__top span { width: 9px; height: 9px; border-radius: 50%; background: var(--ci-gold); }
.ci-mini-calc small { color: rgba(255,255,255,.68); }
.ci-mini-calc > strong { display: block; margin: 5px 0 26px; font-size: 2rem; }
.ci-mini-calc__row { display: flex; gap: 8px; }
.ci-mini-calc__row span { flex: 1; padding: 10px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; text-align: center; font-size: .8rem; }
.ci-mini-calc__result { margin-top: 18px; padding: 18px; border-radius: 15px; background: #fff; color: var(--ci-green-dark); }
.ci-mini-calc__result b { display: block; font-size: 1.7rem; }

.ci-values-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; }
.ci-values-grid article { padding: 28px 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 21px; background: rgba(255,255,255,.06); }
.ci-values-grid span { display: inline-block; margin-bottom: 24px; color: var(--ci-gold); font-weight: 900; }
.ci-values-grid h3 { color: #fff; font-size: 1.22rem; }
.ci-values-grid p { margin: 0; color: rgba(255,255,255,.7); font-size: .88rem; }
.ci-steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0; margin-top: 45px; }
.ci-steps article { position: relative; padding: 30px; border-top: 2px solid var(--ci-line); }
.ci-steps article:not(:last-child)::after { content: ""; position: absolute; right: -6px; top: -7px; width: 12px; height: 12px; border-radius: 50%; background: var(--ci-gold); }
.ci-steps span { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 22px; border-radius: 13px; background: var(--ci-green); color: #fff; font-weight: 900; }
.ci-steps p { color: var(--ci-muted); font-size: .92rem; }
.ci-centered-action { margin-top: 30px; text-align: center; }

.ci-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.ci-post-card { overflow: hidden; border: 1px solid var(--ci-line); border-radius: 23px; background: #fff; box-shadow: 0 8px 25px rgba(16,104,47,.05); }
.ci-post-card__visual { height: 210px; display: grid; place-items: center; background: linear-gradient(135deg, var(--ci-green-soft), var(--ci-gold-soft)); color: var(--ci-green); font-family: var(--ci-font-display); font-size: 2rem; font-weight: 900; }
.ci-post-card__visual img { width: 100%; height: 100%; object-fit: cover; }
.ci-post-card__body { padding: 27px; }
.ci-post-card small { color: var(--ci-green); font-weight: 800; }
.ci-post-card h2, .ci-post-card h3 { margin-top: 9px; font-size: 1.45rem; }
.ci-post-card h2 a, .ci-post-card h3 a { color: var(--ci-green-dark); }
.ci-post-card p { color: var(--ci-muted); font-size: .92rem; }
.ci-post-grid--archive { row-gap: 34px; }
.ci-pagination { margin-top: 45px; }

.ci-cta { padding: 65px 0; background: linear-gradient(105deg, var(--ci-green-dark), var(--ci-green) 62%, #168b45); color: #fff; }
.ci-cta::after { content: ""; position: absolute; right: 0; width: 28%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255,216,99,.22)); }
.ci-cta { position: relative; overflow: hidden; }
.ci-cta__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.ci-cta h2, .ci-cta .ci-eyebrow { color: #fff; }
.ci-cta h2 { max-width: 760px; font-size: clamp(2rem, 3.4vw, 3.35rem); }
.ci-cta p { margin-bottom: 0; color: rgba(255,255,255,.75); }
.ci-cta--inside { margin-top: 0; }

.ci-page-hero { position: relative; padding: 105px 0 78px; background: linear-gradient(135deg, #f7fbf8, #fff9e8); overflow: hidden; }
.ci-page-hero::after { content: ""; position: absolute; right: -130px; top: -120px; width: 420px; height: 420px; border: 1px solid rgba(16,104,47,.11); border-radius: 50%; box-shadow: 0 0 0 70px rgba(16,104,47,.035), 0 0 0 140px rgba(255,216,99,.06); }
.ci-page-hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 250px; align-items: center; gap: 45px; }
.ci-page-hero__copy { max-width: 870px; }
.ci-page-hero h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
.ci-page-hero p { max-width: 780px; color: var(--ci-muted); font-size: 1.17rem; }
.ci-page-hero__mark { justify-self: end; display: grid; width: 190px; height: 190px; place-items: center; border: 1px solid var(--ci-line); border-radius: 50%; background: rgba(255,255,255,.8); box-shadow: var(--ci-shadow); text-align: center; }
.ci-page-hero__mark span { display: block; color: var(--ci-gold-dark); font-size: 4rem; line-height: 1; }
.ci-page-hero__mark small { color: var(--ci-green); font-weight: 900; letter-spacing: .08em; }
.ci-page-hero--compact, .ci-page-hero--article { padding-block: 88px 65px; }
.ci-page-hero--center { text-align: center; }
.ci-page-content > .ci-section:first-child { padding-top: 90px; }
.ci-split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: center; gap: clamp(45px, 8vw, 100px); }
.ci-content-cards { display: grid; gap: 22px; margin-top: 42px; }
.ci-content-cards--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.ci-content-cards--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.ci-content-cards--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.ci-content-cards article { padding: 32px; border: 1px solid var(--ci-line); border-radius: 22px; background: #fff; box-shadow: 0 8px 28px rgba(16,104,47,.04); }
.ci-content-cards article > span { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 22px; border-radius: 14px; background: var(--ci-gold-soft); color: var(--ci-green); font-size: .78rem; font-weight: 900; }
.ci-content-cards p { color: var(--ci-muted); }
.ci-brand-panel, .ci-product-detail-card, .ci-associate-card { padding: 36px; border: 1px solid var(--ci-line); border-radius: 28px; background: #fff; box-shadow: var(--ci-shadow); }
.ci-brand-panel { text-align: center; }
.ci-brand-panel img { width: 280px; }
.ci-brand-panel p { color: var(--ci-muted); }
.ci-highlight-box { padding: 35px; border-radius: 25px; background: var(--ci-green-dark); color: #fff; box-shadow: var(--ci-shadow); }
.ci-highlight-box--gold { background: var(--ci-gold); color: var(--ci-green-dark); }
.ci-highlight-box strong { font-family: var(--ci-font-display); font-size: 1.8rem; }
.ci-highlight-box li { margin-block: 9px; }
.ci-check-list { padding: 0; list-style: none; }
.ci-check-list li { position: relative; margin: 11px 0; padding-left: 30px; }
.ci-check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; background: var(--ci-green-soft); color: var(--ci-green); font-size: .75rem; font-weight: 900; }
.ci-associate-card > span { display: grid; width: 65px; height: 65px; place-items: center; border-radius: 19px; background: var(--ci-gold); color: var(--ci-green-dark); font-size: 2rem; }
.ci-associate-card li { margin-block: 10px; }
.ci-product-detail-card > span { color: var(--ci-green); font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.ci-product-detail-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0; list-style: none; }
.ci-product-detail-card li { padding: 12px; border-radius: 10px; background: var(--ci-green-soft); color: var(--ci-green-dark); font-weight: 700; }
.ci-alert { margin-top: 35px; padding: 20px 23px; border-radius: 16px; }
.ci-alert--note { border: 1px solid #ecd77f; background: var(--ci-gold-soft); color: #554610; }
.ci-alert--success { margin: 0 0 22px; border: 1px solid #a7d7b4; background: var(--ci-green-soft); color: var(--ci-green-dark); }
.ci-alert--error { margin: 0 0 22px; border: 1px solid #edb4b4; background: #fff1f1; color: #7c1717; }
.ci-faq { max-width: 900px; margin-inline: auto; }
.ci-faq details { margin-bottom: 14px; border: 1px solid var(--ci-line); border-radius: 16px; background: #fff; }
.ci-faq summary { padding: 20px 24px; color: var(--ci-green-dark); font-weight: 850; cursor: pointer; }
.ci-faq p { padding: 0 24px 20px; color: var(--ci-muted); }

.ci-calculator { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; max-width: 980px; margin-inline: auto; padding: 28px; border: 1px solid var(--ci-line); border-radius: 30px; background: #fff; box-shadow: var(--ci-shadow); }
.ci-calculator__form { padding: 25px; }
.ci-calculator__form > p { color: var(--ci-muted); }
.ci-calculator label, .ci-form label { display: block; color: #304b3a; font-size: .87rem; font-weight: 780; }
.ci-calculator input, .ci-form input, .ci-form select, .ci-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #cfded3; border-radius: 11px; background: #fff; color: var(--ci-ink); outline: none; }
.ci-calculator input:focus, .ci-form input:focus, .ci-form select:focus, .ci-form textarea:focus { border-color: var(--ci-green); box-shadow: 0 0 0 3px rgba(16,104,47,.1); }
.ci-calculator__form > label { margin-bottom: 17px; }
.ci-calculator__result { display: flex; flex-direction: column; justify-content: center; padding: 38px; border-radius: 23px; background: linear-gradient(135deg, var(--ci-green-dark), var(--ci-green)); color: #fff; }
.ci-calculator__result > span { color: rgba(255,255,255,.72); }
.ci-calculator__result > strong { margin: 7px 0 30px; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1; }
.ci-calculator dl { margin: 0 0 25px; }
.ci-calculator dl div { display: flex; justify-content: space-between; gap: 18px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.15); }
.ci-calculator dd { margin: 0; font-weight: 800; }
.ci-calculator__result small { color: rgba(255,255,255,.66); }
.ci-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 16px; }
.ci-contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 25px; }
.ci-contact-card { padding: 36px; border: 1px solid var(--ci-line); border-radius: 25px; background: #fff; box-shadow: 0 10px 35px rgba(16,104,47,.06); }
.ci-contact-card--info { background: linear-gradient(145deg, var(--ci-green-dark), var(--ci-green)); color: #fff; }
.ci-contact-card--info h2, .ci-contact-card--info .ci-eyebrow { color: #fff; }
.ci-contact-card--info > p { color: rgba(255,255,255,.72); }
.ci-contact-list { display: grid; gap: 11px; margin-top: 35px; }
.ci-contact-list a, .ci-contact-list div { display: flex; flex-direction: column; padding: 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; color: #fff; background: rgba(255,255,255,.05); }
.ci-contact-list span { color: rgba(255,255,255,.72); font-size: .88rem; }
.ci-form label > span { color: #b11d1d; }
.ci-form textarea { resize: vertical; }
.ci-consent { display: flex!important; align-items: flex-start; gap: 10px; margin: 16px 0; font-weight: 500!important; }
.ci-consent input { width: auto!important; margin: 4px 0 0!important; }
.ci-honeypot { position: absolute; left: -9999px; }

.ci-article { padding: 75px 0 100px; }
.ci-article__inner { max-width: 880px; }
.ci-article__image { margin-bottom: 42px; overflow: hidden; border-radius: 25px; }
.ci-prose { max-width: 860px; color: #35493d; }
.ci-prose--narrow { margin: 60px auto 0; }
.ci-prose h2 { margin-top: 1.5em; font-size: 2.2rem; }
.ci-prose h3 { margin-top: 1.35em; }
.ci-prose li { margin-block: 8px; }

.ci-footer { padding: 72px 0 0; background: #f4f8f5; border-top: 1px solid var(--ci-line); }
.ci-footer__grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr; gap: 50px; }
.ci-footer__brand img { width: 180px; }
.ci-footer__brand p { max-width: 360px; color: var(--ci-muted); font-size: .9rem; }
.ci-footer__quote { color: var(--ci-green)!important; font-weight: 750; }
.ci-footer h2 { font-size: 1.08rem; font-family: var(--ci-font-body); }
.ci-footer ul { margin: 0; padding: 0; list-style: none; }
.ci-footer li { margin-bottom: 9px; }
.ci-footer a, .ci-footer span { color: var(--ci-muted); font-size: .88rem; }
.ci-footer a:hover { color: var(--ci-green); }
.ci-footer__contact { display: flex; flex-direction: column; gap: 8px; }
.ci-socials { display: flex; gap: 12px; margin-top: 10px; }
.ci-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding: 22px 0; border-top: 1px solid var(--ci-line); }
.ci-whatsapp { position: fixed; z-index: 999; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; padding: 13px 18px; border-radius: 99px; background: #1fbf58; color: #fff; box-shadow: 0 14px 35px rgba(11,109,48,.32); font-size: .85rem; font-weight: 850; }
.ci-whatsapp::before { content: "☎"; display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: #fff; color: #1b9a4c; }
.ci-whatsapp:hover { color: #fff; transform: translateY(-2px); }

.ci-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.ci-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .ci-header__actions .ci-button--soft { display: none; }
  .ci-menu { gap: 14px; }
  .ci-product-grid, .ci-values-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ci-footer__grid { grid-template-columns: 1.25fr 1fr 1fr; }
  .ci-footer__contact { grid-column: 2 / -1; }
}

@media (max-width: 900px) {
  .admin-bar .ci-header.is-scrolled { top: 46px; }
  .ci-header__inner { min-height: 78px; }
  .ci-brand { flex-basis: 120px; }
  .ci-brand img, .ci-brand .custom-logo { max-height: 62px; }
  .ci-menu-toggle { display: block; margin-left: auto; }
  .ci-nav { position: fixed; inset: 0; z-index: 1100; display: none; padding: 115px 26px 40px; background: rgba(255,255,255,.98); overflow-y: auto; }
  .ci-nav.is-open { display: block; }
  .ci-menu { display: block; }
  .ci-menu a { padding: 14px 0; border-bottom: 1px solid var(--ci-line); font-size: 1.05rem; }
  .ci-menu .sub-menu { position: static; min-width: 0; padding: 0 0 0 18px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .ci-header__actions { display: none; }
  .ci-menu-toggle { position: relative; z-index: 1200; }
  .ci-hero__inner, .ci-about-home, .ci-calculator-promo, .ci-page-hero__inner, .ci-split, .ci-calculator, .ci-contact-grid { grid-template-columns: 1fr; }
  .ci-hero { padding-top: 30px; }
  .ci-hero__copy { padding-bottom: 25px; }
  .ci-hero__visual { min-height: 520px; }
  .ci-float-card--save { left: 0; }
  .ci-float-card--community { right: 0; }
  .ci-quick-strip { margin-top: 0; padding-top: 30px; }
  .ci-quick-strip__grid { grid-template-columns: 1fr 1fr; }
  .ci-quick-strip a:nth-child(2) { border-right: 0; }
  .ci-quick-strip a:nth-child(-n+2) { border-bottom: 1px solid var(--ci-line); }
  .ci-values-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ci-steps { grid-template-columns: 1fr 1fr; }
  .ci-post-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ci-page-hero__mark { display: none; }
  .ci-content-cards--4, .ci-content-cards--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ci-footer__grid { grid-template-columns: 1fr 1fr; }
  .ci-footer__contact { grid-column: auto; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .ci-container { width: min(100% - 28px, 1180px); }
  .ci-topbar { display: none; }
  .ci-hero h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .ci-hero__trust { grid-template-columns: 1fr; }
  .ci-hero__visual { min-height: 430px; }
  .ci-hero__image-wrap img { height: 430px; }
  .ci-float-card { max-width: 185px; padding: 12px; }
  .ci-float-card--save { top: 40px; }
  .ci-float-card--community { bottom: 15px; }
  .ci-quick-strip__grid, .ci-product-grid, .ci-values-grid, .ci-steps, .ci-post-grid, .ci-content-cards--2, .ci-content-cards--3, .ci-content-cards--4, .ci-mini-values, .ci-form-row, .ci-footer__grid { grid-template-columns: 1fr; }
  .ci-quick-strip a { border-right: 0; border-bottom: 1px solid var(--ci-line); }
  .ci-quick-strip a:last-child { border-bottom: 0; }
  .ci-section { padding: 72px 0; }
  .ci-crown-orbit { width: 270px; height: 270px; }
  .ci-crown-orbit::before { width: 330px; height: 330px; }
  .ci-crown-orbit::after { width: 390px; height: 390px; }
  .ci-about-home__visual { min-height: 390px; }
  .ci-orbit-label { font-size: .68rem; }
  .ci-calculator-promo { padding: 28px; }
  .ci-cta__inner { display: block; }
  .ci-cta .ci-actions { margin-top: 26px; }
  .ci-page-hero { padding: 75px 0 55px; }
  .ci-page-hero h1 { font-size: 2.75rem; }
  .ci-product-detail-card ul { grid-template-columns: 1fr; }
  .ci-calculator { padding: 15px; }
  .ci-calculator__form, .ci-calculator__result, .ci-contact-card { padding: 25px; }
  .ci-footer__bottom { display: block; }
  .ci-footer__bottom a { display: block; margin-top: 9px; }
  .ci-whatsapp span { display: none; }
  .ci-whatsapp { padding: 10px; }
}

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


/* CoopSmart GT Pro integration - v1.1.0 */
.ci-financial-tool { max-width: 1180px; margin-inline: auto; padding: clamp(24px, 4vw, 48px); border: 1px solid var(--ci-line); border-radius: 32px; background: linear-gradient(145deg, #fff 0%, #fbfff9 72%, var(--ci-gold-soft) 100%); box-shadow: var(--ci-shadow); }
.ci-financial-tool__heading { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.ci-financial-tool__heading h2 { margin: 7px 0 10px; }
.ci-financial-tool__heading p { max-width: 740px; margin: 0; color: var(--ci-muted); }
.ci-financial-tool__badge { min-width: 150px; padding: 18px; border-radius: 22px; background: var(--ci-green-dark); color: #fff; text-align: center; box-shadow: 0 18px 35px rgba(4,70,31,.18); }
.ci-financial-tool__badge span { display: grid; place-items: center; width: 42px; height: 42px; margin: 0 auto 7px; border-radius: 50%; background: var(--ci-gold); color: var(--ci-green-dark); font-weight: 900; }
.ci-financial-tool__badge strong, .ci-financial-tool__badge small { display: block; }
.ci-financial-tool__badge small { color: rgba(255,255,255,.72); }
.ci-financial-tool__embed { overflow: hidden; border-radius: 24px; background: #fff; }
.ci-financial-tool__placeholder { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 24px; min-height: 280px; padding: clamp(28px, 5vw, 58px); border: 2px dashed rgba(16,104,47,.25); border-radius: 24px; background: rgba(255,255,255,.75); }
.ci-financial-tool__placeholder-icon { display: grid; place-items: center; width: 92px; height: 92px; border-radius: 28px; background: linear-gradient(145deg, var(--ci-green), var(--ci-green-dark)); color: var(--ci-gold); font-size: 2.25rem; font-weight: 900; box-shadow: 0 18px 35px rgba(16,104,47,.2); }
.ci-financial-tool__placeholder h3 { margin: 0 0 8px; }
.ci-financial-tool__placeholder p { margin: 6px 0; color: var(--ci-muted); }
.ci-financial-tool__placeholder a { color: var(--ci-green); font-weight: 850; }
.ci-financial-tool__admin-note { margin-top: 15px !important; padding: 12px 14px; border-radius: 10px; background: var(--ci-gold-soft); color: var(--ci-ink) !important; }
.ci-financial-tool__admin-note code { padding: 2px 5px; border-radius: 5px; background: #fff; }
.ci-financial-tool__legal { margin: 20px 0 0; color: var(--ci-muted); font-size: .78rem; text-align: center; }
@media (max-width: 700px) {
  .ci-financial-tool__heading { align-items: flex-start; flex-direction: column; }
  .ci-financial-tool__badge { display: none; }
  .ci-financial-tool__placeholder { grid-template-columns: 1fr; text-align: center; }
  .ci-financial-tool__placeholder-icon { margin-inline: auto; }
}
