
:root {
  --sea-blue: #0077B6;
  --deep-blue: #004AAD;
  --orange: #FF8A00;
  --lemon-green: #A7E000;
  --dark-navy: #0B1F33;
  --text: #243447;
  --muted: #667085;
  --light-bg: #F6FAFF;
  --soft-blue: #EAF5FF;
  --soft-orange: #FFF3E3;
  --soft-green: #F4FFE6;
  --white: #FFFFFF;
  --border: #E6EDF5;
  --shadow: 0 18px 40px rgba(11, 31, 51, 0.10);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.topbar {
  background: var(--dark-navy);
  color: rgba(255,255,255,.88);
  padding: 9px 0;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--deep-blue), var(--sea-blue));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 12px 26px rgba(0,74,173,.22);
  position: relative;
  overflow: hidden;
}

.brand-logo {
  width: 54px !important;
  height: 54px !important;
  max-width: 54px !important;
  max-height: 54px !important;
  object-fit: contain !important;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 74, 173, .14);
  box-shadow: 0 10px 26px rgba(0, 74, 173, .14);
  flex: 0 0 auto;
}

.brand > img.brand-logo {
  display: block !important;
  min-width: 54px !important;
}

.brand-mark:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--lemon-green);
  border: 3px solid #fff;
  border-radius: 50%;
  right: -5px;
  top: -5px;
}

.brand-text strong {
  color: var(--deep-blue);
  display: block;
  line-height: 1;
  font-size: 21px;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 800;
  color: var(--dark-navy);
}

.nav-links a {
  padding: 8px 0;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 255px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 50;
}

.dropdown:hover .dropdown-menu {
  display: grid;
  gap: 4px;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  display: block;
  color: var(--text);
}

.dropdown-menu a:hover {
  background: var(--soft-blue);
  color: var(--deep-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn {
  border: none;
  background: var(--soft-blue);
  color: var(--deep-blue);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-weight: 900;
  border-radius: 999px;
  padding: 13px 20px;
  transition: .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255,138,0,.24);
}

.btn-primary:hover, .btn-blue:hover {
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--deep-blue);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,74,173,.18);
}

.btn-light {
  background: #fff;
  color: var(--deep-blue);
  border: 1px solid var(--border);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(167,224,0,.18), transparent 30%),
    linear-gradient(135deg, #FFFFFF 0%, #F0F8FF 52%, #EAF5FF 100%);
  overflow: hidden;
  position: relative;
  padding: 84px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 55px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  color: var(--deep-blue);
  background: var(--soft-blue);
  border: 1px solid rgba(0,119,182,.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero h1, .page-hero h1, .section-title h2 {
  color: var(--dark-navy);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 70px);
  margin-bottom: 22px;
}

.hero h1 span, .page-hero h1 span {
  color: var(--deep-blue);
}

.hero p {
  font-size: 19px;
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 15px;
  max-width: 620px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(11,31,51,.06);
}

.stat-card strong {
  display: block;
  color: var(--deep-blue);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card small {
  color: var(--muted);
  font-weight: 800;
}

.hero-visual {
  min-height: 470px;
  position: relative;
  display: grid;
  place-items: center;
}

.showcase-card {
  width: min(460px, 100%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.showcase-card:before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255,138,0,.12);
  right: -60px;
  top: -60px;
}

.showcase-top {
  position: relative;
  z-index: 1;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--deep-blue), var(--sea-blue));
  color: #fff;
  margin-bottom: 18px;
}

.showcase-top h3 {
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.showcase-top p {
  color: rgba(255,255,255,.82);
  margin: 0;
  font-size: 16px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.mini-item {
  border: 1px solid var(--border);
  background: var(--light-bg);
  border-radius: 18px;
  padding: 14px;
  font-weight: 900;
  color: var(--dark-navy);
}

.section {
  padding: 92px 0;
}

.section-light {
  background: var(--light-bg);
}

.section-title {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(11,31,51,.06);
  transition: .25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--soft-blue), #fff);
  border: 1px solid var(--border);
  font-size: 28px;
  margin-bottom: 18px;
}

.card h3 {
  color: var(--dark-navy);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  color: var(--deep-blue);
  font-weight: 900;
}

.page-hero {
  background:
    radial-gradient(circle at top right, rgba(167,224,0,.18), transparent 30%),
    linear-gradient(135deg, #fff, #eef7ff);
  padding: 78px 0;
}

.page-hero-inner {
  max-width: 850px;
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 62px);
  margin-bottom: 18px;
}

.page-hero p {
  color: var(--muted);
  font-size: 19px;
  max-width: 780px;
}

.about-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.brand-panel {
  border-radius: 30px;
  padding: 34px;
  background: linear-gradient(145deg, var(--deep-blue), var(--sea-blue));
  color: #fff;
  box-shadow: var(--shadow);
  min-height: 430px;
  position: relative;
  overflow: hidden;
}

.brand-panel:after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(167,224,0,.18);
  right: -100px;
  bottom: -100px;
}

