
:root {
--bg: #f3f5ef;
--bg-deep: #dee7db;
--surface: #fbfbf8;
--surface-strong: #ffffff;
--text: #12231c;
--text-muted: #4d6158;
--line: #d6dfd2;
--brand: #0f766e;
--brand-strong: #0a5a54;
--accent: #f17c2f;
--shadow: 0 14px 34px rgba(16, 42, 33, 0.12);
}

* {
box-sizing: border-box;
}

body {
margin: 0;
font-family: "Manrope", "Segoe UI", sans-serif;
color: var(--text);
background:
    radial-gradient(1200px 700px at 90% -10%, rgba(241, 124, 47, 0.16), transparent 70%),
    radial-gradient(1200px 700px at -10% 10%, rgba(15, 118, 110, 0.18), transparent 70%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 380px, #eef2ea 100%);
line-height: 1.55;
overflow-x: hidden;
}

.wrap {
width: min(1120px, calc(100% - 2rem));
margin: 0 auto;
}

.topbar {
padding: 1rem 0;
}

.topbar-inner {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
background: rgba(255, 255, 255, 0.42);
border: 1px solid rgba(18, 35, 28, 0.08);
border-radius: 14px;
padding: 0.55rem 0.8rem;
backdrop-filter: blur(6px);
}

.topbar-meta {
display: inline-flex;
align-items: center;
gap: 0.35rem;
margin-left: auto;
margin-right: 0.5rem;
}

.mini-icon {
width: 1.65rem;
height: 1.65rem;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 999px;
background: rgba(15, 118, 110, 0.12);
border: 1px solid rgba(15, 118, 110, 0.25);
color: #0a5a54;
font-size: 0.88rem;
}

.logo {
text-decoration: none;
display: inline-flex;
align-items: center;
}

.logo img {
display: block;
width: clamp(168px, 26vw, 232px);
height: auto;
}

.hero {
padding: 3rem 0 2.5rem;
}

.hero-card {
background: linear-gradient(150deg, rgba(95, 118, 250, 0.82), rgba(85, 145, 141, 0.8));
color: #f4fcf8;
border-radius: 24px;
padding: 2.8rem;
position: relative;
overflow: hidden;
box-shadow: var(--shadow);
border: 1px solid rgba(233, 255, 246, 0.28);
backdrop-filter: blur(3px);
animation: rise 700ms ease-out both;
}

.hero-card::before,
.hero-card::after {
content: "";
position: absolute;
border-radius: 50%;
pointer-events: none;
}

.hero-card::before {
width: 320px;
height: 320px;
right: -120px;
top: -160px;
background: rgba(241, 124, 47, 0.35);
}

.hero-card::after {
width: 240px;
height: 240px;
left: -140px;
bottom: -120px;
background: rgba(243, 245, 239, 0.22);
}

.badge {
display: inline-flex;
align-items: center;
gap: 0.4rem;
font-size: 0.85rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #e8fff8;
background: rgba(7, 40, 35, 0.35);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 999px;
padding: 0.4rem 0.75rem;
margin-bottom: 1rem;
}

.trade-icons {
margin-top: 1rem;
display: flex;
gap: 0.45rem;
flex-wrap: wrap;
position: relative;
z-index: 1;
}

.trade-icon {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 2.05rem;
height: 2.05rem;
border-radius: 999px;
background: rgba(245, 255, 251, 0.2);
border: 1px solid rgba(255, 255, 255, 0.34);
color: #f0fff8;
font-size: 1rem;
}

h1,
h2 {
font-family: "Archivo", "Manrope", sans-serif;
letter-spacing: -0.02em;
line-height: 1.15;
}

h1 {
font-size: clamp(2rem, 5.5vw, 3.4rem);
margin: 0 0 0.85rem;
max-width: 16ch;
position: relative;
z-index: 1;
}

.lead {
max-width: 58ch;
margin: 0;
color: rgba(240, 255, 248, 0.93);
position: relative;
z-index: 1;
}

.hero-actions {
margin-top: 1.5rem;
display: flex;
gap: 0.8rem;
flex-wrap: wrap;
position: relative;
z-index: 1;
}

.chat-embedded-container {
margin-top: 1.75rem;
}

button,
.btn-link {
border: none;
border-radius: 12px;
padding: 0.78rem 1.1rem;
font-family: "Manrope", "Segoe UI", sans-serif;
font-size: 0.95rem;
font-weight: 700;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
}

button {
background: var(--accent);
color: #24150a;
box-shadow: 0 8px 20px rgba(241, 124, 47, 0.35);
}

.btn-link {
background: rgba(240, 255, 248, 0.18);
color: #e7fff8;
border: 1px solid rgba(255, 255, 255, 0.3);
}

button:hover,
.btn-link:hover {
transform: translateY(-1px);
}

main {
padding-bottom: 2.2rem;
}

footer {
background: rgba(10, 30, 24, 0.96);
color: rgba(220, 240, 232, 0.82);
border-top: 1px solid rgba(15, 118, 110, 0.3);
padding: 2.8rem 0 1.4rem;
margin-top: 2rem;
font-size: 0.88rem;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.footer-col h4 {
font-family: "Archivo", sans-serif;
font-size: 0.78rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: rgba(180, 220, 205, 0.55);
margin: 0 0 0.75rem;
}

.footer-col p,
.footer-col a {
margin: 0 0 0.35rem;
color: rgba(220, 240, 232, 0.82);
text-decoration: none;
display: block;
line-height: 1.6;
}

.footer-col a:hover {
color: #5eead4;
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.08);
padding-top: 1rem;
display: flex;
flex-wrap: wrap;
gap: 0.5rem 1.5rem;
align-items: center;
color: rgba(180, 210, 198, 0.5);
font-size: 0.8rem;
}

.footer-bottom a {
color: rgba(180, 210, 198, 0.6);
text-decoration: none;
}

.footer-bottom a:hover {
color: #5eead4;
}

.footer-org {
margin-left: auto;
font-variant-numeric: tabular-nums;
}

.panel {
background: rgba(251, 251, 248, 0.72);
border: 1px solid rgba(214, 223, 210, 0.88);
border-radius: 20px;
padding: 1.35rem;
margin-bottom: 1rem;
box-shadow: 0 8px 20px rgba(13, 35, 29, 0.06);
backdrop-filter: blur(6px);
animation: rise 750ms ease-out both;
}

.panel:nth-child(2) {
animation-delay: 80ms;
}

.panel:nth-child(3) {
animation-delay: 140ms;
}

.panel:nth-child(4) {
animation-delay: 200ms;
}

.panel:nth-child(5) {
animation-delay: 260ms;
}

.panel h2 {
margin: 0 0 0.8rem;
font-size: clamp(1.2rem, 2.4vw, 1.6rem);
color: #17352d;
}

.trust-strip {
margin: 1rem 0 1.2rem;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.75rem;
}

.kpi {
background: rgba(255, 255, 255, 0.7);
border: 1px solid rgba(214, 223, 210, 0.88);
border-radius: 14px;
padding: 0.8rem;
}

.kpi strong {
display: block;
font-size: 1.2rem;
line-height: 1.2;
color: #0a5a54;
}

.kpi span {
color: var(--text-muted);
font-size: 0.92rem;
}

.muted {
color: var(--text-muted);
}

.industries {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
gap: 0.75rem;
}

.industry {
background: rgba(255, 255, 255, 0.66);
border: 1px solid rgba(214, 223, 210, 0.84);
border-radius: 14px;
padding: 0.75rem;
}

.industry .icon {
margin-right: 0.35rem;
}

.ai-float {
position: fixed;
left: 1rem;
bottom: 1rem;
z-index: 30;
display: inline-flex;
align-items: center;
gap: 0.6rem;
padding: 0.72rem 0.9rem;
border-radius: 999px;
background: rgba(10, 90, 84, 0.84);
color: #effff8;
border: 1px solid rgba(235, 255, 247, 0.45);
box-shadow: 0 10px 26px rgba(10, 90, 84, 0.36);
backdrop-filter: blur(7px);
animation: hoverPulse 2s ease-in-out infinite;
}

.ai-dot {
width: 0.58rem;
height: 0.58rem;
border-radius: 50%;
background: #f17c2f;
box-shadow: 0 0 0 rgba(241, 124, 47, 0.6);
animation: ping 1.3s infinite;
}

.ai-float strong {
font-size: 0.84rem;
letter-spacing: 0.01em;
}

.industry strong {
display: block;
margin-bottom: 0.22rem;
color: #15382f;
}

.two-col {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
}

ul {
margin: 0.6rem 0 0;
padding-left: 1rem;
}

li + li {
margin-top: 0.36rem;
}

.contact {
display: grid;
grid-template-columns: 1.3fr auto;
align-items: center;
gap: 1rem;
}

.steps {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.75rem;
}

.step {
background: rgba(255, 255, 255, 0.66);
border: 1px solid rgba(214, 223, 210, 0.88);
border-radius: 14px;
padding: 0.9rem;
}

.step .nr {
display: inline-flex;
width: 1.8rem;
height: 1.8rem;
border-radius: 999px;
align-items: center;
justify-content: center;
font-size: 0.85rem;
font-weight: 800;
color: #effff8;
background: #0a5a54;
margin-bottom: 0.55rem;
}

.step h3 {
margin: 0 0 0.35rem;
font-size: 1rem;
color: #16362d;
}

.faq {
display: grid;
gap: 0.55rem;
}

details {
background: rgba(255, 255, 255, 0.62);
border: 1px solid rgba(214, 223, 210, 0.88);
border-radius: 12px;
padding: 0.7rem 0.8rem;
}

summary {
font-weight: 700;
cursor: pointer;
color: #123329;
}

details p {
margin: 0.6rem 0 0;
}

.demo-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
align-items: start;
}

