:root {
  --navy: #17284a;
  --navy-deep: #0b1730;
  --navy-soft: #263e69;
  --gold: #d2aa40;
  --gold-deep: #b88b18;
  --gold-pale: #fff7df;
  --ink: #10213f;
  --muted: #68758b;
  --surface: #f4f7fb;
  --surface-warm: #fbfaf7;
  --line: #dfe6ef;
  --white: #fff;
  --green: #13a56d;
  --red: #e25757;
  --shadow: 0 24px 70px rgba(17, 36, 70, .14);
  --shadow-soft: 0 12px 35px rgba(17, 36, 70, .08);
  --radius: 22px;
  --header-height: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body { margin: 0; color: var(--ink); background: var(--white); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.modal-open, body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.oc-container { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.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; }
.skip-link { position: fixed; z-index: 9999; left: 18px; top: 12px; transform: translateY(-150%); padding: 11px 16px; border-radius: 8px; color: var(--white); background: var(--navy); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }
.oc-icon { width: 20px; height: 20px; flex: 0 0 auto; }

/* Header */
.site-header { position: sticky; z-index: 1000; top: 0; height: var(--header-height); color: var(--white); background: rgba(12, 27, 54, .96); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(18px); transition: box-shadow .25s ease, background .25s ease; }
.site-header.is-scrolled { background: rgba(11, 23, 48, .985); box-shadow: 0 14px 45px rgba(5, 14, 30, .2); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; color: var(--white); font-weight: 900; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(210,170,64,.8); border-radius: 12px; color: var(--gold); background: rgba(210,170,64,.08); }
.brand-mark .oc-icon { width: 24px; height: 24px; }
.brand-name { font-size: 25px; letter-spacing: -.04em; }
.brand-name strong { color: var(--gold); }
.custom-logo-wrap, .custom-logo-wrap a { display: inline-flex; align-items: center; }
.custom-logo-wrap img { width: auto; max-width: 220px; max-height: 50px; object-fit: contain; }
.primary-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-list a { position: relative; display: block; padding: 24px 0; color: rgba(255,255,255,.8); font-size: 13px; font-weight: 750; }
.nav-list a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 17px; height: 2px; border-radius: 2px; background: var(--gold); transition: right .2s ease; }
.nav-list a:hover, .nav-list a:focus, .nav-list a.is-active { color: var(--white); }
.nav-list a:hover::after, .nav-list a:focus::after, .nav-list a.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 43px; height: 43px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; color: var(--white); background: transparent; cursor: pointer; }

