:root {
--black: #000000;
--white: #ffffff;
--gray-bg: #f6f6f6;
--gray-line: #e2e2e2;
--gray-text: #545454;
--gray-mute: #8c8c8c;
--green: #06c167;
--green-dark: #04a256;
--green-soft: rgba(6,193,103,0.1);
--radius-sm: 8px;
--radius-md: 14px;
--radius-lg: 24px;
--ease: cubic-bezier(.22,1,.36,1);
--ease-precise: cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
color: var(--black);
background: var(--white);
font-weight: 400;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.fa-arrow-right { margin-left: .35em; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ---------- Buttons ---------- */
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 16px 28px;
border-radius: var(--radius-sm);
font-weight: 700;
font-size: 15px;
transition: background 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease), border-color 200ms var(--ease);
white-space: nowrap;
border: 1.5px solid transparent;
}
.btn-black { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-black:hover { background: #1c1c1c; border-color: #1c1c1c; }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { background: var(--gray-bg); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-green { background: var(--green); color: var(--black); border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-sm { padding: 12px 20px; font-size: 14px; }
.btn:active { transform: scale(0.97); }
.btn:focus-visible,
a:focus-visible,
.nav-link:focus-visible,
.mobile-toggle:focus-visible,
.slider-arrow:focus-visible,
.mega-product:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 8px;
  box-shadow: 0 0 0 3px rgba(6,193,103,0.12);
}

/* ---------- Header ---------- */
.site-header {
position: sticky;
top: 0;
z-index: 500;
background: rgba(255,255,255,0.92);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 1px solid var(--gray-line);
}
.site-header .wrap {
height: 72px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}
.logo {
font-weight: 900;
font-size: 21px;
letter-spacing: -0.04em;
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
}
.logo-dot {
width: 10px; height: 10px;
background: var(--green);
border-radius: 3px;
}
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
font-size: 14.5px;
font-weight: 600;
padding: 10px 16px;
border-radius: var(--radius-sm);
transition: background 200ms var(--ease), color 200ms var(--ease);
color: var(--gray-text);
display: inline-flex;
align-items: center;
gap: 4px;
cursor: pointer;
}
.nav-link:hover { background: var(--gray-bg); color: var(--black); }
.nav-link-mega .caret {
font-size: 9px;
transition: transform 250ms var(--ease);
display: inline-block;
}
.nav-mega-wrapper { position: relative; }
.nav-mega-wrapper .nav-link-mega { color: var(--gray-text); }
.nav-mega-wrapper:hover .nav-link-mega,
.nav-link-mega[aria-expanded="true"] { color: var(--black); background: var(--gray-bg); }
.nav-mega-wrapper:hover .nav-link-mega .caret,
.nav-link-mega[aria-expanded="true"] .caret { transform: rotate(180deg); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-actions a.login {
font-size: 14.5px;
font-weight: 600;
padding: 10px 16px;
color: var(--gray-text);
transition: color 200ms var(--ease);
}
.header-actions a.login:hover { color: var(--black); }

/* ---------- Megamenu ---------- */
.megamenu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--white);
border-top: 2px solid var(--green);
box-shadow: 0 24px 48px -12px rgba(0,0,0,0.18);
opacity: 0;
visibility: hidden;
transform: translateY(-8px);
transition: opacity 250ms var(--ease), visibility 250ms var(--ease), transform 250ms var(--ease);
z-index: 600;
max-height: calc(100vh - 72px);
overflow-y: auto;
}
.megamenu.is-open {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.megamenu-inner {
max-width: 1400px;
margin: 0 auto;
padding: 0 40px;
}
.megamenu-bar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 14px 0;
border-bottom: 1px solid var(--gray-line);
}
.megamenu-title {
font-size: 12px;
font-weight: 700;
color: var(--gray-text);
letter-spacing: 0.04em;
text-transform: uppercase;
display: flex;
align-items: center;
gap: 8px;
}
.megamenu-title::before {
content: '';
width: 7px; height: 7px;
border-radius: 50%;
background: var(--green);
}
.megamenu-close {
font-size: 18px;
color: var(--gray-mute);
width: 32px; height: 32px;
border-radius: var(--radius-sm);
display: flex; align-items: center; justify-content: center;
transition: background 200ms var(--ease), color 200ms var(--ease);
}
.megamenu-close:hover { background: var(--gray-bg); color: var(--black); }