.demo-info {
background: rgba(255, 255, 255, 0.58);
border: 1px solid rgba(15, 118, 110, 0.22);
border-radius: 14px;
padding: 0.9rem;
backdrop-filter: blur(6px);
}

.demo-info h3 {
margin: 0 0 0.45rem;
font-size: 1rem;
color: #0a5a54;
}

.demo-info p {
margin: 0;
font-size: 0.95rem;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.9rem;
}

.price-card {
background: rgba(255, 255, 255, 0.72);
border: 1px solid rgba(15, 118, 110, 0.2);
border-radius: 16px;
padding: 1rem;
}

.price-card.featured {
border: 1px solid rgba(10, 90, 84, 0.5);
box-shadow: 0 10px 20px rgba(10, 90, 84, 0.12);
background: linear-gradient(160deg, rgba(240, 255, 250, 0.9), rgba(255, 255, 255, 0.78));
}

.price-kicker {
display: inline-block;
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: #0a5a54;
margin-bottom: 0.4rem;
}

.price-value {
margin: 0 0 0.4rem;
font-family: "Archivo", sans-serif;
font-size: clamp(1.6rem, 4vw, 2.1rem);
color: #0f3f37;
letter-spacing: -0.02em;
}

.price-note {
margin-top: 0.75rem;
padding: 0.7rem 0.8rem;
border-radius: 12px;
background: rgba(15, 118, 110, 0.08);
border: 1px dashed rgba(15, 118, 110, 0.34);
color: #1f4f45;
font-size: 0.9rem;
}

