*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  :root {
    --navy: #002558;
    --navy-deep: #001a3f;
    --navy-light: #0a3470;
    --coral: #FB594B;
    --coral-hover: #e84a3d;
    --orange: #FF6600;
    --slate: #6B809B;
    --white: #FFFFFF;
    --black: #000000;
    --off-white: #f5f7fa;
    --border: #dfe4ec;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Montserrat', sans-serif; color: var(--black); background: var(--white); line-height: 1.6; overflow-x: hidden; }

  /* ═══ NAV ═══ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--navy-deep); border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0 48px; height: 60px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo { display: flex; align-items: center; text-decoration: none; }
  .nav-logo-img { height: 32px; width: auto; }
  .nav-links { display: flex; align-items: center; gap: 28px; }
  .nav-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--white); }
  .btn-nav { background: var(--coral); color: var(--white) !important; padding: 9px 20px; border-radius: 6px; font-weight: 700; font-size: 12px; transition: transform .2s, box-shadow .2s; }
  .btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(251,89,75,0.4); }

  /* ═══ BUTTONS ═══ */
  .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--coral); color: var(--white); padding: 14px 28px; border-radius: 8px; font-family: inherit; font-size: 14px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: transform .2s, box-shadow .2s; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(251,89,75,0.35); }
  .btn-ghost { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 500; text-decoration: none; transition: color .2s; }
  .btn-ghost:hover { color: var(--white); }
  .btn-ghost .circle { width: 36px; height: 36px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s; }
  .btn-ghost:hover .circle { border-color: var(--coral); background: rgba(251,89,75,0.12); }
  .btn-ghost .circle svg { width: 12px; height: 12px; fill: var(--white); margin-left: 2px; }
  .btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--coral); color: var(--coral); padding: 11px 22px; border-radius: 7px; font-family: inherit; font-size: 13px; font-weight: 700; text-decoration: none; cursor: pointer; background: none; transition: background .2s, color .2s, transform .2s; }
  .btn-outline:hover { background: var(--coral); color: var(--white); transform: translateY(-1px); }

  /* ═══ HERO ═══ */
  .hero { position: relative; background: linear-gradient(160deg, #003070 0%, var(--navy) 50%, var(--navy-deep) 100%); padding: 96px 48px 48px; overflow: hidden; }
  .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 72% 35%, rgba(251,89,75,0.05) 0%, transparent 70%), radial-gradient(ellipse 50% 70% at 15% 80%, rgba(107,128,155,0.06) 0%, transparent 60%); pointer-events: none; }
  .hero::after { display: none; }
  .hero-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
  .hero-text h1 { font-size: clamp(32px, 3.8vw, 50px); font-weight: 800; line-height: 1.08; color: var(--white); margin-bottom: 6px; }
  .hero-text h1 .accent { color: var(--coral); }
  .hero-text .sub-h { font-size: clamp(16px, 1.8vw, 21px); font-weight: 400; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
  .hero-text .body { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.8; max-width: 480px; margin-bottom: 48px; }
  .hero-text .body strong { color: var(--white); font-weight: 700; }
  .hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
  .hero-ints { display: flex; gap: 20px; font-size: 11px; color: rgba(255,255,255,0.32); font-weight: 500; letter-spacing: 0.4px; text-transform: uppercase; }
  .hero-ints .ii { display: flex; align-items: center; gap: 5px; }
  .hero-ints .dot { width: 5px; height: 5px; border-radius: 50%; display: inline-block; }

  /* Laptop mockup */
  .hero-visual { position: relative; }
  .laptop { width: 100%; max-width: 560px; background: linear-gradient(145deg, #1a1a2e, #0d0d1a); border-radius: 14px; padding: 10px 10px 0; box-shadow: 0 32px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04); animation: float 7s ease-in-out infinite; }
  @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
  .laptop-screen { background: var(--navy-deep); border-radius: 8px 8px 0 0; overflow: hidden; aspect-ratio: 16/10; }
  .ls-bar { background: rgba(0,0,0,0.3); padding: 6px 14px; display: flex; align-items: center; gap: 10px; font-size: 9px; color: rgba(255,255,255,0.3); }
  .ls-dots { display: flex; gap: 3px; }
  .ls-dots span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.12); }
  .ls-body { padding: 16px; }
  .ls-greet { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
  .ls-sub { font-size: 10px; color: rgba(255,255,255,0.45); margin-bottom: 14px; }
  .ls-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
  .ls-m { background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.05); border-radius: 5px; padding: 8px; }
  .ls-m .lb { font-size: 7px; color: var(--slate); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 3px; }
  .ls-m .lv { font-size: 14px; font-weight: 700; color: var(--white); }
  .ls-m .lc { font-size: 8px; font-weight: 600; }
  .up { color: #34d399; } .dn { color: var(--coral); }
  .ls-chart { height: 40px; background: linear-gradient(180deg, rgba(251,89,75,0.07), transparent); border-radius: 4px; overflow: hidden; }
  .ls-chart svg { width: 100%; height: 100%; }
  .laptop-base { height: 12px; background: linear-gradient(180deg, #2a2a3e, #1a1a2e); border-radius: 0 0 3px 3px; }

  /* ═══ STATS STRIP ═══ */
  .stats-strip { background: var(--navy-deep); border-top: 1px solid rgba(255,255,255,0.04); padding: 22px 48px; }
  .stats-inner { max-width: 1240px; margin: 0 auto; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
  .stat-item { text-align: center; }
  .stat-item .num { font-size: 28px; font-weight: 800; color: var(--coral); line-height: 1; margin-bottom: 2px; }
  .stat-item .sd { font-size: 10px; color: rgba(255,255,255,0.38); font-weight: 500; }

  /* ═══ SECTIONS ═══ */
  .section { padding: 56px 48px; }
  .section-inner { max-width: 1240px; margin: 0 auto; }

  /* ═══ DEMO VIDEO SECTION ═══ */
  .in-action { background: var(--white); }
  .ia-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 36px; align-items: center; }
  .ia-text h2 { font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; color: var(--navy); margin-bottom: 18px; line-height: 1.15; }
  .pain-list { list-style: none; margin-bottom: 18px; }
  .pain-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #333; margin-bottom: 8px; font-weight: 500; }
  .pain-list .ck { width: 18px; height: 18px; min-width: 18px; background: var(--coral); border-radius: 3px; display: flex; align-items: center; justify-content: center; }
  .pain-list .ck svg { width: 10px; height: 10px; }
  .ia-tag { font-size: 15px; color: var(--navy); line-height: 1.55; margin-bottom: 18px; }
  .ia-tag strong { font-weight: 700; }

  /* Demo Player */
  .demo-player { background: var(--navy); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,37,88,0.2); }
  .dp-tabs { display: flex; background: rgba(0,0,0,0.25); }
  .dp-tab { flex: 1; padding: 13px 14px; font-size: 13px; font-weight: 700; text-align: center; color: rgba(255,255,255,0.38); border-bottom: 3px solid transparent; cursor: pointer; transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 8px; user-select: none; }
  .dp-tab:hover { color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.02); }
  .dp-tab.active { color: var(--white); border-bottom-color: var(--coral); background: rgba(255,255,255,0.03); }
  .dp-tab .ti { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
  .dp-video-wrap { position: relative; background: #000; aspect-ratio: 16/9; overflow: hidden; }
  .dp-video-wrap video { width: 100%; height: 100%; object-fit: contain; display: none; background: #000; cursor: pointer; }
  .dp-video-wrap video.active { display: block; }
  .vid-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,18,44,0.5); cursor: pointer; transition: opacity .3s; z-index: 5; }
  .vid-overlay.hide { opacity: 0; pointer-events: none; }
  .play-ring { width: 60px; height: 60px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(251,89,75,0.5); transition: transform .2s; }
  .vid-overlay:hover .play-ring { transform: scale(1.1); }
  .play-ring svg { width: 20px; height: 20px; fill: var(--white); margin-left: 3px; }
  .dp-foot-removed { display: none; }

  /* ═══ VALUE PROP ═══ */
  .value-prop { background: var(--off-white); text-align: center; padding: 44px 48px; }
  .value-prop h2 { font-size: clamp(22px, 2.8vw, 34px); font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.15; }
  .value-prop .vd { font-size: 15px; color: #555; max-width: 560px; margin: 0 auto; line-height: 1.7; }
  .value-prop .vd strong { color: var(--navy); font-weight: 700; }

  /* ═══ TESTIMONIALS ═══ */
  .testimonials { background: var(--navy); padding: 48px 48px; }
  .tst-header { text-align: center; margin-bottom: 24px; }
  .tst-header .ey { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--coral); margin-bottom: 5px; }
  .tst-header h2 { font-size: clamp(20px, 2.4vw, 28px); font-weight: 800; color: var(--white); }
  .tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 1060px; margin: 0 auto; }
  .tst-grid-4 { grid-template-columns: repeat(4,1fr); max-width: 1100px; }
  .tst-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 22px 18px; transition: transform .3s, border-color .3s; }
  .tst-card:hover { transform: translateY(-3px); border-color: rgba(251,89,75,0.25); }
  .tst-card p { font-size: 12.5px; color: rgba(255,255,255,0.52); line-height: 1.7; font-style: italic; margin-bottom: 12px; }
  .tst-card .auth { display: flex; align-items: center; gap: 9px; }
  .tst-card .av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--coral), var(--orange)); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--white); }
  .tst-card .an { font-size: 11px; font-weight: 700; color: var(--white); }
  .tst-card .ar { font-size: 9px; color: var(--slate); }

  /* ═══ PRICING ═══ */
  .pricing { background: var(--white); text-align: center; padding: 52px 48px; }
  .pricing-head h2 { font-size: clamp(22px, 2.8vw, 34px); font-weight: 800; color: var(--navy); margin-bottom: 3px; line-height: 1.15; }
  .pricing-head h2 em { font-style: italic; color: var(--coral); }
  .pricing-head .ps { font-size: 14px; color: #666; margin-bottom: 32px; }
  .pricing-head .ps em { font-style: italic; }
  .price-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; max-width: 1060px; margin: 0 auto 26px; }
  .pc { background: var(--white); border: 2px solid var(--border); border-radius: 10px; padding: 24px 18px 20px; text-align: center; position: relative; transition: transform .3s, box-shadow .3s, border-color .3s; }
  .pc:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,37,88,0.1); border-color: var(--coral); }
  .pc.pop { border-color: var(--coral); }
  .pc.pop::before { content: 'Most Popular'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--coral); color: var(--white); font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 20px; white-space: nowrap; }
  .pc .tier { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
  .pc .amt { font-size: 34px; font-weight: 800; color: var(--navy); line-height: 1; }
  .pc .amt small { font-size: 11px; font-weight: 500; color: var(--slate); }
  .pc .vc { margin: 10px 0 3px; font-size: 13px; font-weight: 600; color: var(--navy); }
  .pc .vc strong { color: var(--coral); }
  .pc .er { font-size: 10px; color: var(--slate); margin-bottom: 14px; }
  .gst { font-size: 9px; color: var(--slate); font-weight: 500; }
  .pc .feats { list-style: none; text-align: left; margin-bottom: 28px; }
  .pc .feats li { font-size: 11px; color: #444; padding: 4px 0; display: flex; align-items: center; gap: 6px; }
  .pc .feats li::before { content: '✓'; color: var(--coral); font-weight: 700; font-size: 12px; }
  .pc .bp { display: block; width: 100%; background: var(--coral); color: var(--white); padding: 11px; border-radius: 6px; font-family: inherit; font-size: 12px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: background .2s, transform .2s; }
  .pc .bp:hover { background: var(--coral-hover); transform: translateY(-1px); }
  .all-plans { max-width: 1060px; margin: 0 auto; border-top: 1px solid var(--border); padding-top: 20px; }
  .all-plans h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 10px; text-decoration: underline; text-decoration-color: var(--coral); text-underline-offset: 5px; }
  .apl { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; font-size: 11px; color: #444; font-weight: 500; }
  .apl span { display: flex; align-items: center; gap: 5px; }
  .apl span::before { content: '✓'; color: var(--coral); font-weight: 700; }

  /* ═══ FINAL CTA ═══ */
  .final-cta { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); text-align: center; padding: 44px 48px; position: relative; overflow: hidden; }
  .final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(251,89,75,0.06), transparent 70%); pointer-events: none; }
  .final-cta h2 { font-size: clamp(20px, 2.6vw, 32px); font-weight: 800; color: var(--white); margin-bottom: 6px; position: relative; }
  .final-cta p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 18px; position: relative; }
  .final-cta .btn-primary { position: relative; }

  /* ═══ FOOTER ═══ */
  footer { background: var(--navy-deep); padding: 36px 48px 18px; color: rgba(255,255,255,0.32); font-size: 12px; }
  .ft-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
  .ft-brand .fl { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
  .ft-brand p { line-height: 1.7; max-width: 240px; }
  .ft-col h4 { color: var(--white); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 10px; }
  .ft-col a { display: block; color: rgba(255,255,255,0.32); text-decoration: none; margin-bottom: 6px; transition: color .2s; }
  .ft-col a:hover { color: var(--coral); }
  .ft-btm { max-width: 1240px; margin: 24px auto 0; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; }
  .ft-soc { display: flex; gap: 14px; }
  .ft-soc a { color: rgba(255,255,255,0.22); text-decoration: none; transition: color .2s; }
  .ft-soc a:hover { color: var(--coral); }

  /* ═══ SIGN-UP MODAL ═══ */
  .mo { position: fixed; inset: 0; z-index: 200; background: rgba(0,18,46,0.72); backdrop-filter: blur(6px); display: none; align-items: flex-start; justify-content: center; padding: 24px; overflow-y: auto; }
  .mo.open { display: flex; }
  .mo-box { background: var(--white); border-radius: 14px; padding: 32px 28px; max-width: 420px; width: 100%; position: relative; box-shadow: 0 32px 80px rgba(0,0,0,0.3); animation: mIn .3s ease; margin: auto; }
  @keyframes mIn { from { opacity: 0; transform: translateY(14px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
  .mo-x { position: absolute; top: 12px; right: 14px; background: none; border: none; font-size: 18px; color: var(--slate); cursor: pointer; line-height: 1; }
  .mo-x:hover { color: var(--coral); }
  .mo-box h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
  .mo-box .mt { font-size: 13px; color: var(--coral); font-weight: 600; margin-bottom: 18px; }
  .mo-box label { display: block; font-size: 11px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .mo-box input, .mo-box select { width: 100%; padding: 10px 12px; border: 2px solid var(--border); border-radius: 6px; font-family: inherit; font-size: 13px; margin-bottom: 12px; outline: none; transition: border-color .2s; }
  .mo-box input:focus, .mo-box select:focus { border-color: var(--coral); }
  .mo-box .ms { display: block; width: 100%; background: var(--coral); color: var(--white); padding: 12px; border: none; border-radius: 7px; font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .2s; margin-top: 2px; }
  .mo-box .ms:hover { background: var(--coral-hover); }
  .mo-box .fine { font-size: 10px; color: var(--slate); text-align: center; margin-top: 10px; line-height: 1.5; }

  /* ═══ TERMS MODAL ═══ */
  .tmo { position: fixed; inset: 0; z-index: 250; background: rgba(0,18,46,0.72); backdrop-filter: blur(6px); display: none; align-items: flex-start; justify-content: center; padding: 24px; overflow-y: auto; }
  .tmo.open { display: flex; }
  .tmo-box { background: var(--white); border-radius: 14px; padding: 32px 28px; max-width: 640px; width: 100%; position: relative; box-shadow: 0 32px 80px rgba(0,0,0,0.3); animation: mIn .3s ease; margin: auto; }
  .tmo-content { max-height: 60vh; overflow-y: auto; padding-right: 8px; }
  .tmo-content h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin: 18px 0 6px; }
  .tmo-content h4:first-child { margin-top: 0; }
  .tmo-content p { font-size: 12px; color: #444; line-height: 1.7; }
  .tmo-content::-webkit-scrollbar { width: 4px; }
  .tmo-content::-webkit-scrollbar-track { background: transparent; }
  .tmo-content::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
  .tmo-content::-webkit-scrollbar-thumb:hover { background: var(--slate); }

  /* ═══ ANIMATIONS ═══ */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.vis { opacity: 1; transform: translateY(0); }

  /* ═══ RESPONSIVE ═══ */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .ia-grid { grid-template-columns: 1fr; }
    .tst-grid { grid-template-columns: 1fr 1fr !important; max-width: 560px; margin: 0 auto; }
    .price-grid { grid-template-columns: repeat(2,1fr); }
    .ft-inner { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    nav { padding: 0 20px; height: 56px; }
    .nav-logo-img { height: 26px; }
    .nl { display: none; }
    .btn-nav { padding: 8px 16px; font-size: 11px; }
    .hero { padding: 80px 24px 36px; }
    .hero-text h1 { font-size: 28px; }
    .hero-text .sub-h { font-size: 16px; margin-bottom: 28px; }
    .hero-text .body { font-size: 14px; margin-bottom: 32px; }
    .hero-actions { gap: 14px; margin-bottom: 24px; }
    .btn-primary { padding: 14px 24px; font-size: 14px; width: 100%; justify-content: center; }
    .btn-ghost { font-size: 12px; }
    .hero-ints { flex-wrap: wrap; gap: 12px; }
    .stats-strip { padding: 20px 20px; }
    .stats-inner { gap: 20px; justify-content: space-around; }
    .stat-item .num { font-size: 22px; }
    .stat-item .sd { font-size: 9px; }
    .section { padding: 40px 24px; }
    .ia-text h2 { font-size: 24px; }
    .pain-list li { font-size: 13px; }
    .ia-tag { font-size: 14px; }
    .btn-outline { width: 100%; justify-content: center; }
    .demo-player { border-radius: 8px; }
    .dp-tab { font-size: 12px; padding: 11px 10px; }
    .value-prop { padding: 36px 24px; }
    .value-prop h2 { font-size: 22px; }
    .value-prop .vd { font-size: 14px; }
    .testimonials { padding: 40px 24px; }
    .tst-header h2 { font-size: 20px; }
    .tst-grid { grid-template-columns: 1fr !important; max-width: 400px; }
    .tst-card { padding: 20px 16px; }
    .tst-card p { font-size: 12px; }
    .pricing { padding: 40px 24px; }
    .pricing-head h2 { font-size: 22px; }
    .price-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 24px; }
    .pc { padding: 22px 20px 20px; }
    .pc .amt { font-size: 30px; }
    .pc .bp { padding: 13px; font-size: 13px; }
    .all-plans h3 { font-size: 15px; }
    .apl { flex-direction: column; align-items: center; gap: 8px; }
    .final-cta { padding: 36px 24px; }
    .final-cta h2 { font-size: 20px; }
    .final-cta p { font-size: 13px; }
    .final-cta .btn-primary { width: 100%; justify-content: center; }
    footer { padding: 28px 24px 16px; }
    .ft-inner { grid-template-columns: 1fr; gap: 20px; }
    .ft-btm { flex-direction: column; gap: 10px; text-align: center; }
    .mo-box { padding: 28px 22px; margin: 16px; }
    .mo-box h3 { font-size: 17px; }
  }
  @media (max-width: 380px) {
    .hero { padding: 76px 16px 28px; }
    .hero-text h1 { font-size: 24px; }
    .stats-inner { flex-direction: column; gap: 14px; }
    .dp-tab { font-size: 10px; padding: 10px 6px; gap: 4px; }
    .pc .amt { font-size: 26px; }
    .price-grid { max-width: 100%; }
  }


/* Terms & Conditions formatting improvements */
.tmo-box{
  font-size: 0.8em;
}

.tmo-box ul{
  margin-left: 24px;
  padding-left: 16px;
}

.tmo-box li{
  margin-bottom: 6px;
}


/* Sticky header for Terms modal */
.tmo-box{
  display: flex;
  flex-direction: column;
  max-height: min(86vh, 900px);
  overflow: hidden;
}

.tmo-box > h2:first-of-type{
  position: sticky;
  top: 0;
  z-index: 2;
  background: inherit;
  margin: 0;
  padding: 20px 0 14px;
}

.tmo-box{
  overflow-y: auto;
}


/* Privacy / legal page */
.legal-page{
  background: var(--off-white);
}

.legal-hero{
  padding: 132px 0 34px;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 58%, var(--navy-deep) 100%);
  color: var(--white);
}

.legal-hero .eyebrow{
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.08);
}

.legal-hero h1{
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  color: var(--white);
}

.legal-hero p{
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
}

.legal-section{
  padding: 34px 0 72px;
}

.legal-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
  padding: 34px 34px 28px;
}

.legal-card h1,
.legal-card h2{
  color: var(--navy);
}

.legal-card h1{
  font-size: 30px;
  margin: 0 0 18px;
}

.legal-card h2{
  font-size: 21px;
  margin: 28px 0 12px;
}

.legal-card p,
.legal-card li{
  color: #44566c;
  font-size: 15px;
  line-height: 1.72;
}

.legal-card p{
  margin: 0 0 14px;
}

.legal-card ul{
  margin: 0 0 16px 24px;
  padding-left: 16px;
}

.legal-card li{
  margin-bottom: 6px;
}

.legal-card a{
  color: var(--coral);
  text-decoration: underline;
  word-break: break-word;
}

@media (max-width: 768px){
  .legal-hero{
    padding-top: 108px;
  }
  .legal-card{
    padding: 24px 20px 18px;
    border-radius: 18px;
  }
  .legal-card h2{
    font-size: 19px;
  }
}


/* Legal hero spacing refinement */
.legal-hero-inner{
  padding-left: 18px;
  padding-right: 18px;
}

.legal-hero h1{
  font-size: clamp(27px, 4vw, 42px);
}

@media (max-width: 768px){
  .legal-hero-inner{
    padding-left: 14px;
    padding-right: 14px;
  }
}




/* Anchor alignment for fixed nav */
#demo{
  scroll-margin-top: 72px;
}
#pricing{
  scroll-margin-top: 88px;
}