/* Buttons */
.button { min-height: 47px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 20px; border: 1px solid transparent; border-radius: 11px; cursor: pointer; font-size: 13px; font-weight: 850; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover, .button:focus { transform: translateY(-2px); }
.button-small { min-height: 41px; padding: 10px 16px; font-size: 12px; }
.button-large { min-height: 54px; padding: 15px 24px; font-size: 14px; }
.button-gold { color: #fff; background: linear-gradient(135deg, #dfb83f, #c79720); box-shadow: 0 12px 28px rgba(185, 139, 24, .24); }
.button-gold:hover, .button-gold:focus { box-shadow: 0 16px 34px rgba(185, 139, 24, .34); }
.button-whatsapp { color: #087f54; background: #fff; border-color: #2fc48d; }
.button-whatsapp:hover, .button-whatsapp:focus { color: #fff; background: #0fa66d; border-color: #0fa66d; box-shadow: 0 12px 28px rgba(15,166,109,.2); }
.button-white { color: var(--navy); background: #fff; }
.button-ghost { color: rgba(255,255,255,.8); background: transparent; border-color: rgba(255,255,255,.25); }
.button-ghost:hover { color: #fff; border-color: rgba(255,255,255,.5); }
.button-outline-dark { color: var(--navy); background: transparent; border-color: #b9c4d4; }
.button-outline-dark:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Headings */
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .15em; font-size: 11px; font-weight: 900; }
.section-heading h2 { max-width: 780px; margin: 14px 0 18px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 5vw, 62px); line-height: 1.03; letter-spacing: -.045em; }
.section-heading p { max-width: 700px; margin: 0; color: var(--muted); font-size: 17px; }
.section-heading.centered { text-align: center; }
.section-heading.centered h2, .section-heading.centered p { margin-left: auto; margin-right: auto; }
.section-heading.narrow { max-width: 820px; margin-inline: auto; }
.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: rgba(255,255,255,.68); }

/* Hero */
.hero-section { position: relative; overflow: hidden; padding: 84px 0 0; background: linear-gradient(180deg, #fff 0%, #f8faff 100%); }
.hero-grid-pattern { position: absolute; inset: 0; opacity: .24; background-image: radial-gradient(#c5b176 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(90deg, #000, transparent 58%); pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 420px; height: 420px; right: -190px; top: 70px; background: rgba(210,170,64,.11); }
.hero-orb-two { width: 280px; height: 280px; left: -180px; bottom: 20px; border: 1px solid rgba(23,40,74,.08); box-shadow: 0 0 0 45px rgba(23,40,74,.02), 0 0 0 90px rgba(23,40,74,.015); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .88fr 1.12fr; gap: 58px; align-items: center; min-height: 650px; }
.hero-copy { padding: 24px 0 70px; }
.hero-copy h1 { margin: 20px 0 23px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 6vw, 82px); line-height: .98; letter-spacing: -.055em; }
.hero-copy h1 em { display: block; color: var(--gold-deep); font-style: normal; }
.hero-description { max-width: 610px; margin: 0; color: #5e6c84; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 30px; }
.hero-trust-row > span { display: grid; grid-template-columns: 34px 1fr; column-gap: 10px; align-items: center; padding: 12px; border: 1px solid #e1e7ef; border-radius: 14px; color: var(--navy); background: rgba(255,255,255,.72); box-shadow: 0 8px 24px rgba(23,40,74,.04); }
.hero-trust-row .oc-icon { grid-row: span 2; color: var(--gold-deep); }
.hero-trust-row b { font-size: 12px; line-height: 1.1; }
.hero-trust-row small { color: #7d889b; font-size: 10px; line-height: 1.2; }
.hero-visual { position: relative; min-height: 600px; }
.hero-dashboard-card { position: absolute; z-index: 1; left: 0; right: 35px; top: 28px; overflow: hidden; border: 1px solid #dce3ed; border-radius: 19px; background: #fff; box-shadow: 0 30px 80px rgba(13,32,65,.18); transform: perspective(1600px) rotateY(-3deg) rotateX(1deg); transform-origin: right center; }
.browser-bar { height: 38px; display: flex; align-items: center; gap: 6px; padding: 0 14px; color: #6f7a8e; background: #f2f5f9; border-bottom: 1px solid #e2e7ee; }
.browser-bar span { width: 8px; height: 8px; border-radius: 50%; background: #d3dae4; }
.browser-bar span:first-child { background: #ef7e77; }
.browser-bar span:nth-child(2) { background: #e7bf58; }
.browser-bar span:nth-child(3) { background: #67bd87; }
.browser-bar b { margin-left: 8px; font-size: 10px; font-weight: 750; }
.hero-dashboard-card img { width: 100%; aspect-ratio: 1600 / 808; object-fit: cover; object-position: top left; }
.hero-phone, .mobile-device { position: absolute; overflow: hidden; border: 8px solid #0d182c; border-radius: 32px; background: #fff; box-shadow: 0 25px 55px rgba(11,23,48,.28); }
.hero-phone img, .mobile-device img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.phone-speaker { position: absolute; z-index: 3; left: 50%; top: 7px; width: 34%; height: 6px; transform: translateX(-50%); border-radius: 8px; background: #0d182c; }
.hero-phone-one { z-index: 3; width: 164px; height: 362px; right: -2px; bottom: 30px; transform: rotate(2.5deg); }
.hero-phone-two { z-index: 2; width: 130px; height: 285px; right: 132px; bottom: -10px; transform: rotate(-6deg); opacity: .96; }
.floating-signal { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.75); border-radius: 13px; background: rgba(255,255,255,.88); box-shadow: 0 15px 35px rgba(17,36,70,.15); backdrop-filter: blur(14px); }
.floating-signal .oc-icon { color: var(--gold-deep); }
.floating-signal strong, .floating-signal small { display: block; line-height: 1.2; }
.floating-signal strong { color: var(--navy); font-size: 11px; }
.floating-signal small { color: #7b8798; font-size: 9px; }
.signal-one { left: -28px; bottom: 80px; }
.signal-two { right: 50px; top: 0; }
.hero-bottom-strip { position: relative; z-index: 3; display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 78px; color: #7a8495; border-top: 1px solid #e5eaf1; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .11em; }
.hero-bottom-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* About */
.about-section { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 80px; align-items: end; }
.about-copy > p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.8; }
.about-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; }
.about-links a { display: inline-flex; align-items: center; gap: 7px; color: var(--navy); font-size: 13px; font-weight: 850; }
.about-links .oc-icon { color: var(--gold-deep); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 58px; }
.stats-grid article { position: relative; overflow: hidden; min-height: 145px; padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.stats-grid article::after { content: ""; position: absolute; right: -25px; bottom: -40px; width: 120px; height: 120px; border-radius: 50%; background: rgba(210,170,64,.12); }
.stats-grid strong { display: block; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 46px; line-height: 1; letter-spacing: -.05em; }
.stats-grid span { display: block; margin-top: 12px; color: #6c778b; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 16px; }
.value-grid article { min-height: 190px; padding: 27px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.value-grid article:hover { transform: translateY(-5px); border-color: #c8d3e1; box-shadow: var(--shadow-soft); }
.value-grid article > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: var(--gold-deep); background: var(--gold-pale); }
.value-grid h3 { margin: 20px 0 7px; color: var(--navy); font-size: 19px; }
.value-grid p { margin: 0; color: var(--muted); font-size: 13px; }

/* Features */
.features-section { overflow: hidden; color: #fff; background: linear-gradient(135deg, #0b1730, #17284a 58%, #203d6e); }
.features-glow { position: absolute; width: 540px; height: 540px; right: -180px; top: -240px; border-radius: 50%; background: rgba(210,170,64,.15); filter: blur(4px); }
.features-section .section-heading h2 { color: #fff; }
.features-section .section-heading p { color: rgba(255,255,255,.68); }
.feature-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 52px; }
.feature-card { position: relative; min-height: 285px; overflow: hidden; padding: 27px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.055); backdrop-filter: blur(12px); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.feature-card::before { content: ""; position: absolute; width: 130px; height: 130px; right: -75px; bottom: -75px; border-radius: 50%; background: rgba(210,170,64,.12); transition: transform .3s ease; }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(210,170,64,.5); background: rgba(255,255,255,.085); }
.feature-card:hover::before { transform: scale(1.5); }
.feature-card-top { display: flex; justify-content: space-between; align-items: center; }
.feature-card-top small { color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; font-weight: 900; }
.feature-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; color: var(--gold); background: rgba(210,170,64,.13); }
.feature-icon .oc-icon { width: 25px; height: 25px; }
.feature-card h3 { max-width: 220px; margin: 25px 0 10px; color: #fff; font-size: 21px; line-height: 1.2; }
.feature-card p { margin: 0; color: rgba(255,255,255,.64); font-size: 13px; }
.feature-arrow { position: absolute; right: 22px; bottom: 21px; color: var(--gold); opacity: .65; transform: translateX(-5px); transition: transform .2s ease, opacity .2s ease; }
.feature-card:hover .feature-arrow { opacity: 1; transform: translateX(0); }

/* Platform showcase */
.platform-section { background: var(--surface); }
.showcase-heading { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: end; }
.showcase-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 17px; }
.showcase-shell { margin-top: 48px; overflow: hidden; border: 1px solid #d9e1ec; border-radius: 25px; background: #fff; box-shadow: var(--shadow); }
.showcase-tabs { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid #e1e7ef; background: #f8fafd; }
.showcase-tabs button { position: relative; display: flex; align-items: center; gap: 12px; padding: 21px 25px; border: 0; border-right: 1px solid #e1e7ef; color: #728096; background: transparent; cursor: pointer; text-align: left; font-size: 12px; font-weight: 850; }
.showcase-tabs button:last-child { border-right: 0; }
.showcase-tabs button::after { content: ""; position: absolute; left: 22px; right: 100%; bottom: -1px; height: 3px; background: var(--gold); transition: right .25s ease; }
.showcase-tabs button span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: #fff; border: 1px solid #dce3ec; font-size: 10px; }
.showcase-tabs button.is-active { color: var(--navy); background: #fff; }
.showcase-tabs button.is-active::after { right: 22px; }
.showcase-tabs button.is-active span { color: #fff; border-color: var(--gold-deep); background: var(--gold-deep); }
.showcase-stage { position: relative; min-height: 680px; padding: 42px; }
.showcase-panel { animation: panelIn .35s ease both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.showcase-browser { overflow: hidden; border: 1px solid #dce3ed; border-radius: 17px; background: #fff; box-shadow: 0 18px 50px rgba(17,36,70,.13); }
.showcase-browser img { width: 100%; max-height: 540px; object-fit: cover; object-position: top left; }
.showcase-caption { display: grid; grid-template-columns: .5fr 1fr; gap: 30px; align-items: start; padding: 26px 4px 0; }
.showcase-caption strong { color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 24px; }
.showcase-caption p { margin: 0; color: var(--muted); font-size: 14px; }
.mobile-showcase-pair { position: relative; min-height: 520px; display: flex; justify-content: center; align-items: center; gap: 35px; overflow: hidden; border-radius: 18px; background: radial-gradient(circle at center, rgba(210,170,64,.13), transparent 45%), linear-gradient(135deg, #eef3f9, #f9fbfd); }
.mobile-showcase-pair::before { content: ""; position: absolute; width: 560px; height: 560px; border: 1px solid rgba(23,40,74,.08); border-radius: 50%; box-shadow: 0 0 0 55px rgba(23,40,74,.025), 0 0 0 110px rgba(23,40,74,.018); }
.mobile-device { position: relative; width: 250px; height: 480px; transform: rotate(-4deg); }
.mobile-device-forward { transform: translateY(-12px) rotate(4deg); }
.insight-layout { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 16px; min-height: 500px; }
.insight-card { display: flex; flex-direction: column; padding: 27px; border: 1px solid #dfe5ed; border-radius: 18px; background: #f9fbfd; }
.insight-card > span { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: auto; border-radius: 14px; color: var(--gold-deep); background: var(--gold-pale); }
.insight-card small { margin-top: 30px; color: #7a8799; text-transform: uppercase; letter-spacing: .1em; font-size: 9px; font-weight: 900; }
.insight-card strong { margin: 8px 0; color: var(--navy); font-size: 21px; line-height: 1.2; }
.insight-card p { margin: 0; color: var(--muted); font-size: 12px; }
.insight-primary { grid-row: span 2; color: #fff; background: linear-gradient(150deg, var(--navy-deep), var(--navy-soft)); border-color: transparent; }
.insight-primary > span { color: var(--gold); background: rgba(210,170,64,.14); }
.insight-primary small, .insight-primary p { color: rgba(255,255,255,.65); }
.insight-primary strong { color: #fff; font-size: 27px; }
.insight-wide { grid-column: span 2; }

/* How it works */
.how-section { background: #fff; }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; margin-top: 62px; }
.steps-grid::before { content: ""; position: absolute; left: 16%; right: 16%; top: 53px; height: 1px; background: linear-gradient(90deg, transparent, #cad3df 15%, #cad3df 85%, transparent); }
.steps-grid article { position: relative; padding: 0 34px; text-align: center; }
.step-icon { position: relative; z-index: 1; width: 106px; height: 106px; display: grid; place-items: center; margin: 0 auto 26px; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); background: #fff; box-shadow: var(--shadow-soft); }
.step-icon .oc-icon { width: 39px; height: 39px; }
.step-number { position: absolute; z-index: 2; top: -6px; left: calc(50% + 31px); width: 31px; height: 31px; display: grid; place-items: center; border: 4px solid #fff; border-radius: 50%; color: #fff; background: var(--gold-deep); font-size: 9px; font-weight: 900; }
.steps-grid h3 { margin: 0 0 10px; color: var(--navy); font-size: 21px; }
.steps-grid p { margin: 0; color: var(--muted); font-size: 14px; }

/* Audience */
.audience-section { overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--navy-deep), var(--navy) 65%, #244375); }
.audience-pattern { position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(rgba(255,255,255,.65) 1px, transparent 1px); background-size: 28px 28px; mask-image: radial-gradient(circle at right, #000, transparent 65%); }
.audience-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.audience-grid .section-heading .button { margin-top: 30px; }
.audience-list { display: grid; gap: 12px; }
.audience-list article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: center; padding: 20px 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); transition: transform .2s ease, border-color .2s ease; }
.audience-list article:hover { transform: translateX(6px); border-color: rgba(210,170,64,.42); }
.audience-list article > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; color: var(--gold); background: rgba(210,170,64,.12); }
.audience-list h3 { margin: 0 0 3px; font-size: 17px; }
.audience-list p { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; }


/* Audience section contrast hardening (v2.5.1)
   Explicit colours prevent WordPress global styles, optimisation plugins,
   and cached CSS from making role-card copy dark on the navy background. */
.audience-section,
.audience-section .audience-grid,
.audience-section .section-heading,
.audience-section .audience-list,
.audience-section .audience-list article,
.audience-section .audience-list article > div {
  color: #ffffff !important;
}
.audience-section .kicker {
  color: #e8bd42 !important;
  opacity: 1 !important;
}
.audience-section .section-heading.light h2,
.audience-section .section-heading h2 {
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 2px 18px rgba(0,0,0,.14) !important;
}
.audience-section .section-heading.light p,
.audience-section .section-heading p {
  color: rgba(255,255,255,.80) !important;
  opacity: 1 !important;
}
.audience-section .audience-list article {
  border-color: rgba(255,255,255,.20) !important;
  background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.075)) !important;
  box-shadow: 0 14px 34px rgba(3,12,29,.18) !important;
}
.audience-section .audience-list article:hover,
.audience-section .audience-list article:focus-within {
  border-color: rgba(232,189,66,.58) !important;
  background: linear-gradient(135deg, rgba(255,255,255,.17), rgba(255,255,255,.10)) !important;
}
.audience-section .audience-list article > span {
  color: #e8bd42 !important;
  background: rgba(232,189,66,.15) !important;
  border: 1px solid rgba(232,189,66,.20);
}
.audience-section .audience-list h3,
.audience-section .audience-list article h3 {
  margin: 0 0 4px;
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  text-shadow: 0 1px 10px rgba(0,0,0,.10);
}
.audience-section .audience-list p,
.audience-section .audience-list article p {
  margin: 0;
  color: rgba(255,255,255,.82) !important;
  opacity: 1 !important;
  font-size: 13px;
  line-height: 1.55;
}

/* Pricing */
.pricing-section { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 54px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 35px; border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { color: #fff; border-color: transparent; background: linear-gradient(145deg, var(--navy-deep), var(--navy)); transform: translateY(-13px); box-shadow: 0 25px 65px rgba(15,31,63,.24); }
.price-card.featured:hover { transform: translateY(-18px); }
.popular { position: absolute; left: 30px; right: 30px; top: -13px; padding: 7px 10px; border-radius: 999px; color: #fff; background: var(--gold-deep); text-align: center; text-transform: uppercase; letter-spacing: .1em; font-size: 9px; font-weight: 900; }
.plan-number { color: var(--gold-deep); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.featured .plan-number { color: var(--gold); }
.price-card h3 { margin: 14px 0 10px; color: var(--navy); font-size: 24px; }
.featured h3 { color: #fff; }
.price { margin: 0 0 11px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 34px; font-weight: 800; letter-spacing: -.04em; }
.featured .price { color: var(--gold); }
.plan-text { min-height: 65px; margin: 0; color: var(--muted); font-size: 13px; }
.featured .plan-text { color: rgba(255,255,255,.64); }
.price-card ul { flex: 1; list-style: none; margin: 25px 0 30px; padding: 20px 0; border-top: 1px solid #e7ebf1; border-bottom: 1px solid #e7ebf1; }
.featured ul { border-color: rgba(255,255,255,.12); }
.price-card li { display: flex; gap: 9px; align-items: flex-start; padding: 7px 0; color: var(--muted); font-size: 13px; }
.featured li { color: rgba(255,255,255,.75); }
.price-card li .oc-icon { width: 17px; height: 17px; color: var(--gold-deep); }
.featured li .oc-icon { color: var(--gold); }
.price-card .button { width: 100%; }

/* FAQ */
.faq-section { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.faq-grid .section-heading .button { margin-top: 28px; }
.accordion { overflow: hidden; border: 1px solid #dbe3ed; border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); }
.accordion-item { border-bottom: 1px solid #e1e7ef; }
.accordion-item:last-child { border-bottom: 0; }
.accordion-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 23px 25px; border: 0; color: var(--navy); background: transparent; text-align: left; cursor: pointer; font-size: 16px; font-weight: 850; }
.accordion-item button b { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #ccd6e2; border-radius: 50%; color: var(--gold-deep); font-size: 19px; transition: transform .2s ease, background .2s ease, color .2s ease; }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.accordion-panel > div { min-height: 0; overflow: hidden; }
.accordion-panel p { margin: 0; padding: 0 65px 0 25px; color: var(--muted); font-size: 14px; transition: padding .28s ease; }
.accordion-item.open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.open .accordion-panel p { padding-bottom: 25px; }
.accordion-item.open button b { transform: rotate(45deg); color: #fff; background: var(--gold-deep); border-color: var(--gold-deep); }

/* Custom content */
.custom-content-section { background: #fff; }
.custom-content-shell { max-width: 900px; }
.custom-content-shell h2 { color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 44px; }
.entry-content { color: var(--muted); }
.entry-content img { border-radius: 16px; }

/* CTA */
.final-cta { position: relative; overflow: hidden; padding: 80px 0; color: #fff; background: linear-gradient(120deg, #0a1730, #17284a 60%, #244473); }
.final-cta-shape { position: absolute; inset: 0; background: radial-gradient(circle at 8% 100%, rgba(210,170,64,.28), transparent 26%), radial-gradient(circle at 92% 0, rgba(255,255,255,.1), transparent 28%); }
.final-cta-inner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 60px; }
.final-cta h2 { max-width: 760px; margin: 9px 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 5vw, 64px); line-height: 1.02; letter-spacing: -.045em; }
.final-cta p { max-width: 720px; margin: 0; color: rgba(255,255,255,.65); }
.kicker-light { color: var(--gold); }
.final-actions { flex: 0 0 auto; display: grid; gap: 12px; }

/* Footer */
.site-footer { padding: 70px 0 22px; color: rgba(255,255,255,.66); background: #09152c; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .75fr .85fr 1fr; gap: 55px; }
.brand-footer { color: #fff; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; font-size: 13px; }
.site-footer h3 { margin: 0 0 17px; color: #fff; font-size: 13px; }
.site-footer a:not(.brand) { display: block; margin: 10px 0; color: rgba(255,255,255,.65); font-size: 12px; transition: color .2s ease; }
.site-footer a:hover { color: var(--gold); }
.footer-link { display: flex !important; align-items: center; gap: 8px; }
.footer-link .oc-icon { width: 17px; height: 17px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); font-size: 11px; }
.footer-bottom p { margin: 0; }

/* Ask OurChurch helper */
.ai-launcher { position: fixed; z-index: 1100; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 9px; min-height: 51px; padding: 0 19px; border: 0; border-radius: 999px; color: #fff; background: var(--navy); box-shadow: 0 15px 38px rgba(12,28,57,.28); cursor: pointer; font-size: 13px; font-weight: 850; transition: transform .2s ease, box-shadow .2s ease; }
.ai-launcher:hover { transform: translateY(-3px); box-shadow: 0 20px 45px rgba(12,28,57,.35); }
.ai-launcher .oc-icon { color: var(--gold); }
.ai-widget { position: fixed; z-index: 1200; right: 24px; bottom: 88px; width: min(390px, calc(100vw - 30px)); overflow: hidden; border: 1px solid #dbe2ec; border-radius: 21px; background: #fff; box-shadow: 0 30px 75px rgba(10,24,50,.28); opacity: 0; pointer-events: none; transform: translateY(15px) scale(.98); transition: opacity .2s ease, transform .2s ease; }
.ai-widget.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.ai-widget-head { display: flex; align-items: center; gap: 12px; padding: 17px; color: #fff; background: var(--navy); }
.ai-widget-head > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--gold); background: rgba(210,170,64,.13); }
.ai-widget-head strong, .ai-widget-head small { display: block; }
.ai-widget-head small { color: rgba(255,255,255,.55); font-size: 10px; }
.ai-widget-head button { margin-left: auto; width: 34px; height: 34px; display: grid; place-items: center; border: 0; border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); cursor: pointer; }
.ai-widget-messages { max-height: 290px; min-height: 180px; overflow-y: auto; padding: 18px; background: #f7f9fc; }
.widget-message { max-width: 88%; margin-bottom: 11px; padding: 11px 13px; border-radius: 13px; font-size: 12px; }
.widget-message.bot { color: var(--navy); background: #fff; border: 1px solid #e1e6ee; border-bottom-left-radius: 4px; }
.widget-message.user { margin-left: auto; color: #fff; background: var(--navy-soft); border-bottom-right-radius: 4px; }
.ai-quick-questions { display: flex; gap: 7px; overflow-x: auto; padding: 10px 14px; border-top: 1px solid #e3e8ef; background: #fff; }
.ai-quick-questions button { flex: 0 0 auto; padding: 7px 10px; border: 1px solid #d9e0ea; border-radius: 999px; color: var(--navy); background: #fff; cursor: pointer; font-size: 10px; font-weight: 800; }
.ai-widget-form { display: grid; grid-template-columns: 1fr 42px; gap: 8px; padding: 13px; border-top: 1px solid #e3e8ef; }
.ai-widget-form input { width: 100%; min-width: 0; padding: 11px 12px; border: 1px solid #d6deea; border-radius: 10px; outline: none; font-size: 12px; }
.ai-widget-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(210,170,64,.15); }
.ai-widget-form button { display: grid; place-items: center; border: 0; border-radius: 10px; color: #fff; background: var(--gold-deep); cursor: pointer; }

/* Demo modal */
.demo-modal { position: fixed; z-index: 1500; inset: 0; display: grid; place-items: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.demo-modal.open { opacity: 1; pointer-events: auto; }
.demo-modal-backdrop { position: absolute; inset: 0; background: rgba(7,17,36,.76); backdrop-filter: blur(8px); }
.demo-modal-dialog { position: relative; z-index: 1; width: min(720px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 36px; border-radius: 24px; background: #fff; box-shadow: 0 35px 100px rgba(4,12,27,.45); transform: translateY(15px) scale(.98); transition: transform .2s ease; }
.demo-modal.open .demo-modal-dialog { transform: translateY(0) scale(1); }
.demo-modal-close { position: absolute; right: 18px; top: 18px; width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid #dce3ec; border-radius: 50%; color: var(--navy); background: #fff; cursor: pointer; }
.demo-modal-intro > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; color: var(--gold-deep); background: var(--gold-pale); }
.demo-modal-intro small { display: block; margin-top: 18px; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 900; }
.demo-modal-intro h2 { margin: 8px 0; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 38px; line-height: 1.05; }
.demo-modal-intro p { margin: 0; color: var(--muted); }
.demo-form { display: grid; gap: 16px; margin-top: 27px; }
.demo-form label span { display: block; margin-bottom: 6px; color: var(--navy); font-size: 11px; font-weight: 850; }
.demo-form input, .demo-form textarea { width: 100%; padding: 12px 13px; border: 1px solid #d6deea; border-radius: 11px; color: var(--navy); background: #fff; outline: none; }
.demo-form input:focus, .demo-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(210,170,64,.15); }
.demo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.demo-form-note { margin: -4px 0 0; color: #7d899b; text-align: center; font-size: 10px; }

/* Content templates */
.content-page { min-height: 65vh; padding: 90px 0; background: var(--surface); }
.content-shell { max-width: 900px; padding: 50px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.content-shell h1 { color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 52px; }
.post-meta { color: var(--gold-deep); font-size: 12px; font-weight: 800; }

/* Reveal animations */
.js [data-reveal] { opacity: 0; transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.2,1); transition-delay: var(--reveal-delay, 0ms); }
.js [data-reveal="up"] { transform: translateY(28px); }
.js [data-reveal="left"] { transform: translateX(-30px); }
.js [data-reveal="right"] { transform: translateX(30px); }
.js [data-reveal].is-visible { opacity: 1; transform: translate(0,0); }
[data-float] { animation: float 5s ease-in-out infinite; }
[data-float-delay] { animation-delay: -2.3s; }
@keyframes float { 0%,100% { margin-top: 0; } 50% { margin-top: -10px; } }

/* Responsive */
@media (max-width: 1150px) {
  .nav-list { gap: 18px; }
  .nav-list a { font-size: 12px; }
  .header-login { display: none; }
  .hero-grid { grid-template-columns: .95fr 1.05fr; gap: 34px; }
  .hero-copy h1 { font-size: 64px; }
  .hero-visual { min-height: 540px; }
  .hero-phone-one { width: 145px; height: 325px; }
  .hero-phone-two { width: 112px; height: 250px; right: 115px; }
  .signal-one { left: -10px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .feature-card { min-height: 250px; }
}

@media (max-width: 960px) {
  :root { --header-height: 66px; }
  .oc-container { width: min(100% - 36px, 1240px); }
  .section { padding: 88px 0; }
  .menu-toggle { display: grid; place-items: center; margin-left: auto; }
  .primary-nav { position: fixed; inset: var(--header-height) 0 auto 0; max-height: 0; overflow: hidden; margin: 0; background: var(--navy-deep); opacity: 0; transition: max-height .28s ease, opacity .2s ease; }
  .primary-nav.is-open { max-height: calc(100vh - var(--header-height)); overflow-y: auto; opacity: 1; border-top: 1px solid rgba(255,255,255,.08); }
  .nav-list { display: block; padding: 12px 22px 24px; }
  .nav-list a { padding: 14px 5px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-list a::after { display: none; }
  .header-actions { display: none; }
  .hero-section { padding-top: 55px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 760px; padding: 20px 0 10px; text-align: center; margin-inline: auto; }
  .hero-description { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust-row { max-width: 650px; margin-inline: auto; margin-top: 28px; }
  .hero-visual { width: min(780px,100%); min-height: 600px; margin-inline: auto; }
  .hero-dashboard-card { left: 20px; right: 20px; }
  .hero-phone-one { right: 20px; }
  .hero-phone-two { right: 145px; }
  .signal-one { left: 5px; }
  .hero-bottom-strip { overflow-x: auto; justify-content: flex-start; padding: 0 8px; white-space: nowrap; }
  .about-grid, .showcase-heading, .audience-grid, .faq-grid { grid-template-columns: 1fr; gap: 35px; }
  .stats-grid, .value-grid { grid-template-columns: repeat(2,1fr); }
  .showcase-heading > p { max-width: 760px; }
  .showcase-stage { min-height: auto; padding: 28px; }
  .showcase-caption { grid-template-columns: 1fr; gap: 8px; }
  .insight-layout { grid-template-columns: 1fr 1fr; }
  .insight-primary { grid-row: auto; grid-column: span 2; min-height: 260px; }
  .insight-wide { grid-column: span 2; }
  .steps-grid { gap: 12px; }
  .steps-grid article { padding: 0 14px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 680px; margin-left: auto; margin-right: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .final-cta-inner { display: grid; }
  .final-actions { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
  .oc-container { width: min(100% - 24px, 1240px); }
  .section { padding: 72px 0; }
  .brand-name { font-size: 22px; }
  .brand-mark { width: 38px; height: 38px; }
  .custom-logo-wrap img { max-width: 175px; max-height: 44px; }
  .hero-section { padding-top: 36px; }
  .hero-copy h1 { font-size: clamp(46px, 14vw, 62px); }
  .hero-description { font-size: 16px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust-row { grid-template-columns: 1fr; }
  .hero-visual { min-height: 470px; margin-top: 8px; }
  .hero-dashboard-card { left: 0; right: 0; top: 25px; transform: none; border-radius: 14px; }
  .browser-bar { height: 30px; }
  .hero-phone-one { width: 125px; height: 280px; right: 10px; bottom: 10px; border-width: 6px; border-radius: 25px; }
  .hero-phone-two { display: none; }
  .floating-signal { padding: 8px 10px; }
  .signal-one { left: 3px; bottom: 45px; }
  .signal-two { right: 6px; top: 0; }
  .hero-bottom-strip { min-height: 64px; }
  .section-heading h2 { font-size: 39px; }
  .about-grid { gap: 20px; }
  .about-copy > p { font-size: 16px; }
  .stats-grid, .value-grid, .feature-grid { grid-template-columns: 1fr; }
  .stats-grid article { min-height: 125px; }
  .value-grid article { min-height: auto; }
  .feature-card { min-height: 235px; }
  .showcase-tabs { display: flex; overflow-x: auto; }
  .showcase-tabs button { flex: 0 0 78%; padding: 17px 18px; }
  .showcase-stage { padding: 15px; }
  .showcase-browser img { min-height: 290px; object-fit: cover; object-position: top left; }
  .showcase-caption { padding: 20px 3px 5px; }
  .showcase-caption strong { font-size: 20px; }
  .mobile-showcase-pair { min-height: 410px; gap: 8px; }
  .mobile-device { width: 170px; height: 360px; border-width: 6px; border-radius: 25px; }
  .insight-layout { grid-template-columns: 1fr; }
  .insight-primary, .insight-wide { grid-column: auto; }
  .insight-card { min-height: 190px; }
  .steps-grid { grid-template-columns: 1fr; gap: 42px; }
  .steps-grid::before { display: none; }
  .steps-grid article { max-width: 480px; margin-inline: auto; }
  .audience-grid { gap: 45px; }
  .audience-list article { grid-template-columns: 48px 1fr; padding: 16px; }
  .audience-list article > span { width: 46px; height: 46px; }
  .price-card { padding: 28px; }
  .faq-grid { gap: 40px; }
  .accordion-item button { padding: 19px; font-size: 14px; }
  .accordion-panel p { padding-left: 19px; padding-right: 45px; }
  .final-cta { padding: 65px 0; }
  .final-cta h2 { font-size: 42px; }
  .final-actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 25px; }
  .footer-brand { grid-column: span 2; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .ai-launcher { right: 14px; bottom: 14px; }
  .ai-launcher span { display: none; }
  .ai-launcher { width: 52px; padding: 0; justify-content: center; }
  .ai-widget { right: 14px; bottom: 76px; }
  .demo-modal { padding: 10px; }
  .demo-modal-dialog { padding: 27px 20px; border-radius: 19px; }
  .demo-modal-intro h2 { font-size: 32px; }
  .demo-form-row { grid-template-columns: 1fr; }
}

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

/* v2.1 brand and final CTA contrast corrections */
.bundled-logo-wrap {
  display: inline-flex;
  align-items: center;
  height: 58px;
  overflow: visible;
}
.bundled-logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: 235px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.08));
}
.brand-footer .bundled-logo {
  height: 62px;
  max-width: 270px;
}

/* Explicit colors are required because WordPress global heading styles can override inherited text colors. */
.final-cta,
.final-cta .final-cta-inner,
.final-cta .final-cta-inner > div {
  color: #ffffff;
}
.final-cta .kicker,
.final-cta .kicker-light {
  color: #f0c44c !important;
}
.final-cta h2,
.final-cta .final-cta-inner h2 {
  color: #ffffff !important;
  text-shadow: 0 3px 18px rgba(0,0,0,.22);
}
.final-cta p,
.final-cta .final-cta-inner p {
  color: rgba(255,255,255,.82) !important;
}
.final-cta {
  background:
    radial-gradient(circle at 7% 100%, rgba(210,170,64,.26), transparent 30%),
    radial-gradient(circle at 95% 4%, rgba(73,122,196,.28), transparent 32%),
    linear-gradient(120deg, #07152d 0%, #10264b 58%, #294b7c 100%);
  border-top: 1px solid rgba(210,170,64,.25);
  border-bottom: 1px solid rgba(210,170,64,.16);
}
.final-cta-shape {
  opacity: .65;
  background:
    radial-gradient(circle at 8% 100%, rgba(210,170,64,.25), transparent 27%),
    radial-gradient(circle at 92% 0, rgba(255,255,255,.10), transparent 28%);
}
.final-actions .button-white {
  color: #10213f !important;
  background: #ffffff;
}

@media (max-width: 760px) {
  .bundled-logo-wrap { height: 48px; }
  .bundled-logo { height: 43px; max-width: 185px; }
  .brand-footer .bundled-logo { height: 54px; max-width: 225px; }
}

/* How It Works visibility hardening and Ask OurChurch assistant */
.how-section {
  color: #10213f !important;
  background: #ffffff !important;
}
.how-section .section-heading,
.how-section .section-heading.centered,
.how-section .steps-grid,
.how-section .steps-grid article {
  color: #10213f !important;
}
.how-section .kicker {
  color: #b88b18 !important;
}
.how-section .section-heading h2,
.how-section h2 {
  color: #17284a !important;
  opacity: 1 !important;
  text-shadow: none !important;
}
.how-section .steps-grid h3 {
  color: #17284a !important;
  opacity: 1 !important;
}
.how-section .steps-grid p {
  color: #58677e !important;
  opacity: 1 !important;
}
.how-section .step-icon {
  color: #17284a !important;
  background: #ffffff !important;
}
.how-section .step-number {
  color: #ffffff !important;
  background: #b88b18 !important;
}

.ai-widget {
  width: min(410px, calc(100vw - 30px));
}
.ai-widget-head small {
  color: rgba(255,255,255,.72);
}
.ai-widget-messages {
  max-height: 340px;
  min-height: 210px;
}
.widget-message {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  line-height: 1.52;
  font-size: 13px;
}
.widget-message.is-typing {
  color: #7b8798;
  font-style: italic;
}
.widget-message.is-typing::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 5px;
  margin-left: 6px;
  vertical-align: middle;
  background: radial-gradient(circle, currentColor 1.5px, transparent 2px) 0 50%/5px 5px repeat-x;
  animation: ocThinking 1s linear infinite;
}
@keyframes ocThinking {
  from { background-position-x: 0; }
  to { background-position-x: 5px; }
}
.ai-widget-form button:disabled,
.ai-widget-form input:disabled,
.ai-quick-questions button:disabled {
  cursor: wait;
  opacity: .58;
}
.ai-widget-form.is-busy button .oc-icon {
  animation: ocSpin .9s linear infinite;
}
@keyframes ocSpin { to { transform: rotate(360deg); } }
.ai-privacy-note {
  margin: 0;
  padding: 0 14px 13px;
  color: #7a8799;
  background: #fff;
  font-size: 10px;
  line-height: 1.45;
}

/* v2.4 built-in support ticket desk */
.support-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 8% 90%, rgba(210,170,64,.22), transparent 30%),
    radial-gradient(circle at 95% 5%, rgba(72,116,184,.32), transparent 34%),
    linear-gradient(125deg, #08172f 0%, #132a50 58%, #294c7c 100%);
}
.support-section .support-glow { position:absolute; inset:0; pointer-events:none; background-image:radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px); background-size:22px 22px; mask-image:linear-gradient(to left,#000,transparent 55%); opacity:.38; }
.support-grid { position:relative; display:grid; grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr); align-items:center; gap:76px; }
.support-copy h2 { max-width:760px; margin:10px 0 18px; color:#fff; font-family:Georgia,"Times New Roman",serif; font-size:clamp(42px,5vw,66px); line-height:1.03; letter-spacing:-.045em; }
.support-copy>p { max-width:720px; color:rgba(255,255,255,.78); font-size:16px; line-height:1.75; }
.support-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.support-actions .button { border:0; }
.support-response-note { display:flex; align-items:flex-start; gap:11px; margin-top:22px!important; color:rgba(255,255,255,.68)!important; font-size:12px!important; line-height:1.55!important; }
.support-response-note .oc-icon { flex:0 0 auto; width:20px; height:20px; color:var(--gold); }
.support-process { display:grid; gap:12px; padding:24px; border:1px solid rgba(255,255,255,.12); border-radius:26px; background:rgba(7,19,41,.48); box-shadow:0 30px 80px rgba(0,0,0,.22); backdrop-filter:blur(12px); }
.support-process article { display:grid; grid-template-columns:48px 1fr; gap:15px; padding:17px; border:1px solid rgba(255,255,255,.08); border-radius:17px; background:rgba(255,255,255,.055); }
.support-process article>span { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; color:#152846; background:var(--gold); font-size:12px; font-weight:900; }
.support-process h3 { margin:1px 0 5px; color:#fff; font-size:16px; }
.support-process p { margin:0; color:rgba(255,255,255,.67); font-size:12px; line-height:1.58; }
.support-safety { padding:16px 17px; border-radius:17px; color:#182a48; background:#fff; }
.support-safety strong { display:flex; align-items:center; gap:8px; color:#17284a; }
.support-safety .oc-icon { width:18px; height:18px; color:var(--gold-deep); }
.support-safety p { margin:7px 0 0; color:#637086; }

.support-launcher { position:fixed; z-index:1090; right:24px; bottom:24px; display:flex; align-items:center; gap:8px; min-height:48px; padding:0 17px; border:1px solid rgba(23,40,74,.15); border-radius:999px; color:var(--navy); background:#fff; box-shadow:0 15px 38px rgba(12,28,57,.22); cursor:pointer; font-size:12px; font-weight:850; transition:transform .2s ease, box-shadow .2s ease; }
.support-launcher.has-ai { bottom:84px; }
.support-launcher:hover { transform:translateY(-3px); box-shadow:0 20px 45px rgba(12,28,57,.3); }
.support-launcher .oc-icon { width:19px; height:19px; color:var(--gold-deep); }
.ai-support-link { width:100%; display:flex; align-items:center; justify-content:center; gap:8px; padding:11px 13px; border:0; border-top:1px solid #e3e8ef; color:var(--navy); background:#fff; cursor:pointer; font-size:11px; font-weight:850; }
.ai-support-link:hover { background:#f7f9fc; }
.ai-support-link .oc-icon { width:17px; height:17px; color:var(--gold-deep); }

.footer-support-button { display:block; margin:0 0 11px; padding:0; border:0; color:rgba(255,255,255,.63); background:transparent; cursor:pointer; text-align:left; font:inherit; font-size:12px; }
.footer-support-button:hover { color:#fff; }

.support-modal-dialog { width:min(840px,100%); }
.support-modal-intro { padding-right:48px; }
.support-tabs { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-top:25px; padding:5px; border-radius:13px; background:#eef2f7; }
.support-tabs button { padding:11px 14px; border:0; border-radius:9px; color:#67758a; background:transparent; cursor:pointer; font-weight:850; }
.support-tabs button.is-active { color:#fff; background:var(--navy); box-shadow:0 8px 20px rgba(23,40,74,.18); }
.support-pane { animation:ocSupportPane .22s ease; }
@keyframes ocSupportPane { from{opacity:0;transform:translateY(5px)} to{opacity:1;transform:none} }
.demo-form input,.demo-form textarea,.demo-form select { font:inherit; }
.demo-form select { width:100%; padding:12px 13px; border:1px solid #d6deea; border-radius:11px; color:var(--navy); background:#fff; outline:none; }
.demo-form select:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(210,170,64,.15); }
.button-navy { color:#fff; background:var(--navy); }
.button-navy:hover { color:#fff; background:#213b67; }
.support-honeypot { position:absolute!important; left:-10000px!important; width:1px!important; height:1px!important; overflow:hidden!important; }
.support-privacy-warning { display:flex; align-items:flex-start; gap:9px; margin:0; padding:12px 13px; border:1px solid #f0dfaa; border-radius:11px; color:#6f5a1c; background:#fff9e7; font-size:10px; line-height:1.5; }
.support-privacy-warning .oc-icon { flex:0 0 auto; width:17px; height:17px; }
.support-form-status:empty { display:none; }
.support-form-status { margin:0 0 2px; padding:15px; border-radius:13px; font-size:12px; line-height:1.55; }
.support-form-status.is-error { border:1px solid #fecaca; color:#8b1d1d; background:#fff1f2; }
.support-form-status.is-success { border:1px solid #bbdfc7; color:#174d2b; background:#effaf2; }
.support-form-status>strong { display:block; margin-bottom:4px; color:inherit; font-size:14px; }
.support-form-status p { margin:5px 0 0; }
.support-result-details { display:grid; gap:7px; margin-top:12px; padding-top:11px; border-top:1px solid rgba(23,40,74,.12); }
.support-result-line { display:grid; grid-template-columns:minmax(105px,.35fr) 1fr; gap:12px; align-items:start; }
.support-result-line strong { color:#526176; font-size:10px; text-transform:uppercase; letter-spacing:.05em; }
.support-result-line code,.support-result-line span { color:#17284a; overflow-wrap:anywhere; }
.support-result-line code { display:inline-block; width:max-content; max-width:100%; padding:3px 7px; border-radius:6px; background:#fff; font-weight:800; }
.support-save-warning { color:#7a5b00; font-weight:750; }
.support-reply-label { display:block; margin-top:16px!important; padding-top:12px; border-top:1px solid rgba(23,40,74,.12); }
.support-public-reply { white-space:pre-wrap; color:#253956; }
.support-form button:disabled,.support-status-form button:disabled { opacity:.55; cursor:wait; }
.support-form button.is-busy .oc-icon { animation:ocSpin .9s linear infinite; }

@media (max-width:900px) {
  .support-grid { grid-template-columns:1fr; gap:42px; }
  .support-process { max-width:680px; }
}
@media (max-width:760px) {
  .support-copy h2 { font-size:42px; }
  .support-actions { display:grid; }
  .support-actions .button { width:100%; }
  .support-process { padding:13px; border-radius:20px; }
  .support-process article { grid-template-columns:42px 1fr; padding:14px; }
  .support-process article>span { width:42px; height:42px; }
  .support-launcher { right:74px; bottom:14px; width:52px; padding:0; justify-content:center; }
  .support-launcher.has-ai { bottom:14px; }
  .support-launcher span { display:none; }
  .support-tabs { margin-top:22px; }
  .support-result-line { grid-template-columns:1fr; gap:3px; }
}

/* v2.5 sales tools: package recommender, demo booking, and quotations */
.package-finder-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 100%, rgba(210,170,64,.24), transparent 28%),
    radial-gradient(circle at 95% 0%, rgba(80,126,198,.24), transparent 32%),
    linear-gradient(125deg, #09162f 0%, #142b52 58%, #254675 100%);
}
.package-finder-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image: radial-gradient(rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 25px 25px;
  mask-image: linear-gradient(90deg, transparent 28%, #000 100%);
}
.package-finder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.package-finder-copy h2 {
  margin: 15px 0 20px;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.package-finder-copy > p { max-width: 610px; margin: 0; color: rgba(255,255,255,.76); font-size: 17px; }
.package-benefits { display: grid; gap: 12px; margin-top: 28px; }
.package-benefits span { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.88); font-size: 14px; font-weight: 700; }
.package-benefits .oc-icon { width: 18px; height: 18px; color: var(--gold); }
.package-finder-card {
  min-height: 575px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 25px;
  color: var(--ink);
  background: rgba(255,255,255,.98);
  box-shadow: 0 34px 90px rgba(3,11,25,.34);
}
.package-progress { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 23px; color: var(--navy); font-size: 13px; font-weight: 850; }
.package-progress b { color: var(--gold-deep); }
.package-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.package-form-grid > label > span,
.package-modules legend { display: block; margin-bottom: 7px; color: var(--navy); font-size: 12px; font-weight: 850; }
.package-form-grid input[type="number"],
.package-form-grid select {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid #d4ddea;
  border-radius: 11px;
  color: var(--navy);
  background: #fff;
  outline: none;
}
.package-form-grid input:focus,
.package-form-grid select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(210,170,64,.15); }
.package-modules { grid-column: 1 / -1; margin: 2px 0 0; padding: 0; border: 0; }
.package-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.package-check-grid label {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid #e1e7ef;
  border-radius: 10px;
  color: #526079;
  background: #f8fafc;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.package-check-grid input { margin-top: 3px; accent-color: var(--gold-deep); }
.package-submit { width: 100%; margin-top: 22px; }
.package-result { min-height: 500px; display: flex; flex-direction: column; justify-content: center; opacity: 0; transform: translateY(12px); transition: opacity .3s ease, transform .3s ease; }
.package-result.is-visible { opacity: 1; transform: none; }
.package-result[hidden] { display: none; }
.package-result-label { color: var(--gold-deep); text-transform: uppercase; letter-spacing: .14em; font-size: 10px; font-weight: 900; }
.package-result h3 { margin: 12px 0 13px; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-size: 43px; line-height: 1.05; }
.package-result > p { color: var(--muted); }
.package-result ul { display: grid; gap: 9px; margin: 24px 0; padding: 0; list-style: none; }
.package-result li { position: relative; padding-left: 27px; color: #34445f; font-size: 14px; }
.package-result li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--gold-deep); font-size: 11px; font-weight: 900; }
.package-result-note { padding: 13px 15px; border-left: 4px solid var(--gold); border-radius: 7px; color: #5c6a80 !important; background: #fff8e9; font-size: 12px; }
.package-result-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.package-result-actions .button-white { border: 1px solid #cbd5e2; }
.package-restart { grid-column: 1 / -1; justify-self: center; padding: 7px 10px; border: 0; color: #68758b; background: transparent; cursor: pointer; text-decoration: underline; font-size: 12px; font-weight: 700; }

.sales-modal-dialog { width: min(840px, 100%); }
.sales-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 25px; padding: 5px; border-radius: 12px; background: #eef2f7; }
.sales-tabs button { min-height: 43px; border: 0; border-radius: 9px; color: #5d6980; background: transparent; cursor: pointer; font-weight: 850; }
.sales-tabs button.is-active { color: #fff; background: var(--navy); box-shadow: 0 8px 20px rgba(23,40,74,.18); }
.sales-form-status { display: none; padding: 16px 18px; border-radius: 12px; }
.sales-form-status.is-success,
.sales-form-status.is-error { display: grid; gap: 8px; }
.sales-form-status.is-success { border: 1px solid #a9dec9; color: #12694e; background: #effaf6; }
.sales-form-status.is-error { border: 1px solid #edb9b9; color: #942f2f; background: #fff3f3; }
.sales-form-status strong { font-size: 16px; }
.sales-form-status p { margin: 0; }
.sales-result-details { display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; align-items: center; margin: 5px 0; }
.sales-result-details code { justify-self: start; padding: 5px 8px; border-radius: 6px; color: var(--navy); background: #fff; font-size: 13px; font-weight: 850; }
.sales-form-status .button { justify-self: start; margin-top: 4px; }
.sales-module-fieldset { margin: 0; padding: 0; border: 0; }
.sales-module-fieldset legend { margin-bottom: 8px; color: var(--navy); font-size: 11px; font-weight: 850; }
.sales-module-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sales-module-grid label { display: flex; gap: 8px; align-items: flex-start; padding: 9px 10px; border: 1px solid #e1e7ef; border-radius: 9px; background: #f9fafc; cursor: pointer; }
.sales-module-grid label span { margin: 0; color: #526079; font-size: 11px; line-height: 1.35; }
.sales-module-grid input { width: auto; margin-top: 2px; accent-color: var(--gold-deep); }
.sales-consent { display: flex; gap: 10px; align-items: flex-start; padding: 12px; border-radius: 10px; background: #f7f9fc; }
.sales-consent input { width: auto; margin-top: 4px; accent-color: var(--gold-deep); }
.sales-consent span { margin: 0 !important; font-size: 12px !important; line-height: 1.45; }
.sales-form [hidden] { display: none !important; }
.sales-form .button.is-busy { opacity: .65; cursor: wait; }

.final-actions { grid-template-columns: repeat(3, minmax(0,1fr)); }

@media (max-width: 1050px) {
  .package-finder-grid { grid-template-columns: 1fr; gap: 38px; }
  .package-finder-copy { max-width: 800px; text-align: center; margin-inline: auto; }
  .package-finder-copy > p { margin-inline: auto; }
  .package-benefits { max-width: 620px; grid-template-columns: repeat(3,1fr); margin-inline: auto; margin-top: 28px; }
  .package-benefits span { justify-content: center; text-align: left; }
  .package-finder-card { width: min(800px,100%); margin-inline: auto; }
}

@media (max-width: 760px) {
  .package-finder-card { min-height: auto; padding: 24px 18px; border-radius: 19px; }
  .package-form-grid { grid-template-columns: 1fr; }
  .package-modules { grid-column: auto; }
  .package-check-grid, .sales-module-grid { grid-template-columns: 1fr; }
  .package-benefits { grid-template-columns: 1fr; }
  .package-benefits span { justify-content: flex-start; }
  .package-result { min-height: auto; padding: 20px 0; }
  .package-result h3 { font-size: 36px; }
  .package-result-actions { grid-template-columns: 1fr; }
  .package-restart { grid-column: auto; }
  .sales-tabs { grid-template-columns: 1fr; }
  .final-actions { grid-template-columns: 1fr; }
}