.email {
font-weight: 700;
color: #0a5a54;
}

@keyframes rise {
from {
    opacity: 0;
    transform: translateY(12px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes hoverPulse {
0%,
100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-3px);
}
}

@keyframes ping {
0% {
    box-shadow: 0 0 0 0 rgba(241, 124, 47, 0.65);
    opacity: 1;
}
70% {
    box-shadow: 0 0 0 10px rgba(241, 124, 47, 0);
    opacity: 0.95;
}
100% {
    box-shadow: 0 0 0 0 rgba(241, 124, 47, 0);
    opacity: 1;
}
}

@keyframes chatNudgeTwice {
0%,
100% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.35);
}
25% {
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.42);
}
50% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.35);
}
75% {
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.42);
}
}

#chat-toggle.nudge {
animation: chatNudgeTwice 0.9s ease-in-out 1;
}

@media (max-width: 860px) {
.hero-card {
    padding: 2rem 1.3rem;
}

.two-col,
.pricing-grid,
.contact,
.demo-layout,
.steps,
.trust-strip {
    grid-template-columns: 1fr;
}

.contact button {
    width: 100%;
}

.topbar-meta {
    display: none;
}

.ai-float {
    left: 0.7rem;
    right: 0.7rem;
    top: 5rem;
    bottom: auto;
    width: auto;
    justify-content: center;
    border-radius: 14px;
}
}

