/* LetLinkSo Custom Styles | Brand: #4499f7 */

:root {
  --brand: #4499f7; --brand-dark: #2a7de1; --brand-light: #7ab8fb;
  --glow: rgba(68,153,247,0.3); --glow-strong: rgba(68,153,247,0.5);
  --dark-bg: #0a0e1a; --dark-bg2: #111827; --dark-card: rgba(255,255,255,0.04);
  --light-bg: #f0f4fa; --light-bg2: #fff; --light-card: rgba(255,255,255,0.8);
  --border-dark: rgba(255,255,255,0.08); --border-light: rgba(68,153,247,0.15);
  --shadow: rgba(15,23,42,.12);
}
[data-theme="dark"] {
  --bg: var(--dark-bg); --bg2: var(--dark-bg2); --card: var(--dark-card);
  --border: var(--border-dark); --text: #f0f4fa; --text2: #94a3b8;
}
[data-theme="light"] {
  --bg: var(--light-bg); --bg2: var(--light-bg2); --card: var(--light-card);
  --border: var(--border-light); --text: #0f172a; --text2: #475569;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; transition: background .3s, color .3s; overflow-x: hidden; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 3px; }
::selection { background: var(--brand); color: #fff; }
h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img, svg, video { max-width: 100%; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,14,26,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: all .3s;
}
[data-theme="light"] .navbar { background: rgba(240,244,250,0.9); }
.navbar.scrolled { background: rgba(10,14,26,0.97); box-shadow: 0 4px 30px rgba(0,0,0,.3); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--text); }
[data-theme="dark"] .nav-logo { color: #fff; }
.navbar.scrolled .nav-logo { color: #fff; }
.logo-img { height: 40px; width: auto; object-fit: contain; }
.logo-icon { width: 34px; height: 34px; background: linear-gradient(135deg, var(--brand), #667eea); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .58rem; font-weight: 900; box-shadow: 0 0 18px var(--glow); flex-shrink: 0; letter-spacing: .02em; }
.logo-text span { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { padding: 7px 13px; border-radius: 7px; color: var(--text2); font-size: .88rem; font-weight: 500; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); background: rgba(68,153,247,.08); }
.nav-links li { position: relative; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); background: var(--card); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text2); font-size: 1.05rem; transition: all .2s; }
.theme-toggle:hover { border-color: var(--brand); color: var(--brand); transform: rotate(20deg); }
.lang-toggle { position: relative; display: flex; align-items: center; gap: 8px; min-width: 82px; padding: 6px 9px; border-radius: 7px; border: 1px solid var(--border); background: var(--card); cursor: pointer; font-size: .75rem; font-weight: 700; color: var(--text2); transition: all .2s; user-select: none; }
.lang-toggle:hover, .lang-toggle.open { border-color: var(--brand); color: var(--text); }
.lang-toggle .al { color: var(--brand); }
.language-current { display: inline-flex; align-items: center; gap: 6px; min-width: 0; }
.language-icon { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 5px; background: rgba(68,153,247,.12); color: var(--brand); font-size: .7rem; font-weight: 800; }
.language-caret { margin-left: auto; color: var(--text2); font-size: .68rem; transition: transform .2s; }
.lang-toggle.open .language-caret { transform: rotate(180deg); }
.language-menu { display: none; position: absolute; top: calc(100% + 8px); right: 0; z-index: 1100; min-width: 174px; padding: 6px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg2); box-shadow: 0 18px 42px rgba(0,0,0,.28); }
[data-theme="light"] .language-menu { box-shadow: 0 18px 42px rgba(15,23,42,.16); }
.lang-toggle.open .language-menu { display: grid; gap: 2px; }
.language-option { width: 100%; display: flex; align-items: center; gap: 10px; padding: 9px 10px; border: 0; border-radius: 7px; background: transparent; color: var(--text2); font: inherit; cursor: pointer; text-align: left; }
.language-option:hover, .language-option.active { background: rgba(68,153,247,.1); color: var(--text); }
.language-option-code { min-width: 42px; color: var(--brand); font-weight: 800; }
.language-option-name { font-weight: 600; }
.mobile-toggle { display: none; width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); background: var(--card); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.mobile-toggle span { width: 16px; height: 2px; background: var(--text); border-radius: 1px; transition: all .3s; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }
.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 999; padding: 24px; overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 15px 0; font-size: 1rem; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-menu .ma { margin-top: 20px; display: grid; grid-template-columns: minmax(0,1fr); gap: 10px; align-items: start; }
.mobile-menu .lang-toggle { display: block; width: 100%; min-width: 0; height: 44px; padding: 10px 12px; overflow: hidden; }
.mobile-menu .lang-toggle.open { height: auto !important; overflow: visible; }
.mobile-menu .lang-toggle .language-caret { position: absolute; top: 14px; right: 12px; }
.mobile-menu .language-menu { position: relative; inset: auto; grid-template-columns: repeat(2,minmax(0,1fr)); width: 100%; min-width: 0; margin-top: 10px; box-shadow: none; background: rgba(68,153,247,.045); }
.mobile-menu .language-option { min-width: 0; gap: 6px; padding: 8px; }
.mobile-menu .language-option-code { min-width: 30px; }
.mobile-menu .lang-toggle:not(.open) .language-menu { display: none; }
@media(max-width:768px){.nav-links{display:none}.mobile-toggle{display:flex}.lang-toggle{display:none}}
@media(max-width:768px){.mobile-menu .lang-toggle{display:block}.mobile-menu .ma>.btn{width:max-content}}

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 10px; font-size: .9rem; font-weight: 600; cursor: pointer; border: none; transition: all .3s cubic-bezier(.16,1,.3,1); text-decoration: none; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--brand), #667eea); color: #fff; box-shadow: 0 4px 20px var(--glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--glow-strong); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-ghost { background: rgba(68,153,247,.1); color: var(--brand); border: 1px solid rgba(68,153,247,.2); }
.btn-ghost:hover { background: rgba(68,153,247,.2); transform: translateY(-2px); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, #0a0e1a 0%, #0d1b2a 50%, #111827 100%); position: relative; overflow: hidden; padding-top: 70px; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse 72% 48% at 18% 16%, rgba(68,153,247,.18) 0%, transparent 70%), linear-gradient(115deg, rgba(68,153,247,.08) 0%, transparent 42%); pointer-events: none; }
.hero::after { content: ''; position: absolute; right: -12vw; top: 13%; width: 54vw; height: 54vw; max-width: 760px; max-height: 760px; border: 1px solid rgba(68,153,247,.09); border-radius: 50%; background: repeating-radial-gradient(circle, rgba(68,153,247,.09) 0 1px, transparent 1px 46px); opacity: .48; pointer-events: none; }
.hero-grid { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(68,153,247,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(68,153,247,.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
[data-theme="light"] .hero { background: linear-gradient(135deg, #e8f0fe 0%, #f0f4fa 50%, #e8f0fe 100%); }
[data-theme="light"] .hero::before { background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(68,153,247,.1) 0%, transparent 70%); }
[data-theme="light"] .hero { box-shadow: inset 0 -1px 0 rgba(68,153,247,.16), inset 0 -80px 90px rgba(255,255,255,.34); }
[data-theme="dark"] .hero { box-shadow: inset 0 -1px 0 rgba(255,255,255,.08), inset 0 -80px 90px rgba(17,24,39,.42); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; align-items: center; width: 100%; padding: 86px 0 72px; }
.hero-brand-layout { max-width: 920px; }
.hero-content { position: relative; z-index: 1; max-width: 860px; padding: 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; border-radius: 100px; background: rgba(68,153,247,.12); border: 1px solid rgba(68,153,247,.25); color: var(--brand); font-size: .75rem; font-weight: 700; margin-bottom: 22px; }
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); animation: pd 2s infinite; }
@keyframes pd { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.hero h1 { color: #fff; margin-bottom: 20px; font-size: clamp(2.25rem, 4vw, 3.7rem); line-height: 1.08; max-width: 720px; background: linear-gradient(135deg, #fff 0%, #c4d4f0 50%, #fff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
[data-theme="light"] .hero h1 { background: linear-gradient(135deg, #0f172a 0%, #334155 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.08rem; color: var(--text2); margin-bottom: 30px; max-width: 720px; line-height: 1.72; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-proof { display: flex; align-items: center; gap: 0; flex-wrap: wrap; max-width: 880px; color: var(--text2); font-size: .82rem; font-weight: 700; letter-spacing: .01em; }
.hero-proof span { display: inline-flex; align-items: center; min-height: 28px; white-space: nowrap; }
.hero-proof span:not(:last-child)::after { content: ''; width: 4px; height: 4px; margin: 0 15px; border-radius: 50%; background: rgba(68,153,247,.72); box-shadow: 0 0 12px rgba(68,153,247,.45); }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 1.85rem; font-weight: 800; color: var(--brand); }
.stat-label { font-size: .75rem; color: var(--text2); margin-top: 2px; }
@media(max-width:1100px){.hero-content{max-width:780px}}

/* Sections */
.section { padding: 96px 0; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.section-label::before { content: ''; width: 18px; height: 2px; background: var(--brand); border-radius: 1px; }
.section-header { margin-bottom: 52px; max-width: 580px; }
.section-header p { margin-top: 12px; font-size: 1.02rem; }

/* Cards */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 26px; transition: all .4s cubic-bezier(.16,1,.3,1); }
.card:hover { transform: translateY(-6px); border-color: rgba(68,153,247,.3); box-shadow: 0 0 40px var(--glow); }
.card-icon { width: 46px; height: 46px; border-radius: 10px; background: rgba(68,153,247,.1); border: 1px solid rgba(68,153,247,.15); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 16px; transition: all .3s; }
.card:hover .card-icon { background: rgba(68,153,247,.15); box-shadow: 0 0 18px var(--glow); }
.card h4 { margin-bottom: 7px; }
.card p { font-size: .88rem; }
.value-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media(max-width:1024px){.value-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.value-grid{grid-template-columns:1fr}}

/* Categories */
.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cat-card { background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 34px 26px; text-align: center; transition: all .4s cubic-bezier(.16,1,.3,1); text-decoration: none; cursor: pointer; }
.cat-card:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(68,153,247,.4); box-shadow: 0 0 40px var(--glow); }
.cat-icon { width: 64px; height: 64px; margin: 0 auto 16px; background: linear-gradient(135deg, rgba(68,153,247,.15), rgba(68,153,247,.05)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.cat-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.cat-card p { font-size: .85rem; margin-bottom: 16px; }
.cat-link { display: inline-flex; align-items: center; gap: 5px; color: var(--brand); font-size: .82rem; font-weight: 600; }
.cat-link svg { transition: transform .2s; }
.cat-card:hover .cat-link svg { transform: translateX(4px); }
@media(max-width:768px){.category-grid{grid-template-columns:1fr}}

/* Home feature bands */
.feature-section,
.solutions-section {
  background: var(--bg2);
  color: var(--text);
  padding: 112px 0 118px;
}
.feature-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg2) 0%, rgba(68,153,247,.035) 100%);
  border-top: 1px solid rgba(68,153,247,.18);
}
[data-theme="light"] .feature-section {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 -18px 48px rgba(15,23,42,.05);
}
[data-theme="dark"] .feature-section {
  background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
}
.feature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(68,153,247,.42), transparent);
}
.solutions-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.feature-section .section-header,
.solutions-section .section-header {
  max-width: 920px;
  margin: 0 auto 58px;
  text-align: center;
}
.feature-section .section-label,
.solutions-section .section-label {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  letter-spacing: .18em;
  color: var(--brand);
}
.feature-section .section-label::before,
.solutions-section .section-label::before {
  display: none;
}
.feature-section h2,
.solutions-section h2 {
  color: var(--text);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.feature-section .section-header p,
.solutions-section .section-header p {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--text2);
  font-size: 1.05rem;
}
.feature-section .card,
.solutions-section .cat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15,23,42,.04);
  text-align: left;
}
.feature-section .card {
  min-height: 214px;
  padding: 36px 42px;
}
.feature-section .card:hover,
.solutions-section .cat-card:hover {
  border-color: rgba(68,153,247,.35);
  box-shadow: 0 18px 48px var(--glow);
}
.feature-section .card-icon {
  width: auto;
  height: auto;
  justify-content: flex-start;
  margin-bottom: 26px;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 1.65rem;
}
.feature-section .card:hover .card-icon {
  background: transparent;
  box-shadow: none;
}
.feature-section .card h4,
.solutions-section .cat-card h3 {
  margin-bottom: 20px;
  color: var(--text);
  font-size: 1.22rem;
}
.feature-section .card p,
.solutions-section .cat-card p {
  color: var(--text2);
  font-size: .98rem;
  line-height: 1.55;
}
.solutions-section .category-grid {
  gap: 28px;
}
.solutions-section .cat-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 44px 46px 36px;
}
.solutions-section .cat-icon {
  display: none;
}
.solutions-section .cat-link {
  margin-top: auto;
  color: var(--brand);
  font-size: .9rem;
  font-weight: 700;
}
@media(max-width:1024px){
  .feature-section .value-grid { grid-template-columns: repeat(2,1fr); }
  .solutions-section .category-grid { grid-template-columns: 1fr; }
}
@media(max-width:640px){
  .feature-section,
  .solutions-section { padding: 76px 0 82px; }
  .feature-section .section-header,
  .solutions-section .section-header { margin-bottom: 34px; }
  .feature-section h2,
  .solutions-section h2 { font-size: 2rem; }
  .feature-section .card,
  .solutions-section .cat-card { min-height: 0; padding: 28px 24px; }
}