/* Integration logos */
.integration-logo{
  height:2.4em;
  vertical-align:middle;
  margin-left:8px;
}

.integration-logo.class-logo{
  height:1.92em;
}


/* Contact / signup pages */
.legal-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}
.site-form label{
  display:block;
  font-size:13px;
  font-weight:700;
  color: var(--navy);
  margin: 0 0 8px;
}
.site-form input,
.site-form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  padding:14px 14px;
  font: inherit;
  color:#22354a;
  background:#fff;
}
.site-form textarea{
  resize:vertical;
  min-height: 132px;
}
.site-form > div,
.site-form .form-grid{
  margin-bottom:16px;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.hidden-field{
  display:none;
}
.checkbox-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.checkbox-row input[type="checkbox"]{
  width:auto;
  margin-top:4px;
}
.checkbox-row label{
  margin:0;
  font-size:13px;
  font-weight:500;
  color:#44566c;
}
.checkbox-row a{
  color: var(--coral);
  text-decoration: underline;
}
.signup-card{
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 900px){
  .legal-grid,
  .form-grid{
    grid-template-columns:1fr;
  }
}


/* Modal-like form pages */
.modal-feel-card{
  max-width: 760px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 30px 28px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.contact-side-card{
  max-width: none;
}
.modal-feel-card h2{
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--navy);
}
.modal-feel-card p{
  font-size: 14px;
  line-height: 1.7;
}
.site-form label{
  font-size: 12px;
  letter-spacing: .01em;
  color: #30455d;
  margin-bottom: 7px;
}
.site-form input,
.site-form textarea,
.site-form select{
  width: 100%;
  border: 1px solid #d8e0ea;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: #22354a;
  background: #fff;
  box-sizing: border-box;
}
.site-form input[type="file"]{
  padding: 10px 12px;
  background: #f8fafc;
}
.site-form select{
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #66788f 50%), linear-gradient(135deg, #66788f 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.site-form input:focus,
.site-form textarea:focus,
.site-form select:focus{
  outline: none;
  border-color: rgba(251,89,75,0.55);
  box-shadow: 0 0 0 4px rgba(251,89,75,0.10);
}
.site-form .btn{
  min-width: 220px;
}
.legal-card.signup-card{
  max-width: 760px;
}
.thank-you-card{
  text-align: center;
  max-width: 640px;
}
.thank-you-actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
}
.btn-secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  background: #fff;
}
@media (max-width: 900px){
  .modal-feel-card{
    padding: 24px 20px 18px;
  }
  .site-form .btn{
    min-width: 100%;
  }
}