@media (max-width: 1024px) {
.ai-float {
    top: 5rem;
    bottom: auto;
}
}
</style><style>
:root {
--bg: #f3f5ef;
--bg-deep: #dee7db;
--surface: #fbfbf8;
--surface-strong: #ffffff;
--text: #12231c;
--text-muted: #4d6158;
--line: #d6dfd2;
--brand: #0f766e;
--brand-strong: #0a5a54;
--accent: #f17c2f;
--shadow: 0 14px 34px rgba(16, 42, 33, 0.12);
}

* {
box-sizing: border-box;
}

body {
margin: 0;
font-family: "Manrope", "Segoe UI", sans-serif;
color: var(--text);
background:
    radial-gradient(1200px 700px at 90% -10%, rgba(241, 124, 47, 0.16), transparent 70%),
    radial-gradient(1200px 700px at -10% 10%, rgba(15, 118, 110, 0.18), transparent 70%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 380px, #eef2ea 100%);
line-height: 1.55;
overflow-x: hidden;
}

.wrap {
width: min(1120px, calc(100% - 2rem));
margin: 0 auto;
}

.topbar {
padding: 1rem 0;
}

.topbar-inner {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
background: rgba(255, 255, 255, 0.42);
border: 1px solid rgba(18, 35, 28, 0.08);
border-radius: 14px;
padding: 0.55rem 0.8rem;
backdrop-filter: blur(6px);
}

.topbar-meta {
display: inline-flex;
align-items: center;
gap: 0.35rem;
margin-left: auto;
margin-right: 0.5rem;
}

.mini-icon {
width: 1.65rem;
height: 1.65rem;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 999px;
background: rgba(15, 118, 110, 0.12);
border: 1px solid rgba(15, 118, 110, 0.25);
color: #0a5a54;
font-size: 0.88rem;
}

.logo {
text-decoration: none;
display: inline-flex;
align-items: center;
}

.logo img {
display: block;
width: clamp(168px, 26vw, 232px);
height: auto;
}

.hero {
padding: 3rem 0 2.5rem;
}

.hero-card {
background: linear-gradient(150deg, rgba(95, 118, 250, 0.82), rgba(85, 145, 141, 0.8));
color: #f4fcf8;
border-radius: 24px;
padding: 2.8rem;
position: relative;
overflow: hidden;
box-shadow: var(--shadow);
border: 1px solid rgba(233, 255, 246, 0.28);
backdrop-filter: blur(3px);
animation: rise 700ms ease-out both;
}

.hero-card::before,
.hero-card::after {
content: "";
position: absolute;
border-radius: 50%;
pointer-events: none;
}

.hero-card::before {
width: 320px;
height: 320px;
right: -120px;
top: -160px;
background: rgba(241, 124, 47, 0.35);
}

.hero-card::after {
width: 240px;
height: 240px;
left: -140px;
bottom: -120px;
background: rgba(243, 245, 239, 0.22);
}

.badge {
display: inline-flex;
align-items: center;
gap: 0.4rem;
font-size: 0.85rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #e8fff8;
background: rgba(7, 40, 35, 0.35);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 999px;
padding: 0.4rem 0.75rem;
margin-bottom: 1rem;
}

.trade-icons {
margin-top: 1rem;
display: flex;
gap: 0.45rem;
flex-wrap: wrap;
position: relative;
z-index: 1;
}

.trade-icon {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 2.05rem;
height: 2.05rem;
border-radius: 999px;
background: rgba(245, 255, 251, 0.2);
border: 1px solid rgba(255, 255, 255, 0.34);
color: #f0fff8;
font-size: 1rem;
}

h1,
h2 {
font-family: "Archivo", "Manrope", sans-serif;
letter-spacing: -0.02em;
line-height: 1.15;
}

h1 {
font-size: clamp(2rem, 5.5vw, 3.4rem);
margin: 0 0 0.85rem;
max-width: 16ch;
position: relative;
z-index: 1;
}

.lead {
max-width: 58ch;
margin: 0;
color: rgba(240, 255, 248, 0.93);
position: relative;
z-index: 1;
}

.hero-actions {
margin-top: 1.5rem;
display: flex;
gap: 0.8rem;
flex-wrap: wrap;
position: relative;
z-index: 1;
}

.chat-embedded-container {
margin-top: 1.75rem;
}

button,
.btn-link {
border: none;
border-radius: 12px;
padding: 0.78rem 1.1rem;
font-family: "Manrope", "Segoe UI", sans-serif;
font-size: 0.95rem;
font-weight: 700;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
}

button {
background: var(--accent);
color: #24150a;
box-shadow: 0 8px 20px rgba(241, 124, 47, 0.35);
}

.btn-link {
background: rgba(240, 255, 248, 0.18);
color: #e7fff8;
border: 1px solid rgba(255, 255, 255, 0.3);
}

button:hover,
.btn-link:hover {
transform: translateY(-1px);
}

main {
padding-bottom: 2.2rem;
}

footer {
background: rgba(10, 30, 24, 0.96);
color: rgba(220, 240, 232, 0.82);
border-top: 1px solid rgba(15, 118, 110, 0.3);
padding: 2.8rem 0 1.4rem;
margin-top: 2rem;
font-size: 0.88rem;
}

.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.footer-col h4 {
font-family: "Archivo", sans-serif;
font-size: 0.78rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: rgba(180, 220, 205, 0.55);
margin: 0 0 0.75rem;
}

.footer-col p,
.footer-col a {
margin: 0 0 0.35rem;
color: rgba(220, 240, 232, 0.82);
text-decoration: none;
display: block;
line-height: 1.6;
}

.footer-col a:hover {
color: #5eead4;
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.08);
padding-top: 1rem;
display: flex;
flex-wrap: wrap;
gap: 0.5rem 1.5rem;
align-items: center;
color: rgba(180, 210, 198, 0.5);
font-size: 0.8rem;
}