.brand-panel h2 {
  font-size: 42px;
  line-height: 1.08;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.brand-panel p {
  color: rgba(255,255,255,.82);
  position: relative;
  z-index: 1;
}

.about-text h2 {
  color: var(--dark-navy);
  font-size: clamp(32px,4vw,46px);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.035em;
}

.about-text p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 800;
  color: var(--dark-navy);
}

.check span {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft-green);
  color: #4C7600;
  font-size: 14px;
}

.info-box {
  background: var(--soft-blue);
  border: 1px solid rgba(0,119,182,.12);
  border-radius: 22px;
  padding: 24px;
}

.info-box h3 {
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.branch-card {
  display: grid;
  gap: 12px;
}

.branch-card .phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--deep-blue);
  font-weight: 900;
}

.branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.small-btn {
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 900;
  display: inline-flex;
  background: var(--soft-blue);
  color: var(--deep-blue);
  border: 1px solid rgba(0,119,182,.12);
}

.small-btn.orange {
  background: var(--soft-orange);
  color: #A35300;
  border-color: #FFE0B3;
}

.product-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.side-menu {
  position: sticky;
  top: 108px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(11,31,51,.06);
}

.side-menu h3 {
  color: var(--dark-navy);
  margin-bottom: 12px;
}

.side-menu a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 13px;
  border-radius: 14px;
  font-weight: 800;
  color: var(--text);
}

.side-menu a:hover, .side-menu a.active {
  background: var(--soft-blue);
  color: var(--deep-blue);
}

.product-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px rgba(11,31,51,.05);
}

.product-section h2 {
  color: var(--dark-navy);
  font-size: 30px;
  margin-bottom: 8px;
}

.product-section p {
  color: var(--muted);
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 20px;
}

.pill {
  background: var(--light-bg);
  border: 1px solid var(--border);
  color: var(--dark-navy);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 14px;
}

.cta {
  background:
    linear-gradient(135deg, rgba(0,74,173,.96), rgba(0,119,182,.92)),
    radial-gradient(circle at top right, rgba(167,224,0,.18), transparent 30%);
  color: #fff;
  border-radius: 34px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: clamp(30px,4vw,46px);
  line-height: 1.08;
  margin-bottom: 12px;
  letter-spacing: -.035em;
}

.cta p {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  max-width: 740px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
  align-items: start;
}

.contact-info, .contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 28px rgba(11,31,51,.06);
}

.contact-info h3 {
  font-size: 30px;
  color: var(--dark-navy);
  margin-bottom: 12px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 20px;
}

.info-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.info-line span {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--soft-blue);
  color: var(--deep-blue);
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 900;
  color: var(--dark-navy);
  font-size: 14px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: var(--light-bg);
  outline: none;
  transition: .2s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--sea-blue);
  box-shadow: 0 0 0 4px rgba(0,119,182,.10);
  background: #fff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.footer {
  background: var(--dark-navy);
  color: rgba(255,255,255,.78);
  padding: 62px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 30px;
  margin-bottom: 35px;
}

.footer h3, .footer h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer p, .footer a {
  color: rgba(255,255,255,.72);
  display: block;
  margin-bottom: 8px;
}

.footer a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  font-size: 29px;
  box-shadow: 0 16px 35px rgba(37,211,102,.32);
  z-index: 999;
}

.quick-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.quick-chat-toggle {
  border: 0;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #005bd8, var(--deep-blue));
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 74, 173, .34);
  cursor: pointer;
}