/* Contact widescreen improvements */
.contact-shell{
  padding-top: 26px;
}
.contact-layout{
  display:grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}
.contact-panel{
  background: linear-gradient(160deg, rgba(11,46,107,0.96) 0%, rgba(7,31,73,0.98) 100%);
  color: var(--white);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  position: sticky;
  top: 104px;
}
.contact-panel h2{
  color: var(--white);
  font-size: 26px;
  margin: 0 0 18px;
}
.contact-eyebrow{
  margin-bottom: 14px;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.90);
}
.contact-item + .contact-item{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.64);
  margin-bottom: 6px;
}
.contact-value{
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
}
.contact-form-panel{
  min-width: 0;
}
.contact-form-card{
  max-width: none;
  margin: 0;
}
.auto-grow{
  overflow:hidden;
}
@media (min-width: 1200px){
  .contact-layout{
    grid-template-columns: 340px minmax(0, 1fr);
  }
}
@media (max-width: 980px){
  .contact-layout{
    grid-template-columns: 1fr;
  }
  .contact-panel{
    position: static;
  }
}


/* Contact page margin correction */
.contact-shell .container{
  max-width: 1180px;
  padding-left: 32px;
  padding-right: 32px;
}

@media (min-width:1400px){
  .contact-shell .container{
    max-width: 1240px;
  }
}






