:root {
  --blue:      #2563EB;
  --blue-d:    #1D4ED8;
  --blue-l:    #60A5FA;
  --blue-pale: #EFF6FF;
  --blue-mid:  #DBEAFE;
  --navy:      #0F172A;
  --navy2:     #1E293B;
  --slate:     #64748B;
  --slate2:    #94A3B8;
  --border:    #E2E8F0;
  --white:     #FFFFFF;
  --bg:        #F8FAFC;
  --text:      #0F172A;
  --text2:     #334155;
  --green:     #059669;
  --green-pale:#ECFDF5;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
@media (max-width: 640px) {
  .wrap { width: calc(100% - 32px); }
}

/* NAV */
.nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { width: 38px; height: 38px; border-radius: 10px; background: var(--blue); display: grid; place-items: center; font-weight: 800; font-size: 16px; color: white; flex-shrink: 0; }
.logo-name { font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.logo-sub { font-size: 11px; color: var(--slate); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-a { font-size: 14px; font-weight: 500; color: var(--slate); text-decoration: none; padding: 7px 13px; border-radius: 8px; transition: color .15s, background .15s; }
.nav-a:hover { color: var(--navy); background: var(--bg); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 18px; border-radius: 9px; font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; border: none; transition: all .15s ease; }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 1px 3px rgba(37,99,235,.3), 0 4px 12px rgba(37,99,235,.15); }
.btn-primary:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,.3); }
.btn-outline { background: white; color: var(--text2); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 13px 26px; font-size: 15px; border-radius: 10px; }
.btn-xl { padding: 15px 32px; font-size: 16px; border-radius: 12px; }

/* HERO */
.hero { padding: 72px 0 0; background: linear-gradient(180deg, var(--bg) 0%, white 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 400px at 70% 0%, rgba(37,99,235,0.06), transparent), radial-gradient(400px 300px at 10% 50%, rgba(37,99,235,0.04), transparent); pointer-events: none; }
.hero-layout { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: start; position: relative; z-index: 1; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--blue-pale); border: 1px solid var(--blue-mid); border-radius: 100px; padding: 5px 12px 5px 8px; font-size: 12.5px; font-weight: 600; color: var(--blue); margin-bottom: 22px; }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); animation: blink 2.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero-h1 { font-size: clamp(34px, 4.2vw, 54px); font-weight: 800; letter-spacing: -1.5px; color: var(--navy); line-height: 1.08; margin-bottom: 20px; }
.hero-h1 .hl { color: var(--blue); position: relative; display: inline-block; }
.hero-h1 .hl::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--blue-l)); opacity: 0.3; }
.hero-p { font-size: 17px; color: var(--slate); line-height: 1.75; max-width: 50ch; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.hero-proof { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--slate2); flex-wrap: wrap; margin-bottom: 0; line-height: 1.6; }
.hero-proof span { white-space: nowrap; }
.hero-proof-check { width: 18px; height: 18px; border-radius: 50%; background: var(--green-pale); display: grid; place-items: center; font-size: 10px; color: var(--green); }
.hero-stats { display: flex; gap: 32px; padding: 22px 0; border-top: 1px solid var(--border); margin-top: 24px; }
.stat-n { font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: -1px; }
.stat-n span { color: var(--blue); }
.stat-l { font-size: 12.5px; color: var(--slate); margin-top: 3px; }

