@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #032f61;
  --navy-2: #011f43;
  --cyan: #05c8cf;
  --cyan-soft: #dffafb;
  --gold: #c4a36f;
  --ink: #10223a;
  --muted: #65758a;
  --paper: #f7fafb;
  --white: #fff;
  --line: #dfe8ed;
  --danger: #b42318;
  --success: #13795b;
  --shadow: 0 28px 80px rgba(3, 47, 97, .1);
  --radius: 24px;
  --wrap: min(1120px, calc(100% - 36px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Outfit, Cairo, system-ui, sans-serif; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 12px; }
.skip-link:focus { top: 16px; }

.site-header { height: 76px; position: sticky; top: 0; z-index: 70; background: rgba(248, 251, 252, .9); border-bottom: 1px solid rgba(3, 47, 97, .08); backdrop-filter: blur(18px); transition: box-shadow .25s, background .25s; }
.site-header.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 10px 40px rgba(3,47,97,.08); }
.header-inner { width: var(--wrap); height: 100%; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 160px; height: 40px; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 28px; margin-left: auto; }
.desktop-nav a { color: #475b73; font-size: 13px; font-weight: 600; position: relative; padding: 27px 0; }
.desktop-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 17px; height: 2px; background: var(--cyan); transform: scaleX(0); transition: transform .25s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--navy); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 13px; }
.header-contact, .header-booking { border: 1px solid var(--line); background: #fff; padding: 11px 15px; border-radius: 999px; color: var(--navy); font-size: 12px; font-weight: 700; white-space: nowrap; }
.header-booking { background: var(--navy); color: #fff; border-color: var(--navy); }
.header-contact:hover { border-color: var(--cyan); }
.header-booking:hover { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.menu-button { width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--navy); display: grid; place-content: center; gap: 6px; }
.menu-button span { width: 18px; height: 1.5px; background: #fff; display: block; }
.menu-button span:last-child { transform: translateX(-4px); }

.menu-scrim { position: fixed; inset: 0; z-index: 80; background: rgba(1,20,42,.62); opacity: 0; pointer-events: none; transition: opacity .35s; backdrop-filter: blur(4px); }
.side-menu { position: fixed; inset: 0 auto 0 0; width: min(510px, 92vw); z-index: 90; background: #f8fbfc; transform: translateX(-102%); transition: transform .42s cubic-bezier(.72,0,.2,1); padding: 26px 38px 32px; display: flex; flex-direction: column; box-shadow: 40px 0 100px rgba(0,0,0,.18); }
.menu-open .menu-scrim { opacity: 1; pointer-events: auto; }
.menu-open .side-menu { transform: none; }
.side-menu-top { display: flex; align-items: center; justify-content: space-between; color: #8190a1; font-size: 11px; letter-spacing: .18em; border-bottom: 1px solid var(--line); padding-bottom: 21px; }
.side-menu-top button { border: 1px solid var(--line); background: #fff; color: var(--navy); border-radius: 50%; width: 42px; height: 42px; font-size: 27px; line-height: 1; }
.side-menu nav { display: grid; margin-top: 25px; }
.side-menu nav a { display: grid; grid-template-columns: 38px 1fr; align-items: center; border-bottom: 1px solid var(--line); padding: 15px 0; transition: padding .2s, color .2s; }
.side-menu nav a:hover { padding-left: 8px; color: var(--cyan); }
.side-menu nav small { color: #a0adba; font-size: 10px; }
.side-menu nav span { font-size: clamp(26px, 5vw, 38px); font-weight: 600; letter-spacing: -.04em; }
.side-menu-actions { margin-top: auto; display: grid; gap: 10px; padding-top: 22px; }
.menu-cta { min-height: 55px; border: 1px solid var(--line); background: #fff; border-radius: 14px; padding: 0 17px; display: flex; align-items: center; justify-content: space-between; color: var(--navy); font-size: 14px; font-weight: 700; }
.menu-cta.primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.menu-contact { display: flex; justify-content: space-between; gap: 12px; color: #7d8c9d; font-size: 11px; margin-top: 8px; }

.hero { min-height: 590px; display: grid; align-items: center; position: relative; overflow: hidden; background: radial-gradient(circle at 87% 22%, rgba(5,200,207,.12), transparent 27%), linear-gradient(180deg,#fbfdfd,#f4f8f9); }
.hero-grid { width: var(--wrap); margin: auto; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 54px; padding: 56px 0 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--cyan); }
.hero h1, .page-hero h1 { margin: 17px 0 20px; color: var(--navy); font-size: clamp(48px, 5.7vw, 78px); line-height: .94; letter-spacing: -.05em; font-weight: 700; }
.hero h1 em { font-style: normal; color: var(--cyan); }
.hero-copy > p { max-width: 590px; color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: space-between; gap: 25px; min-height: 54px; padding: 0 20px; border-radius: 14px; border: 1px solid var(--navy); font-weight: 700; font-size: 14px; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(3,47,97,.14); }
.btn.primary { background: var(--navy); color: #fff; }
.btn.secondary { background: #fff; color: var(--navy); border-color: var(--line); }
.btn.cyan { background: var(--cyan); color: var(--navy-2); border-color: var(--cyan); }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 30px; color: #718196; font-size: 12px; }
.proof-dots { display: flex; }
.proof-dots span { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; border: 2px solid #fff; margin-left: -7px; background: var(--navy); color: #fff; font-size: 8px; }
.proof-dots span:first-child { margin-left: 0; background: var(--cyan); color: var(--navy); }

.hero-system { height: 430px; position: relative; }
.system-orbit { position: absolute; inset: 20px; border: 1px solid rgba(3,47,97,.13); border-radius: 50%; animation: rotate 28s linear infinite; }
.system-orbit::after, .system-orbit::before { content: ''; position: absolute; border-radius: 50%; background: var(--cyan); }
.system-orbit::before { width: 12px; height: 12px; left: 13%; top: 12%; box-shadow: 0 0 0 8px rgba(5,200,207,.14); }
.system-orbit::after { width: 8px; height: 8px; right: 4%; bottom: 29%; background: var(--gold); }
.hero-system { isolation: isolate; overflow: visible; }
.system-core { position: absolute; z-index: 2; width: 220px; height: 220px; border-radius: 40px; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(3deg); background: #fff !important; box-shadow: 0 26px 62px rgba(3,47,97,.15); display: grid; place-items: center; overflow: hidden; border: 1px solid #e7eef2; }
.system-core::before { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(3,47,97,.08); border-radius: 36px; pointer-events: none; }
.system-core img { width: 92%; height: 92%; object-fit: contain !important; transform: rotate(-3deg); background: #fff !important; }
.system-card { position: absolute; z-index: 4; width: 154px; background: rgba(255,255,255,.98); border: 1px solid #e2ebef; border-radius: 18px; padding: 14px; box-shadow: var(--shadow); animation: float 5s ease-in-out infinite; }
.system-card.card-one { right: 0; bottom: 18px; }
.system-card.card-two { right: 0; top: 18px; animation-delay: -.8s; }
.system-card.card-three { left: 0; bottom: 18px; animation-delay: -1.6s; }
.system-card.card-four { left: 0; top: 18px; animation-delay: -2.4s; }
.system-card i { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; background: var(--cyan-soft); color: var(--navy); font-style: normal; }
.system-card b { display: block; margin-top: 11px; color: var(--navy); font-size: 13px; }
.system-card small { color: var(--muted); font-size: 10px; }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-10px); } }

.marquee { background: var(--navy); color: #fff; overflow: hidden; transform: rotate(-1.1deg) scale(1.02); transform-origin: center; }
.marquee-track { width: max-content; display: flex; align-items: center; animation: marquee 28s linear infinite; }
.marquee-track span { white-space: nowrap; padding: 18px 22px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.marquee-track span::after { content: '✦'; color: var(--cyan); margin-left: 42px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 88px 0; }
.section.compact { padding: 68px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 45px; }
.section-head h2 { color: var(--navy); font-size: clamp(35px,4.5vw,56px); line-height: 1.02; letter-spacing: -.04em; margin: 13px 0 0; max-width: 720px; }
.section-head > p { color: var(--muted); max-width: 410px; line-height: 1.7; margin: 0; }
.text-link { color: var(--navy); border-bottom: 1px solid var(--cyan); padding-bottom: 4px; font-size: 13px; font-weight: 700; white-space: nowrap; }
.section-action-row { margin: 30px 0 0; }
.section-button { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 52px; padding: 0 19px; border: 1px solid var(--navy); border-radius: 14px; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; box-shadow: 0 13px 32px rgba(3,47,97,.13); transition: transform .2s,box-shadow .2s,background .2s; white-space: nowrap; }
.section-button:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(3,47,97,.2); }
.section-button.light { background: #fff; color: var(--navy); border-color: #fff; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 16px; }
.tool-card, .product-card, .service-card, .insight-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 23px; transition: transform .28s, box-shadow .28s, border-color .28s; position: relative; overflow: hidden; }
.tool-card:hover, .product-card:hover, .service-card:hover, .insight-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: rgba(5,200,207,.55); }
.tool-card::after, .product-card::after { content: ''; width: 110px; height: 110px; border-radius: 50%; background: var(--cyan-soft); position: absolute; right: -50px; top: -55px; transition: transform .4s; }
.tool-card:hover::after, .product-card:hover::after { transform: scale(1.4); }
.card-icon { width: 48px; height: 48px; border-radius: 15px; background: #eef5f7; color: var(--navy); display: grid; place-items: center; margin-bottom: 27px; }
.card-icon svg { width: 25px; }
.card-kicker { color: var(--cyan); font-size: 10px; text-transform: uppercase; font-weight: 800; letter-spacing: .15em; }
.tool-card h3, .product-card h3, .service-card h3, .insight-card h3 { margin: 10px 0 9px; color: var(--navy); font-size: 21px; line-height: 1.18; letter-spacing: -.02em; }
.tool-card p, .product-card p, .service-card p, .insight-card p { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0; }
.card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); padding-top: 18px; margin-top: 25px; font-size: 12px; font-weight: 700; color: var(--navy); }
.status { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: var(--cyan-soft); color: #037780; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.status.soon { background: #f1eee8; color: #80663f; }

.dark-section { background: var(--navy-2); color: #fff; position: relative; overflow: hidden; }
.dark-section::before { content: ''; position: absolute; width: 650px; height: 650px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; right: -250px; top: -220px; box-shadow: 0 0 0 80px rgba(255,255,255,.018),0 0 0 160px rgba(255,255,255,.014); }
.dark-section .section-head h2 { color: #fff; }
.dark-section .section-head > p { color: #9fb1c5; }
.product-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 16px; position: relative; }
.product-card { grid-column: span 4; min-height: 282px; display: flex; flex-direction: column; }
.product-card.featured { grid-column: span 4; background: #fff; }
.product-card.more-products { background: linear-gradient(145deg,var(--cyan),#8cecef); border-color: var(--cyan); }
.product-card.more-products .card-kicker, .product-card.more-products p { color: var(--navy); }
.product-card .card-bottom { margin-top: auto; }
.product-number { position: absolute; right: 25px; top: 22px; color: #bac7d3; font-size: 11px; }

.services-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 58px; align-items: start; }
.sticky-copy { position: sticky; top: 120px; }
.sticky-copy h2 { font-size: clamp(38px,4.6vw,56px); color: var(--navy); line-height: 1.02; letter-spacing: -.04em; margin: 15px 0 20px; }
.sticky-copy p { color: var(--muted); line-height: 1.8; }
.service-list { display: grid; gap: 12px; }
.service-card { min-height: 164px; display: grid; grid-template-columns: 62px 1fr 42px; gap: 18px; align-items: start; }
.service-card .service-no { color: var(--cyan); font-size: 12px; font-weight: 800; }
.service-card .arrow { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--navy); }

.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.insight-card { padding: 0; background: #fff; border: 1px solid #e1e9ed; overflow: hidden; box-shadow: 0 18px 45px rgba(3,47,97,.07); }
.insight-visual { height: 160px; background: #fff !important; position: relative; overflow: hidden; border-bottom: 1px solid #edf1f3; }
.insight-visual img { width: 100%; height: 100%; object-fit: contain !important; padding: 10px; background: #fff !important; }
.insight-body { padding: 20px; }
.insight-body h3 { font-size: 21px; line-height: 1.18; margin: 13px 0 10px; }
.insight-body p { font-size: 13px; line-height: 1.65; }
.insight-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: #8290a0; text-transform: uppercase; letter-spacing: .08em; font-size: 9px; }

.cta-band { padding: 68px 0; background: var(--cyan); color: var(--navy-2); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-inner h2 { font-size: clamp(36px,4.7vw,58px); line-height: 1; letter-spacing: -.045em; margin: 0; max-width: 680px; }
.cta-inner .btn { flex: 0 0 auto; }

.page-hero { min-height: 370px; display: grid; align-items: center; background: radial-gradient(circle at 85% 20%,rgba(5,200,207,.15),transparent 24%),#f8fbfc; border-bottom: 1px solid var(--line); }
.page-hero-inner { width: var(--wrap); margin: auto; padding: 60px 0; }
.page-hero h1 { max-width: 900px; font-size: clamp(46px,6vw,76px); }
.page-hero p { max-width: 650px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.breadcrumb { color: #8795a4; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }

.product-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: start; }
.detail-copy h1 { color: var(--navy); font-size: clamp(46px,6vw,78px); letter-spacing: -.05em; margin: 16px 0; line-height: .98; }
.detail-copy p { color: var(--muted); font-size: 18px; line-height: 1.8; }
.feature-list { display: grid; gap: 11px; margin: 30px 0; }
.feature-list span { display: flex; gap: 11px; align-items: center; color: #40546c; }
.feature-list i { font-style: normal; color: var(--cyan); font-weight: 800; }
.detail-panel { background: #fff; border: 1px solid var(--line); border-radius: 34px; padding: 35px; position: sticky; top: 110px; box-shadow: var(--shadow); }
.price { font-size: 44px; color: var(--navy); font-weight: 700; letter-spacing: -.04em; }
.price small { font-size: 14px; color: var(--muted); font-weight: 500; }

.article-shell { max-width: 860px; margin: auto; }
.article-head { padding: 80px 0 45px; text-align: center; }
.article-head h1 { color: var(--navy); font-size: clamp(42px,6vw,72px); line-height: 1.02; letter-spacing: -.045em; margin: 20px 0; }
.article-head p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.article-cover { border-radius: 32px; overflow: hidden; background: linear-gradient(135deg,var(--navy),#08768a); aspect-ratio: 16/9; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-content { background: #fff; border-radius: 30px; padding: clamp(28px,6vw,70px); margin: 25px 0 90px; color: #33475e; font-size: 17px; line-height: 1.9; }
.article-content h2, .article-content h3 { color: var(--navy); line-height: 1.2; }
.article-content a { color: #018c96; text-decoration: underline; }
.article-content blockquote { margin: 30px 0; border-left: 4px solid var(--cyan); padding: 15px 25px; background: var(--cyan-soft); color: var(--navy); }
.article-resources { border-top: 1px solid var(--line); margin-top: 45px; padding-top: 25px; }
.resource-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: 12px; }
.resource-grid > a, .resource-grid figure { margin: 0; border: 1px solid var(--line); border-radius: 16px; padding: 14px; display: grid; gap: 7px; background: #f8fbfc; }
.resource-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; }
.resource-grid small, .resource-grid figcaption { color: var(--muted); font-size: 11px; }

.ad-slot { width: var(--wrap); min-height: 120px; margin: 0 auto 70px; padding: 18px; border: 1px dashed #c4d2da; border-radius: 18px; background: #f9fbfc; text-align: center; overflow: hidden; }
.ad-slot > span { display: block; color: #98a5b2; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 8px; }

.workshop-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,310px),1fr)); gap: 18px; }
.workshop-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; transition: transform .25s,box-shadow .25s; }
.workshop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.workshop-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #cbd8e2; }
.insight-visual img[src*="perinvo-insight-default"], .article-cover img[src*="perinvo-insight-default"], .workshop-card img[src*="perinvo-insight-default"],
.insight-visual img[src*="perinvo-insight-clean"], .article-cover img[src*="perinvo-insight-clean"], .workshop-card img[src*="perinvo-insight-clean"],
.insight-visual img[src*="perinvo-share-compact"], .article-cover img[src*="perinvo-share-compact"], .workshop-card img[src*="perinvo-share-compact"],
.insight-visual img[src*="perinvo-share-v5"], .article-cover img[src*="perinvo-share-v5"], .workshop-card img[src*="perinvo-share-v5"] { object-fit: contain; background: #fff; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(35px,6vw,85px); align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy h2 { color: var(--navy); font-size: clamp(36px,5vw,60px); line-height: 1; letter-spacing: -.045em; margin: 20px 0; }
.contact-copy > p { color: var(--muted); line-height: 1.8; }
.contact-options { display: grid; gap: 10px; margin-top: 30px; }
.contact-options a { display: grid; gap: 4px; padding: 17px 19px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.contact-options b { color: var(--navy); }
.contact-options span { color: var(--muted); font-size: 12px; }
.contact-options a:hover { border-color: var(--cyan); transform: translateY(-2px); }
.contact-form { box-shadow: var(--shadow); }
.honey-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent-check { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 500 !important; line-height: 1.5; }
.consent-check input { width: 18px !important; height: 18px; margin: 1px 0 0; }
.workshop-card-body { padding: 25px; display: flex; flex-direction: column; flex: 1; }
.workshop-card h3 { color: var(--navy); font-size: 25px; line-height: 1.15; margin: 12px 0; }
.workshop-card p { color: var(--muted); line-height: 1.7; }
.workshop-meta { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 11px; margin-bottom: 12px; }
.workshop-price { margin-top: auto; padding-top: 22px; color: var(--navy); font-size: 26px; font-weight: 700; }
.workshop-price small { font-size: 12px; font-weight: 500; color: var(--muted); }

.site-footer { background: var(--navy-2); color: #fff; padding: 70px 0 20px; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 60px; }
.footer-main img {
  display: block;
  width: 175px;
  height: auto !important;
  max-height: 66px;
  object-fit: contain;
  object-position: left center;
}
.footer-main p { color: #93a8bc; line-height: 1.8; }
.footer-links { display: grid; align-content: start; gap: 12px; color: #9db0c3; font-size: 13px; }
.footer-links b { color: #fff; margin-bottom: 7px; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { padding-top: 19px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: #7f96ac; font-size: 11px; }
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom div { flex-wrap: wrap; justify-content: flex-end; }
.whatsapp-float { position: fixed; z-index: 60; right: 22px; bottom: 22px; width: 52px; height: 52px; border-radius: 50%; background: #21c164; color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 800; box-shadow: 0 15px 35px rgba(0,0,0,.2); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: clamp(25px,4vw,45px); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: 12px; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); background: #fbfdfd; border-radius: 12px; padding: 13px 14px; color: var(--ink); outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(5,200,207,.1); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--muted); font-size: 12px; line-height: 1.6; }
.notice { padding: 14px 17px; border-radius: 12px; background: #e9f8f3; color: var(--success); margin-bottom: 18px; }
.notice.error { background: #fff0ee; color: var(--danger); }

.admin-body { background: #eef3f5; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 260px 1fr; }
.admin-side { background: var(--navy-2); color: #fff; padding: 28px 20px; position: sticky; top: 0; height: 100vh; }
.admin-side img { width: 155px; margin: 0 10px 38px; }
.admin-side nav { display: grid; gap: 5px; }
.admin-side a { color: #a9bbcd; padding: 12px 14px; border-radius: 10px; font-size: 13px; }
.admin-side a:hover, .admin-side a.active { color: #fff; background: rgba(255,255,255,.08); }
.admin-main { padding: 38px; min-width: 0; }
.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.admin-top h1 { color: var(--navy); margin: 0; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 15px; margin-bottom: 25px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.stat b { display: block; font-size: 31px; color: var(--navy); }
.stat span { color: var(--muted); font-size: 12px; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px; margin-bottom: 22px; overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.admin-table th, .admin-table td { padding: 13px 10px; text-align: left; border-bottom: 1px solid var(--line); font-size: 13px; vertical-align: middle; }
.admin-table th { color: #8794a3; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.admin-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-actions a, .admin-actions button { border: 1px solid var(--line); background: #fff; color: var(--navy); padding: 7px 10px; border-radius: 8px; font-size: 11px; }
.admin-actions form { margin: 0; }
.contact-table td { vertical-align: top; }
.message-new td { background: #f3fdfe; }
.message-copy { min-width: 300px; max-width: 520px; white-space: normal; line-height: 1.65; color: var(--ink); }
.editor-toolbar { display: flex; gap: 6px; flex-wrap: wrap; padding: 9px; background: #eef5f7; border: 1px solid var(--line); border-bottom: 0; border-radius: 12px 12px 0 0; }
.editor-toolbar button { border: 1px solid #d5e1e7; background: #fff; color: var(--navy); border-radius: 7px; min-width: 35px; padding: 7px 9px; font-size: 11px; }
.rich-editor { min-height: 360px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 0 0 12px 12px; outline: none; line-height: 1.8; overflow: auto; }
.rich-editor:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(5,200,207,.1); }
.seo-score { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 18px; margin-bottom: 22px; border-radius: 14px; background: #fff7e7; color: #725b2d; }
.seo-score.complete { background: #e9f8f3; color: var(--success); }
.seo-score span { font-size: 12px; }
.attachment-list { display: grid; gap: 9px; }
.attachment-list > div { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); padding: 10px 0; }
.attachment-list form { margin: 0; }
.attachment-list button { border: 0; color: var(--danger); background: #fff0ee; border-radius: 8px; padding: 7px 10px; }
.admin-login { min-height: 100vh; display: grid; place-items: center; padding: 25px; background: radial-gradient(circle at 70% 20%,rgba(5,200,207,.15),transparent 30%),var(--paper); }
.login-card { width: min(460px,100%); }
.login-card > img { width: 180px; margin: 0 auto 25px; }
.login-card h1 { color: var(--navy); }
.account-card { max-width: 760px; }
.account-password-form { max-width: 610px; margin-top: 22px; padding: 0; border: 0; border-radius: 0; box-shadow: none; display: grid; gap: 17px; }
.account-password-form .btn { width: fit-content; margin-top: 4px; }

.settings-form h2 { color: var(--navy); margin: 38px 0 8px; padding-top: 28px; border-top: 1px solid var(--line); }
.settings-form h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.settings-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.legal-document h2 { margin-top: 36px; }
.legal-identity { display: grid; gap: 7px; margin: -18px 0 38px; padding: 22px; background: #f3fbfc; border: 1px solid #d9eef0; border-radius: 18px; font-size: 13px; line-height: 1.6; }
.legal-identity strong { color: var(--navy); font-size: 19px; }
.legal-identity span { color: var(--muted); }

.invoice-page { width: min(100% - 28px,980px); margin: 0 auto; padding: 70px 0 95px; }
.invoice-sheet { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: clamp(28px,5vw,58px); box-shadow: var(--shadow); color: var(--ink); }
.invoice-head { display: flex; justify-content: space-between; gap: 35px; align-items: flex-start; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.invoice-head img { width: 190px; margin-bottom: 15px; }
.invoice-head p,.invoice-bill p,.invoice-foot { color: var(--muted); font-size: 12px; line-height: 1.7; }
.invoice-title { text-align: right; }
.invoice-title span,.invoice-bill span { color: var(--cyan); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 800; }
.invoice-title h1 { color: var(--navy); font-size: clamp(24px,4vw,40px); margin: 9px 0 13px; }
.invoice-legal { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.invoice-legal span { color: var(--muted); font-size: 11px; line-height: 1.5; }
.invoice-legal b { display: block; color: var(--navy); margin-bottom: 5px; }
.invoice-bill { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 30px 0; }
.invoice-bill h2 { color: var(--navy); margin: 7px 0; }
.invoice-table { width: 100%; border-collapse: collapse; }
.invoice-table th,.invoice-table td { padding: 16px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.invoice-table th { color: var(--navy); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.invoice-table td { color: var(--muted); font-size: 13px; }
.invoice-table tfoot th { font-size: 16px; }
.invoice-foot { display: flex; justify-content: space-between; gap: 25px; margin-top: 30px; }
.invoice-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }

.refund-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 55px; align-items: start; }
.refund-status-card { background: #fff; border: 1px solid var(--line); border-radius: 25px; padding: 32px; box-shadow: var(--shadow); margin-bottom: 20px; }
.refund-status-card h2 { color: var(--navy); font-size: 35px; margin: 15px 0 24px; }
.refund-status-card dl { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.refund-status-card dl div { padding: 14px; border: 1px solid var(--line); border-radius: 12px; }
.refund-status-card dt { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.refund-status-card dd { color: var(--navy); margin: 6px 0 0; font-weight: 700; }
.refund-admin-table form { display: grid; gap: 8px; min-width: 240px; }
.refund-admin-table textarea { min-height: 85px; border: 1px solid var(--line); border-radius: 10px; padding: 10px; }
.refund-admin-table select { border: 1px solid var(--line); border-radius: 10px; padding: 10px; background: #fff; }

[hidden] { display: none !important; }
.cookie-banner { position: fixed; z-index: 120; left: 18px; right: 18px; bottom: 18px; max-width: 980px; margin: auto; padding: 20px; border: 1px solid #dce8ed; border-radius: 20px; background: rgba(255,255,255,.98); box-shadow: 0 25px 70px rgba(2,27,61,.22); display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.cookie-banner strong { color: var(--navy); }
.cookie-banner p { color: var(--muted); font-size: 12px; margin: 7px 0 0; line-height: 1.55; }
.cookie-banner p a { color: #008c96; text-decoration: underline; }
.cookie-actions { display: flex; gap: 9px; flex: 0 0 auto; }
.cookie-actions .btn { min-height: 44px; padding: 0 14px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s, transform .65s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .desktop-nav, .header-booking, .header-contact { display: none; }
}

@media (min-width: 981px) and (max-width: 1440px), (min-width: 981px) and (max-height: 820px) {
  .hero { min-height: 530px; }
  .hero-grid { gap: 42px; padding: 42px 0 54px; }
  .hero h1 { font-size: clamp(46px,5.2vw,68px); }
  .hero-system { height: 390px; }
  .system-core { width: 198px; height: 198px; border-radius: 36px; }
  .system-card { width: 144px; padding: 12px; }
  .system-card i { width: 31px; height: 31px; }
  .section { padding: 76px 0; }
  .page-hero { min-height: 330px; }
  .page-hero-inner { padding: 50px 0; }
}

@media (max-width: 980px) {
  .hero-grid, .product-detail { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 65px; gap: 20px; }
  .hero-system { height: 420px; max-width: 570px; width: 100%; margin: auto; }
  .product-card, .product-card.featured { grid-column: span 6; }
  .services-layout { grid-template-columns: 1fr; gap: 35px; }
  .sticky-copy { position: static; }
  .insights-grid { grid-template-columns: repeat(2,1fr); }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .refund-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  :root { --wrap: min(100% - 28px,1180px); --radius: 22px; }
  .site-header { height: 72px; }
  .brand img { width: 145px; }
  .section { padding: 75px 0; }
  .section-head { display: grid; margin-bottom: 30px; }
  .hero-grid { padding: 50px 0 70px; }
  .hero h1 { font-size: clamp(38px,13vw,56px); }
  .hero-copy > p { font-size: 16px; }
  .hero-system { height: 340px; }
  .system-core { width: 172px; height: 172px; border-radius: 32px; }
  .system-core img { width: 94%; height: 94%; }
  .system-card { width: min(142px,42vw); padding: 12px; }
  .system-card.card-one { right: 0; bottom: 12px; }
  .system-card.card-two { right: 0; top: 12px; }
  .system-card.card-three { left: 0; bottom: 12px; }
  .system-card.card-four { left: 0; top: 12px; }
  .product-card, .product-card.featured { grid-column: 1/-1; }
  .services-layout { gap: 25px; }
  .service-card { grid-template-columns: 36px 1fr; }
  .service-card .arrow { display: none; }
  .insights-grid { grid-template-columns: 1fr; }
  .cta-inner { display: grid; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1/-1; }
  .footer-bottom { display: grid; }
  .footer-bottom div { justify-content: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { height: auto; position: static; }
  .admin-side nav { display: flex; overflow-x: auto; }
  .admin-main { padding: 22px 14px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .section-button { white-space: normal; width: fit-content; }
  .invoice-head,.invoice-foot,.cookie-banner { display: grid; }
  .invoice-title { text-align: left; }
  .invoice-legal,.invoice-bill,.refund-status-card dl { grid-template-columns: 1fr; }
  .cookie-actions { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero-grid { padding-bottom: 52px; }
  .hero-actions .btn { width: 100%; }
  .hero-system { height: 310px; }
  .system-orbit { inset: 18px 26px; }
  .system-core { width: 142px; height: 142px; border-radius: 27px; }
  .system-core::before { inset: 8px; border-radius: 22px; }
  .system-card { width: min(124px,37vw); padding: 10px; border-radius: 15px; }
  .system-card i { width: 28px; height: 28px; border-radius: 9px; font-size: 11px; }
  .system-card b { margin-top: 8px; font-size: 11px; }
  .system-card small { font-size: 8px; }
  .section { padding: 62px 0; }
  .section-head h2, .sticky-copy h2 { font-size: 36px; }
  .page-hero { min-height: 300px; }
  .page-hero h1 { font-size: 42px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:first-child { grid-column: auto; }
}

@media print {
  .site-header,.site-footer,.whatsapp-float,.cookie-banner,.invoice-actions,.skip-link { display: none !important; }
  body { background: #fff; }
  .invoice-page { width: 100%; padding: 0; }
  .invoice-sheet { box-shadow: none; border: 0; border-radius: 0; padding: 18mm; }
}

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

/* Compact, laptop-first sizing and global page controls. */
:root { --wrap: min(1040px, calc(100% - 36px)); --radius: 20px; }
.site-header { height: 68px; }
.brand img { width: 142px; height: 34px; }
.header-inner { gap: 20px; }
.desktop-nav { gap: 24px; }
.desktop-nav a { font-size: 12px; padding: 24px 0; }
.desktop-nav a::after { bottom: 14px; }
.header-contact, .header-booking { padding: 9px 13px; font-size: 11px; }
.menu-button { width: 40px; height: 40px; }

.side-menu { width: min(390px, 90vw); padding: 20px 28px 24px; overflow-y: auto; }
.side-menu-top { font-size: 9px; padding-bottom: 14px; }
.side-menu-top button { width: 36px; height: 36px; font-size: 22px; }
.side-menu nav { margin-top: 12px; }
.side-menu nav a { grid-template-columns: 30px 1fr; padding: 9px 0; }
.side-menu nav small { font-size: 8px; }
.side-menu nav span { font-size: clamp(20px, 2.1vw, 27px); letter-spacing: -.025em; }
.side-menu-actions { gap: 7px; padding-top: 14px; }
.menu-cta { min-height: 45px; border-radius: 11px; padding: 0 14px; font-size: 12px; }
.menu-contact { font-size: 9px; }

.hero { min-height: 480px; }
.hero-grid { grid-template-columns: 1.1fr .9fr; gap: 42px; padding: 40px 0 50px; }
.hero h1, .page-hero h1 { font-size: clamp(40px, 4.7vw, 64px); margin: 14px 0 17px; line-height: .97; }
.hero-copy > p { font-size: 15px; line-height: 1.62; }
.hero-actions { margin-top: 22px; }
.hero-proof { margin-top: 23px; }
.btn { min-height: 47px; padding: 0 17px; border-radius: 12px; font-size: 12px; gap: 18px; }
.hero-system { height: 350px; }
.system-orbit { inset: 18px; }
.system-core { width: 174px; height: 174px; border-radius: 32px; }
.system-core::before { inset: 9px; border-radius: 25px; }
.system-card { width: 128px; padding: 11px; border-radius: 15px; }
.system-card i { width: 29px; height: 29px; border-radius: 9px; font-size: 10px; }
.system-card b { margin-top: 8px; font-size: 11px; }
.system-card small { font-size: 8px; }
.marquee-track span { padding: 13px 18px; font-size: 10px; }

.section { padding: 64px 0; }
.section.compact { padding: 52px 0; }
.section-head { margin-bottom: 32px; }
.section-head h2, .sticky-copy h2 { font-size: clamp(32px, 4vw, 46px); }
.section-head > p, .sticky-copy p { font-size: 14px; line-height: 1.65; }
.tool-card, .product-card, .service-card, .insight-card { padding: 20px; }
.card-icon { width: 43px; height: 43px; margin-bottom: 21px; }
.tool-card h3, .product-card h3, .service-card h3, .insight-card h3 { font-size: 19px; }
.tool-card p, .product-card p, .service-card p, .insight-card p { font-size: 13px; line-height: 1.6; }
.product-card { min-height: 245px; }
.services-layout { gap: 46px; }
.service-card { min-height: 138px; grid-template-columns: 50px 1fr 38px; }
.insight-visual { height: 135px; }
.insight-body { padding: 17px; }
.cta-band { padding: 52px 0; }
.cta-inner h2 { font-size: clamp(32px, 4.1vw, 48px); }
.page-hero { min-height: 292px; }
.page-hero-inner { padding: 46px 0; }
.page-hero h1 { font-size: clamp(38px, 5vw, 58px); }
.page-hero p { font-size: 15px; }
.detail-copy h1 { font-size: clamp(38px, 5vw, 60px); }
.article-head { padding: 55px 0 34px; }
.article-head h1 { font-size: clamp(36px, 5vw, 58px); }
.article-content { font-size: 15px; line-height: 1.78; }
.site-footer { padding-top: 52px; }
.footer-main { padding-bottom: 42px; }

.share-rail, .page-tools { position: fixed; z-index: 61; display: flex; align-items: center; gap: 6px; }
.share-rail { right: 14px; top: 50%; transform: translateY(-50%); flex-direction: column; padding: 8px; border: 1px solid rgba(3,47,97,.12); border-radius: 999px; background: rgba(255,255,255,.94); box-shadow: 0 15px 38px rgba(3,47,97,.14); backdrop-filter: blur(12px); }
.share-label { writing-mode: vertical-rl; transform: rotate(180deg); color: #8a99a9; font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 4px 0 2px; }
.share-rail button, .page-tools button, .page-tools a { width: 34px; height: 34px; display: grid; place-items: center; border: 0; border-radius: 50%; background: #f1f6f8; color: var(--navy); font-size: 11px; font-weight: 800; transition: transform .2s, background .2s, color .2s; }
.share-rail button:hover, .page-tools button:hover, .page-tools a:hover { transform: translateY(-2px); background: var(--navy); color: #fff; }
.share-rail button[data-share-platform="whatsapp"] { background: #e7f8ee; color: #138847; font-size: 8px; }
.page-tools { left: 14px; bottom: 18px; padding: 7px; border: 1px solid rgba(3,47,97,.12); border-radius: 999px; background: rgba(255,255,255,.94); box-shadow: 0 15px 38px rgba(3,47,97,.13); backdrop-filter: blur(12px); }
.share-toast { position: fixed; z-index: 130; left: 50%; bottom: 24px; transform: translateX(-50%); max-width: min(90vw,460px); padding: 11px 16px; border-radius: 999px; background: var(--navy-2); color: #fff; font-size: 11px; text-align: center; box-shadow: 0 18px 45px rgba(1,31,67,.22); }
.footer-cookie-link { border: 0; padding: 0; background: transparent; color: inherit; font: inherit; }
.footer-cookie-link:hover { color: var(--cyan); }
.ad-slot { min-height: 90px; margin-bottom: 42px; padding: 12px; background: #fff; }

@media (max-width: 1120px) {
  .share-rail { right: 9px; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding: 44px 0 54px; }
  .hero-system { height: 330px; max-width: 500px; }
  .product-card, .product-card.featured { grid-column: span 6; }
}

@media (max-width: 700px) {
  :root { --wrap: min(100% - 26px,1040px); }
  body { padding-bottom: 0; }
  .site-header { height: 62px; }
  .brand img { width: 132px; }
  .menu-button { width: 38px; height: 38px; }
  .side-menu { width: min(340px, 92vw); padding: 17px 22px 20px; }
  .side-menu nav span { font-size: 21px; }
  .side-menu nav a { padding: 8px 0; }
  .hero-grid { padding: 38px 0 45px; }
  .hero h1 { font-size: clamp(36px, 11.5vw, 48px); }
  .hero-system { height: 292px; }
  .system-core { width: 142px; height: 142px; }
  .system-card { width: min(112px, 36vw); padding: 9px; }
  .section { padding: 54px 0; }
  .section-head h2, .sticky-copy h2 { font-size: 34px; }
  .page-hero { min-height: 245px; }
  .page-hero h1 { font-size: 40px; }
  .share-rail { left: 50%; right: auto; top: auto; bottom: 10px; transform: translateX(-50%); flex-direction: row; padding: 6px 8px; }
  .share-label { writing-mode: horizontal-tb; transform: none; padding: 0 4px; }
  .share-rail button, .page-tools button, .page-tools a { width: 32px; height: 32px; }
  .page-tools { left: auto; right: 10px; bottom: 58px; flex-direction: column; padding: 5px; }
  .cookie-banner { bottom: 58px; }
  .share-toast { bottom: 108px; }
}

@media (max-width: 480px) {
  .hero-system { height: 260px; }
  .system-core { width: 118px; height: 118px; border-radius: 23px; }
  .system-card { width: min(102px, 34vw); }
  .system-card b { font-size: 10px; }
  .system-card small { font-size: 7px; }
  .share-label { display: none; }
  .page-hero h1 { font-size: 36px; }
}

@media print {
  .share-rail, .page-tools, .share-toast { display: none !important; }
}

/* V6: guaranteed global controls and refined workshops experience. */
.share-rail, .page-tools {
  z-index: 76 !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.share-rail button, .page-tools button, .page-tools a {
  border: 1px solid rgba(3,47,97,.06);
  box-shadow: 0 3px 10px rgba(3,47,97,.06);
}
.page-tools a { text-decoration: none; }

.workshops-hero { padding: 34px 0 0; background: linear-gradient(180deg,#f8fbfc 0%,#f1f7f8 100%); }
.workshops-hero-shell { min-height: 430px; max-height: 510px; position: relative; overflow: hidden; border-radius: 28px; background: var(--navy-2); box-shadow: 0 28px 70px rgba(2,32,67,.2); }
.workshops-hero-shell > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.workshops-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(1,25,53,.92) 0%,rgba(1,32,66,.75) 44%,rgba(1,32,66,.16) 76%,rgba(1,32,66,.08) 100%),linear-gradient(0deg,rgba(1,28,58,.28),transparent 60%); }
.workshops-hero-copy { position: relative; z-index: 2; width: min(560px,70%); padding: clamp(38px,5.5vw,68px); color: #fff; }
.workshops-hero-copy .breadcrumb { display: block; color: rgba(255,255,255,.65); margin-bottom: 24px; }
.workshops-hero-copy .eyebrow { color: #72edf0; }
.workshops-hero-copy h1 { max-width: 520px; margin: 14px 0 15px; color: #fff; font-size: clamp(42px,5vw,62px); line-height: .96; letter-spacing: -.045em; }
.workshops-hero-copy p { max-width: 500px; margin: 0; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.7; }
.btn.glass { border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.1); color: #fff; backdrop-filter: blur(12px); }
.btn.glass:hover { background: #fff; color: var(--navy); }
.workshops-listing { background: linear-gradient(180deg,#f1f7f8 0%,#f8fbfc 18%); }
.workshop-grid { grid-template-columns: repeat(auto-fit,minmax(min(100%,290px),1fr)); gap: 22px; align-items: stretch; }
.workshop-card { border-radius: 22px; box-shadow: 0 14px 34px rgba(3,47,97,.06); }
.workshop-card-media { position: relative; display: block; overflow: hidden; background: #dfe9ed; }
.workshop-card-media img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover !important; padding: 0 !important; transition: transform .45s ease; }
.workshop-card:hover .workshop-card-media img { transform: scale(1.035); }
.workshop-card-media > span { position: absolute; left: 14px; top: 14px; padding: 7px 10px; border-radius: 999px; background: rgba(2,36,75,.86); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.workshop-card-body { padding: 20px; }
.workshop-card h3 { font-size: 21px; }
.workshop-card h3 a { color: inherit; }
.workshop-card p { margin-bottom: 17px; font-size: 12.5px; }
.workshop-meta { justify-content: space-between; border-bottom: 1px solid #eef2f4; padding-bottom: 12px; }
.workshop-card-foot { display: grid; gap: 15px; margin-top: auto; }
.workshop-price { padding-top: 0; font-size: 23px; }
.workshop-card-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.workshop-card-actions .btn { min-height: 41px; padding: 0 13px; font-size: 10px; flex: 1 1 120px; }
.registration-soon { flex: 1 1 130px; color: #7e8d9d; font-size: 10px; text-align: center; }
.workshops-empty { grid-column: 1/-1; text-align: center; }
.workshops-empty .btn { margin-top: 12px; }
.workshop-detail-layout { grid-template-columns: minmax(0,1.28fr) minmax(290px,.72fr); gap: 42px; }
.workshop-detail-layout .detail-copy h1 { font-size: clamp(38px,4.6vw,56px); }
.workshop-detail-layout .detail-copy > p { font-size: 15px; }
.workshop-detail-cover { aspect-ratio: 16/8.2; margin: 26px 0 20px; border-radius: 24px; }
.workshop-detail-cover img { object-fit: cover !important; padding: 0 !important; }
.workshop-detail-content { margin: 0; padding: clamp(25px,4vw,44px); font-size: 15px; }
.workshop-booking-panel { border-radius: 24px; padding: 28px; }
.btn.wide { width: 100%; }
.workshop-back-link { display: block; margin-top: 18px; color: #718396; font-size: 11px; text-align: center; }
.workshop-back-link:hover { color: var(--navy); }

@media (max-width: 700px) {
  .workshops-hero { padding-top: 16px; }
  .workshops-hero-shell { min-height: 470px; max-height: none; border-radius: 22px; }
  .workshops-hero-shell > img { object-position: 59% center; }
  .workshops-hero-shade { background: linear-gradient(0deg,rgba(1,25,53,.96) 0%,rgba(1,30,64,.82) 52%,rgba(1,30,64,.15) 100%); }
  .workshops-hero-copy { width: 100%; min-height: 470px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px 24px; }
  .workshops-hero-copy .breadcrumb { margin-bottom: auto; }
  .workshops-hero-copy h1 { font-size: 42px; }
  .workshops-hero-copy .hero-actions { gap: 8px; }
  .workshops-hero-copy .btn { min-height: 43px; padding: 0 13px; font-size: 10px; }
  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-detail-layout { grid-template-columns: 1fr; }
  .workshop-booking-panel { position: static; }
  .share-rail { z-index: 76 !important; }
  .page-tools { z-index: 77 !important; }
}

/* V7: balanced scale for laptops and large desktops.
   The V6 compact pass was intentionally conservative; this restores a
   comfortable middle size without returning to the oversized first layout. */
@media (min-width: 981px) {
  :root { --wrap: min(1220px, calc(100% - 48px)); --radius: 22px; }

  .site-header { height: 76px; }
  .brand img { width: 160px; height: 38px; }
  .header-inner { gap: 24px; }
  .desktop-nav { gap: 27px; }
  .desktop-nav a { padding: 27px 0; font-size: 13px; }
  .desktop-nav a::after { bottom: 16px; }
  .header-contact, .header-booking { padding: 10px 15px; font-size: 12px; }
  .menu-button { width: 43px; height: 43px; }

  .side-menu { width: min(435px, 90vw); padding: 24px 34px 28px; }
  .side-menu-top { padding-bottom: 18px; font-size: 10px; }
  .side-menu-top button { width: 40px; height: 40px; font-size: 24px; }
  .side-menu nav { margin-top: 18px; }
  .side-menu nav a { grid-template-columns: 34px 1fr; padding: 12px 0; }
  .side-menu nav small { font-size: 9px; }
  .side-menu nav span { font-size: clamp(25px, 2.2vw, 31px); }
  .side-menu-actions { padding-top: 18px; gap: 9px; }
  .menu-cta { min-height: 50px; padding: 0 16px; font-size: 13px; }
  .menu-contact { font-size: 10px; }

  .hero { min-height: 550px; }
  .hero-grid { grid-template-columns: 1.08fr .92fr; gap: 50px; padding: 50px 0 62px; }
  .hero h1 { font-size: clamp(48px, 5.25vw, 72px); margin: 16px 0 19px; }
  .hero-copy > p { max-width: 620px; font-size: 16px; line-height: 1.68; }
  .hero-actions { margin-top: 26px; }
  .hero-proof { margin-top: 27px; font-size: 12px; }
  .btn { min-height: 51px; padding: 0 19px; border-radius: 13px; font-size: 13px; }
  .hero-system { height: 405px; }
  .system-core { width: 204px; height: 204px; border-radius: 37px; }
  .system-core::before { inset: 11px; border-radius: 31px; }
  .system-card { width: 145px; padding: 13px; border-radius: 17px; }
  .system-card i { width: 33px; height: 33px; font-size: 11px; }
  .system-card b { margin-top: 10px; font-size: 12px; }
  .system-card small { font-size: 9px; }
  .marquee-track span { padding: 16px 21px; font-size: 11px; }

  .section { padding: 76px 0; }
  .section.compact { padding: 62px 0; }
  .section-head { margin-bottom: 39px; }
  .section-head h2, .sticky-copy h2 { font-size: clamp(37px, 4.1vw, 52px); }
  .section-head > p, .sticky-copy p { font-size: 15px; line-height: 1.7; }
  .tool-card, .product-card, .service-card, .insight-card { padding: 23px; }
  .card-icon { width: 47px; height: 47px; margin-bottom: 24px; }
  .tool-card h3, .product-card h3, .service-card h3, .insight-card h3 { font-size: 21px; }
  .tool-card p, .product-card p, .service-card p, .insight-card p { font-size: 14px; line-height: 1.67; }
  .product-card { min-height: 270px; }
  .services-layout { gap: 54px; }
  .service-card { min-height: 154px; grid-template-columns: 57px 1fr 41px; }
  .insight-visual { height: 155px; }
  .insight-body { padding: 20px; }
  .cta-band { padding: 62px 0; }
  .cta-inner h2 { font-size: clamp(37px, 4.3vw, 54px); }

  .page-hero { min-height: 335px; }
  .page-hero-inner { padding: 54px 0; }
  .page-hero h1 { font-size: clamp(45px, 5.5vw, 66px); }
  .page-hero p { font-size: 16px; }
  .detail-copy h1 { font-size: clamp(44px, 5.4vw, 68px); }
  .detail-copy p { font-size: 17px; }
  .article-head { padding: 66px 0 40px; }
  .article-head h1 { font-size: clamp(42px, 5.5vw, 66px); }
  .article-content { font-size: 16px; line-height: 1.84; }
  .site-footer { padding-top: 62px; }
  .footer-main { padding-bottom: 50px; }

  .workshops-hero-shell { min-height: 470px; max-height: 535px; }
  .workshops-hero-copy { width: min(620px, 72%); }
  .workshops-hero-copy h1 { font-size: clamp(47px, 5vw, 66px); }
  .workshops-intro { padding-top: 70px; }
  .workshop-card-body { padding: 23px; }
  .workshop-card h3 { font-size: 23px; }
  .workshop-card p { font-size: 13.5px; }

  .login-card { width: min(500px, 100%); }
  .login-card > img { width: 190px; margin-bottom: 28px; }
  .login-card h1 { font-size: 42px; }
  .login-card .form-note { font-size: 13px; }
  .login-card .field label { font-size: 13px; }
  .login-card .field input { min-height: 56px; font-size: 15px; }
}

.database-setup-notice { display: grid; gap: 9px; line-height: 1.55; }
.database-setup-notice strong { font-size: 16px; }
.database-setup-notice span { font-size: 12px; }
.database-setup-notice .btn { width: 100%; margin-top: 5px; }

/* V10: true viewport fit on phones and tablets. */
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--navy-2);
  overscroll-behavior-x: none;
}
body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  position: relative;
}
main {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  flex: 1 0 auto;
  overflow-x: hidden;
}
.site-footer {
  width: 100%;
  max-width: 100%;
  flex: 0 0 auto;
  margin: 0;
}
img, svg, video, canvas, iframe, table, input, textarea, select {
  max-width: 100%;
}
.header-inner, .wrap, .hero-grid, .page-hero-inner, .article-shell, .invoice-page {
  min-width: 0;
}
.share-rail, .page-tools {
  max-width: calc(100vw - 20px);
}

@supports (overflow: clip) {
  html, body, main { overflow-x: clip; }
}

@media (max-width: 700px) {
  :root { --wrap: min(1040px, calc(100% - 24px)); }
  body { padding-bottom: 0 !important; }
  .site-footer {
    padding: 46px 0 calc(86px + env(safe-area-inset-bottom, 0px));
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-main p { max-width: 340px; }
  .footer-bottom { gap: 18px; }
  .footer-bottom div { gap: 12px 16px; }
  .share-rail {
    left: 50%;
    right: auto;
    top: auto;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    width: max-content;
    max-width: calc(100vw - 24px);
    transform: translateX(-50%);
    flex-direction: row;
    padding: 6px 8px;
  }
  .page-tools {
    left: auto;
    right: 8px;
    bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    padding: 5px;
  }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: calc(62px + env(safe-area-inset-bottom, 0px));
    max-height: calc(100svh - 92px);
    overflow-y: auto;
  }
  .share-toast { bottom: calc(106px + env(safe-area-inset-bottom, 0px)); }
  .hero h1, .page-hero h1, .section-head h2, .sticky-copy h2 {
    overflow-wrap: anywhere;
  }
  .btn, .section-button, .menu-cta { max-width: 100%; }
}

@media (max-width: 420px) {
  :root { --wrap: min(1040px, calc(100% - 20px)); }
  .site-header { height: 60px; }
  .brand img { width: 125px; }
  .menu-button { width: 36px; height: 36px; }
  .section { padding: 50px 0; }
  .hero h1 { font-size: clamp(34px, 10.8vw, 44px); line-height: 1; }
  .page-hero h1 { font-size: clamp(32px, 10vw, 40px); line-height: 1.03; }
  .section-head h2, .sticky-copy h2 { font-size: clamp(30px, 9vw, 36px); line-height: 1.07; }
  .share-rail { gap: 4px; }
  .share-rail button, .page-tools button, .page-tools a { width: 31px; height: 31px; }
  .footer-bottom { font-size: 10px; }
}

/* V11 SEO service and about pages */
.service-seo-hero .page-hero-inner { max-width: 1120px; }
.service-seo-hero h1 { max-width: 1080px; font-size: clamp(42px,5.5vw,70px); }
.service-seo-hero p { max-width: 790px; font-size: 17px; }
.seo-service-layout, .about-seo-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr); gap: clamp(34px,6vw,76px); align-items: start; }
.seo-service-copy { min-width: 0; }
.seo-copy-section { padding: 0 0 56px; margin-bottom: 56px; border-bottom: 1px solid var(--line); }
.seo-copy-section:last-child { margin-bottom: 0; border-bottom: 0; }
.seo-copy-section h2 { color: var(--navy); font-size: clamp(31px,4vw,50px); line-height: 1.08; letter-spacing: -.04em; margin: 15px 0 22px; }
.seo-copy-section p { color: #4b6077; font-size: 17px; line-height: 1.85; margin: 0 0 18px; }
.seo-check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.seo-check-list li { position: relative; padding: 14px 18px 14px 48px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: #40546c; line-height: 1.55; }
.seo-check-list li::before { content: '✓'; position: absolute; left: 18px; top: 13px; color: #018c96; font-weight: 900; }
.seo-service-panel h2 { color: var(--navy); font-size: 30px; line-height: 1.15; letter-spacing: -.03em; margin: 13px 0 8px; }
.seo-faq-section { background: #fff; }
.seo-faq-list { display: grid; gap: 12px; max-width: 900px; }
.seo-faq-list details { border: 1px solid var(--line); border-radius: 18px; background: #f8fbfc; padding: 0 22px; }
.seo-faq-list summary { cursor: pointer; list-style: none; color: var(--navy); font-size: 17px; font-weight: 750; padding: 21px 40px 21px 0; position: relative; }
.seo-faq-list summary::-webkit-details-marker { display: none; }
.seo-faq-list summary::after { content: '+'; position: absolute; right: 0; top: 17px; color: #018c96; font-size: 25px; }
.seo-faq-list details[open] summary::after { content: '−'; }
.seo-faq-list details p { margin: 0; padding: 0 0 22px; color: var(--muted); line-height: 1.75; max-width: 760px; }

@media (max-width: 900px) {
  .seo-service-layout, .about-seo-grid { grid-template-columns: 1fr; }
  .seo-service-panel { position: static; }
}

@media (max-width: 700px) {
  .service-seo-hero p, .seo-copy-section p { font-size: 15px; }
  .seo-copy-section { padding-bottom: 38px; margin-bottom: 38px; }
  .seo-check-list li { padding-left: 43px; }
  .seo-faq-list details { padding: 0 17px; }
  .seo-faq-list summary { font-size: 15px; }
}