.megamenu-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 28px;
padding: 24px 0 20px;
}
.mega-category { margin-bottom: 20px; }
.mega-category:last-child { margin-bottom: 0; }
.mega-cat-title {
font-size: 13px;
font-weight: 800;
letter-spacing: -0.015em;
margin-bottom: 4px;
display: flex;
align-items: center;
gap: 6px;
line-height: 1.3;
}
.mega-cat-title::before {
content: '';
width: 6px; height: 6px;
border-radius: 2px;
background: var(--green);
flex-shrink: 0;
}
.mega-cat-desc {
font-size: 11px;
color: var(--gray-mute);
line-height: 1.45;
margin-bottom: 12px;
padding-bottom: 10px;
border-bottom: 1px solid var(--gray-line);
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.mega-products { display: flex; flex-direction: column; gap: 1px; }
.mega-product {
display: flex;
align-items: center;
gap: 10px;
padding: 7px 8px;
border-radius: var(--radius-sm);
transition: background 200ms var(--ease);
color: var(--black);
cursor: pointer;
}
.mega-product:hover { background: var(--gray-bg); }
.mega-logo {
width: 30px; height: 30px;
border-radius: 6px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
padding: 6px;
color: white;
}
.mega-logo svg {
width: 100%;
height: 100%;
}
.mc-1 { background: #ef4444; }
.mc-2 { background: #f97316; }
.mc-3 { background: #f59e0b; }
.mc-4 { background: #22c55e; }
.mc-5 { background: #3b82f6; }
.mc-6 { background: #8b5cf6; }
.mc-7 { background: #ec4899; }
.mc-8 { background: #06b6d4; }

.mega-text { display: flex; flex-direction: column; gap: 0px; min-width: 0; }
.mega-name { font-size: 13px; font-weight: 700; line-height: 1.25; }
.mega-desc {
font-size: 10.5px; color: var(--gray-mute); line-height: 1.3;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.megamenu-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 0;
border-top: 1px solid var(--gray-line);
margin-bottom: 4px;
}
.megamenu-footer span { font-size: 13px; color: var(--gray-text); font-weight: 600; }
.megamenu-footer a { font-size: 13px; font-weight: 700; color: var(--black); transition: color 200ms var(--ease); display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.megamenu-footer a:hover { color: var(--green); }

/* ---------- Reveal animation ---------- */
.reveal {
opacity: 0;
transform: translateY(28px);
transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal-group > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ---------- Eyebrow ---------- */
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 13px;
font-weight: 700;
color: var(--gray-text);
margin-bottom: 20px;
}
.eyebrow-dot {
width: 7px; height: 7px;
border-radius: 50%;
background: var(--green);
flex-shrink: 0;
box-shadow: 0 0 0 3px rgba(6,193,103,0.18);
}

/* ---------- Hero ---------- */
.hero {
padding: 80px 0 96px;
background: var(--white);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: -200px; right: -200px;
width: 600px; height: 600px;
background: radial-gradient(circle, rgba(6,193,103,0.06) 0%, transparent 70%);
pointer-events: none;
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; position: relative; }
.hero-headline {
font-size: clamp(40px, 5.2vw, 72px);
font-weight: 900;
letter-spacing: -0.045em;
line-height: 1.0;
margin-bottom: 24px;
}
.hero-headline .accent { color: var(--green); }
.hero-sub {
font-size: 18px;
color: var(--gray-text);
max-width: 520px;
margin-bottom: 36px;
line-height: 1.6;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-facts { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--gray-line); }
.hero-fact-num { font-size: 28px; font-weight: 900; letter-spacing: -0.03em; }
.hero-fact-label { font-size: 13px; color: var(--gray-mute); font-weight: 600; margin-top: 4px; }

.hero-visual {
position: relative;
background: var(--black);
border-radius: var(--radius-lg);
aspect-ratio: 1/1;
padding: 28px;
display: flex;
flex-direction: column;
justify-content: space-between;
overflow: hidden;
}
.hero-visual-image {
position: absolute;
inset: 0;
width: 100%; height: 100%;
object-fit: cover;
opacity: 0.45;
filter: grayscale(0.2) contrast(1.05);
will-change: transform;
}
.hero-visual::after {
content: '';
position: absolute; inset: 0;
background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.65) 100%);
pointer-events: none;
}
.hero-visual-grid {
position: absolute; inset: 0;
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-template-rows: repeat(6, 1fr);
z-index: 1;
}
.hero-visual-grid span { border: 1px solid rgba(255,255,255,0.05); }
.hero-visual-tag {
align-self: flex-start;
position: relative; z-index: 2;
background: var(--white); color: var(--black);
font-size: 12px; font-weight: 700;
padding: 7px 12px; border-radius: 100px;
display: inline-flex; align-items: center; gap: 6px;
}
.hero-visual-tag::before {
content: ''; width: 6px; height: 6px;
border-radius: 50%; background: var(--green);
animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-visual-core { position: relative; z-index: 2; color: var(--white); }
.hero-visual-core .label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6); margin-bottom: 10px; letter-spacing: 0.02em; }
.hero-visual-core .value { font-size: 56px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.hero-visual-core .value .green { color: var(--green); }
.hero-visual-core .sub { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); margin-top: 8px; }
.hero-visual-strip { position: relative; z-index: 2; display: flex; gap: 8px; flex-wrap: wrap; }
.hero-visual-chip {
background: rgba(255,255,255,0.1); color: var(--white);
font-size: 12px; font-weight: 600;
padding: 8px 12px; border-radius: 100px;
border: 1px solid rgba(255,255,255,0.16);
backdrop-filter: blur(8px);
}

/* ---------- Stat band ---------- */
.stat-band { background: var(--gray-bg); padding: 56px 0; border-top: 1px solid var(--gray-line); border-bottom: 1px solid var(--gray-line); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-icon {
width: 36px; height: 36px;
border-radius: var(--radius-sm);
background: var(--white);
display: flex; align-items: center; justify-content: center;
margin-bottom: 12px; color: var(--black);
}
.stat-num { font-size: clamp(34px, 4vw, 50px); font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.stat-label { font-size: 14px; color: var(--gray-text); font-weight: 600; }

/* ---------- Section heading ---------- */
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-title {
font-size: clamp(30px, 3.8vw, 48px);
font-weight: 900;
letter-spacing: -0.038em;
line-height: 1.06;
margin-bottom: 16px;
}
.section-title .accent { color: var(--green); }
.section-desc { font-size: 17px; color: var(--gray-text); line-height: 1.6; }
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Category catalog ---------- */
.catalog { padding: 100px 0; background: var(--white); }
.category-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 16px;
}
.category-card {
border: 1px solid var(--gray-line);
border-radius: var(--radius-md);
background: var(--white);
overflow: hidden;
transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms var(--ease);
display: flex;
flex-direction: column;
cursor: pointer;
}
.category-card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 40px -12px rgba(0,0,0,0.14);
border-color: transparent;
}
.category-image {
width: 100%; aspect-ratio: 16/9;
overflow: hidden; background: var(--gray-bg);
position: relative;
}
.category-image img {
width: 100%; height: 100%;
object-fit: cover;
transition: transform 600ms var(--ease);
filter: saturate(0.92);
}
.category-card:hover .category-image img { transform: scale(1.06); filter: saturate(1); }
.category-image::after {
content: ''; position: absolute; inset: 0;
background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.08) 100%);
pointer-events: none;
}
.category-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.category-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.category-num { font-size: 11px; font-weight: 700; color: var(--gray-mute); letter-spacing: 0.04em; text-transform: uppercase; }
.category-count {
font-size: 11px; font-weight: 700;
color: var(--green);
background: var(--green-soft);
padding: 3px 8px; border-radius: 100px;
}
.category-name { font-size: 15px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; line-height: 1.25; }
.category-desc {
font-size: 12.5px; color: var(--gray-text); line-height: 1.5;
margin-bottom: 12px; flex: 1;
display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.category-chips { display: flex; flex-wrap: wrap; gap: 4px; }
.category-chip {
font-size: 11px; font-weight: 600;
padding: 4px 8px; border-radius: 100px;
background: var(--gray-bg); color: var(--gray-text);
}
.category-chip-more { font-size: 11px; font-weight: 700; padding: 4px 8px; color: var(--green); }
.catalog-footer { margin-top: 48px; display: flex; justify-content: center; }

/* ---------- Quote band ---------- */
.quote-band { background: var(--black); color: var(--white); padding: 96px 0; position: relative; overflow: hidden; }
.quote-band::before {
content: ''; position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 800px; height: 800px;
background: radial-gradient(circle, rgba(6,193,103,0.08) 0%, transparent 60%);
pointer-events: none;
}
.quote-band .wrap { max-width: 880px; position: relative; }
.quote-mark { font-size: 64px; font-weight: 900; color: var(--green); line-height: 0.5; margin-bottom: 16px; letter-spacing: -0.05em; }
.quote-text { font-size: clamp(24px, 3vw, 38px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.32; }
.quote-text .accent { color: var(--green); }
.quote-attr { margin-top: 32px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 12px; }
.quote-attr::before { content: ''; width: 32px; height: 1px; background: rgba(255,255,255,0.3); }

/* ---------- Deployment ---------- */
.deploy-section { padding: 100px 0; background: var(--white); }
.deploy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.deploy-card {
background: var(--gray-bg);
border-radius: var(--radius-lg);
overflow: hidden;
transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
display: flex; flex-direction: column;
}
.deploy-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12); }
.deploy-image { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.deploy-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.deploy-card:hover .deploy-image img { transform: scale(1.05); }
.deploy-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%); }
.deploy-image-badge {
position: absolute; top: 16px; left: 16px;
background: rgba(255,255,255,0.95); color: var(--black);
font-size: 11px; font-weight: 700;
padding: 6px 10px; border-radius: 100px; z-index: 2;
}
.deploy-body { padding: 32px 32px 36px; flex: 1; display: flex; flex-direction: column; }
.deploy-icon {
width: 44px; height: 44px; border-radius: 50%;
background: var(--black); color: var(--white);
display: flex; align-items: center; justify-content: center;
margin-bottom: 22px;
}
.deploy-name { font-size: 22px; font-weight: 800; letter-spacing: -0.022em; margin-bottom: 12px; }
.deploy-desc { font-size: 14.5px; color: var(--gray-text); line-height: 1.6; margin-bottom: 24px; flex: 1; }
.deploy-tag {
display: inline-flex; align-items: center; gap: 6px;
font-size: 12px; font-weight: 700;
color: var(--black); background: var(--white);
padding: 8px 14px; border-radius: 100px;
align-self: flex-start;
}
.deploy-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ---------- Anywhere band ---------- */
.anywhere-band {
background: var(--black); color: var(--white);
padding: 140px 0; text-align: center;
position: relative; overflow: hidden;
}
.anywhere-band::before {
content: ''; position: absolute;
top: 50%; left: 50%;
transform: translate(-50%, -50%);
width: 900px; height: 900px;
background: radial-gradient(circle, rgba(6,193,103,0.06) 0%, transparent 60%);
pointer-events: none;
}
.anywhere-eyebrow {
display: inline-flex; align-items: center; gap: 8px;
font-size: 13px; font-weight: 700;
color: rgba(255,255,255,0.55); margin-bottom: 24px;
position: relative;
}
.anywhere-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.anywhere-headline {
font-size: clamp(36px, 6.5vw, 80px);
font-weight: 900; letter-spacing: -0.04em;
line-height: 1.02; margin-bottom: 28px;
position: relative;
}
.anywhere-headline .line { display: block; }
.anywhere-headline .accent { color: var(--green); }
.anywhere-sub {
font-size: 18px; color: rgba(255,255,255,0.6);
max-width: 620px; margin: 0 auto 40px; line-height: 1.6;
position: relative;
}
.anywhere-cta { position: relative; }

/* ---------- Product Page ---------- */
.product-hero { padding: 120px 0 80px; background: var(--black); color: var(--white); text-align: center; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.product-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.75); z-index: 1; }
.product-hero .wrap { position: relative; z-index: 2; max-width: 800px; }
.product-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 900; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 20px; }
.product-hero p { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.5; margin-bottom: 12px; max-width: 700px; margin-left: auto; margin-right: auto; }
.product-intro { padding: 100px 0; background: var(--white); }
.product-intro-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: center; max-width: 1100px; margin: 0 auto; }
.product-intro h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 24px; }
.product-intro p { font-size: 17px; color: var(--gray-text); line-height: 1.7; margin-bottom: 16px; }
.product-intro-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15); aspect-ratio: 4/3; }
.product-intro-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.product-intro-img:hover img { transform: scale(1.03); }
.product-features { padding: 100px 0; background: var(--gray-bg); }
.product-features .section-head { text-align: center; margin: 0 auto 64px; }
.product-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--gray-line); }
.feature-card-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card-title { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.feature-card-desc { font-size: 14px; color: var(--gray-text); line-height: 1.6; }
.product-workflow { padding: 100px 0; background: var(--black); color: var(--white); }
.product-workflow .section-head { text-align: center; margin: 0 auto 64px; }
.product-workflow .section-title { color: var(--white); }
.product-workflow .section-desc { color: rgba(255,255,255,0.6); }
.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.workflow-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 32px; }
.workflow-step { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: var(--black); display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 20px; }
.workflow-card h4 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.workflow-card p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.product-cta { padding: 100px 0; background: var(--white); text-align: center; }
.product-cta .wrap { max-width: 900px; }
.product-cta h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 16px; }
.product-cta p { font-size: 17px; color: var(--gray-text); line-height: 1.6; margin-bottom: 48px; }
.product-advantages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: left; }
.product-advantage { padding: 24px; border: 1px solid var(--gray-line); border-radius: var(--radius-md); }
.product-advantage-icon { width: 40px; height: 40px; margin-bottom: 16px; color: var(--green); }
.product-advantage h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.product-advantage p { font-size: 13px; color: var(--gray-mute); margin: 0; line-height: 1.5; text-align: left; }
@media (max-width: 1024px) {
  .product-features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-advantages { grid-template-columns: repeat(2, 1fr); }
  .product-intro-layout { grid-template-columns: 1fr; gap: 40px; }
  .product-intro-img { max-width: 500px; margin: 0 auto; }
  .workflow-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .product-features-grid { grid-template-columns: 1fr; }
  .product-advantages { grid-template-columns: 1fr; }
}