.footer-bottom a {
color: rgba(180, 210, 198, 0.6);
text-decoration: none;
}

.footer-bottom a:hover {
color: #5eead4;
}

.footer-org {
margin-left: auto;
font-variant-numeric: tabular-nums;
}

.panel {
background: rgba(251, 251, 248, 0.72);
border: 1px solid rgba(214, 223, 210, 0.88);
border-radius: 20px;
padding: 1.35rem;
margin-bottom: 1rem;
box-shadow: 0 8px 20px rgba(13, 35, 29, 0.06);
backdrop-filter: blur(6px);
animation: rise 750ms ease-out both;
}

.panel:nth-child(2) {
animation-delay: 80ms;
}

.panel:nth-child(3) {
animation-delay: 140ms;
}

.panel:nth-child(4) {
animation-delay: 200ms;
}

.panel:nth-child(5) {
animation-delay: 260ms;
}

.panel h2 {
margin: 0 0 0.8rem;
font-size: clamp(1.2rem, 2.4vw, 1.6rem);
color: #17352d;
}

.trust-strip {
margin: 1rem 0 1.2rem;
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.75rem;
}

.kpi {
background: rgba(255, 255, 255, 0.7);
border: 1px solid rgba(214, 223, 210, 0.88);
border-radius: 14px;
padding: 0.8rem;
}

.kpi strong {
display: block;
font-size: 1.2rem;
line-height: 1.2;
color: #0a5a54;
}

.kpi span {
color: var(--text-muted);
font-size: 0.92rem;
}

.muted {
color: var(--text-muted);
}

.industries {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
gap: 0.75rem;
}

.industry {
background: rgba(255, 255, 255, 0.66);
border: 1px solid rgba(214, 223, 210, 0.84);
border-radius: 14px;
padding: 0.75rem;
}

.industry .icon {
margin-right: 0.35rem;
}

.ai-float {
position: fixed;
left: 1rem;
bottom: 1rem;
z-index: 30;
display: inline-flex;
align-items: center;
gap: 0.6rem;
padding: 0.72rem 0.9rem;
border-radius: 999px;
background: rgba(10, 90, 84, 0.84);
color: #effff8;
border: 1px solid rgba(235, 255, 247, 0.45);
box-shadow: 0 10px 26px rgba(10, 90, 84, 0.36);
backdrop-filter: blur(7px);
animation: hoverPulse 2s ease-in-out infinite;
}

.ai-dot {
width: 0.58rem;
height: 0.58rem;
border-radius: 50%;
background: #f17c2f;
box-shadow: 0 0 0 rgba(241, 124, 47, 0.6);
animation: ping 1.3s infinite;
}

.ai-float strong {
font-size: 0.84rem;
letter-spacing: 0.01em;
}

.industry strong {
display: block;
margin-bottom: 0.22rem;
color: #15382f;
}

.two-col {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
}

ul {
margin: 0.6rem 0 0;
padding-left: 1rem;
}