.chat-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 7px rgba(37, 211, 102, .18);
}

.chat-icon {
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.quick-chat-panel {
  width: min(340px, calc(100vw - 28px));
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 24px 70px rgba(11, 31, 51, .22);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}

.quick-chat.open .quick-chat-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quick-chat-head {
  background: linear-gradient(135deg, var(--deep-blue), var(--sea-blue));
  color: #fff;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.quick-chat-head strong,
.quick-chat-head small {
  display: block;
}

.quick-chat-head small {
  margin-top: 2px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
}

.quick-chat-close {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  font-size: 17px;
}

.quick-chat-panel p {
  padding: 16px 16px 0;
  color: var(--muted);
}

.quick-chat-actions {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.quick-chat-actions a {
  min-height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: #25D366;
}

.quick-chat-actions a:last-child {
  color: var(--deep-blue);
  background: var(--soft-blue);
}

.notice {
  background: var(--soft-orange);
  border: 1px solid #FFE0B3;
  border-radius: 18px;
  padding: 16px;
  color: #764100;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .nav-links {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .dropdown-menu {
    position: static;
    width: 100%;
    display: grid;
    box-shadow: none;
    border-radius: 14px;
    margin-top: 8px;
  }

  .menu-btn { display: grid; place-items: center; }

  .hero-grid, .about-layout, .contact-grid, .product-layout {
    grid-template-columns: 1fr;
  }

  .side-menu { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .topbar { display: none; }
  .nav-inner { min-height: 74px; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-logo {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
  }
  .brand > img.brand-logo {
    min-width: 44px !important;
  }
  .brand-text strong { font-size: 18px; }
  .brand-text small { font-size: 10px; }
  .nav-actions .btn { display: none; }
  .nav-links { top: 76px; }
  .hero { padding: 54px 0 58px; }
  .hero p, .page-hero p, .section-title p, .cta p { font-size: 16px; }
  .hero-stats, .mini-grid, .grid-4, .grid-3, .grid-2, .branch-grid, .footer-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 68px 0; }
  .cta { padding: 30px; border-radius: 24px; }
  .contact-form, .contact-info, .brand-panel, .product-section { padding: 24px; }
  .container { width: min(100% - 22px, var(--container)); }
  .footer-bottom { padding-bottom: 74px; }
  .quick-chat {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
  .quick-chat-toggle {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }
  .quick-chat-panel {
    width: 100%;
  }
}


/* Product image browser additions */
.brand-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 15px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 900;
  color: var(--dark-navy);
  box-shadow: 0 8px 20px rgba(11,31,51,.06);
}

.brand-chip:hover {
  color: var(--deep-blue);
  background: var(--soft-blue);
}

.browser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-browser {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(11,31,51,.06);
}

.browser-main {
  position: relative;
  background: var(--light-bg);
}

.browser-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.browser-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.browser-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(11,31,51,.82);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  pointer-events: auto;
}

.browser-body {
  padding: 22px;
}

.browser-body h3 {
  color: var(--dark-navy);
  font-size: 24px;
  margin-bottom: 7px;
  line-height: 1.1;
}

.browser-body p {
  color: var(--muted);
  margin-bottom: 12px;
}

.browser-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.browser-meta span {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 900;
  color: var(--dark-navy);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
  background: #fff;
  border-top: 1px solid var(--border);
}

.thumb-row button {
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  background: var(--light-bg);
}

.thumb-row button.active {
  border-color: var(--orange);
}

.thumb-row img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.brand-hero-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.update-guide {
  background: var(--soft-orange);
  border: 1px solid #FFE0B3;
  border-radius: 22px;
  padding: 22px;
  color: #764100;
}

.update-guide h3 {
  color: #5B3100;
  margin-bottom: 10px;
}

.update-guide code {
  background: rgba(255,255,255,.7);
  padding: 2px 6px;
  border-radius: 8px;
}

@media (max-width: 950px) {
  .browser-grid, .brand-hero-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .browser-main img {
    height: 300px;
  }

  .thumb-row img {
    height: 55px;
  }
}


/* Search, videos and richer visuals */
.search-panel {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px 0 26px;
}

.search-panel input {
  flex: 1 1 320px;
  min-width: 260px;
}

.search-note {
  color: var(--muted);
  font-weight: 800;
  margin: 8px 0 18px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.video-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(11,31,51,.06);
}

.video-card video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--light-bg);
}