/* Customer Reviews */
.reviews-section,
.use-cases-section {
  background: var(--bg);
  color: var(--text);
  padding: 112px 0 118px;
}
.reviews-section .section-header,
.use-cases-section .section-header {
  max-width: 900px;
  margin: 0 auto 58px;
  text-align: center;
}
.reviews-section .section-label,
.use-cases-section .section-label {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  letter-spacing: .18em;
  color: var(--brand);
}
.reviews-section .section-label::before,
.use-cases-section .section-label::before {
  display: none;
}
.reviews-section h2,
.use-cases-section h2 {
  color: var(--text);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.reviews-section .section-header p,
.use-cases-section .section-header p {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--text2);
  font-size: 1.05rem;
}
.reviews-grid {
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 2px 0 18px;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.reviews-track {
  --reviews-set-width: 33.333333%;
  display: flex;
  width: max-content;
  animation: reviews-marquee 42s linear infinite;
  will-change: transform;
}
.reviews-grid:hover .reviews-track { animation-play-state: paused; }
.reviews-set {
  display: flex;
  flex: 0 0 auto;
  gap: 22px;
  padding-right: 22px;
}
@keyframes reviews-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--reviews-set-width))); }
}
.review-card {
  flex: 0 0 360px;
  min-height: 306px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all .35s cubic-bezier(.16,1,.3,1);
}
.review-card:hover { transform: translateY(-5px); border-color: rgba(68,153,247,.35); box-shadow: 0 0 34px var(--glow); }
.review-stars { color: #ff8a00; font-size: 1rem; letter-spacing: 1px; line-height: 1; }
.review-card h3 { color: var(--text); font-size: 1.02rem; line-height: 1.35; }
.review-card p { color: var(--text2); font-size: .9rem; }
.review-source { display: inline-flex; align-items: center; gap: 7px; color: var(--brand); font-size: .76rem; font-weight: 700; }
.review-source::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 12px var(--glow); }
.review-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; }
.review-tag { padding: 4px 9px; border-radius: 999px; background: rgba(68,153,247,.08); border: 1px solid rgba(68,153,247,.16); color: var(--text2); font-size: .72rem; font-weight: 600; }
.review-proof-btn {
  align-self: flex-start;
  margin-top: 4px;
  padding: 8px 12px;
  border-radius: 9px;
  border: 1px solid rgba(68,153,247,.22);
  background: rgba(68,153,247,.1);
  color: var(--brand);
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}
.review-proof-btn:hover { background: rgba(68,153,247,.18); transform: translateY(-1px); }
.review-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.review-modal.open { display: flex; }
.review-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(8px); }
.review-modal-dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.review-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.review-modal-head { padding-right: 42px; margin-bottom: 14px; }
.review-modal-kicker { color: var(--brand); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.review-modal-head h3 { margin-top: 4px; font-size: 1.05rem; }
.review-modal img { display: block; width: 100%; height: auto; border-radius: 10px; background: #fff; }
@media(max-width:640px){.review-card{flex-basis:82vw}.reviews-track{animation-duration:48s}.review-modal{padding:12px}.review-modal-dialog{padding:14px}}
@media(prefers-reduced-motion: reduce){.reviews-track{animation:none}.reviews-grid{overflow-x:auto;mask-image:none;-webkit-mask-image:none}.reviews-set[aria-hidden="true"]{display:none}}

/* Use Cases */
.use-cases-section {
  background: linear-gradient(180deg, rgba(68,153,247,.07) 0%, rgba(68,153,247,.035) 100%);
  border-top: 1px solid rgba(68,153,247,.16);
  border-bottom: 1px solid rgba(68,153,247,.14);
  padding: 82px 0 88px;
}
[data-theme="light"] .use-cases-section { background: linear-gradient(180deg, #eef5ff 0%, #f6faff 100%); }
[data-theme="dark"] .use-cases-section { background: linear-gradient(180deg, #0f172a 0%, #111827 100%); }
.use-cases-section .section-header { margin-bottom: 42px; }
.uc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.uc-card {
  min-height: 248px;
  padding: 36px 42px 34px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}
.uc-card:hover { border-color: rgba(68,153,247,.3); transform: translateY(-4px); box-shadow: 0 18px 48px rgba(0,0,0,.28); }
.uc-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.8rem; font-weight: 900; color: rgba(68,153,247,.28); line-height: 1; margin-bottom: 24px; }
.uc-card:nth-child(2) .uc-num { color: rgba(54,211,111,.28); }
.uc-card:nth-child(3) .uc-num { color: rgba(245,158,11,.30); }
.uc-card h4 { color: var(--text); margin-bottom: 16px; font-size: 1.14rem; }
.uc-card p { color: var(--text2); font-size: .94rem; line-height: 1.52; }
@media(max-width:768px){.uc-grid{grid-template-columns:1fr}}
@media(max-width:640px){
  .reviews-section { padding: 76px 0 82px; }
  .use-cases-section { padding: 58px 0 64px; }
  .reviews-section .section-header,
  .use-cases-section .section-header { margin-bottom: 34px; }
  .reviews-section h2,
  .use-cases-section h2 { font-size: 2rem; }
  .uc-card { min-height: 0; padding: 34px 28px; }
  .uc-num { margin-bottom: 24px; }
}

/* Trust */
.trust-section { background: var(--bg); border-top: 1px solid var(--border); }
.trust-g { display: flex; justify-content: center; flex-wrap: wrap; gap: 26px 40px; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: .85rem; font-weight: 600; }
.trust-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(68,153,247,.1); border: 1px solid rgba(68,153,247,.2); display: flex; align-items: center; justify-content: center; color: var(--brand); font-size: .7rem; }

/* CTA */
.cta-section { padding: 96px 0; background: linear-gradient(135deg, rgba(68,153,247,.06) 0%, transparent 60%); }
.cta-box { text-align: center; max-width: 580px; margin: 0 auto; padding: 52px 36px; background: var(--card); border: 1px solid rgba(68,153,247,.2); border-radius: 22px; backdrop-filter: blur(10px); }
.cta-box h2 { margin-bottom: 12px; }
.cta-box p { margin-bottom: 26px; }
.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.simple-cta-section { padding: 112px 0 118px; background: var(--bg); text-align: center; }
.simple-cta-section .cta-box { max-width: 920px; padding: 0; background: transparent; border: 0; border-radius: 0; backdrop-filter: none; }
.simple-cta-section .cta-box h2 { font-size: clamp(2.1rem, 4.4vw, 4rem); line-height: 1.08; margin-bottom: 22px; }
.simple-cta-section .cta-box p { max-width: 760px; margin: 0 auto 34px; color: var(--text2); font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.65; }
.simple-cta-section .btn-group { justify-content: center; }
.simple-cta-section .btn { min-width: 150px; justify-content: center; }

.footer { background: var(--dark-bg2); border-top: 1px solid var(--border); padding: 52px 0 26px; }
[data-theme="light"] .footer { background: var(--light-bg2); }
.footer-grid { display: grid; grid-template-columns: 1.7fr .9fr .9fr 1fr 1.3fr; gap: 28px; margin-bottom: 40px; }
.flogo { display: flex; align-items: center; gap: 9px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 13px; }
.footer-logo-img { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.flogo .logo-text { display: inline-block; white-space: nowrap; letter-spacing: 0; }
[data-theme="light"] .flogo { color: var(--text); }
.fdesc { font-size: .85rem; color: var(--text2); margin-top: 9px; }
.footer-col h5 { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text2); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { font-size: .85rem; color: var(--text2); transition: color .2s; }
.footer-col ul a:hover { color: var(--brand); }
.store-link { display: inline-flex; align-items: center; gap: 8px; }
.store-logo { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 18px; border-radius: 5px; overflow: hidden; box-shadow: 0 1px 4px rgba(15,23,42,.14); }
.store-logo img { width: 100%; height: 100%; display: block; object-fit: contain; }
.fc-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 11px; font-size: .82rem; color: var(--text2); }
.fc-icon { color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 9px; }
.footer-bottom p { font-size: .75rem; color: var(--text2); }
@media(max-width:1024px){.footer-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:768px){.footer-grid{grid-template-columns:1fr}.footer-bottom{flex-direction:column;text-align:center}}

/* Animations */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.s1 { transition-delay: .1s; } .s2 { transition-delay: .2s; } .s3 { transition-delay: .3s; } .s4 { transition-delay: .4s; }

/* Responsive */
@media(max-width:768px){.section{padding:60px 0}.hero{min-height:auto}.hero-layout{padding:54px 0 48px}.hero-sub{font-size:.98rem;line-height:1.62;margin-bottom:22px}.hero-actions{margin-bottom:24px}.hero-proof{font-size:.78rem;row-gap:6px}.hero-proof span{min-height:22px;white-space:normal}.hero-proof span:not(:last-child)::after{margin:0 10px}.hero-stats{gap:22px}.cta-box{padding:36px 22px}.simple-cta-section{padding:82px 0 88px}.simple-cta-section .cta-box{padding:0}.simple-cta-section .cta-box h2{font-size:clamp(2rem, 10vw, 3rem)}.container{padding:0 18px}.nav-inner{padding:0 18px}.hero h1{font-size:clamp(2.05rem, 10.5vw, 3rem);line-height:1.08}}