/* ---------- Industries ---------- */
.industries-section { padding: 100px 0; background: var(--white); }
.industries-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: start; }
.industries-intro { position: sticky; top: 100px; }
.industries-image {
width: 100%; aspect-ratio: 4/5;
border-radius: var(--radius-lg);
overflow: hidden; margin-bottom: 32px;
position: relative;
}
.industries-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.industries-image:hover img { transform: scale(1.04); }
.industries-image-badge {
position: absolute; bottom: 20px; left: 20px;
background: var(--white); color: var(--black);
font-size: 12px; font-weight: 700;
padding: 8px 14px; border-radius: 100px;
display: inline-flex; align-items: center; gap: 6px;
}
.industries-image-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.industry-chip {
border: 1px solid var(--gray-line);
border-radius: var(--radius-sm);
padding: 22px; font-weight: 700; font-size: 15px;
display: flex; align-items: center; justify-content: space-between;
transition: background 250ms var(--ease), border-color 250ms var(--ease), transform 250ms var(--ease);
cursor: pointer;
}
.industry-chip:hover { background: var(--gray-bg); border-color: transparent; transform: translateY(-2px); }
.industry-chip .n { font-size: 12px; font-weight: 700; color: var(--gray-mute); }

/* ---------- Customization ---------- */
.custom-section { padding: 100px 0; background: var(--gray-bg); }
.custom-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.custom-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 1px 0 var(--gray-line); }
.custom-row { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--gray-line); }
.custom-row:first-child { padding-top: 0; }
.custom-row:last-child { border-bottom: none; padding-bottom: 0; }
.custom-check {
width: 28px; height: 28px; border-radius: 50%;
background: var(--green); color: var(--white);
display: flex; align-items: center; justify-content: center;
flex-shrink: 0; font-size: 14px; font-weight: 800;
}
.custom-row-title { font-weight: 800; font-size: 15.5px; margin-bottom: 4px; letter-spacing: -0.015em; }
.custom-row-desc { font-size: 14px; color: var(--gray-text); line-height: 1.55; }
.custom-image-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.custom-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.custom-image-wrap:hover img { transform: scale(1.04); }
.custom-image-overlay {
position: absolute; bottom: 20px; left: 20px; right: 20px;
background: rgba(255,255,255,0.95); border-radius: var(--radius-sm);
padding: 14px 18px; display: flex; align-items: center; gap: 12px;
backdrop-filter: blur(8px);
}
.custom-image-overlay-icon {
width: 32px; height: 32px; border-radius: var(--radius-sm);
background: var(--black); color: var(--white);
display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.custom-image-overlay-text { font-size: 13px; font-weight: 700; }
.custom-image-overlay-text small { display: block; font-size: 11px; font-weight: 600; color: var(--gray-mute); margin-top: 2px; }

/* ---------- Customers (Slider) ---------- */
.customers-section { padding: 100px 0; background: var(--white); }
.customers-slider-wrap { position: relative; margin-bottom: 64px; }
.customers-track {
display: flex;
gap: 24px;
overflow: hidden;
scroll-behavior: smooth;
}
.customer-slide {
flex: 0 0 calc(33.333% - 16px);
background: var(--gray-bg);
border-radius: var(--radius-lg);
padding: 36px;
display: flex;
flex-direction: column;
gap: 24px;
}
.customer-logo { font-size: 18px; font-weight: 800; color: var(--black); }
.customer-quote { font-size: 15px; font-weight: 500; line-height: 1.5; color: var(--gray-text); flex: 1; }
.customer-meta { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-line); }
.customer-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: var(--gray-line); }
.customer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.customer-info-name { font-weight: 800; font-size: 14px; }
.customer-info-title { font-size: 12px; color: var(--gray-mute); }