/* LOGIN CARD */
.login-card { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.07), 0 24px 48px rgba(37,99,235,0.06); position: sticky; top: 90px; }
.lc-header { margin-bottom: 24px; }
.lc-logo { width: 48px; height: 48px; border-radius: 13px; background: var(--blue); display: grid; place-items: center; font-weight: 800; font-size: 20px; color: white; margin-bottom: 14px; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.lc-title { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.lc-sub { font-size: 13.5px; color: var(--slate); line-height: 1.5; }
.form-field { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 7px; }
.form-input { width: 100%; background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px; padding: 11px 14px; font-family: inherit; font-size: 14.5px; color: var(--text); outline: none; transition: all .15s; -webkit-appearance: none; }
.form-input::placeholder { color: var(--slate2); }
.form-input:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
.form-input:-webkit-autofill { -webkit-box-shadow: 0 0 0 1000px #f8fafc inset; -webkit-text-fill-color: var(--text); }
.pw-wrap { position: relative; }
.pw-wrap .form-input { padding-right: 44px; }
.pw-eye { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--slate2); font-size: 17px; padding: 4px; line-height: 1; }
.pw-eye:hover { color: var(--slate); }
.btn-login { width: 100%; padding: 13px; background: var(--blue); color: white; border: none; border-radius: 11px; font-family: inherit; font-size: 15px; font-weight: 700; cursor: pointer; box-shadow: 0 2px 8px rgba(37,99,235,0.25); transition: all .15s; }
.btn-login:hover { background: var(--blue-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,0.3); }
.uetds-tag { display: inline-flex; align-items: center; gap: 5px; background: var(--blue-pale); border: 1px solid var(--blue-mid); border-radius: 6px; padding: 4px 9px; font-size: 11.5px; font-weight: 600; color: var(--blue); margin-top: 12px; }
.lc-footer { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border); }
.lc-support { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--slate); }
.online-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 2px rgba(5,150,105,0.2); flex-shrink: 0; }