/* Legal/information page hero cleanup */
.legal-hero{
  padding: 104px 0 22px;
}

.legal-hero h1{
  font-size: clamp(18px, 2.7vw, 28px);
  line-height: 1.12;
  margin: 0 0 10px;
}

.legal-hero p{
  font-size: 15px;
  max-width: 700px;
}

.legal-hero .eyebrow{
  margin-bottom: 12px;
}

@media (max-width: 768px){
  .legal-hero{
    padding: 92px 0 18px;
  }

  .legal-hero h1{
    font-size: clamp(18px, 6vw, 24px);
  }

  .legal-hero p{
    font-size: 14px;
  }
}


/* Contact tiles true centering fix */
.contact-shell .container{
  max-width:1240px;
  margin:0 auto;
  padding-left:32px;
  padding-right:32px;
}

.contact-layout{
  max-width:1040px;
  margin-left:auto;
  margin-right:auto;
}



/* Signup subscription select styling correction */
#signup-subscription{
  border: 1px solid #d8e0ea;
  border-radius: 12px;
  padding: 13px 44px 13px 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #22354a;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, #66788f 50%),
    linear-gradient(135deg, #66788f 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  box-shadow: none;
  line-height: 1.4;
  min-height: 48px;
}

#signup-subscription:focus{
  outline: none;
  border-color: rgba(251,89,75,0.55);
  box-shadow: 0 0 0 4px rgba(251,89,75,0.10);
}