.slider-nav { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.slider-arrow {
width: 44px; height: 44px; border-radius: 50%;
background: var(--white); border: 1px solid var(--gray-line);
display: flex; align-items: center; justify-content: center;
cursor: pointer; transition: all 200ms var(--ease);
}
.slider-arrow:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.slider-arrow svg { width: 18px; height: 18px; }

/* ---------- Final CTA ---------- */
.final-cta {
background: var(--black); color: var(--white);
border-radius: var(--radius-lg);
padding: 72px 56px;
display: flex; align-items: center; justify-content: space-between;
gap: 40px; flex-wrap: wrap;
position: relative; overflow: hidden;
}
.final-cta::before {
content: ''; position: absolute;
top: -100px; right: -100px;
width: 400px; height: 400px;
background: radial-gradient(circle, rgba(6,193,103,0.15) 0%, transparent 70%);
pointer-events: none;
}
.final-cta-title { font-size: clamp(26px, 3vw, 38px); font-weight: 900; letter-spacing: -0.03em; max-width: 480px; line-height: 1.15; position: relative; }
.final-cta-title .accent { color: var(--green); }
.final-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--white); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.14); margin-bottom: 28px; }
.footer-logo { font-size: 24px; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; cursor: pointer; }
.footer-logo .logo-dot { background: var(--green); }
.footer-blurb { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 300px; line-height: 1.6; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.78); cursor: pointer; transition: color 200ms var(--ease); }
.footer-col li:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,0.4); }
/* ---------- Responsive ---------- */
.mobile-toggle { display: none; }