/* SCREENSHOT */
.hero-screenshot { padding: 40px 0 0; }
.screenshot-frame { background: var(--navy); border-radius: 12px 12px 0 0; overflow: hidden; box-shadow: 0 -4px 32px rgba(0,0,0,0.1); }
.sf-bar { background: var(--navy2); padding: 10px 14px; display: flex; align-items: center; gap: 8px; }
.sf-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.sf-url { flex: 1; background: rgba(255,255,255,0.07); border-radius: 5px; padding: 4px 10px; font-size: 11px; color: rgba(255,255,255,0.35); margin: 0 8px; font-family: monospace; }
.sf-body { padding: 20px 16px; display: grid; grid-template-columns: 180px 1fr; gap: 12px; min-height: 200px; }
.sf-sidebar { background: rgba(255,255,255,0.04); border-radius: 8px; padding: 10px; }
.sf-menu-item { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 6px; font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 2px; cursor: default; }
.sf-menu-item.active { background: rgba(37,99,235,0.25); color: rgba(255,255,255,0.9); }
.sf-menu-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.sf-main { display: flex; flex-direction: column; gap: 10px; }
.sf-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.sf-stat-card { background: rgba(255,255,255,0.06); border-radius: 8px; padding: 12px; }
.sf-stat-num { font-size: 22px; font-weight: 800; color: white; font-family: 'Plus Jakarta Sans', sans-serif; }
.sf-stat-label { font-size: 9px; color: rgba(255,255,255,0.35); margin-top: 2px; letter-spacing: 0.5px; }
.sf-table { background: rgba(255,255,255,0.04); border-radius: 8px; overflow: hidden; }
.sf-table-head { display: grid; grid-template-columns: 1fr 90px 80px; padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.8px; }
.sf-row { display: grid; grid-template-columns: 1fr 90px 80px; padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 11px; color: rgba(255,255,255,0.65); align-items: center; }
.sf-small { font-size: 9px; opacity: .45; }
.sf-badge { display: inline-block; padding: 2px 7px; border-radius: 4px; font-size: 9px; font-weight: 700; }
.sf-badge.ok { background: rgba(5,150,105,0.2); color: #34D399; }
.sf-badge.pending { background: rgba(37,99,235,0.2); color: #93C5FD; }
.sf-badge.transit { background: rgba(245,158,11,0.2); color: #FCD34D; }

/* TRUSTBAR */
.trustbar { padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trustbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trustbar-label { font-size: 12px; font-weight: 600; color: var(--slate2); letter-spacing: 0.5px; white-space: nowrap; }
.trust-items { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--slate); }

/* SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: var(--bg); }
.sec-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; display: block; }
.sec-title { font-size: clamp(26px, 3vw, 38px); font-weight: 800; letter-spacing: -1px; color: var(--navy); line-height: 1.1; margin-bottom: 14px; }
.sec-sub { font-size: 16px; color: var(--slate); line-height: 1.7; max-width: 52ch; }
.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-sub { margin: 0 auto; }

/* FEATURES */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card { background: white; border: 1.5px solid var(--border); border-radius: 16px; padding: 24px 22px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.feat-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(37,99,235,0.1); transform: translateY(-2px); }
.feat-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-pale); display: grid; place-items: center; font-size: 22px; margin-bottom: 16px; }
.feat-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feat-desc { font-size: 14px; color: var(--slate); line-height: 1.65; }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 44px; left: calc(12.5% + 14px); right: calc(12.5% + 14px); height: 2px; background: var(--blue-mid); z-index: 0; }
.step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num-label { font-size: 10px; font-weight: 800; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.step-circle { width: 56px; height: 56px; border-radius: 50%; background: white; border: 2px solid var(--blue); display: grid; place-items: center; font-size: 22px; margin: 0 auto 16px; box-shadow: 0 0 0 6px var(--blue-pale); }
.step-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.step-desc { font-size: 13px; color: var(--slate); line-height: 1.55; }

/* UETDS */
.uetds-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; }
.check-box { width: 22px; height: 22px; border-radius: 6px; background: var(--blue-pale); border: 1.5px solid var(--blue-mid); display: grid; place-items: center; font-size: 12px; color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.check-title { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.check-desc { font-size: 13px; color: var(--slate); line-height: 1.5; }

.uetds-panel { background: var(--navy); border-radius: 16px; padding: 28px; position: relative; overflow: hidden; }
.uetds-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--blue-l), transparent); }
.up-title { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.flow-item { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.flow-item:last-child { border: none; padding-bottom: 0; }
.flow-num { width: 28px; height: 28px; border-radius: 8px; background: rgba(37,99,235,0.2); display: grid; place-items: center; font-size: 12px; font-weight: 800; color: #93C5FD; flex-shrink: 0; }
.flow-body { flex: 1; }
.flow-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
.flow-note { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 1px; }
.flow-badge { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 5px; white-space: nowrap; }
.fb-green { background: rgba(5,150,105,0.18); color: #34D399; }
.fb-blue  { background: rgba(37,99,235,0.2); color: #93C5FD; }
.fb-amber { background: rgba(245,158,11,0.18); color: #FCD34D; }
.fb-gray  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }

/* PRICING */
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.plan { background: white; border: 1.5px solid var(--border); border-radius: 18px; padding: 28px 24px; position: relative; transition: all .2s; }
.plan:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.plan.pop { border-color: var(--blue); box-shadow: 0 4px 24px rgba(37,99,235,0.12); }
.plan-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 0 0 10px 10px; }
.plan-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.plan-price { font-size: 36px; font-weight: 800; color: var(--navy); letter-spacing: -2px; line-height: 1; }
.plan-price sup { font-size: 18px; letter-spacing: 0; color: var(--blue); vertical-align: super; }
.plan-period { font-size: 13px; color: var(--slate); margin-top: 4px; margin-bottom: 20px; }
.plan-div { height: 1px; background: var(--border); margin-bottom: 18px; }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.plan-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--text2); }
.plan-list li::before { content: '✓'; color: var(--blue); font-weight: 800; flex-shrink: 0; font-size: 13px; }
.plan-btn { display: block; width: 100%; margin-top: 22px; padding: 12px; border-radius: 10px; font-family: inherit; font-size: 14px; font-weight: 700; text-align: center; text-decoration: none; cursor: pointer; border: none; transition: all .15s; }
.plan-btn-outline { background: white; color: var(--blue); border: 1.5px solid var(--border); }
.plan-btn-outline:hover { border-color: var(--blue); background: var(--blue-pale); }
.plan-btn-fill { background: var(--blue); color: white; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.plan-btn-fill:hover { background: var(--blue-d); }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-card { background: white; border: 1.5px solid var(--border); border-radius: 12px; padding: 16px 18px; margin-bottom: 12px; transition: border-color .15s, box-shadow .15s; }
.contact-info-card:hover { border-color: var(--blue); box-shadow: 0 4px 14px rgba(37,99,235,0.08); }
.ci-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--slate2); margin-bottom: 6px; }
.ci-val { font-size: 15px; font-weight: 600; color: var(--navy); text-decoration: none; }
.ci-val:hover { color: var(--blue); }
.contact-form-card { background: white; border: 1.5px solid var(--border); border-radius: 18px; padding: 28px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.cf-title { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.cf-sub { font-size: 13.5px; color: var(--slate); margin-bottom: 24px; }
.form-select { width: 100%; background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px; padding: 11px 14px; font-family: inherit; font-size: 14.5px; color: var(--text); outline: none; appearance: none; cursor: pointer; transition: all .15s; }
.form-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); background: white; }

/* FOOTER */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 36px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--blue); display: grid; place-items: center; font-weight: 800; font-size: 14px; color: white; }
.footer-name { font-size: 15px; font-weight: 700; color: white; }
.footer-links { display: flex; gap: 24px; }
.footer-link { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color .15s; }
.footer-link:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 13px; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.au  { animation: fadeUp .55s ease both; }
.au-1 { animation-delay: .08s; }
.au-2 { animation-delay: .16s; }
.au-3 { animation-delay: .24s; }
.au-4 { animation-delay: .32s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .login-card { position: static; max-width: 500px; margin: 0 auto; }
  .hero-screenshot { display: none; }
  .uetds-layout { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links .nav-a { display: none !important; }
}
@media (max-width: 640px) {
  .hero { padding: 40px 0 0; }
  .hero-h1 { font-size: 32px; line-height: 1.15; }
  .hero-p { font-size: 15px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .stat { flex: 1; min-width: 120px; }
  .stat-n { font-size: 22px; }
  .stat-l { font-size: 11px; }
  .login-card { padding: 24px 20px; }
  .lc-logo { width: 42px; height: 42px; font-size: 18px; }
  .lc-title { font-size: 18px; }
  .feat-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 12px 0; flex-wrap: nowrap; }
  .nav-links { gap: 8px; flex-shrink: 0; }
  .nav-links .nav-a { display: none !important; }
  .nav-links .btn { padding: 8px 16px; font-size: 13px; white-space: nowrap; }
  .logo { flex-shrink: 0; }
  .logo-mark { width: 32px; height: 32px; font-size: 13px; border-radius: 8px; }
  .logo-name { font-size: 14px; }
  .logo-sub { font-size: 9px; max-width: 140px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .trustbar-inner { flex-direction: column; align-items: flex-start; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-num-label { font-size: 10px; }
  .step-circle { width: 60px; height: 60px; font-size: 28px; }
  .step-title { font-size: 16px; }
  .uetds-panel { padding: 20px; }
  .flow-item { flex-wrap: wrap; gap: 8px; }
  .flow-badge { margin-top: 4px; width: 100%; text-align: center; }
  .contact-form-card { padding: 24px 20px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { width: 100%; justify-content: center; }
  .sec-title { font-size: 28px; }
  .sec-sub { font-size: 14px; }
}

@media (max-width: 480px) {
  .wrap { width: calc(100% - 24px); }
  .hero-h1 { font-size: 28px; margin-bottom: 16px; }
  .hero-p { font-size: 14px; margin-bottom: 24px; }
  .hero-eyebrow { font-size: 11px; padding: 4px 10px; }
  .btn-xl { padding: 13px 24px; font-size: 15px; }
  .btn-lg { padding: 11px 20px; font-size: 14px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 18px 0; }
  .stat { width: 100%; text-align: center; min-width: auto; }
  .feat-card { padding: 20px 18px; }
  .feat-icon { font-size: 32px; }
  .feat-title { font-size: 16px; }
  .plan { padding: 24px 20px; }
  .check-item { gap: 10px; }
  .check-box { width: 20px; height: 20px; font-size: 11px; }
  .flow-num { width: 26px; height: 26px; font-size: 11px; }
  .flow-name { font-size: 12px; }
  .sec-title { font-size: 26px; line-height: 1.2; }
  .logo-sub { display: none; }
  .logo-name { font-size: 13px; }
  .nav-links .btn { padding: 7px 14px; font-size: 12px; }
}