#signup-subscription option{
  color: #22354a;
  background: #fff;
}


/* Correct dropdown colour to match site inputs */
#signup-subscription{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff !important;
  color: #22354a !important;
  border: 1px solid #d8e0ea;
}

#signup-subscription option{
  background:#ffffff;
  color:#22354a;
}


/* Final polished styling for signup subscription selector */
#signup-subscription{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  width:100%;
  padding:14px 46px 14px 16px;
  font-size:14px;
  font-weight:500;
  border-radius:12px;
  border:1px solid #d8e0ea;
  background:#ffffff;
  color:#22354a;
  line-height:1.4;
  cursor:pointer;

  /* custom arrow */
  background-image:
    linear-gradient(45deg, transparent 50%, #fb594b 50%),
    linear-gradient(135deg, #fb594b 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 2px),
    calc(100% - 16px) calc(50% - 2px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

#signup-subscription:focus{
  outline:none;
  border-color:rgba(251,89,75,0.55);
  box-shadow:0 0 0 4px rgba(251,89,75,0.10);
}

#signup-subscription option{
  background:#ffffff;
  color:#22354a;
}

/* Custom subscription dropdown */
.custom-select{
  position:relative;
  width:100%;
  font-size:14px;
}

.select-display{
  border:1px solid #d8e0ea;
  border-radius:12px;
  padding:14px 16px;
  background:#ffffff;
  color:#22354a;
  cursor:pointer;
}

.select-options{
  position:absolute;
  left:0;
  right:0;
  top:100%;
  background:#ffffff;
  border:1px solid #d8e0ea;
  border-radius:12px;
  margin-top:6px;
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
  display:none;
  z-index:20;
}

.select-options div{
  padding:12px 16px;
  cursor:pointer;
}

.select-options div:hover{
  background:#f3f6fb;
}

.custom-select.open .select-options{
  display:block;
}


.select-display{
  position: relative;
  user-select: none;
}

.select-display::after{
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fb594b;
  border-bottom: 2px solid #fb594b;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.custom-select.open .select-display{
  border-color: rgba(251,89,75,0.55);
  box-shadow: 0 0 0 4px rgba(251,89,75,0.10);
}


/* Signup custom dropdown repaired */
.custom-select{
  position: relative;
  width: 100%;
}

.select-display{
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  text-align: left;
  padding: 14px 46px 14px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid #d8e0ea;
  background: #ffffff;
  color: #22354a;
  line-height: 1.4;
  cursor: pointer;
  position: relative;
}

.select-display::after{
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fb594b;
  border-bottom: 2px solid #fb594b;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.custom-select.open .select-display,
.select-display:focus{
  outline: none;
  border-color: rgba(251,89,75,0.55);
  box-shadow: 0 0 0 4px rgba(251,89,75,0.10);
}

.select-options{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid #d8e0ea;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  display: none;
  z-index: 50;
}

.custom-select.open .select-options{
  display: block;
}

.select-options button{
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #edf2f7;
  background: #fff;
  color: #22354a;
  padding: 12px 16px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.select-options button:last-child{
  border-bottom: 0;
}

.select-options button:hover,
.select-options button:focus{
  background: #f8fafc;
  outline: none;
}


/* Pricing modal extra fields */

#pricingSignupForm textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 14px;
  font:inherit;
  font-size:12px;
  line-height:1.4;
  resize:vertical;
  min-height:88px;
  box-sizing:border-box;
}



/* Modal layout polish for additional users field */
#pricingSignupForm textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 14px;
  font:inherit;
  font-size:12px;
  line-height:1.4;
  resize:vertical;
  min-height:88px;
  box-sizing:border-box;
  margin-top:6px;
  margin-bottom:14px;
}

#pricingSignupForm input{
  margin-bottom:14px;
}