@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 16 / 10; max-width: 600px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .deploy-grid, .industries-layout, .custom-layout { grid-template-columns: 1fr; }
  .industries-layout { gap: 48px; }
  .industries-intro { position: static; }
  .industries-image { aspect-ratio: 16 / 9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .customer-slide { flex-basis: calc(50% - 12px); }
}

@media (max-width: 760px) {
  .wrap { padding: 0 20px; }
  .site-header .wrap { min-height: 64px; }
  .header-actions { display: none; }
  .mobile-toggle { display: inline-flex; width: 42px; height: 42px; margin-left: auto; align-items: center; justify-content: center; border: 1px solid var(--gray-line); border-radius: 8px; }
  .mobile-toggle::before, .mobile-toggle::after { display: none; }
  .mobile-toggle .fa-solid { font-size: 20px; }
  .mobile-toggle span, .mobile-toggle::before, .mobile-toggle::after { display: block; width: 18px; height: 2px; content: ''; transition: transform .2s ease, opacity .2s ease; }
  .mobile-toggle::before { transform: translateY(-6px); }
  .mobile-toggle::after { transform: translateY(4px); }
  .mobile-nav-open .mobile-toggle span { opacity: 0; }
  .mobile-nav-open .mobile-toggle::before { transform: translateY(2px) rotate(45deg); }
  .mobile-nav-open .mobile-toggle::after { transform: translateY(0) rotate(-45deg); }
  .main-nav { position: fixed; inset: 64px 0 auto; display: grid; gap: 0; padding: 12px 20px 20px; background: var(--white); border-bottom: 1px solid var(--gray-line); box-shadow: 0 18px 28px rgba(0,0,0,.08); transform: translateY(-125%); opacity: 0; visibility: hidden; transition: transform .25s var(--ease), opacity .2s ease, visibility .2s; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { display: block; padding: 14px 0; border-bottom: 1px solid var(--gray-line); }
  .nav-mega-wrapper { position: static; }
  .megamenu { position: static; width: auto; margin: 0; max-height: 0; overflow: hidden; border: 0; box-shadow: none; transform: none; opacity: 1; visibility: visible; transition: max-height .3s ease; }
  .megamenu.is-open { max-height: 70vh; overflow-y: auto; }
  .megamenu-inner { padding: 12px 0; }
  .megamenu-bar, .megamenu-footer { display: none; }
  .megamenu-grid { grid-template-columns: 1fr; gap: 0; }
  .megamenu-col { border: 0; }
  .mega-category { padding: 12px 0; }
  .mega-product { padding: 8px 0; }
  body.menu-open { overflow: hidden; }
  /* Slightly tighter hero spacing on small screens for improved balance */
  .hero { padding: 40px 0 56px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-facts { gap: 24px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .catalog, .deploy-section, .industries-section, .custom-section, .customers-section { padding: 64px 0; }
  .category-grid { grid-template-columns: 1fr; }
  .anywhere-band, .quote-band { padding: 64px 0; }
  .customer-slide { flex-basis: 100%; }
  .final-cta { flex-direction: column; align-items: flex-start; padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-visual-tag::before { animation: none; }
}

/* ---------- Pricing View ---------- */
.pricing-hero {
  padding: 80px 0 60px;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--gray-line);
}
.pricing-tabs {
  display: inline-flex;
  background: var(--gray-bg);
  padding: 5px;
  border-radius: 100px;
  margin-top: 40px;
  gap: 4px;
}
.pricing-tab {
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-text);
  transition: background 250ms var(--ease), color 250ms var(--ease);
  border: none;
  cursor: pointer;
  background: transparent;
}
.pricing-tab.is-active {
  background: var(--black);
  color: var(--white);
}
.pricing-content {
  padding: 64px 0 100px;
  background: var(--white);
}
.pricing-panel {
  display: none;
}
.pricing-panel.is-active {
  display: block;
}
.billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.billing-toggle-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-mute);
}
.billing-toggle-label.is-active {
  color: var(--black);
}
.billing-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--gray-line);
  border-radius: 100px;
  cursor: pointer;
  transition: background 250ms var(--ease);
}
.billing-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 250ms var(--ease);
}
.billing-switch.is-annual {
  background: var(--green);
}
.billing-switch.is-annual::after {
  transform: translateX(22px);
}
.save-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-soft);
  padding: 4px 10px;
  border-radius: 100px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.plan-card {
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.plan-card.is-featured {
  border-color: var(--black);
  border-width: 2px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}
.plan-badge.green {
  background: var(--green);
  color: var(--black);
}
.plan-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.plan-desc {
  font-size: 14px;
  color: var(--gray-mute);
  margin-bottom: 24px;
}
.plan-price {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.plan-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-mute);
}
.plan-users {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-line);
}
.plan-features {
  flex: 1;
  margin-bottom: 32px;
}
.plan-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 12px;
  line-height: 1.4;
}
.plan-feature svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}
.plan-feature.no-included {
  color: var(--gray-mute);
}
.plan-feature.no-included svg {
  color: var(--gray-mute);
}
.plan-btn {
  width: 100%;
  justify-content: center;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.addon-card {
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.addon-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  background: var(--green-soft);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.addon-name {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.addon-price {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 4px;
}
.addon-price small {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-mute);
}
.addon-desc {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 24px;
}
.addon-features {
  margin-bottom: 24px;
}
.addon-btn {
  width: 100%;
  justify-content: center;
}
.calc-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.calc-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-label {
  font-size: 14px;
  font-weight: 700;
}
.calc-select {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.calc-stepper {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.calc-stepper-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gray-line);
  background: var(--white);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 200ms var(--ease);
}
.calc-stepper-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.calc-stepper-value {
  font-size: 24px;
  font-weight: 800;
  min-width: 40px;
  text-align: center;
}
.calc-stepper-label {
  font-size: 13px;
  color: var(--gray-mute);
}
.calc-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.calc-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: border-color 200ms var(--ease);
}
.calc-checkbox.is-checked {
  border-color: var(--green);
  background: rgba(6,193,103,0.05);
}
.calc-checkbox input {
  display: none;
}
.calc-check-mark {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gray-mute);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 200ms var(--ease);
}
.calc-checkbox.is-checked .calc-check-mark {
  background: var(--green);
  border-color: var(--green);
}
.calc-checkbox.is-checked .calc-check-mark::after {
  content: '✓';
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}
.calc-checkbox-text {
  flex: 1;
}
.calc-checkbox-name {
  font-weight: 700;
  font-size: 14px;
}
.calc-checkbox-price {
  font-size: 13px;
  color: var(--gray-mute);
}
.calc-summary {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.calc-summary h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 24px;
}
.calc-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.calc-summary-total {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.calc-summary-total-label {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}
.calc-summary-total-value {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.calc-summary-total-value span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.calc-summary-btn {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}
.catalog-footer {
  text-align: center;
  margin-top: 12px;
}

/* ---------- Solutions View (App Store) ---------- */
.solutions-hero {
padding: 80px 0 60px; background: var(--black); color: var(--white);
text-align: center; position: relative; overflow: hidden;
}
.solutions-hero::before {
content: ''; position: absolute;
top: 50%; left: 50%; transform: translate(-50%, -50%);
width: 900px; height: 900px;
background: radial-gradient(circle, rgba(6,193,103,0.08) 0%, transparent 60%);
pointer-events: none;
}
.solutions-hero .wrap { position: relative; max-width: 800px; }
.solutions-eyebrow {
display: inline-flex; align-items: center; gap: 8px;
font-size: 13px; font-weight: 700; color: var(--green);
margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.05em;
}
.adv-hero {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.adv-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(6,193,103,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.adv-hero .wrap { position: relative; max-width: 760px; }
.adv-hero h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.0; margin-bottom: 24px; }
.adv-hero h1 .accent { color: var(--green); }
.adv-hero p { font-size: 18px; color: rgba(255,255,255,0.78); line-height: 1.75; margin-bottom: 48px; }
.adv-stats { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.adv-stat-num { font-size: 48px; font-weight: 900; color: var(--green); letter-spacing: -0.03em; }
.adv-stat-label { font-size: 14px; color: rgba(255,255,255,0.68); font-weight: 600; }

.adv-strength { padding: 100px 0; background: var(--white); }
.adv-strength-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.adv-card {
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 36px;
  background: var(--white);
}
.adv-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--gray-bg);
  color: var(--black);
  margin-bottom: 22px;
}
.adv-card-icon svg { width: 24px; height: 24px; }
.adv-card-title { font-size: 18px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.015em; }
.adv-card-desc { font-size: 14px; color: var(--gray-text); line-height: 1.7; }

.adv-problem { padding: 100px 0; background: var(--black); color: var(--white); }
.adv-problem .section-head { margin: 0 auto 64px; }
.adv-problem .section-title { color: var(--white); }
.adv-problem .eyebrow { color: rgba(255,255,255,0.65); }
.adv-problem-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 48px; max-width: 940px; margin: 0 auto; }
.adv-problem-item { display: flex; align-items: flex-start; gap: 16px; font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.adv-problem-num { font-size: 14px; font-weight: 800; color: var(--green); flex-shrink: 0; width: 24px; }

.adv-solution { padding: 100px 0; background: var(--white); text-align: center; }
.adv-solution .wrap { max-width: 820px; }
.adv-solution h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 24px; }
.adv-solution p { font-size: 17px; color: var(--gray-text); line-height: 1.7; margin-bottom: 16px; }
.adv-solution-highlights { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 48px; }
.adv-highlight {
  padding: 10px 20px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
}

.adv-savings { padding: 100px 0; background: var(--gray-bg); }
.adv-savings-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.adv-saving-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.adv-saving-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.adv-saving-icon svg { width: 24px; height: 24px; }
.adv-saving-title { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.adv-saving-desc { font-size: 13px; color: var(--gray-text); line-height: 1.6; }

@media (max-width: 1024px) {
  .adv-strength-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-savings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .adv-hero { padding: 64px 0 56px; }
  .adv-stats { gap: 32px; }
  .adv-problem-list { grid-template-columns: 1fr; }
  .adv-strength-grid { grid-template-columns: 1fr; }
  .adv-savings-grid { grid-template-columns: 1fr; }
}

.solutions-title { font-size: clamp(36px, 5vw, 56px); font-weight: 900; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 20px; }
.solutions-sub { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 12px; line-height: 1.5; }
.solutions-question { font-size: 24px; font-weight: 700; margin-bottom: 32px; color: var(--white); }
.solutions-welcome { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 40px; line-height: 1.6; }
.solutions-search {
display: flex; gap: 12px; background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2); border-radius: 100px;
padding: 6px; max-width: 600px; margin: 0 auto;
}
.solutions-search input {
flex: 1; background: transparent; border: none; outline: none;
color: var(--white); font-size: 15px; padding: 12px 20px; font-family: inherit;
}
.solutions-search input::placeholder { color: rgba(255,255,255,0.4); }
.solutions-search-btn {
background: var(--green); color: var(--black); border-radius: 100px;
padding: 12px 28px; font-weight: 700; font-size: 14px; transition: background 200ms var(--ease);
}
.solutions-search-btn:hover { background: var(--green-dark); }

.app-store-section { padding: 80px 0 100px; background: var(--white); }
.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.app-card {
background: var(--white); border: 1px solid var(--gray-line);
border-radius: var(--radius-md); padding: 24px;
display: flex; flex-direction: column; gap: 16px;
transition: all 300ms var(--ease); cursor: pointer;
}
.app-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -12px rgba(0,0,0,0.12); border-color: transparent; }
.app-card-icon {
width: 56px; height: 56px; border-radius: var(--radius-md);
display: flex; align-items: center; justify-content: center;
color: white; padding: 12px;
}
.app-card-icon svg { width: 100%; height: 100%; }
.app-card-title { font-size: 15px; font-weight: 800; letter-spacing: -0.015em; line-height: 1.3; }
.app-card-desc { font-size: 13px; color: var(--gray-text); line-height: 1.5; flex: 1; }
.app-card-btn { font-size: 13px; font-weight: 700; color: var(--black); display: inline-flex; align-items: center; gap: 6px; }
.app-card-btn::after { content: 'â†’'; transition: transform 200ms var(--ease); }
.app-card:hover .app-card-btn::after { transform: translateX(4px); }

