:root {
  --ink: #13262f;
  --muted: #617078;
  --soft: #f3f7f6;
  --paper: #fff;
  --line: #dce6e4;
  --teal: #0f6b70;
  --teal-dark: #084b50;
  --teal-pale: #def2ef;
  --orange: #ef6c3d;
  --orange-dark: #d65326;
  --amber: #f5b840;
  --green: #1d8a55;
  --wa: #25d366;
  --danger-soft: #fff6e8;
  --shadow-sm: 0 8px 28px rgba(16, 42, 52, .08);
  --shadow: 0 22px 65px rgba(16, 42, 52, .12);
  --radius: 22px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 9999; top: -60px; left: 14px; padding: 10px 16px; border-radius: 10px; background: var(--ink); color: #fff; transition: top .2s; }
.skip-link:focus { top: 14px; }

.topbar { background: var(--ink); color: #fff; font-size: 12px; }
.topbar-row { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar strong { color: #ffd17c; }
.topbar a { text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar-links { display: flex; align-items: center; gap: 20px; }
.topbar-links i { margin-right: 6px; color: #8ddcd6; }

.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(220,230,228,.9); background: rgba(255,255,255,.96); backdrop-filter: blur(14px); }
.nav-row { min-height: 78px; display: flex; align-items: center; gap: 32px; }
.logo { flex: 0 0 auto; text-decoration: none; }
.logo img { width: 238px; height: auto; }
.nav-main { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-main > a, .nav-drop-btn { border: 0; background: transparent; color: #33464f; font-size: 14px; font-weight: 750; text-decoration: none; }
.nav-main > a:hover, .nav-drop-btn:hover { color: var(--teal); }
.nav-drop { position: relative; }
.nav-drop-btn i { margin-left: 5px; font-size: 10px; }
.nav-menu { position: absolute; top: calc(100% + 18px); left: -20px; width: 300px; display: none; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow); }
.nav-drop.open .nav-menu, .nav-drop:hover .nav-menu { display: grid; }
.nav-menu a { display: grid; grid-template-columns: 38px 1fr; gap: 10px; align-items: center; padding: 10px; border-radius: 11px; text-decoration: none; }
.nav-menu a:hover { background: var(--soft); }
.nav-menu i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 9px; background: var(--teal-pale); color: var(--teal); }
.nav-menu b { display: block; font-size: 13px; }
.nav-menu small { color: var(--muted); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.phone { font-size: 13px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); }

.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 22px; border: 1px solid transparent; border-radius: 12px; font-weight: 820; text-decoration: none; transition: .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn i { font-size: 15px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 25px rgba(239,108,61,.23); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-outline { border-color: #b7cecc; background: #fff; color: var(--teal); }
.btn-outline:hover { border-color: var(--teal); background: #f5fbfa; }
.btn-whatsapp { background: var(--wa); color: #073a21; }
.btn-sm { min-height: 42px; padding-inline: 16px; font-size: 13px; }
.btn-block { width: 100%; }

.announcement { border-bottom: 1px solid #d2e4e1; background: #e8f6f3; color: var(--teal-dark); }
.announcement-row { min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; font-weight: 720; text-align: center; }
.announcement i { color: var(--orange); }

.home-hero { overflow: hidden; background: linear-gradient(125deg, #f3faf8 0%, #fff 58%, #fff4ea 100%); }
.home-hero-grid { min-height: 690px; display: grid; grid-template-columns: 1.02fr .98fr; gap: 62px; align-items: center; padding-block: 68px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 99px; background: var(--orange); }
h1, h2, h3, p { overflow-wrap: anywhere; }
.home-hero h1 { margin: 0; max-width: 720px; font-size: clamp(44px, 5.2vw, 70px); line-height: 1.02; letter-spacing: -.055em; }
.home-hero h1 span { color: var(--teal); }
.hero-copy { max-width: 680px; margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.hero-copy strong { color: var(--ink); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; padding: 0; list-style: none; }
.hero-badges li { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; box-shadow: var(--shadow-sm); font-size: 13px; font-weight: 760; }
.hero-badges i { color: var(--green); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-micro { margin: 14px 0 0; color: #67777f; font-size: 12px; }
.hero-micro i { margin-right: 5px; color: var(--teal); }

.hero-visual { position: relative; min-height: 540px; }
.hero-image-main { position: absolute; inset: 10px 40px 60px 60px; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-main::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -120px 100px -100px rgba(5,29,35,.45); }
.floating-card { position: absolute; z-index: 2; min-width: 205px; padding: 16px; border: 1px solid rgba(220,230,228,.9); border-radius: 16px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
.floating-card.one { top: 0; left: 0; }
.floating-card.two { right: 0; bottom: 20px; }
.floating-card i { width: 38px; height: 38px; display: grid; place-items: center; float: left; margin-right: 11px; border-radius: 10px; background: var(--teal-pale); color: var(--teal); }
.floating-card b { display: block; font-size: 14px; }
.floating-card span { color: var(--muted); font-size: 11px; }
.barcode-card { position: absolute; z-index: 2; bottom: 0; left: 20px; width: 250px; padding: 18px; border-radius: 17px; background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.barcode-lines { height: 56px; margin-bottom: 10px; background: repeating-linear-gradient(90deg, #fff 0 3px, transparent 3px 6px, #fff 6px 8px, transparent 8px 13px, #fff 13px 14px, transparent 14px 19px); }
.barcode-card small { color: #b9cace; letter-spacing: .15em; }

.trust-band { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { min-height: 116px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-item { padding: 4px 28px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border: 0; }
.trust-item b { display: block; color: var(--teal); font-size: 28px; line-height: 1.1; letter-spacing: -.03em; }
.trust-item span { color: var(--muted); font-size: 12px; }

section { padding-block: 92px; }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-kicker { margin: 0 0 10px; color: var(--orange-dark); font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.section-title { margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -.04em; }
.section-intro { margin: 15px 0 0; color: var(--muted); font-size: 17px; }

.marketplaces { padding-block: 60px; background: var(--soft); }
.marketplace-title { margin: 0 0 25px; color: #496068; font-size: 13px; font-weight: 800; text-align: center; }
.marketplace-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.market-logo { min-height: 86px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 13px; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: 0 5px 18px rgba(16,42,52,.04); }
.market-logo img { width: 34px; height: 34px; object-fit: contain; }
.market-logo b { font-size: 13px; white-space: nowrap; }
.market-note { margin: 18px auto 0; max-width: 880px; color: var(--muted); font-size: 11px; text-align: center; }

.packages { background: #fff; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.package-card { position: relative; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: .25s ease; }
.package-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.package-card.featured { border: 2px solid var(--teal); }
.package-top { min-height: 176px; position: relative; overflow: hidden; }
.package-top img { width: 100%; height: 100%; object-fit: cover; }
.package-top::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,45,51,.45), transparent 60%); }
.popular { position: absolute; z-index: 2; top: 14px; right: 14px; padding: 7px 10px; border-radius: 99px; background: var(--teal); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.package-body { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.package-label { margin: 0 0 6px; color: var(--teal); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.package-card h3 { margin: 0; font-size: 23px; line-height: 1.25; }
.price { display: flex; align-items: flex-end; gap: 7px; margin: 17px 0; }
.price b { font-size: 35px; line-height: 1; letter-spacing: -.04em; }
.price span { color: var(--muted); font-size: 11px; }
.feature-list { margin: 0 0 23px; padding: 0; display: grid; gap: 10px; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 20px 1fr; gap: 8px; color: #4d6068; font-size: 13px; }
.feature-list i { margin-top: 3px; color: var(--green); }
.package-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: auto; }
.package-actions .btn { padding-inline: 11px; font-size: 13px; }

.chooser { background: var(--ink); color: #fff; }
.chooser-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 55px; align-items: center; }
.chooser .section-title { color: #fff; }
.chooser .section-intro { color: #afc0c5; }
.choice-list { display: grid; gap: 12px; }
.choice { width: 100%; display: grid; grid-template-columns: 52px 1fr auto; gap: 14px; align-items: center; padding: 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(255,255,255,.055); color: #fff; text-align: left; transition: .2s; }
.choice:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.09); }
.choice i:first-child { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: rgba(119,218,207,.15); color: #82dfd4; font-size: 19px; }
.choice b { display: block; }
.choice span { color: #aebdc2; font-size: 12px; }
.choice i:last-child { color: #ffbb84; }

.deliverables { background: var(--soft); }
.deliverable-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.deliverable { padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.deliverable i { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 13px; background: var(--teal-pale); color: var(--teal); font-size: 19px; }
.deliverable h3 { margin: 0 0 8px; font-size: 17px; }
.deliverable p { margin: 0; color: var(--muted); font-size: 13px; }

.industries { background: #fff; }
.industry-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.industry { min-height: 185px; position: relative; overflow: hidden; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, #fff, #f2f7f6); }
.industry::after { content: ""; position: absolute; right: -28px; bottom: -28px; width: 105px; height: 105px; border-radius: 50%; background: var(--teal-pale); }
.industry i { position: relative; z-index: 1; color: var(--orange); font-size: 25px; }
.industry h3 { position: relative; z-index: 1; margin: 24px 0 6px; font-size: 16px; }
.industry p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 12px; }

.split-section { background: #fff; }
.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 62px; align-items: center; }
.split-image { position: relative; min-height: 510px; overflow: hidden; border-radius: 25px; box-shadow: var(--shadow); }
.split-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-image-tag { position: absolute; left: 18px; bottom: 18px; padding: 14px 16px; border-radius: 13px; background: #fff; box-shadow: var(--shadow); font-size: 12px; font-weight: 800; }
.reason-list { display: grid; gap: 14px; margin-top: 26px; }
.reason { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.reason i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--teal-pale); color: var(--teal); }
.reason b { display: block; margin-bottom: 3px; }
.reason span { color: var(--muted); font-size: 13px; }

.comparison { background: var(--soft); }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 18px 22px; border-bottom: 1px solid var(--line); text-align: left; }
.comparison-table th { background: #f8fbfa; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.comparison-table th:nth-child(2) { color: var(--teal); }
.comparison-table td { color: #4a5c64; font-size: 13px; }
.comparison-table td:first-child { color: var(--ink); font-weight: 800; }
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table i.fa-check { color: var(--green); }
.comparison-table i.fa-circle-xmark { color: #c26443; }

.faq-section { background: #fff; }
.faq-wrap { max-width: 900px; margin-inline: auto; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 3px; border: 0; background: transparent; color: var(--ink); font-size: 16px; font-weight: 820; text-align: left; }
.faq-q i { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--soft); color: var(--teal); transition: transform .2s; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .24s ease; }
.faq-a > div { overflow: hidden; }
.faq-a p { margin: 0; padding: 0 52px 21px 3px; color: var(--muted); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-q i { transform: rotate(45deg); }

.cta-section { padding-block: 60px; background: #fff; }
.cta-box { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: center; padding: 52px; border-radius: 24px; background: var(--teal); color: #fff; }
.cta-box::after { content: ""; position: absolute; right: -65px; bottom: -60px; width: 240px; height: 180px; opacity: .13; background: repeating-linear-gradient(90deg,#fff 0 4px,transparent 4px 9px,#fff 9px 11px,transparent 11px 17px); transform: rotate(-8deg); }
.cta-box h2 { position: relative; z-index: 1; margin: 0; max-width: 680px; font-size: clamp(30px,4vw,44px); line-height: 1.1; letter-spacing: -.035em; }
.cta-box p { position: relative; z-index: 1; margin: 13px 0 0; color: #cae2df; }
.cta-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 10px; }
.cta-actions .btn-primary { background: #fff; color: var(--teal); box-shadow: none; }

.page-hero { padding-block: 56px; border-bottom: 1px solid var(--line); background: linear-gradient(125deg,#f2f9f7,#fff 62%,#fff5eb); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; color: var(--muted); font-size: 12px; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb i { font-size: 9px; align-self: center; }
.page-hero h1 { margin: 0; max-width: 820px; font-size: clamp(38px,5vw,58px); line-height: 1.05; letter-spacing: -.045em; }
.page-hero p { max-width: 760px; margin: 16px 0 0; color: var(--muted); font-size: 17px; }

.product-hero { padding-block: 58px 76px; background: #fff; }
.product-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 62px; align-items: start; }
.product-gallery { position: sticky; top: 110px; }
.main-product-image { overflow: hidden; height: 500px; border: 1px solid var(--line); border-radius: 24px; background: var(--soft); }
.main-product-image img { width: 100%; height: 100%; object-fit: cover; }
.image-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.image-thumb { overflow: hidden; height: 100px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.image-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-summary .eyebrow { margin-bottom: 12px; }
.product-summary h1 { margin: 0; font-size: clamp(36px,4.5vw,55px); line-height: 1.04; letter-spacing: -.045em; }
.product-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 15px; color: var(--muted); font-size: 12px; }
.product-meta i { margin-right: 5px; color: var(--teal); }
.product-price { display: flex; align-items: end; gap: 9px; margin: 25px 0 8px; }
.product-price b { font-size: 43px; line-height: 1; letter-spacing: -.045em; }
.product-price span { color: var(--muted); font-size: 12px; }
.tax-note { margin: 0; color: var(--muted); font-size: 11px; }
.product-lead { margin: 22px 0; color: #4e626a; font-size: 16px; }
.product-highlights { margin: 0 0 25px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; list-style: none; }
.product-highlights li { display: grid; grid-template-columns: 36px 1fr; gap: 10px; align-items: center; padding: 11px; border: 1px solid var(--line); border-radius: 12px; }
.product-highlights i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: var(--teal-pale); color: var(--teal); }
.product-highlights b { display: block; font-size: 12px; }
.product-highlights span { color: var(--muted); font-size: 10px; }
.product-cta { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; }
.secure-line { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 17px; color: var(--muted); font-size: 11px; }
.secure-line i { color: var(--green); margin-right: 5px; }
.product-notice { margin-top: 22px; padding: 16px; border: 1px solid #eeddb8; border-radius: 13px; background: var(--danger-soft); color: #655a41; font-size: 12px; }
.product-notice i { margin-right: 7px; color: #a36d0c; }

.product-details { background: var(--soft); }
.details-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; }
.detail-card { padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.detail-card h2, .detail-card h3 { margin-top: 0; }
.detail-card h2 { font-size: 29px; letter-spacing: -.03em; }
.detail-card h3 { font-size: 19px; }
.detail-card p { color: var(--muted); }
.spec-list { margin: 0; padding: 0; list-style: none; }
.spec-list li { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.spec-list li:last-child { border: 0; }
.spec-list span { color: var(--muted); text-align: right; }
.included-list { margin: 20px 0 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.included-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; color: #4d6068; }
.included-list i { color: var(--green); margin-top: 4px; }

.product-platforms { background: #fff; }
.compat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.compat-card { padding: 22px; border: 1px solid var(--line); border-radius: 17px; }
.compat-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.compat-head img { width: 38px; height: 38px; object-fit: contain; }
.compat-head b { font-size: 15px; }
.compat-card p { margin: 0; color: var(--muted); font-size: 12px; }
.compat-status { display: inline-flex; align-items: center; gap: 5px; margin-top: 13px; color: var(--green); font-size: 11px; font-weight: 800; }

.related { background: var(--soft); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: #fff; text-decoration: none; transition: .2s; }
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.related-card i { color: var(--teal); }
.related-card h3 { margin: 14px 0 5px; font-size: 18px; }
.related-card p { margin: 0; color: var(--muted); font-size: 12px; }
.related-price { display: block; margin-top: 14px; color: var(--orange-dark); font-weight: 900; }

.about-story { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { height: 520px; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p { color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.value { padding: 19px; border: 1px solid var(--line); border-radius: 15px; }
.value i { color: var(--orange); }
.value b { display: block; margin-top: 12px; }
.value span { color: var(--muted); font-size: 11px; }

.contact-section { background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 26px; }
.contact-info, .contact-form { padding: 32px; border: 1px solid var(--line); border-radius: 21px; background: #fff; }
.contact-cards { display: grid; gap: 12px; margin-top: 24px; }
.contact-card { display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: center; padding: 15px; border: 1px solid var(--line); border-radius: 13px; text-decoration: none; }
.contact-card i { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: var(--teal-pale); color: var(--teal); }
.contact-card b { display: block; font-size: 13px; }
.contact-card span { color: var(--muted); font-size: 11px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1/-1; }
.form-field label { color: #43565e; font-size: 12px; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 13px; border: 1px solid #cddbd9; border-radius: 10px; background: #fff; color: var(--ink); outline: none; }
.form-field textarea { min-height: 90px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15,107,112,.12); }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 10px; text-align: center; }

.modal { position: fixed; z-index: 1000; inset: 0; display: none; place-items: center; padding: 20px; background: rgba(8,24,31,.7); backdrop-filter: blur(5px); }
.modal.open { display: grid; }
.modal-panel { position: relative; width: min(610px,100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 30px; border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 15px; right: 15px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: var(--soft); color: var(--ink); }
.modal-badge { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 14px; background: var(--teal-pale); color: var(--teal); font-size: 20px; }
.modal h2 { margin: 0; font-size: 29px; letter-spacing: -.03em; }
.modal-sub { margin: 8px 0 22px; color: var(--muted); font-size: 13px; }
.selected-product { margin-bottom: 18px; padding: 12px 14px; border: 1px solid #cfe1df; border-radius: 11px; background: #f3faf8; color: var(--teal-dark); font-size: 12px; font-weight: 800; }

footer { padding: 60px 0 26px; background: #101c23; color: #b8c5ca; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .65fr .75fr .85fr; gap: 42px; padding-bottom: 42px; }
.footer-logo { width: 250px; padding: 8px; border-radius: 5px; background: #fff; }
.footer-about { max-width: 390px; margin: 17px 0 0; font-size: 13px; }
.footer-col h3 { margin: 0 0 15px; color: #fff; font-size: 13px; }
.footer-links { margin: 0; padding: 0; display: grid; gap: 9px; list-style: none; }
.footer-links a { font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; font-size: 12px; }
.footer-contact i { margin-top: 4px; color: #7bd5cb; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer-bottom span:last-child { max-width: 760px; }

.floating-wa { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--wa); color: #06381f; box-shadow: 0 12px 30px rgba(0,0,0,.2); text-decoration: none; font-size: 22px; transition: .2s; }
.floating-wa:hover { transform: translateY(-3px); }
.mobile-actions { display: none; }
.toast { position: fixed; z-index: 1200; left: 50%; bottom: 30px; transform: translate(-50%,20px); padding: 13px 18px; border-radius: 10px; background: var(--ink); color: #fff; opacity: 0; pointer-events: none; transition: .25s; font-size: 12px; }
.toast.show { opacity: 1; transform: translate(-50%,0); }

@media (max-width: 1080px) {
  .nav-main { position: fixed; top: 116px; inset-inline: 0; display: none; padding: 24px 20px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
  .nav-main.open { display: grid; gap: 20px; }
  .nav-main > a, .nav-drop-btn { font-size: 17px; text-align: left; }
  .nav-menu { position: static; width: 100%; margin-top: 10px; box-shadow: none; }
  .nav-drop:hover .nav-menu { display: none; }
  .nav-drop.open .nav-menu { display: grid; }
  .menu-toggle { display: grid; place-items: center; }
  .phone { display: none; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .home-hero-copy { max-width: 800px; }
  .hero-visual { max-width: 760px; width: 100%; }
  .marketplace-grid { grid-template-columns: repeat(4,1fr); }
  .chooser-grid, .split-grid, .product-layout, .details-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; max-width: 740px; }
  .deliverable-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1/-1; }
}

@media (max-width: 760px) {
  .container { width: min(var(--max),calc(100% - 28px)); }
  .topbar-row { min-height: 42px; justify-content: center; text-align: center; }
  .topbar-links { display: none; }
  .logo img { width: 202px; }
  .nav-row { min-height: 72px; }
  .nav-actions .btn { display: none; }
  .nav-main { top: 114px; }
  .announcement-row { min-height: 48px; font-size: 11px; }
  .home-hero-grid { min-height: 0; padding-block: 46px 58px; gap: 38px; }
  .home-hero h1 { font-size: clamp(40px,12vw,56px); }
  .hero-copy { font-size: 16px; }
  .hero-cta .btn { width: 100%; }
  .hero-visual { min-height: 440px; }
  .hero-image-main { inset: 20px 12px 55px 35px; }
  .floating-card { min-width: 178px; padding: 12px; }
  .floating-card.two { right: 2px; }
  .barcode-card { width: 210px; left: 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding-block: 17px; }
  .trust-item { min-height: 72px; display: flex; flex-direction: column; justify-content: center; padding: 12px 16px; border-right: 0; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  section { padding-block: 68px; }
  .marketplace-grid { grid-template-columns: 1fr 1fr; }
  .market-logo { min-height: 74px; }
  .package-grid, .compat-grid, .related-grid, .values-grid { grid-template-columns: 1fr; }
  .package-card { max-width: 520px; margin-inline: auto; }
  .package-actions { grid-template-columns: 1fr; }
  .deliverable-grid, .industry-grid { grid-template-columns: 1fr; }
  .industry { min-height: 145px; }
  .split-image, .about-image { min-height: 390px; height: 390px; }
  .cta-box { grid-template-columns: 1fr; padding: 38px 24px; }
  .cta-actions .btn { width: 100%; }
  .main-product-image { height: 390px; }
  .product-highlights, .product-cta { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .contact-info, .contact-form, .detail-card { padding: 23px; }
  .modal-panel { padding: 25px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; padding-bottom: 64px; }
  .floating-wa { display: none; }
  .mobile-actions { position: fixed; z-index: 150; inset: auto 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 9px 12px; border-top: 1px solid var(--line); background: rgba(255,255,255,.97); backdrop-filter: blur(12px); }
  .mobile-actions .btn { min-height: 46px; padding-inline: 10px; font-size: 12px; }
  .toast { bottom: 78px; width: calc(100% - 30px); text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