.video-card .video-body {
  padding: 20px;
}

.video-card h3 {
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.video-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.visual-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(11,31,51,.06);
  transition: .25s ease;
}

.visual-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.visual-card .visual-body {
  padding: 18px;
}

.visual-card h3 {
  color: var(--dark-navy);
  margin-bottom: 8px;
}

.visual-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.hidden-item {
  display: none !important;
}

@media (max-width: 1050px) {
  .video-grid, .visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .video-grid, .visual-grid {
    grid-template-columns: 1fr;
  }

  .video-card video {
    height: 220px;
  }
}


/* Top homepage video slider */
.hero-video-slider {
  position: relative;
  height: min(78vh, 720px);
  min-height: 560px;
  overflow: hidden;
  background: var(--dark-navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--dark-navy);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,31,51,.88) 0%, rgba(0,74,173,.58) 45%, rgba(0,119,182,.22) 100%),
    radial-gradient(circle at 85% 18%, rgba(167,224,0,.22), transparent 25%),
    radial-gradient(circle at 8% 90%, rgba(255,138,0,.20), transparent 28%);
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: var(--container);
}

.hero-slide-content h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -.045em;
  margin-bottom: 20px;
}

.hero-slide-content h1 span {
  color: var(--lemon-green);
}

.hero-slide-content p {
  max-width: 690px;
  color: rgba(255,255,255,.86);
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-eyebrow {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  width: fit-content;
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(11,31,51,.52);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 34px;
  cursor: pointer;
  transition: .25s ease;
}

.hero-slider-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.hero-slider-btn.prev {
  left: 24px;
}

.hero-slider-btn.next {
  right: 24px;
}

.hero-slider-dots {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-slider-dots button {
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.hero-slider-dots button.active {
  background: var(--orange);
  border-color: var(--orange);
}

@media (max-width: 720px) {
  .hero-video-slider {
    height: 76vh;
    min-height: 560px;
  }

  .hero-slide-content {
    padding-top: 20px;
    padding-bottom: 54px;
  }

  .hero-slide-content h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero-slide-content p {
    font-size: 16px;
  }

  .hero-slider-btn {
    width: 42px;
    height: 42px;
    font-size: 28px;
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .hero-slider-btn.prev {
    left: 18px;
  }

  .hero-slider-btn.next {
    right: 18px;
  }
}


/* FINAL SM MOBILE VIDEO + BUSINESS UPDATE */
.hero-video-slider,.hero-slide,.hero-slide-video,.hero-slide-overlay,.hero-slide-content,.hero-slider-btn,.hero-slider-dots{display:none!important}.single-hero-slider{position:relative;width:100%;height:min(76vh,720px);min-height:600px;overflow:hidden;background:var(--dark-navy,#0B1F33);isolation:isolate}.single-hero-video{position:absolute;inset:0;z-index:0;width:100%;height:100%;object-fit:cover;object-position:center center;background:var(--dark-navy,#0B1F33)}.single-hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(11,31,51,.92) 0%,rgba(0,74,173,.58) 48%,rgba(0,119,182,.22) 100%),radial-gradient(circle at 84% 16%,rgba(167,224,0,.20),transparent 26%),radial-gradient(circle at 8% 90%,rgba(255,138,0,.18),transparent 28%);pointer-events:none}.single-hero-content{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;justify-content:center;color:#fff}.single-hero-content h1{max-width:780px;color:#fff;font-size:clamp(42px,6vw,76px);line-height:1.05;letter-spacing:-.045em;margin-bottom:20px}.single-hero-content h1 span{color:var(--lemon-green,#A7E000)}.single-hero-content p{max-width:700px;color:rgba(255,255,255,.88);font-size:20px;margin-bottom:30px}.single-hero-eyebrow{background:rgba(255,255,255,.14);color:#fff;border-color:rgba(255,255,255,.22);backdrop-filter:blur(8px);width:fit-content}.single-slider-btn{position:absolute;top:50%;transform:translateY(-50%);z-index:5;width:52px;height:52px;border:1px solid rgba(255,255,255,.28);border-radius:50%;background:rgba(11,31,51,.58);color:#fff;display:grid;place-items:center;font-size:34px;cursor:pointer;transition:.25s ease}.single-slider-btn.prev{left:24px}.single-slider-btn.next{right:24px}.single-slider-btn:hover{background:var(--orange,#FF8A00);border-color:var(--orange,#FF8A00)}.single-slider-dots{position:absolute;z-index:6;left:50%;bottom:26px;transform:translateX(-50%);display:flex;gap:10px}.single-slider-dots button{width:13px;height:13px;border:2px solid rgba(255,255,255,.88);border-radius:50%;background:transparent;cursor:pointer}.single-slider-dots button.active{background:var(--orange,#FF8A00);border-color:var(--orange,#FF8A00)}.business-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}.business-card{background:#fff;border:1px solid var(--border,#E6EDF5);border-radius:var(--radius,22px);padding:24px;box-shadow:0 12px 28px rgba(11,31,51,.06);transition:.25s ease}.business-card:hover{transform:translateY(-6px);box-shadow:var(--shadow,0 18px 40px rgba(11,31,51,.10))}.business-icon{width:58px;height:58px;display:grid;place-items:center;border-radius:18px;background:linear-gradient(135deg,var(--soft-blue,#EAF5FF),#fff);border:1px solid var(--border,#E6EDF5);font-size:28px;margin-bottom:18px}.business-card h3{color:var(--dark-navy,#0B1F33);font-size:22px;line-height:1.15;margin-bottom:10px}.business-card p{color:var(--muted,#667085);margin-bottom:18px}@media(max-width:1050px){.business-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:720px){.single-hero-slider{height:420px!important;min-height:420px!important;max-height:420px!important;margin:0}.single-hero-video{height:420px!important;min-height:420px!important;max-height:420px!important;object-fit:cover;object-position:center center}.single-hero-overlay{background:linear-gradient(180deg,rgba(11,31,51,.70) 0%,rgba(0,74,173,.50) 45%,rgba(11,31,51,.88) 100%),radial-gradient(circle at 80% 18%,rgba(167,224,0,.14),transparent 28%),radial-gradient(circle at 10% 90%,rgba(255,138,0,.14),transparent 28%)}.single-hero-content{height:420px!important;min-height:420px!important;max-height:420px!important;justify-content:center;padding-top:32px;padding-bottom:68px}.single-hero-content h1{font-size:31px;line-height:1.08;margin-bottom:12px;letter-spacing:-.03em;max-width:100%}.single-hero-content p{font-size:14px;line-height:1.48;margin-bottom:16px;max-width:100%}.single-hero-eyebrow{font-size:10.5px;padding:6px 10px;margin-bottom:10px}.single-hero-content .hero-actions{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:0}.single-hero-content .hero-actions .btn{padding:9px 11px;font-size:12px}.single-slider-btn{width:34px;height:34px;font-size:22px;top:auto;bottom:17px;transform:none;background:rgba(11,31,51,.68)}.single-slider-btn.prev{left:16px}.single-slider-btn.next{right:16px}.single-slider-dots{bottom:25px}.single-slider-dots button{width:9px;height:9px}.business-grid{grid-template-columns:1fr}}@media(max-width:420px){.single-hero-slider,.single-hero-video,.single-hero-content{height:380px!important;min-height:380px!important;max-height:380px!important}.single-hero-content{padding-top:24px;padding-bottom:62px}.single-hero-content h1{font-size:27px;margin-bottom:10px}.single-hero-content p{font-size:13px;line-height:1.42;margin-bottom:13px}.single-hero-content .hero-actions .btn{padding:8px 10px;font-size:11.5px}}

/* Batch 2 polish: trust strip, branch clarity and product cards */
.trust-strip{background:#fff;border-bottom:1px solid var(--border);box-shadow:0 10px 30px rgba(11,31,51,.05);position:relative;z-index:3}.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;padding:18px 0}.trust-item{border:1px solid var(--border);border-radius:16px;padding:16px;background:linear-gradient(135deg,#fff,var(--light-bg));min-height:96px}.trust-item strong{display:block;color:var(--deep-blue);font-size:17px;line-height:1.2;margin-bottom:6px}.trust-item span{display:block;color:var(--muted);font-weight:700;font-size:13px;line-height:1.4}.product-section{position:relative;overflow:hidden;display:grid;gap:12px}.product-section:before{content:"";position:absolute;left:0;top:0;bottom:0;width:5px;background:linear-gradient(180deg,var(--deep-blue),var(--orange))}.product-section .btn{width:fit-content}.product-section p{max-width:760px}.visual-card{display:flex;flex-direction:column;border-radius:18px}.visual-card .visual-body{display:flex;flex-direction:column;flex:1}.visual-card .visual-body .btn{width:fit-content;margin-top:auto}.visual-card img{background:var(--light-bg)}.branch-card{border-radius:18px}.branch-card p{margin-bottom:0}.small-btn.muted{background:#f5f7fb;color:var(--muted);border-color:var(--border);cursor:default}.branch-actions{margin-top:4px}@media(max-width:1050px){.trust-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:720px){.trust-grid{grid-template-columns:1fr;padding:12px 0}.trust-item{min-height:auto;padding:14px}.product-section .btn,.visual-card .visual-body .btn{width:100%}.branch-actions .small-btn{flex:1 1 auto;justify-content:center}}

/* Batch 3: compact desktop nav and floating WhatsApp icon */
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.nav-inner{gap:16px}.nav-links{gap:26px;white-space:nowrap}.nav-links a,.dropdown-toggle{white-space:nowrap}.nav-actions .btn{display:none!important}.quick-chat{right:22px!important;bottom:22px!important;left:auto!important;z-index:1800}.quick-chat-toggle{width:62px!important;height:62px!important;min-width:62px!important;min-height:62px!important;padding:0!important;border-radius:50%!important;display:grid!important;place-items:center!important;background:#25D366!important;box-shadow:0 16px 36px rgba(37,211,102,.34)!important}.quick-chat-toggle .chat-pulse{position:absolute;right:8px;top:8px;width:12px;height:12px;background:var(--lemon-green);border:2px solid #fff;box-shadow:none}.quick-chat-toggle .chat-icon{font-size:28px;line-height:1;color:#fff;letter-spacing:0;text-transform:none}.quick-chat-panel{margin-bottom:8px}.visual-card img{height:245px;object-fit:cover;object-position:center}@media(max-width:1180px){.nav-links{gap:18px;font-size:15px}.brand-text strong{font-size:19px}.brand-text small{font-size:10.5px}}@media(max-width:720px){.quick-chat{right:14px!important;bottom:14px!important;left:auto!important}.quick-chat-toggle{width:58px!important;height:58px!important;min-width:58px!important;min-height:58px!important}.quick-chat-panel{width:min(330px,calc(100vw - 28px));margin-bottom:8px}.visual-card img{height:220px}}

/* Batch 4: real model images and cleaner mobile hero */
.product-browser .browser-controls,.product-browser .thumb-row{display:none}.product-browser .browser-main img{height:430px;object-fit:contain;background:#f6faff}.category-feature-card img{height:360px;object-fit:cover;background:#f6faff}@media(max-width:720px){.single-hero-overlay{background:linear-gradient(180deg,rgba(11,31,51,.30) 0%,rgba(11,31,51,.18) 55%,rgba(11,31,51,.58) 100%)!important}.single-hero-content{justify-content:flex-end!important;padding-bottom:72px!important}.single-hero-eyebrow{display:none!important}.single-hero-content h1{font-size:20px!important;line-height:1.12!important;max-width:86%!important;margin-bottom:6px!important;text-shadow:0 2px 10px rgba(0,0,0,.38)}.single-hero-content p{display:none!important}.single-hero-content .hero-actions{gap:7px!important}.single-hero-content .hero-actions .btn{padding:7px 9px!important;font-size:10.5px!important}.product-browser .browser-main img{height:300px}.category-feature-card img{height:250px}}@media(max-width:420px){.single-hero-content h1{font-size:18px!important;max-width:90%!important}.single-hero-content .hero-actions .btn{font-size:10px!important;padding:7px 8px!important}}

/* Batch 5: mobile menu repair and cinematic device showcase */
.menu-btn{position:relative;z-index:1202;flex:0 0 auto}
.dropdown.open .dropdown-menu{display:grid}
.device-showcase-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,#06172a 0%,#004aad 48%,#051120 100%);min-height:650px;color:#fff;isolation:isolate}
.device-showcase-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(6,23,42,.98) 0%,rgba(6,23,42,.78) 42%,rgba(6,23,42,.24) 100%);z-index:0}
.device-glow{position:absolute;border-radius:999px;filter:blur(18px);opacity:.45;z-index:0}
.device-glow-one{width:360px;height:360px;right:8%;top:8%;background:rgba(167,224,0,.34)}
.device-glow-two{width:280px;height:280px;left:10%;bottom:-70px;background:rgba(255,138,0,.30)}
.device-hero-inner{position:relative;z-index:2;min-height:650px;display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,520px);align-items:center;gap:56px;padding:70px 0}
.device-hero-copy h1{max-width:760px;color:#fff;font-size:clamp(42px,6vw,76px);line-height:1.04;margin:14px 0 20px}
.device-hero-copy h1 span{color:var(--lemon-green)}
.device-hero-copy p{max-width:660px;color:rgba(255,255,255,.86);font-size:20px;margin-bottom:30px}
.device-stage{position:relative;min-height:520px;perspective:1100px}
.device-slide{position:absolute;inset:0;display:grid;place-items:center;opacity:0;pointer-events:none;transform:translateX(50px) scale(.92);transition:opacity .55s ease,transform .55s ease}
.device-slide.active{opacity:1;pointer-events:auto;transform:translateX(0) scale(1)}
.device-phone-wrap{width:min(86vw,390px);height:430px;border-radius:34px;background:linear-gradient(145deg,rgba(255,255,255,.98),rgba(234,245,255,.88));display:grid;place-items:center;box-shadow:0 36px 80px rgba(0,0,0,.32);transform-style:preserve-3d;animation:phoneSwing 5.2s ease-in-out infinite;border:1px solid rgba(255,255,255,.58)}
.device-phone-wrap img{max-width:86%;max-height:86%;object-fit:contain;filter:drop-shadow(0 24px 24px rgba(0,0,0,.20))}
.accessory-wrap img{max-width:92%;max-height:78%;border-radius:22px}
.device-caption{position:absolute;left:50%;bottom:0;transform:translateX(-50%);width:min(92%,390px);background:rgba(255,255,255,.95);color:var(--dark-navy);border:1px solid rgba(255,255,255,.7);border-radius:20px;padding:18px 20px;box-shadow:0 18px 40px rgba(0,0,0,.18)}
.device-caption strong{display:block;font-size:22px;line-height:1.1;color:var(--deep-blue)}
.device-caption span{display:block;color:var(--muted);font-weight:700;margin:5px 0 10px}
.device-caption a{display:inline-flex;color:#fff;background:var(--orange);border-radius:999px;padding:8px 14px;font-weight:900}
.device-nav{position:absolute;top:50%;z-index:5;transform:translateY(-50%);width:50px;height:50px;border-radius:50%;border:1px solid rgba(255,255,255,.30);background:rgba(6,23,42,.58);color:#fff;font-size:34px;display:grid;place-items:center;cursor:pointer}
.device-nav.prev{left:24px}.device-nav.next{right:24px}
.device-dots{position:absolute;z-index:5;left:50%;bottom:24px;transform:translateX(-50%);display:flex;gap:9px}
.device-dots button{width:12px;height:12px;border:2px solid rgba(255,255,255,.85);background:transparent;border-radius:50%;cursor:pointer}
.device-dots button.active{background:var(--orange);border-color:var(--orange)}
@keyframes phoneSwing{0%,100%{transform:rotateY(-16deg) rotateX(2deg) translateY(0)}50%{transform:rotateY(18deg) rotateX(-2deg) translateY(-10px)}}
@media(max-width:1050px){.nav-links{z-index:1201;max-height:calc(100vh - 96px);overflow-y:auto}.dropdown-menu{display:none!important}.dropdown.open .dropdown-menu{display:grid!important}.dropdown-toggle{width:100%;justify-content:space-between}.nav-links a{display:flex;align-items:center;min-height:44px;padding:10px 12px;border-radius:12px}.nav-links a:hover{background:var(--soft-blue);color:var(--deep-blue)}}
@media(max-width:720px){.navbar{z-index:1200}.nav-inner{gap:10px}.brand{min-width:0;max-width:calc(100% - 58px)}.brand-text{min-width:0}.brand-text strong,.brand-text small{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.menu-btn{display:grid!important;place-items:center!important;width:46px;height:46px;background:var(--deep-blue);color:#fff;box-shadow:0 10px 24px rgba(0,74,173,.20)}.nav-links{left:11px!important;right:11px!important;top:74px!important;padding:12px!important;border-radius:16px!important;gap:2px!important}.dropdown-menu{margin-top:2px!important;padding:6px!important;background:#f6faff!important}.dropdown-menu a{font-size:15px!important;padding:9px 12px!important}.device-showcase-hero{min-height:620px}.device-showcase-hero:before{background:linear-gradient(180deg,rgba(6,23,42,.96) 0%,rgba(0,74,173,.50) 46%,rgba(6,23,42,.92) 100%)}.device-hero-inner{min-height:620px;grid-template-columns:1fr;gap:18px;padding:34px 0 58px;text-align:center}.device-hero-copy{order:2}.device-hero-copy .eyebrow{display:none}.device-hero-copy h1{font-size:25px;line-height:1.08;margin:6px auto 10px;max-width:340px}.device-hero-copy p{display:none}.device-hero-copy .hero-actions{justify-content:center;gap:8px}.device-hero-copy .hero-actions .btn{padding:8px 10px;font-size:11px}.device-stage{order:1;min-height:382px}.device-phone-wrap{width:min(82vw,310px);height:330px;border-radius:28px}.device-caption{bottom:8px;padding:12px 14px;border-radius:16px;text-align:left}.device-caption strong{font-size:18px}.device-caption span{font-size:12px;margin:3px 0 8px}.device-caption a{font-size:12px;padding:7px 12px}.device-nav{width:36px;height:36px;font-size:24px;top:38%;background:rgba(6,23,42,.66)}.device-nav.prev{left:10px}.device-nav.next{right:10px}.device-dots{bottom:14px}.device-dots button{width:9px;height:9px}}
@media(max-width:420px){.device-showcase-hero,.device-hero-inner{min-height:570px}.device-stage{min-height:350px}.device-phone-wrap{width:min(84vw,280px);height:300px}.device-hero-copy h1{font-size:22px}.device-hero-copy .hero-actions .btn{font-size:10.5px;padding:7px 9px}}

/* Batch 6: stronger phone-first hero display */
.screen-wrap img{max-width:94%;max-height:84%;border-radius:18px}
@media(min-width:1051px){.device-stage{min-height:575px}.device-phone-wrap{width:min(88vw,445px);height:500px}.device-caption{bottom:6px}}
@media(max-width:720px){.device-showcase-hero{min-height:710px}.device-hero-inner{min-height:710px;padding:18px 0 62px;gap:8px}.device-stage{min-height:500px;width:100%;margin-top:4px}.device-phone-wrap{width:min(96vw,374px);height:438px;border-radius:30px}.device-phone-wrap img{max-width:92%;max-height:92%;filter:drop-shadow(0 28px 26px rgba(0,0,0,.24))}.screen-wrap img{max-width:94%;max-height:86%;object-fit:contain}.device-caption{bottom:-2px;width:min(94vw,360px);padding:11px 13px}.device-hero-copy h1{font-size:20px;max-width:350px;margin:0 auto 8px}.device-hero-copy .hero-actions .btn{padding:8px 10px;font-size:10.5px}.device-nav{top:35%;width:34px;height:34px}.device-dots{bottom:12px}}
@media(max-width:420px){.device-showcase-hero,.device-hero-inner{min-height:670px}.device-stage{min-height:470px}.device-phone-wrap{width:min(96vw,356px);height:415px}.device-caption{width:min(94vw,340px)}.device-hero-copy h1{font-size:19px}.device-hero-copy .hero-actions{gap:6px}.device-hero-copy .hero-actions .btn{padding:7px 8px;font-size:10px}}
@media(max-width:360px){.device-showcase-hero,.device-hero-inner{min-height:640px}.device-stage{min-height:430px}.device-phone-wrap{height:380px}.device-caption strong{font-size:16px}.device-caption span{font-size:11px}.device-caption a{font-size:11px}}