.app-card-btn::after { display: none; }
.app-card-btn .fa-arrow-right { transition: transform 200ms var(--ease); }
.app-card:hover .app-card-btn .fa-arrow-right { transform: translateX(4px); }

/* App Modal */
.app-modal-overlay {
position: fixed; inset: 0; background: rgba(0,0,0,0.6);
z-index: 1000; display: flex; align-items: center; justify-content: center;
padding: 20px; opacity: 0; visibility: hidden;
transition: opacity 300ms var(--ease), visibility 300ms var(--ease);
}
.app-modal-overlay.is-open { opacity: 1; visibility: visible; }
.app-modal {
background: var(--white); border-radius: var(--radius-lg);
width: 100%; max-width: 900px; max-height: 90vh; overflow: hidden;
display: grid; grid-template-columns: 1.5fr 1fr;
transform: scale(0.95); transition: transform 300ms var(--ease);
}
.app-modal-overlay.is-open .app-modal { transform: scale(1); }
.app-modal-slider { background: var(--gray-bg); position: relative; overflow: hidden; }
.app-slides-container { display: flex; transition: transform 500ms var(--ease); height: 100%; }
.app-slide {
flex: 0 0 100%; height: 100%; display: flex; flex-direction: column;
justify-content: flex-end; position: relative;
}
.app-slide img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.app-slide-overlay {
position: relative; padding: 32px;
background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
color: var(--white);
}
.app-slide-title { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.app-slide-text { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.app-slider-nav { position: absolute; bottom: 24px; right: 24px; display: flex; gap: 8px; z-index: 2; }
.app-slider-dot {
width: 8px; height: 8px; border-radius: 50%;
background: rgba(255,255,255,0.4); cursor: pointer; transition: background 200ms var(--ease);
}
.app-slider-dot.is-active { background: var(--white); }
.app-modal-details { padding: 40px; display: flex; flex-direction: column; overflow-y: auto; }
.app-modal-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.app-modal-icon {
width: 64px; height: 64px; border-radius: var(--radius-md);
display: flex; align-items: center; justify-content: center;
color: white; padding: 14px; flex-shrink: 0;
}
.app-modal-icon svg { width: 100%; height: 100%; }
.app-modal-name { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 4px; }
.app-modal-cat { font-size: 13px; color: var(--gray-mute); font-weight: 600; }
.app-modal-close {
position: absolute; top: 16px; right: 16px;
width: 36px; height: 36px; border-radius: 50%;
background: var(--gray-bg); display: flex; align-items: center; justify-content: center;
cursor: pointer; z-index: 3; font-size: 18px; color: var(--gray-text);
}
.app-modal-close:hover { background: var(--gray-line); color: var(--black); }
.app-modal-body { flex: 1; }
.app-modal-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.app-modal-body p { font-size: 14px; color: var(--gray-text); line-height: 1.6; margin-bottom: 20px; }
.app-modal-actions { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--gray-line); }

/* ---------- Responsive refinements ---------- */
html, body { max-width: 100%; overflow-x: clip; }
input, select, textarea { max-width: 100%; }
table { display: block; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 1200px) {
  .wrap { padding-inline: 32px; }
  .site-header .wrap { gap: 12px; }
  .nav-link { padding-inline: 12px; }
  .header-actions a.login { padding-inline: 12px; }
  .hero .wrap, .industries-layout, .custom-layout { gap: 48px; }
  .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-grid { gap: 28px; }
}

@media (max-width: 1024px) {
  .megamenu-inner { padding-inline: 32px; }
  .megamenu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .app-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-tabs { justify-content: center; flex-wrap: wrap; }
  .pricing-tab { flex: 1 1 minmax(140px, auto); min-width: 0; }
  .addons-grid { grid-template-columns: 1fr; }
  .calc-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .site-header .wrap { height: 64px; min-height: 64px; }
  .header-actions { display: none; }
  .mobile-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-line);
    border-radius: var(--radius-sm);
  }
  .mobile-toggle::before, .mobile-toggle::after { content: none; display: none; }
  .main-nav {
    position: fixed;
    inset: 64px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 32px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-line);
    box-shadow: 0 18px 28px rgba(0,0,0,.08);
    transform: translateY(-125%);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s var(--ease), opacity .2s ease, visibility .2s;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { display: flex; padding: 14px 0; border-bottom: 1px solid var(--gray-line); }
  .nav-mega-wrapper { position: static; }
  .megamenu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    width: auto;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    border: 0;
    border-top: 1px solid var(--gray-line);
    border-bottom: 1px solid var(--gray-line);
    box-shadow: 0 18px 28px rgba(0,0,0,.08);
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: max-height .3s ease;
  }
  .megamenu.is-open { max-height: calc(100dvh - 64px); overflow-y: auto; }
  .megamenu-inner { padding-inline: 32px; }
  .megamenu-bar, .megamenu-footer { display: none; }
  .megamenu-grid { grid-template-columns: 1fr; gap: 0; padding: 8px 0 16px; }
  .mega-category { margin: 0; padding: 14px 0; border-bottom: 1px solid var(--gray-line); }
  .mega-category:last-child { border-bottom: 0; }
  .mega-product { min-height: 44px; }
  body.menu-open { overflow: hidden; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .wrap { padding-inline: 20px; }
  .site-header .wrap { height: 64px; min-height: 64px; }
  .logo { flex-shrink: 0; }
  .mobile-toggle { min-width: 44px; min-height: 44px; }
  .main-nav {
    inset: 64px 0 auto;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-link { min-height: 44px; align-items: center; }
  .megamenu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 601;
    background: var(--white);
    max-height: 0;
    padding-inline: 20px;
    border-top: 1px solid var(--gray-line);
    border-bottom: 1px solid var(--gray-line);
  }
  .megamenu.is-open { max-height: calc(100dvh - 64px); }
  .megamenu-inner { padding: 0; }
  .megamenu-grid { padding: 8px 0 16px; }
  .mega-category { margin: 0; padding: 14px 0; border-bottom: 1px solid var(--gray-line); }
  .mega-category:last-child { border-bottom: 0; }
  .mega-cat-desc { -webkit-line-clamp: unset; }
  .mega-product { min-height: 44px; }
  .hero-headline { font-size: clamp(40px, 12vw, 56px); }
  .hero-sub, .section-desc, .anywhere-sub, .solutions-sub { font-size: 16px; }
  .hero-visual { width: 100%; max-width: none; }
  .hero-visual-core .value { font-size: clamp(40px, 14vw, 56px); }
  .hero-ctas .btn, .final-cta-actions .btn { width: 100%; min-height: 44px; }
  .hero-facts { justify-content: space-between; gap: 20px; }
  .hero-facts > div { flex: 1 1 28%; min-width: 84px; }
  .section-head { margin-bottom: 40px; }
  .section-title { font-size: clamp(30px, 9vw, 40px); }
  .category-grid, .deploy-grid, .app-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-card, .deploy-card, .app-card { min-width: 0; }
  .deploy-body { padding: 24px; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-chip { min-height: 64px; padding: 18px; }
  .custom-card { padding: 24px; }
  .customers-track { gap: 16px; }
  .customer-slide { padding: 28px; }
  .final-cta { padding: 36px 24px; gap: 28px; }
  .final-cta-actions { width: 100%; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 20px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .solutions-hero { padding: 64px 0 48px; }
  .solutions-search { border-radius: var(--radius-sm); }
  .solutions-search input { min-width: 0; }
  .app-store-section { padding: 64px 0; }
  .app-modal { grid-template-columns: 1fr; max-height: calc(100dvh - 32px); overflow-y: auto; }
  .app-modal-slider { min-height: 260px; }
  .app-modal-details { padding: 28px 24px; overflow: visible; }
}

@media (max-width: 576px) {
  /* Further refinements for smallest screens */
  .hero { padding: 36px 0 48px; }
  .hero .wrap { gap: 28px; }
  .hero-headline { margin-bottom: 14px; font-size: clamp(28px, 12vw, 44px); line-height: 1.04; }
  .hero-sub { margin-bottom: 22px; font-size: 15px; }
  .hero-ctas { margin-bottom: 32px; }
  .hero-visual { aspect-ratio: 1 / 1.08; padding: 20px; border-radius: 18px; }
  .hero-visual-chip { padding: 7px 10px; }
  .stat-band { padding: 44px 0; }
  .stat-grid { gap: 28px 16px; }
  .catalog, .deploy-section, .industries-section, .custom-section, .customers-section { padding: 56px 0; }
  .quote-band, .anywhere-band { padding: 56px 0; }
  .quote-mark { font-size: 52px; }
  .quote-attr { margin-top: 24px; }
  .category-grid, .deploy-grid, .app-grid { grid-template-columns: 1fr; }
  .category-body { padding: 16px; }
  .deploy-name { font-size: 20px; }
  .custom-layout, .industries-layout { gap: 36px; }
  .custom-image-overlay { left: 12px; right: 12px; bottom: 12px; padding: 12px; }
  .customer-slide { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > :first-child { grid-column: auto; }
  .site-footer { padding: 56px 0 28px; }
  .footer-bottom { flex-direction: column; }
  .solutions-title { font-size: clamp(34px, 11vw, 48px); }
  .solutions-question { font-size: 20px; }
  .solutions-search { flex-direction: column; padding: 8px; gap: 4px; }
  .solutions-search input, .solutions-search-btn { width: 100%; min-height: 44px; }
  .solutions-search-btn { border-radius: var(--radius-sm); }
  .app-modal-overlay { padding: 12px; }
  .app-modal-slider { min-height: 220px; }
  .app-slide-overlay { padding: 24px; }
  .pricing-hero { padding: 56px 0 48px; }
  .pricing-tabs { justify-content: center; flex-wrap: wrap; gap: 8px; }
  .pricing-tab { flex: 1 1 auto; min-width: 0; }
  .billing-toggle { justify-content: center; gap: 12px; }
  .calc-layout { padding: 32px; gap: 24px; }
  .calc-stepper { gap: 12px; }
  .calc-stepper-label { flex: 1 1 100%; min-width: 0; }
  .calc-checkbox { padding: 14px; }
  .calc-summary { padding: 32px; }
  .calc-summary-total { flex-direction: column; align-items: flex-start; gap: 12px; }
  .calc-summary-total-value { font-size: 28px; }
  .calc-summary-btn { min-height: 44px; }
}

@media (max-width: 390px) {
  .wrap { padding-inline: 16px; }
  .megamenu { padding-inline: 16px; }
  .hero-facts { gap: 16px; }
  .hero-fact-num { font-size: 24px; }
  .hero-fact-label { font-size: 12px; }
  .stat-label { font-size: 13px; }
  .final-cta { padding: 32px 20px; }
  .custom-card { padding: 20px; }
  .custom-row { gap: 12px; }
  .custom-check { width: 24px; height: 24px; font-size: 12px; }
}