/* Signup field hint */
.field-hint{
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: #6b7c93;
}


/* Internal page hero navigation and inset */
.back-home{
  margin-top:4px;

  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease, transform .2s ease;
}

.back-home:hover{
  color: #ffffff;
  transform: translateX(-2px);
}

.legal-hero-inner{
  padding-left: 34px;
  padding-right: 34px;
}

@media (max-width: 768px){
  .legal-hero-inner{
    padding-left: 22px;
    padding-right: 22px;
  }

  .back-home{
  margin-top:4px;

    margin-bottom: 12px;
    font-size: 12px;
  }
}


/* Back-to-home placement refinement */
.legal-hero-inner{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 40px;
  padding-right: 40px;
}

.back-home{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease, transform .2s ease;
}

.legal-hero .eyebrow{
  margin-top: 0;
  margin-bottom: 12px;
}

.back-home:hover{
  color: #ffffff;
  transform: translateX(-2px);
}

@media (max-width: 768px){
  .legal-hero-inner{
    padding-left: 24px;
    padding-right: 24px;
  }

  .back-home{
    margin-bottom: 22px;
    font-size: 12px;
  }
}


.pricing-modal-agree{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin:8px 0 16px;
}

.pricing-modal-agree-text{
  margin-bottom:0;
  font-size:11px;
  font-weight:500;
  color:#555;
}