li + li {
margin-top: 0.36rem;
}

.contact {
display: grid;
grid-template-columns: 1.3fr auto;
align-items: center;
gap: 1rem;
}

.steps {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.75rem;
}

.step {
background: rgba(255, 255, 255, 0.66);
border: 1px solid rgba(214, 223, 210, 0.88);
border-radius: 14px;
padding: 0.9rem;
}

.step .nr {
display: inline-flex;
width: 1.8rem;
height: 1.8rem;
border-radius: 999px;
align-items: center;
justify-content: center;
font-size: 0.85rem;
font-weight: 800;
color: #effff8;
background: #0a5a54;
margin-bottom: 0.55rem;
}

.step h3 {
margin: 0 0 0.35rem;
font-size: 1rem;
color: #16362d;
}

.faq {
display: grid;
gap: 0.55rem;
}

details {
background: rgba(255, 255, 255, 0.62);
border: 1px solid rgba(214, 223, 210, 0.88);
border-radius: 12px;
padding: 0.7rem 0.8rem;
}

summary {
font-weight: 700;
cursor: pointer;
color: #123329;
}

details p {
margin: 0.6rem 0 0;
}

.demo-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
align-items: start;
}

.demo-info {
background: rgba(255, 255, 255, 0.58);
border: 1px solid rgba(15, 118, 110, 0.22);
border-radius: 14px;
padding: 0.9rem;
backdrop-filter: blur(6px);
}

.demo-info h3 {
margin: 0 0 0.45rem;
font-size: 1rem;
color: #0a5a54;
}

.demo-info p {
margin: 0;
font-size: 0.95rem;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.9rem;
}

.price-card {
background: rgba(255, 255, 255, 0.72);
border: 1px solid rgba(15, 118, 110, 0.2);
border-radius: 16px;
padding: 1rem;
}

.price-card.featured {
border: 1px solid rgba(10, 90, 84, 0.5);
box-shadow: 0 10px 20px rgba(10, 90, 84, 0.12);
background: linear-gradient(160deg, rgba(240, 255, 250, 0.9), rgba(255, 255, 255, 0.78));
}

.price-kicker {
display: inline-block;
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
color: #0a5a54;
margin-bottom: 0.4rem;
}

.price-value {
margin: 0 0 0.4rem;
font-family: "Archivo", sans-serif;
font-size: clamp(1.6rem, 4vw, 2.1rem);
color: #0f3f37;
letter-spacing: -0.02em;
}

.price-note {
margin-top: 0.75rem;
padding: 0.7rem 0.8rem;
border-radius: 12px;
background: rgba(15, 118, 110, 0.08);
border: 1px dashed rgba(15, 118, 110, 0.34);
color: #1f4f45;
font-size: 0.9rem;
}

.email {
font-weight: 700;
color: #0a5a54;
}

@keyframes rise {
from {
    opacity: 0;
    transform: translateY(12px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

@keyframes hoverPulse {
0%,
100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-3px);
}
}

@keyframes ping {
0% {
    box-shadow: 0 0 0 0 rgba(241, 124, 47, 0.65);
    opacity: 1;
}
70% {
    box-shadow: 0 0 0 10px rgba(241, 124, 47, 0);
    opacity: 0.95;
}
100% {
    box-shadow: 0 0 0 0 rgba(241, 124, 47, 0);
    opacity: 1;
}
}

@keyframes chatNudgeTwice {
0%,
100% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.35);
}
25% {
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.42);
}
50% {
    transform: scale(1);
    box-shadow: 0 10px 24px rgba(79, 70, 229, 0.35);
}
75% {
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.42);
}
}

#chat-toggle.nudge {
animation: chatNudgeTwice 0.9s ease-in-out 1;
}

@media (max-width: 860px) {
.hero-card {
    padding: 2rem 1.3rem;
}

.two-col,
.pricing-grid,
.contact,
.demo-layout,
.steps,
.trust-strip {
    grid-template-columns: 1fr;
}

.contact button {
    width: 100%;
}

.topbar-meta {
    display: none;
}

.ai-float {
    left: 0.7rem;
    right: 0.7rem;
    top: 5rem;
    bottom: auto;
    width: auto;
    justify-content: center;
    border-radius: 14px;
}
}

@media (max-width: 1024px) {
.ai-float {
    top: 5rem;
    bottom: auto;
}
}
