/* Apple Solutions — storefront styles */
:root {
  --apsol-ink: #1d1d1f;
  --apsol-ink-soft: #3a3a3c;
  --apsol-muted: #6e6e73;
  --apsol-line: #d9d9de;
  --apsol-surface: #f5f5f7;
  --apsol-surface-2: #fbfbfd;
  --apsol-white: #fff;
  --apsol-blue: #006edb;
  --apsol-blue-dark: #0058b0;
  --apsol-green: #15803d;
  --apsol-whatsapp: #128c4a;
  --apsol-whatsapp-dark: #0d713b;
  --apsol-radius-sm: 12px;
  --apsol-radius: 22px;
  --apsol-radius-lg: 32px;
  --apsol-shadow: 0 24px 80px rgba(25, 25, 30, .10);
  --apsol-container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--apsol-ink);
  background: var(--apsol-white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3, h4 {
  color: var(--apsol-ink);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.08;
}

p { color: var(--apsol-muted); }

::selection { color: #fff; background: var(--apsol-blue); }

:focus-visible { outline: 3px solid rgba(0, 110, 219, .4); outline-offset: 3px; }

.apsol-container { width: min(calc(100% - 40px), var(--apsol-container)); margin-inline: auto; }
.content-narrow { max-width: 860px; }
.site-main { min-height: 45vh; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  top: 10px;
  left: 10px;
  z-index: 100000;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  margin: 0;
  border-radius: 8px;
  color: var(--apsol-ink);
  background: #fff;
}

.apsol-icon { width: 1.25em; height: 1.25em; flex: none; vertical-align: -.18em; }

/* Announcement and header */
.announcement-bar { background: #101114; color: #e7e7eb; font-size: 13px; }
.announcement-inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 24px; text-align: center; }
.announcement-inner a { display: inline-flex; align-items: center; gap: 5px; color: #fff; font-weight: 650; }
.announcement-inner a .apsol-icon { width: 14px; transition: transform .2s ease; }
.announcement-inner a:hover .apsol-icon { transform: translateX(3px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled { background: rgba(255, 255, 255, .95); box-shadow: 0 8px 32px rgba(20, 20, 24, .07); }
body.admin-bar .site-header { top: 32px; }
.header-inner { min-height: 72px; display: flex; align-items: center; gap: 28px; }
.site-branding { flex: none; }
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { width: auto; max-width: 220px; max-height: 44px; }
.wordmark { display: inline-flex; align-items: center; gap: 10px; color: var(--apsol-ink); font-size: 20px; font-weight: 750; letter-spacing: -.03em; }
.wordmark-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--apsol-ink); font-size: 18px; font-weight: 800; }
.wordmark-light { color: #fff; }
.wordmark-light .wordmark-mark { color: #101114; background: #fff; }

.primary-navigation { margin-left: auto; }
.primary-navigation .menu { display: flex; align-items: center; gap: 32px; padding: 0; margin: 0; list-style: none; }
.primary-navigation .menu > li { position: relative; margin: 0; }
.primary-navigation .menu > li > a { display: block; padding: 25px 0; color: #3d3d42; font-size: 14px; font-weight: 600; }
.primary-navigation .menu > li > a::after { content: ""; position: absolute; right: 0; bottom: 18px; left: 0; height: 2px; border-radius: 2px; background: var(--apsol-ink); transform: scaleX(0); transition: transform .2s ease; }
.primary-navigation .menu > li.current-menu-item > a::after,
.primary-navigation .menu > li > a:hover::after { transform: scaleX(1); }
.primary-navigation .sub-menu { position: absolute; top: 60px; left: -20px; min-width: 210px; padding: 10px; margin: 0; list-style: none; border: 1px solid var(--apsol-line); border-radius: 14px; background: #fff; box-shadow: var(--apsol-shadow); opacity: 0; visibility: hidden; transform: translateY(5px); transition: .2s ease; }
.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-navigation .sub-menu a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 14px; }
.primary-navigation .sub-menu a:hover { background: var(--apsol-surface); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-search { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--apsol-ink); }
.header-search:hover { background: var(--apsol-surface); }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 0; border-radius: 50%; color: var(--apsol-ink); background: transparent; cursor: pointer; }
.nav-toggle:hover { background: var(--apsol-surface); }
.mobile-nav-search { display: none; }

/* Buttons */
.button,
button.button,
input[type="submit"],
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: var(--apsol-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover,
button.button:hover,
input[type="submit"]:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover { color: #fff; background: #000; transform: translateY(-1px); }
.button .apsol-icon { width: 18px; }
.button-primary { background: var(--apsol-blue); }
.button-primary:hover { background: var(--apsol-blue-dark); box-shadow: 0 8px 28px rgba(0, 110, 219, .25); }
.button-secondary { color: var(--apsol-ink); border-color: var(--apsol-line); background: #fff; }
.button-secondary:hover { color: var(--apsol-ink); border-color: #aaaab1; background: #fff; }
.button-whatsapp,
.woocommerce a.button.apsol-wa-button,
.woocommerce button.single_add_to_cart_button { background: var(--apsol-whatsapp); }
.button-whatsapp:hover,
.woocommerce a.button.apsol-wa-button:hover,
.woocommerce button.single_add_to_cart_button:hover { background: var(--apsol-whatsapp-dark); box-shadow: 0 8px 28px rgba(18, 140, 74, .22); }
.button-compact { min-height: 40px; padding: 9px 16px; }
.button.is-disabled, .button:disabled, .woocommerce a.button.disabled, .woocommerce button.button.disabled { opacity: .5; cursor: not-allowed; transform: none; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--apsol-blue); font-size: 14px; font-weight: 700; white-space: nowrap; }
.text-link .apsol-icon { width: 17px; transition: transform .2s ease; }
.text-link:hover .apsol-icon { transform: translateX(4px); }

/* Homepage hero */
.hero-section { position: relative; overflow: hidden; padding: 86px 0 78px; background: radial-gradient(circle at 86% 12%, rgba(45, 125, 255, .12), transparent 28%), radial-gradient(circle at 8% 92%, rgba(113, 199, 255, .12), transparent 25%), linear-gradient(135deg, #fbfcfe 0%, #f0f4fa 50%, #f8f8fa 100%); isolation: isolate; }
.hero-section::before,
.hero-section::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; z-index: -1; }
.hero-section::before { top: -310px; right: -150px; width: 760px; height: 760px; border: 1px solid rgba(0, 110, 219, .08); box-shadow: 0 0 0 70px rgba(0, 110, 219, .025), 0 0 0 145px rgba(0, 110, 219, .018); animation: ambientDrift 12s ease-in-out infinite; }
.hero-section::after { bottom: -320px; left: -230px; width: 570px; height: 570px; background: rgba(104, 189, 255, .08); filter: blur(30px); animation: ambientDrift 15s ease-in-out -5s infinite reverse; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); align-items: center; gap: clamp(54px, 7vw, 104px); }
.hero-copy { position: relative; z-index: 3; }
.eyebrow { margin-bottom: 15px; color: var(--apsol-blue); font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero-copy h1 { max-width: 720px; margin-bottom: 22px; font-size: clamp(48px, 5.8vw, 78px); letter-spacing: -.062em; text-wrap: balance; }
.hero-lead { max-width: 620px; margin-bottom: 30px; font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.hero-actions .button-primary .apsol-icon { transition: transform .22s ease; }
.hero-actions .button-primary:hover .apsol-icon { transform: translateX(4px); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 24px; }
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; color: #4a4a50; font-size: 13px; font-weight: 650; }
.hero-proof .apsol-icon { width: 16px; color: var(--apsol-green); }
.hero-visual { min-width: 0; position: relative; }
.hero-visual-shell { position: relative; min-height: 560px; isolation: isolate; }
.hero-product-image,
.hero-custom-image,
.hero-device-stage,
.hero-brand-card { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(255, 255, 255, .6); border-radius: 36px; background: #fff; box-shadow: 0 36px 100px rgba(22, 28, 38, .16), 0 2px 10px rgba(22, 28, 38, .05); }
.hero-product-image img,
.hero-custom-image { width: 100%; height: 560px; object-fit: cover; }
.hero-product-image img { width: 100%; height: 560px; object-fit: cover; }
.hero-product-image img { object-fit: contain; padding: 44px; }
.hero-product-caption { position: absolute; right: 20px; bottom: 20px; left: 20px; display: flex; flex-direction: column; padding: 16px 18px; border: 1px solid rgba(255, 255, 255, .4); border-radius: 16px; background: rgba(255, 255, 255, .78); backdrop-filter: blur(16px); }
.hero-product-caption small { color: var(--apsol-blue); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.hero-product-caption strong { margin-top: 2px; font-size: 18px; }
.hero-device-stage { background: radial-gradient(circle at 76% 28%, rgba(47, 124, 255, .55), transparent 27%), radial-gradient(circle at 24% 76%, rgba(16, 194, 145, .25), transparent 26%), linear-gradient(145deg, #0e1118, #080a0e 74%); }
.hero-device-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255, 255, 255, .08), transparent 32%, transparent 68%, rgba(255, 255, 255, .04)); pointer-events: none; }
.stage-grid { position: absolute; inset: -25%; opacity: .19; background-image: linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px); background-size: 46px 46px; transform: perspective(700px) rotateX(62deg) rotateZ(-14deg) translateY(8%); transform-origin: center; mask-image: linear-gradient(to bottom, transparent 2%, #000 45%, transparent 86%); }
.device-laptop { position: absolute; top: 13%; left: 7%; width: 76%; height: 54%; border: 8px solid #2e323b; border-bottom-width: 13px; border-radius: 18px 18px 9px 9px; background: radial-gradient(circle at 80% 20%, rgba(73, 150, 255, .9), transparent 25%), linear-gradient(145deg, #1c2842, #0c111c 68%); box-shadow: 0 42px 70px rgba(0, 0, 0, .44), inset 0 0 0 1px rgba(255, 255, 255, .05); transform: perspective(900px) rotateY(3deg) rotateX(1deg); z-index: 2; }
.laptop-camera { position: absolute; top: -5px; left: 50%; width: 5px; height: 5px; border-radius: 50%; background: #0b0c10; transform: translateX(-50%); }
.laptop-screen-copy { position: absolute; inset: 0; display: flex; align-items: flex-start; flex-direction: column; padding: clamp(28px, 4vw, 46px); }
.laptop-screen-copy span { margin-bottom: auto; color: #8ebcff; font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .16em; }
.laptop-screen-copy strong { max-width: 380px; color: #fff; font-size: clamp(26px, 3.2vw, 42px); letter-spacing: -.055em; line-height: .98; }
.laptop-screen-copy i { width: 54px; height: 4px; margin-top: 22px; border-radius: 99px; background: #63e6af; box-shadow: 0 0 24px rgba(99, 230, 175, .6); }
.laptop-base { position: absolute; right: -9%; bottom: -29px; left: -9%; height: 22px; border-radius: 3px 3px 18px 18px; background: linear-gradient(#d7d9dc, #868a90 70%, #4a4e54); clip-path: polygon(5% 0, 95% 0, 100% 72%, 96% 100%, 4% 100%, 0 72%); box-shadow: 0 18px 28px rgba(0, 0, 0, .28); }
.laptop-base::after { content: ""; position: absolute; top: 0; left: 44%; width: 12%; height: 4px; border-radius: 0 0 6px 6px; background: #90949a; }
.device-phone { position: absolute; right: 8%; bottom: 8%; width: 25%; max-width: 148px; height: 54%; max-height: 304px; display: flex; align-items: center; flex-direction: column; padding: 58px 12px 20px; border: 7px solid #31343c; border-radius: 32px; color: #fff; background: radial-gradient(circle at 70% 22%, #80caff, transparent 22%), linear-gradient(160deg, #2455ce, #5b1baa 55%, #0e1225); box-shadow: 0 35px 60px rgba(0, 0, 0, .43), inset 0 0 0 1px rgba(255, 255, 255, .12); transform: rotate(6deg); z-index: 4; animation: deviceFloat 6.6s ease-in-out infinite; }
.device-phone i { position: absolute; top: 10px; width: 43%; height: 17px; border-radius: 20px; background: #090b0f; }
.device-phone span { margin-top: auto; font-size: clamp(48px, 7vw, 76px); font-weight: 200; letter-spacing: -.08em; line-height: .8; }
.device-phone small { margin-top: 12px; font-size: 9px; font-weight: 800; letter-spacing: .22em; }
.device-watch { position: absolute; bottom: 9%; left: 9%; width: 116px; height: 132px; display: flex; align-items: center; flex-direction: column; justify-content: center; border: 8px solid #a9acb0; border-radius: 32px; color: #fff; background: radial-gradient(circle at 66% 24%, #47d2ff, transparent 22%), linear-gradient(145deg, #12151c, #050608); box-shadow: 0 30px 48px rgba(0, 0, 0, .4); transform: rotate(-8deg); z-index: 4; animation: deviceFloat 7.4s ease-in-out -2.8s infinite reverse; }
.device-watch::before,
.device-watch::after { content: ""; position: absolute; left: 28px; width: 44px; height: 68px; border-radius: 15px; background: linear-gradient(90deg, #15181d, #35393e, #15181d); z-index: -1; }
.device-watch::before { bottom: 104px; }
.device-watch::after { top: 104px; }
.device-watch i { position: absolute; top: 22px; right: 23px; width: 8px; height: 8px; border-radius: 50%; background: #fb4f6b; box-shadow: 0 0 12px rgba(251, 79, 107, .7); }
.device-watch span { font-size: 23px; font-weight: 650; letter-spacing: -.04em; }
.device-watch small { margin-top: 5px; color: #6fefac; font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.device-buds { position: absolute; top: 11%; right: 5%; width: 92px; height: 72px; border: 1px solid rgba(255, 255, 255, .6); border-radius: 38px 38px 28px 28px; background: linear-gradient(145deg, #fff, #cfd3d9); box-shadow: 0 24px 42px rgba(0, 0, 0, .28); transform: rotate(9deg); z-index: 4; }
.device-buds > i { position: absolute; top: 12px; width: 18px; height: 35px; border-radius: 12px 12px 10px 10px; background: linear-gradient(90deg, #f5f6f7, #bcc1c7); box-shadow: inset -2px 0 4px rgba(0, 0, 0, .1); }
.device-buds > i:first-child { left: 24px; transform: rotate(-7deg); }
.device-buds > i:nth-child(2) { right: 24px; transform: rotate(7deg); }
.device-buds > span { position: absolute; bottom: 9px; left: 50%; width: 5px; height: 5px; border-radius: 50%; background: #55b87b; transform: translateX(-50%); }
.hero-visual-chip { position: absolute; z-index: 6; display: flex; align-items: center; gap: 12px; min-width: 178px; padding: 13px 16px; border: 1px solid rgba(255, 255, 255, .72); border-radius: 17px; color: var(--apsol-ink); background: rgba(255, 255, 255, .86); box-shadow: 0 18px 48px rgba(16, 22, 32, .18); backdrop-filter: blur(18px); animation: chipFloat 6.8s ease-in-out infinite; }
.hero-visual-chip > .apsol-icon { width: 22px; height: 22px; padding: 4px; border-radius: 50%; color: #fff; background: var(--apsol-green); }
.hero-visual-chip span { display: flex; flex-direction: column; }
.hero-visual-chip small { color: var(--apsol-muted); font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.hero-visual-chip strong { margin-top: 1px; font-size: 13px; letter-spacing: -.01em; }
.hero-chip-one { bottom: 42px; left: -25px; }
.hero-chip-two { top: 44px; right: -22px; animation-delay: -3.2s; }
.hero-chip-two > .apsol-icon { background: var(--apsol-blue); }
.hero-brand-card { align-items: flex-start; flex-direction: column; padding: clamp(34px, 5vw, 64px); color: #fff; background: #111216; isolation: isolate; }
.hero-brand-card::after { content: ""; position: absolute; inset: auto -20% -45% 20%; height: 75%; border-radius: 50%; background: radial-gradient(circle, rgba(33, 127, 255, .7), rgba(33, 127, 255, 0) 68%); filter: blur(12px); z-index: -1; }
.hero-orbit { position: absolute; top: -55px; right: -70px; width: 280px; height: 280px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255, 255, 255, .03), 0 0 0 78px rgba(255, 255, 255, .02); }
.hero-card-kicker { margin-bottom: auto; color: #aeb3bd; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero-brand-card strong { max-width: 460px; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.03; letter-spacing: -.055em; }
.hero-brand-card > span:last-child { margin-top: 24px; color: #b7bbc4; font-size: 15px; }

/* Trust */
.trust-strip { border-bottom: 1px solid var(--apsol-line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 104px; display: flex; align-items: center; gap: 14px; padding: 22px 24px; border-right: 1px solid var(--apsol-line); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid > div > .apsol-icon { width: 27px; height: 27px; color: var(--apsol-blue); }
.trust-grid span { display: flex; flex-direction: column; }
.trust-grid strong { font-size: 14px; letter-spacing: -.01em; }
.trust-grid small { margin-top: 2px; color: var(--apsol-muted); font-size: 12px; }

/* Sections */
.section { padding: clamp(76px, 9vw, 118px) 0; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 36px; }
.section-heading h2,
.brands-section h2 { margin-bottom: 0; font-size: clamp(35px, 4.4vw, 52px); }
.section-heading p:not(.eyebrow) { margin: 12px 0 0; }

.category-section { background: #fff; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.category-card { min-height: 120px; display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 16px; padding: 17px; border: 1px solid #e4e4e8; border-radius: 18px; background: var(--apsol-surface-2); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.category-card:hover { border-color: #c4c4ca; box-shadow: 0 14px 38px rgba(20, 20, 24, .08); transform: translateY(-3px); }
.category-art { width: 72px; height: 84px; display: grid; place-items: center; overflow: hidden; border-radius: 13px; background: #fff; }
.category-art img { width: 100%; height: 100%; object-fit: cover; }
.category-art .apsol-icon { width: 29px; height: 29px; color: var(--apsol-blue); }
.category-card > span { display: flex; flex-direction: column; min-width: 0; }
.category-card strong { overflow: hidden; font-size: 16px; text-overflow: ellipsis; white-space: nowrap; }
.category-card small { margin-top: 4px; color: var(--apsol-muted); font-size: 12px; }
.category-card > .apsol-icon { width: 18px; color: #898991; transition: transform .2s ease; }
.category-card:hover > .apsol-icon { transform: translateX(3px); }

/* Editorial bento story */
.difference-section { position: relative; overflow: hidden; padding-top: 24px; background: #fff; }
.difference-section::before { content: ""; position: absolute; top: 22%; left: -170px; width: 360px; height: 360px; border-radius: 50%; background: rgba(0, 110, 219, .045); filter: blur(5px); pointer-events: none; }
.difference-section .section-heading { align-items: flex-end; }
.section-intro { max-width: 490px; margin: 0; font-size: 16px; line-height: 1.7; }
.bento-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.bento-card { position: relative; display: flex; align-items: flex-start; flex-direction: column; padding: clamp(26px, 3.4vw, 42px); overflow: hidden; border: 1px solid #e1e3e7; border-radius: 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; isolation: isolate; }
.bento-card:hover { border-color: #cfd2d8; box-shadow: 0 24px 70px rgba(22, 27, 35, .11); transform: translateY(-4px); }
.bento-choice { grid-column: span 7; grid-row: span 2; min-height: 516px; color: #fff; background: radial-gradient(circle at 86% 12%, rgba(61, 139, 255, .95), transparent 30%), radial-gradient(circle at 18% 90%, rgba(29, 214, 151, .23), transparent 30%), #101318; }
.bento-choice::after { content: ""; position: absolute; top: 31%; right: -10%; width: 55%; aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255, 255, 255, .035), 0 0 0 88px rgba(255, 255, 255, .018); z-index: -1; transition: transform .8s cubic-bezier(.2,.75,.25,1); }
.bento-choice:hover::after { transform: scale(1.08) rotate(8deg); }
.bento-topline { display: flex; align-items: center; gap: 11px; }
.bento-topline > span { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .16); border-radius: 12px; background: rgba(255, 255, 255, .08); }
.bento-topline .apsol-icon { width: 19px; }
.bento-topline small { color: #9fc9ff; font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.bento-copy { position: relative; z-index: 2; }
.bento-choice .bento-copy { max-width: 535px; margin-top: auto; }
.bento-copy h3 { margin-bottom: 13px; font-size: clamp(28px, 3.4vw, 44px); }
.bento-choice .bento-copy h3 { color: #fff; }
.bento-copy p { max-width: 560px; margin-bottom: 0; line-height: 1.65; }
.bento-choice .bento-copy p { color: #b9bec8; }
.bento-brands { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.bento-brands span { padding: 9px 13px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 999px; color: #f4f6f8; background: rgba(255, 255, 255, .07); font-size: 11px; font-weight: 750; backdrop-filter: blur(8px); }
.bento-setup,
.bento-chat { grid-column: span 5; min-height: 250px; }
.bento-setup { color: #fff; background: radial-gradient(circle at 88% 15%, rgba(255, 255, 255, .25), transparent 27%), linear-gradient(135deg, #0574e8, #1553c6); }
.bento-setup::after { content: ""; position: absolute; right: -50px; bottom: -68px; width: 190px; height: 190px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 44px; transform: rotate(24deg); box-shadow: 0 0 0 28px rgba(255, 255, 255, .04); z-index: -1; transition: transform .55s ease; }
.bento-setup:hover::after { transform: rotate(31deg) scale(1.06); }
.bento-number { position: absolute; top: 25px; right: 29px; color: rgba(255, 255, 255, .55); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.bento-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .22); border-radius: 14px; background: rgba(255, 255, 255, .12); }
.bento-icon .apsol-icon { width: 23px; }
.bento-setup .bento-copy { max-width: 430px; margin-top: auto; }
.bento-setup .bento-copy h3 { margin-bottom: 9px; color: #fff; font-size: 29px; }
.bento-setup .bento-copy p { color: rgba(255, 255, 255, .74); font-size: 14px; }
.bento-chat { justify-content: center; padding-right: 130px; background: radial-gradient(circle at 90% 20%, rgba(48, 196, 108, .15), transparent 29%), linear-gradient(145deg, #f9fcfa, #edf8f1); }
.bento-chat-ring { position: absolute; top: 30px; right: 32px; width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--apsol-whatsapp); box-shadow: 0 14px 34px rgba(18, 140, 74, .24); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.bento-chat:hover .bento-chat-ring { transform: rotate(-7deg) scale(1.08); }
.bento-chat-ring .apsol-icon { width: 31px; height: 31px; }
.bento-chat .bento-copy h3 { margin-bottom: 9px; font-size: 29px; }
.bento-chat .bento-copy p { font-size: 14px; }
.bento-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--apsol-whatsapp); font-size: 13px; font-weight: 800; }
.bento-link .apsol-icon { width: 16px; transition: transform .2s ease; }
.bento-link:hover .apsol-icon { transform: translateX(4px); }

.products-section { background: var(--apsol-surface); }
.empty-products { display: flex; align-items: center; flex-direction: column; padding: 64px 24px; border: 1px dashed #c8c8ce; border-radius: var(--apsol-radius); text-align: center; background: rgba(255, 255, 255, .65); }
.empty-products > .apsol-icon { width: 44px; height: 44px; margin-bottom: 18px; color: var(--apsol-blue); }
.empty-products h3, .empty-products h2 { margin-bottom: 10px; font-size: 25px; }
.empty-products p { max-width: 590px; margin-bottom: 20px; }
.starter-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.starter-product-card { min-width: 0; display: flex; flex-direction: column; padding: 14px 14px 17px; overflow: hidden; border: 1px solid #e3e3e7; border-radius: 20px; background: #fff; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.starter-product-card:hover { border-color: #cfcfd5; box-shadow: 0 16px 50px rgba(20, 20, 24, .09); transform: translateY(-4px); }
.starter-product-art { position: relative; aspect-ratio: 1 / 1; display: flex; align-items: flex-start; flex-direction: column; justify-content: flex-end; padding: 24px; overflow: hidden; border-radius: 14px; color: #fff; background: linear-gradient(145deg, #172438, #315f9f); isolation: isolate; }
.starter-product-art::before { content: ""; position: absolute; top: -28%; right: -22%; width: 82%; aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%; box-shadow: 0 0 0 28px rgba(255, 255, 255, .055), 0 0 0 58px rgba(255, 255, 255, .025); z-index: -1; transition: transform .55s ease; }
.starter-product-card:hover .starter-product-art::before { transform: scale(1.08) translate(-4px, 4px); }
.starter-product-art > span { margin-bottom: auto; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.starter-product-art > strong { max-width: 230px; color: #fff; font-size: clamp(20px, 2vw, 29px); letter-spacing: -.045em; line-height: 1.02; }
.starter-product-art > small { margin-top: 10px; color: rgba(255, 255, 255, .7); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.starter-tone-2 { background: linear-gradient(145deg, #282b31, #737984); }
.starter-tone-3 { background: linear-gradient(145deg, #1d4354, #3f8ca7); }
.starter-tone-4 { background: linear-gradient(145deg, #372645, #8a5ba2); }
.starter-tone-5 { background: linear-gradient(145deg, #4e3426, #b97745); }
.starter-tone-6 { background: linear-gradient(145deg, #0d3c35, #25947b); }
.starter-tone-7 { background: linear-gradient(145deg, #312f5b, #6966b6); }
.starter-tone-8 { background: linear-gradient(145deg, #3f3421, #b5964d); }
.starter-product-content { display: flex; flex: 1; flex-direction: column; padding: 17px 5px 0; }
.starter-product-type { margin-bottom: 6px; color: var(--apsol-blue); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.starter-product-content h3 { margin-bottom: 7px; font-size: 17px; line-height: 1.25; letter-spacing: -.025em; }
.starter-product-content p { margin-bottom: 15px; color: var(--apsol-muted); font-size: 12px; }
.starter-product-content .button { width: 100%; min-height: 44px; padding-inline: 12px; margin-top: auto; font-size: 13px; }
.starter-product-admin-note { padding: 15px 18px; margin: 20px 0 0; border: 1px solid #dbe8f7; border-radius: 13px; color: #5a6370; background: #f5f9fe; font-size: 12px; }
.starter-product-admin-note a { color: var(--apsol-blue); font-weight: 800; }

.brands-section { overflow: hidden; text-align: center; background: #111216; }
.brands-section .eyebrow { color: #74b7ff; }
.brands-section h2 { color: #fff; }
.brand-cloud { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 42px; }
.brand-cloud span { min-width: 120px; padding: 15px 22px; border: 1px solid #35363c; border-radius: 999px; color: #f1f2f4; background: #1a1b20; font-size: 15px; font-weight: 700; letter-spacing: -.02em; transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.brand-cloud span:hover { border-color: #5d6069; background: #22242a; transform: translateY(-3px); }

.services-section { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 320px; display: flex; align-items: flex-start; flex-direction: column; padding: 30px; overflow: hidden; border: 1px solid #e1e1e5; border-radius: var(--apsol-radius); background: var(--apsol-surface-2); transition: transform .22s ease, box-shadow .22s ease; }
.service-card:hover { box-shadow: 0 18px 55px rgba(20, 20, 24, .09); transform: translateY(-4px); }
.service-card > .apsol-icon { width: 38px; height: 38px; color: var(--apsol-blue); }
.service-card > span { position: absolute; top: 30px; right: 30px; color: #b4b4bb; font-size: 13px; font-weight: 750; }
.service-card h3 { margin: auto 0 12px; font-size: 25px; }
.service-card p { margin-bottom: 0; line-height: 1.65; }

.contact-section { padding-top: 0; }
.contact-panel { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 60px; padding: clamp(38px, 6vw, 72px); border-radius: var(--apsol-radius-lg); color: #fff; background: linear-gradient(135deg, #111216, #20242b); box-shadow: var(--apsol-shadow); }
.contact-copy .eyebrow { color: #69e89c; }
.contact-copy h2 { max-width: 650px; margin-bottom: 18px; color: #fff; font-size: clamp(36px, 4.7vw, 56px); }
.contact-copy p:not(.eyebrow) { max-width: 650px; color: #c3c6cc; font-size: 17px; }
.contact-copy .button { margin-top: 10px; }
.contact-details { border-left: 1px solid #41444c; }
.contact-details > div { display: flex; align-items: center; gap: 17px; padding: 24px 0 24px 36px; border-bottom: 1px solid #41444c; }
.contact-details > div:last-child { border-bottom: 0; }
.contact-details .apsol-icon { width: 27px; height: 27px; color: #69e89c; }
.contact-details span { display: flex; flex-direction: column; }
.contact-details small { color: #92969e; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-details strong { margin-top: 3px; color: #fff; font-size: 15px; letter-spacing: -.01em; }

/* WooCommerce catalogue */
.shop-main { padding: 58px 0 100px; background: var(--apsol-surface); }
.woocommerce .woocommerce-breadcrumb { margin-bottom: 34px; color: var(--apsol-muted); font-size: 13px; }
.woocommerce .woocommerce-breadcrumb a { color: var(--apsol-blue); }
.woocommerce-products-header { max-width: 850px; margin-bottom: 34px; }
.woocommerce-products-header__title.page-title { margin-bottom: 12px; font-size: clamp(42px, 6vw, 64px); }
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { margin-bottom: 28px; }
.woocommerce .woocommerce-result-count { color: var(--apsol-muted); font-size: 13px; line-height: 46px; }
.woocommerce .woocommerce-ordering select { min-height: 46px; padding: 0 42px 0 15px; border: 1px solid var(--apsol-line); border-radius: 12px; color: var(--apsol-ink); background: #fff; }
.woocommerce ul.products,
.woocommerce-page ul.products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; clear: both; padding: 0; margin: 0; }
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product { width: auto; min-width: 0; display: flex; flex-direction: column; float: none; padding: 14px 14px 17px; margin: 0 !important; overflow: hidden; border: 1px solid #e3e3e7; border-radius: 20px; background: #fff; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.woocommerce ul.products li.product:hover { border-color: #cfcfd5; box-shadow: 0 16px 50px rgba(20, 20, 24, .09); transform: translateY(-4px); }
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link { display: flex; flex: 1; flex-direction: column; }
.woocommerce ul.products li.product a img { width: 100%; aspect-ratio: 1 / 1; margin-bottom: 18px; border-radius: 14px; object-fit: contain; background: var(--apsol-surface-2); transition: transform .45s cubic-bezier(.2,.75,.25,1); }
.woocommerce ul.products li.product:hover a img { transform: scale(1.035); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { padding: 0 5px; margin-bottom: 7px; font-size: 17px; line-height: 1.25; letter-spacing: -.025em; }
.woocommerce ul.products li.product .price { padding: 0 5px; margin-bottom: 8px; color: var(--apsol-ink); font-size: 15px; font-weight: 750; }
.woocommerce ul.products li.product .price del { color: #9a9aa1; font-weight: 500; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce span.onsale { top: 25px; right: 25px; left: auto; min-width: 0; min-height: 0; padding: 6px 10px; border-radius: 999px; color: #fff; background: var(--apsol-blue); font-size: 11px; font-weight: 800; line-height: 1; }
.apsol-stock { display: inline-flex; align-items: center; gap: 6px; padding: 0 5px; margin-bottom: 14px; color: var(--apsol-muted); font-size: 11px; font-weight: 650; }
.apsol-stock i { width: 7px; height: 7px; border-radius: 50%; background: #a5a5aa; }
.apsol-stock.is-available i { background: #20a054; box-shadow: 0 0 0 3px rgba(32, 160, 84, .12); }
.woocommerce ul.products li.product .button.apsol-wa-button { width: 100%; min-height: 44px; margin-top: auto; padding-inline: 12px; font-size: 13px; }
.woocommerce ul.products li.product .button.apsol-wa-button .apsol-icon { width: 17px; height: 17px; }
.woocommerce ul.products li.product .apsol-wa-missing { background: #6d6d73; }

/* Single product */
.single-product .shop-main { background: #fff; }
.single-product div.product { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); gap: clamp(42px, 7vw, 90px); }
.single-product div.product > * { min-width: 0; }
.single-product div.product .woocommerce-product-gallery { width: 100% !important; float: none !important; margin: 0 !important; }
.single-product div.product .summary { width: 100% !important; float: none !important; margin: 0 !important; padding-top: 22px; }
.single-product .woocommerce-product-gallery__wrapper { padding: 28px; border-radius: var(--apsol-radius); background: var(--apsol-surface); }
.single-product .woocommerce-product-gallery__image img { width: 100%; max-height: 680px; object-fit: contain; }
.single-product .flex-control-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px !important; }
.single-product .flex-control-thumbs li { width: auto !important; float: none !important; }
.single-product .flex-control-thumbs img { border: 1px solid var(--apsol-line); border-radius: 10px; }
.single-product div.product .product_title { margin-bottom: 14px; font-size: clamp(38px, 5vw, 58px); }
.single-product div.product p.price { margin-bottom: 22px; color: var(--apsol-ink); font-size: 25px; font-weight: 750; }
.single-product .woocommerce-product-details__short-description { margin-bottom: 26px; font-size: 16px; line-height: 1.7; }
.single-product form.cart { padding-top: 24px; border-top: 1px solid var(--apsol-line); }
.single-product form.cart::after { content: ""; display: table; clear: both; }
.single-product form.cart .quantity { margin-right: 10px !important; }
.woocommerce .quantity .qty { width: 76px; min-height: 52px; border: 1px solid var(--apsol-line); border-radius: 12px; }
.single-product .single_add_to_cart_button { min-height: 52px !important; padding-inline: 25px !important; }
.single-product table.variations { margin-bottom: 18px !important; }
.single-product table.variations th,
.single-product table.variations td { padding: 0 0 12px; text-align: left; }
.single-product table.variations th { width: 110px; padding-top: 12px; }
.single-product table.variations select { width: 100%; min-height: 50px; padding: 0 42px 0 14px; border: 1px solid var(--apsol-line); border-radius: 12px; background: #fff; }
.single-product .reset_variations { display: inline-block; margin-top: 8px; color: var(--apsol-blue); font-size: 12px; }
.single-product .woocommerce-variation-price { margin-bottom: 14px; }
.apsol-order-note { display: flex; align-items: flex-start; gap: 9px; clear: both; padding-top: 14px; margin-bottom: 0; color: var(--apsol-muted); font-size: 12px; line-height: 1.45; }
.apsol-order-note .apsol-icon { width: 18px; color: var(--apsol-whatsapp); }
.single-product .product_meta { display: flex; flex-direction: column; gap: 7px; padding-top: 24px; margin-top: 24px; border-top: 1px solid var(--apsol-line); color: var(--apsol-muted); font-size: 12px; }
.single-product .product_meta a { color: var(--apsol-blue); }
.woocommerce div.product .woocommerce-tabs { grid-column: 1 / -1; padding-top: 45px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; border-bottom: 1px solid var(--apsol-line); }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { padding: 0; margin: 0 26px 0 0; border: 0; background: transparent; }
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 15px 0; color: var(--apsol-muted); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { border-bottom: 2px solid var(--apsol-ink); color: var(--apsol-ink); }
.woocommerce div.product .woocommerce-tabs .panel { max-width: 820px; line-height: 1.75; }
.woocommerce div.product .related.products { grid-column: 1 / -1; padding-top: 40px; }
.related.products > h2 { margin-bottom: 28px; font-size: 36px; }

.woocommerce-message,
.woocommerce-info,
.woocommerce-error { padding: 18px 20px 18px 52px !important; border: 0; border-radius: 14px; color: var(--apsol-ink); background: #eef5ff; }
.woocommerce-info::before { color: var(--apsol-blue); }
.apsol-admin-store-notice { margin-bottom: 26px !important; }
.apsol-admin-store-notice a { color: var(--apsol-blue); font-weight: 700; }
.woocommerce nav.woocommerce-pagination { margin-top: 44px; }
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li { margin: 0 4px; border: 0; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0; border-radius: 50%; color: var(--apsol-ink); background: #fff; }
.woocommerce nav.woocommerce-pagination ul li span.current { color: #fff; background: var(--apsol-ink); }

/* Standard content */
.content-main { padding: 72px 0 100px; background: var(--apsol-surface); }
.entry-card { padding: clamp(28px, 6vw, 66px); border: 1px solid #e3e3e7; border-radius: var(--apsol-radius); background: #fff; }
.entry-title { margin-bottom: 26px; font-size: clamp(40px, 6vw, 64px); }
.entry-meta { margin-bottom: 10px; color: var(--apsol-blue); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.entry-featured { margin-bottom: 34px; overflow: hidden; border-radius: 18px; }
.entry-content { color: var(--apsol-ink-soft); font-size: 17px; line-height: 1.8; }
.entry-content p { color: var(--apsol-ink-soft); }
.entry-content a { color: var(--apsol-blue); text-decoration: underline; }
.entry-content h2 { margin-top: 1.8em; font-size: 32px; }
.entry-content h3 { margin-top: 1.6em; font-size: 24px; }
.entry-content blockquote { padding: 4px 0 4px 24px; margin: 32px 0; border-left: 3px solid var(--apsol-blue); font-size: 21px; }
.archive-header { max-width: 820px; margin-bottom: 40px; }
.archive-header h1 { margin-bottom: 16px; font-size: clamp(42px, 6vw, 64px); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post-card { overflow: hidden; border: 1px solid #e1e1e5; border-radius: 20px; background: #fff; }
.post-card-image { height: 240px; display: grid; place-items: center; overflow: hidden; background: #e9eef5; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; }
.post-card-image .apsol-icon { width: 44px; color: var(--apsol-blue); }
.post-card-content { padding: 24px; }
.post-card h2 { margin-bottom: 10px; font-size: 24px; }
.post-card p { font-size: 14px; }
.navigation.pagination { margin-top: 38px; }
.nav-links { display: flex; gap: 8px; }
.page-numbers { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 12px; border-radius: 999px; background: #fff; }
.page-numbers.current { color: #fff; background: var(--apsol-ink); }
.post-navigation { margin: 24px 0; }
.post-navigation .nav-links { justify-content: space-between; }
.post-navigation a { color: var(--apsol-blue); font-weight: 700; }
.comments-area { padding: 34px; margin-top: 24px; border-radius: var(--apsol-radius); background: #fff; }
.comment-list { padding-left: 24px; }
.comment-list li { margin-bottom: 20px; }
.comment-form input:not([type="submit"]),
.comment-form textarea,
.search-form .search-field {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid var(--apsol-line);
  border-radius: 12px;
  color: var(--apsol-ink);
  background: #fff;
}
.search-form { display: flex; gap: 8px; }
.search-form label { flex: 1; }
.search-form .search-submit { min-width: 104px; }
.error-main { display: grid; place-items: center; padding: 80px 0; background: var(--apsol-surface); }
.error-card { padding: 60px 24px; text-align: center; }
.error-code { margin-bottom: 0; color: var(--apsol-blue); font-size: 90px; font-weight: 800; letter-spacing: -.08em; }
.error-card h1 { margin-bottom: 12px; font-size: clamp(34px, 6vw, 56px); }
.error-card > p:not(.error-code) { margin-bottom: 28px; }
.error-card .hero-actions { justify-content: center; }

/* Footer */
.site-footer { padding-top: 72px; color: #b9bbc2; background: #0f1013; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr; gap: clamp(35px, 7vw, 90px); padding-bottom: 62px; }
.footer-brand p { max-width: 420px; margin: 22px 0; color: #94969e; }
.social-links { display: flex; gap: 16px; }
.social-links a { color: #fff; font-size: 13px; font-weight: 650; }
.footer-column h2 { margin: 4px 0 22px; color: #fff; font-size: 15px; letter-spacing: -.01em; }
.footer-menu,
.footer-column .menu,
.contact-list { padding: 0; margin: 0; list-style: none; }
.footer-menu li,
.footer-column .menu li { margin-bottom: 12px; }
.footer-menu a,
.footer-column .menu a { color: #a9abb2; font-size: 14px; }
.footer-menu a:hover,
.footer-column .menu a:hover { color: #fff; }
.contact-list { display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: flex-start; gap: 11px; color: #a9abb2; font-size: 14px; }
.contact-list .apsol-icon { width: 18px; margin-top: 2px; color: #fff; }
.contact-symbol { width: 18px; color: #fff; font-weight: 750; text-align: center; }
.contact-list li span { display: flex; flex-direction: column; }
.contact-list a { color: #fff; }
.contact-list span a { margin-top: 3px; color: #75b9ff; font-size: 12px; }
.footer-bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid #2c2d33; }
.footer-bottom p { margin: 0; color: #777982; font-size: 11px; }
.footer-bottom p:last-child { max-width: 580px; text-align: right; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 900; min-height: 52px; display: flex; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 999px; color: #fff; background: var(--apsol-whatsapp); box-shadow: 0 12px 36px rgba(0, 0, 0, .22); font-size: 13px; font-weight: 750; transition: transform .2s ease, background .2s ease; }
.floating-whatsapp:hover { background: var(--apsol-whatsapp-dark); transform: translateY(-3px); }
.floating-whatsapp .apsol-icon { width: 23px; height: 23px; }

/* Motion system — activated progressively by JavaScript */
.will-reveal { transition-property: opacity, transform; transition-duration: .72s; transition-timing-function: cubic-bezier(.2,.72,.25,1); transition-delay: var(--reveal-delay, 0ms); }
.will-reveal:not(.is-visible) { opacity: 0; }
.will-reveal[data-reveal="up"]:not(.is-visible) { transform: translate3d(0, 28px, 0); }
.will-reveal[data-reveal="scale"]:not(.is-visible) { transform: scale(.965) translate3d(0, 16px, 0); }
.will-reveal[data-reveal="left"]:not(.is-visible) { transform: translate3d(32px, 0, 0); }

@keyframes ambientDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-18px, 16px, 0) scale(1.035); }
}

@keyframes deviceFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

@keyframes chipFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

/* Responsive */
@media (max-width: 1100px) {
  .primary-navigation .menu { gap: 21px; }
  .header-actions .button span { display: none; }
  .header-actions .button { width: 40px; min-height: 40px; padding: 0; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); gap: 48px; }
  .hero-visual-shell, .hero-product-image, .hero-custom-image, .hero-device-stage, .hero-brand-card { min-height: 500px; }
  .hero-product-image img, .hero-custom-image { height: 500px; }
  .hero-chip-one { left: -12px; }
  .hero-chip-two { right: -10px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--apsol-line); }
  .trust-grid > div:nth-child(3) { padding-left: 0; }
  .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .starter-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  body.admin-bar .site-header { top: 46px; }
  .header-inner { min-height: 66px; }
  .nav-toggle { display: grid; place-items: center; order: 3; }
  .header-actions { margin-left: auto; }
  .primary-navigation { position: fixed; top: var(--apsol-mobile-menu-top, 104px); right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; padding: 22px 20px 40px; overflow-y: auto; background: rgba(255,255,255,.98); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .primary-navigation.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-navigation .menu { align-items: stretch; flex-direction: column; gap: 0; }
  .primary-navigation .menu > li { border-bottom: 1px solid var(--apsol-line); }
  .primary-navigation .menu > li > a { padding: 17px 3px; font-size: 20px; }
  .primary-navigation .menu > li > a::after { display: none; }
  .primary-navigation .sub-menu { position: static; display: block; min-width: 0; padding: 0 0 10px 14px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .mobile-nav-search { display: block; margin-top: 22px; }
  .hero-section { padding-top: 54px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 760px; width: 100%; }
  .bento-choice { grid-column: span 12; grid-row: auto; min-height: 450px; }
  .bento-setup, .bento-chat { grid-column: span 6; min-height: 300px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .contact-panel { grid-template-columns: 1fr; gap: 30px; }
  .contact-details { border-top: 1px solid #41444c; border-left: 0; }
  .contact-details > div { padding-left: 0; }
  .single-product div.product { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-column:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .apsol-container { width: min(calc(100% - 28px), var(--apsol-container)); }
  .announcement-inner { min-height: 34px; font-size: 11px; }
  .announcement-inner a { display: none; }
  .custom-logo { max-width: 178px; max-height: 38px; }
  .wordmark { font-size: 17px; }
  .wordmark-mark { width: 31px; height: 31px; }
  .header-search { display: none; }
  .hero-section { padding: 42px 0 38px; }
  .hero-copy h1 { font-size: clamp(42px, 13vw, 60px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 14px; }
  .hero-visual-shell, .hero-product-image, .hero-custom-image, .hero-device-stage, .hero-brand-card { min-height: 410px; border-radius: 24px; }
  .hero-product-image img, .hero-custom-image { height: 410px; }
  .hero-product-image img { padding: 28px; }
  .hero-brand-card strong { font-size: 38px; }
  .device-laptop { top: 15%; left: 6%; width: 80%; height: 51%; }
  .laptop-screen-copy { padding: 24px; }
  .laptop-screen-copy strong { font-size: clamp(25px, 7.5vw, 34px); }
  .device-phone { right: 6%; width: 27%; height: 51%; border-width: 5px; border-radius: 25px; }
  .device-watch { left: 7%; width: 88px; height: 101px; border-width: 6px; border-radius: 25px; }
  .device-watch::before, .device-watch::after { left: 22px; width: 32px; height: 52px; }
  .device-watch::before { bottom: 80px; }
  .device-watch::after { top: 80px; }
  .device-watch span { font-size: 18px; }
  .device-buds { top: 10%; right: 5%; transform: scale(.78) rotate(9deg); transform-origin: top right; }
  .hero-visual-chip { min-width: 156px; padding: 10px 12px; border-radius: 14px; }
  .hero-chip-one { bottom: 23px; left: -5px; }
  .hero-chip-two { top: 25px; right: -4px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { min-height: 88px; padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--apsol-line); }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--apsol-line); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 102px; grid-template-columns: 62px 1fr auto; }
  .category-art { width: 62px; height: 68px; }
  .difference-section .section-heading { align-items: flex-start; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-choice, .bento-setup, .bento-chat { grid-column: auto; min-height: 320px; }
  .bento-choice { min-height: 430px; }
  .bento-chat { padding-right: 110px; }
  .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .starter-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .starter-product-card { padding: 9px 9px 12px; border-radius: 16px; }
  .starter-product-art { padding: 16px; border-radius: 11px; }
  .starter-product-art > strong { font-size: 19px; }
  .starter-product-content { padding: 13px 2px 0; }
  .starter-product-content h3 { font-size: 14px; }
  .starter-product-content p { display: none; }
  .starter-product-content .button { min-height: 42px; padding: 9px 6px; font-size: 11px; }
  .starter-product-content .button .apsol-icon { display: none; }
  .woocommerce ul.products li.product, .woocommerce-page ul.products li.product { padding: 9px 9px 12px; border-radius: 16px; }
  .woocommerce ul.products li.product a img { margin-bottom: 13px; border-radius: 11px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 14px; }
  .woocommerce ul.products li.product .price { font-size: 13px; }
  .woocommerce ul.products li.product .button.apsol-wa-button { min-height: 42px; padding: 9px 6px; font-size: 11px; }
  .woocommerce ul.products li.product .button.apsol-wa-button .apsol-icon { display: none; }
  .brand-cloud { gap: 8px; }
  .brand-cloud span { min-width: calc(50% - 4px); padding: 13px 12px; font-size: 13px; }
  .service-card { min-height: 260px; padding: 24px; }
  .contact-panel { width: calc(100% - 28px); padding: 34px 24px; border-radius: 24px; }
  .single-product .woocommerce-product-gallery__wrapper { padding: 15px; }
  .single-product div.product .summary { padding-top: 0; }
  .single-product form.cart .quantity { float: none !important; margin: 0 0 10px !important; }
  .single-product .single_add_to_cart_button { width: 100%; float: none !important; }
  .woocommerce div.product .woocommerce-tabs ul.tabs li { margin-right: 14px; }
  .post-grid { grid-template-columns: 1fr; }
  .entry-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 24px 0; }
  .footer-bottom p:last-child { text-align: left; }
  .floating-whatsapp { width: 54px; height: 54px; right: 14px; bottom: 14px; justify-content: center; padding: 0; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp .apsol-icon { width: 25px; }
  .search-form { flex-direction: column; }
}

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