/* News page */
.news-section{
  padding-top: 28px;
}

.news-grid{ display:grid; grid-template-columns:minmax(0, 420px); gap:22px; justify-content:start; }

.news-tile{
  display:flex;
  flex-direction:column;
  width:100%;
  text-align:left;
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,0.06);
  cursor:pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  padding:0;
}

.news-tile:hover{
  transform: translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,0.10);
  border-color: rgba(19,181,234,0.22);
}

.news-image-wrap{
  aspect-ratio: 16 / 9;
  background:#eef3f9;
  overflow:hidden;
}

.news-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.news-copy{
  padding:18px 18px 20px;
}

.news-copy h3{
  margin:0 0 10px;
  color:var(--navy);
  font-size:18px;
  line-height:1.25;
}

.news-copy p{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.65;
  color:#516579;
}

.news-read-more{
  display:inline-flex;
  align-items:center;
  color:var(--coral);
  font-size:13px;
  font-weight:700;
}

.news-modal{
  position:fixed;
  inset:0;
  z-index:260;
  background:rgba(0,18,46,0.72);
  backdrop-filter: blur(6px);
  display:none;
  align-items:flex-start;
  justify-content:center;
  padding:24px;
  overflow-y:auto;
}

.news-modal.open{
  display:flex;
}

.news-modal-box{
  background:#fff;
  border-radius:18px;
  width:100%;
  max-width:760px;
  position:relative;
  box-shadow:0 32px 80px rgba(0,0,0,0.30);
  overflow:hidden;
  margin:auto;
}

.news-modal-image{
  width:100%;
  display:block;
  aspect-ratio:16 / 8;
  object-fit:cover;
  background:#edf3f9;
}

.news-modal-box h2{
  margin:24px 28px 10px;
  color:var(--navy);
  font-size:28px;
  line-height:1.18;
}

.news-modal-summary{
  margin:0 28px 18px;
  color:#516579;
  font-size:15px;
  line-height:1.7;
}

.news-modal-body{
  margin:0 28px 30px;
  color:#42586d;
  font-size:15px;
  line-height:1.75;
}

.news-modal-body p{
  margin:0 0 14px;
}

.news-modal-x{
  position:absolute;
  right:16px;
  top:16px;
  width:38px;
  height:38px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,0.90);
  color:var(--navy);
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

@media (max-width: 980px){
  .news-grid{ display:grid; grid-template-columns:minmax(0, 420px); gap:22px; justify-content:start; }
}

@media (max-width: 700px){
  .news-grid{ display:grid; grid-template-columns:minmax(0, 420px); gap:22px; justify-content:start; }

  .news-modal-box h2{
    font-size:23px;
    margin:20px 20px 10px;
  }

  .news-modal-summary,
  .news-modal-body{
    margin-left:20px;
    margin-right:20px;
  }
}


.news-date,
.news-modal-date{
  display:inline-flex;
  align-items:center;
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#6b7c93;
}

.news-date{
  margin-bottom:10px;
}

.news-modal-date{
  margin:24px 28px 0;
}


.login-box{
  max-width: 420px;
}

.login-box input{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 14px;
  font:inherit;
  margin-bottom:14px;
  box-sizing:border-box;
}


.login-error{
  display:none;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(251,89,75,0.10);
  color: var(--coral);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.login-error.show{
  display:block;
}

.shake{
  animation: loginShake .34s ease;
  border-color: rgba(251,89,75,0.55) !important;
  box-shadow: 0 0 0 4px rgba(251,89,75,0.10);
}

@keyframes loginShake{
  0%{ transform: translateX(0); }
  20%{ transform: translateX(-6px); }
  40%{ transform: translateX(6px); }
  60%{ transform: translateX(-4px); }
  80%{ transform: translateX(4px); }
  100%{ transform: translateX(0); }
}


/* News page spacing refinement */
.news-section .container{
  max-width: 1240px;
  padding-left: 36px;
  padding-right: 36px;
}

.news-grid{
  justify-content: center !important;
}

.news-tile{
  padding: 14px;
  border-radius: 22px;
}

.news-image-wrap{
  border-radius: 14px;
}

.news-modal{
  padding: 32px;
}

.news-modal-box{
  padding: 18px;
  border-radius: 22px;
}

.news-modal-image{
  border-radius: 14px;
}

.news-modal-date{
  margin: 18px 10px 0;
}

.news-modal-box h2{
  margin: 18px 10px 10px;
}

.news-modal-summary{
  margin: 0 10px 18px;
}

.news-modal-body{
  margin: 0 10px 16px;
}

@media (max-width: 700px){
  .news-section .container{
    padding-left: 22px;
    padding-right: 22px;
  }

  .news-modal{
    padding: 18px;
  }

  .news-modal-box{
    padding: 12px;
  }
}


.news-status{
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(251,89,75,0.10);
  color: var(--coral);
  font-size: 13px;
  font-weight: 600;
}


/* News grid layout refinement */
.news-section .container{
  max-width: 1240px;
  padding-left: 40px;
  padding-right: 40px;
}

.news-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
  justify-content: start !important;
  gap: 22px;
}

@media (max-width: 700px){
  .news-section .container{
    padding-left: 22px;
    padding-right: 22px;
  }

  .news-grid{
    grid-template-columns: 1fr;
  }
}


#pricingTierSelect{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 14px;
  font:inherit;
  font-size:12px;
  line-height:1.4;
  box-sizing:border-box;
  margin-bottom:14px;
  background:#fff;
  color:#555;
}


#pricingTierSelect:focus{
  outline:none;
  border-color:rgba(251,89,75,0.55);
  box-shadow:0 0 0 4px rgba(251,89,75,0.10);
}
