/* ═══════════════════════════════════════════
   BRAND TOKENS
═══════════════════════════════════════════ */
:root {
  --blue:      #2F5D84;
  --blue-dark: #1A344E;
  --blue-l:    #3E7BAD;
  --blue-xl:   #5B9CC4;
  --blue-ultra:#EBF3F9;
  --gray:      #77787B;
  --gray-l:    #B1B3B5;
  --gray-xl:   #E8E9EA;
  --gray-xxl:  #F5F6F7;
  --white:     #FFFFFF;
  --ink:       #1A344E;
  --text:      #1A344E;
  --text-soft: #2F5D84;
  --text-muted:#77787B;
  --surface:   #F5F6F7;
  --surface-b: #EBF3F9;
  --border:    rgba(47,93,132,0.12);
  --border-b:  rgba(47,93,132,0.22);
  --green:     #1A7A5E;
  --green-bg:  #EDFAF5;
  --r:    16px;
  --r-sm: 10px;
  --r-lg: 24px;
  --shadow:    0 2px 16px rgba(26,52,78,0.08);
  --shadow-lg: 0 8px 40px rgba(26,52,78,0.12);
  --shadow-xl: 0 20px 60px rgba(26,52,78,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 18px;
  line-height: 1.6;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════ */
.cursor {
  width: 10px; height: 10px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.12s ease;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(47,93,132,0.4);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.32s cubic-bezier(0.23,1,0.32,1);
}

/* ═══════════════════════════════════════════
   NOISE OVERLAY
═══════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 1000;
}

/* ═══════════════════════════════════════════
   MESH BACKGROUND
═══════════════════════════════════════════ */
.mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  animation: drift 22s infinite ease-in-out alternate;
}
.mesh-blob:nth-child(1) {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(47,93,132,0.1), transparent 70%);
  top: -200px; left: -100px;
  animation-duration: 22s;
}
.mesh-blob:nth-child(2) {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,156,196,0.08), transparent 70%);
  top: 40%; right: -80px;
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}
.mesh-blob:nth-child(3) {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(235,243,249,0.6), transparent 70%);
  bottom: 0; left: 35%;
  animation-duration: 26s;
}
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(40px,30px) scale(1.08); }
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.wrap { position: relative; z-index: 10; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* ═══════════════════════════════════════════
   LANG SWITCH (in nav)
═══════════════════════════════════════════ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 10px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(47,93,132,0.05) 0%, rgba(47,93,132,0.10) 100%);
  border: 1px solid rgba(47,93,132,0.14);
  border-radius: 100px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  transition: all 0.2s ease;
}
.lang-switch:hover { border-color: rgba(47,93,132,0.28); }
.lang-pill {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 6px 11px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  text-decoration: none;
  line-height: 1;
}
.lang-pill.active {
  background: var(--blue);
  color: white;
  box-shadow: 0 2px 8px rgba(47,93,132,0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}
.lang-pill:hover:not(.active) {
  color: var(--blue-dark);
  background: rgba(255,255,255,0.7);
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 64px; width: auto; display: block; }
.nav-logo a { display: flex; align-items: center; }
.custom-logo-link img { height: 64px !important; width: auto !important; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a,
.nav-links .menu-item a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.1px;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--blue);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .menu-item.current-menu-item > a { color: var(--blue-dark); }
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .menu-item.current-menu-item > a::after {
  transform: scaleX(1);
}

/* WP nav menu reset */
.nav-links .menu { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }

.nav-right { display: flex; gap: 8px; align-items: center; }
/* Shared nav button base */
.btn-ghost-nav,
.btn-nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1px;
  cursor: pointer;
  padding: 7px 16px;
  height: 34px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box;
}

.btn-ghost-nav {
  color: var(--blue-dark);
  background: transparent;
  border: 1.5px solid rgba(47,93,132,0.28);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.btn-ghost-nav:hover {
  color: var(--blue-dark);
  border-color: rgba(47,93,132,0.55);
  background: rgba(47,93,132,0.06);
}

.btn-nav-cta {
  color: white;
  background: var(--blue);
  border: 1.5px solid var(--blue);
  box-shadow: 0 2px 10px rgba(47,93,132,0.22);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-nav-cta:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(47,93,132,0.32);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  padding: 56px 0 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--blue);
  background: var(--blue-ultra);
  border: 1px solid rgba(47,93,132,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: blink 1.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-headline {
  font-size: clamp(54px, 7.5vw, 100px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 26px;
  max-width: 880px;
  color: var(--blue-dark);
}
.hero-headline .accent {
  color: var(--blue);
  font-style: italic;
}
.hero-sub {
  font-size: 21px;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 44px;
}
.hc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-soft);
}
.hc-dot {
  width: 18px; height: 18px;
  background: var(--green-bg);
  border: 1px solid rgba(26,122,94,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hc-dot svg { width: 9px; height: 9px; stroke: var(--green); fill: none; stroke-width: 2.5; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 72px; }

.btn-primary-lg {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  background: var(--blue);
  border: none;
  cursor: pointer;
  padding: 11px 22px;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1.2;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(47,93,132,0.25);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary-lg .ztd-ico,
.btn-primary-lg svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-primary-lg:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(47,93,132,0.32); }

.btn-outline-lg {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--blue);
  background: white;
  border: 1.5px solid var(--border-b);
  cursor: pointer;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1.2;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-lg .ztd-ico,
.btn-outline-lg svg { width: 15px; height: 15px; flex-shrink: 0; stroke-width: 1.8; }
.btn-outline-lg:hover { border-color: var(--blue); background: var(--blue-ultra); transform: translateY(-2px); }

/* HERO MOCKUP */
.hero-mockup-wrap { flex: 1; margin: 0 -40px; padding: 0 40px; }
.hero-mockup-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), rgba(47,93,132,0.3), transparent);
  opacity: 0.4;
  max-width: 900px;
  margin: 0 auto;
}
.hero-mockup {
  background: white;
  border: 1px solid var(--border-b);
  border-radius: 18px 18px 0 0;
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 -8px 40px rgba(47,93,132,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
  max-width: 1000px;
  margin: 0 auto;
}
.mockup-bar {
  background: var(--gray-xxl);
  border-bottom: 1px solid var(--border);
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mdot { width: 11px; height: 11px; border-radius: 50%; }
.mdot.r { background: #FF5F56; }
.mdot.y { background: #FFBD2E; }
.mdot.g { background: #28CA41; }
.murl {
  flex: 1;
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.murl-lock { color: var(--green); display: inline-flex; align-items: center; }
.murl-lock .ztd-ico { width: 12px; height: 12px; }
.mockup-body { display: grid; grid-template-columns: 210px 1fr; min-height: 320px; }
.mockup-side {
  border-right: 1px solid var(--border);
  padding: 18px 14px;
  background: var(--gray-xxl);
}
.mside-logo { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 20px; display: flex; align-items: center; gap: 6px; font-family: 'Inter', sans-serif; }
.mside-logo .ztd-ico { width: 16px; height: 16px; }
.mside-label { font-family: 'Geist Mono', monospace; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-l); margin-bottom: 6px; margin-top: 14px; padding: 0 8px; }
.mside-item { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 8px; font-size: 13px; font-family: 'Inter', sans-serif; font-weight: 500; color: var(--text-muted); margin-bottom: 2px; cursor: pointer; transition: all 0.15s; }
.mside-item:hover, .mside-item.active { background: var(--blue-ultra); color: var(--blue); }
.mside-item .ico { font-size: 14px; width: 20px; text-align: center; display: inline-flex; align-items: center; justify-content: center; }
.mside-item .ico .ztd-ico { width: 14px; height: 14px; stroke-width: 1.7; }
.mockup-main { padding: 18px; background: white; }
.m-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.m-title { font-size: 15px; font-weight: 700; color: var(--ink); font-family: 'Inter', sans-serif; display: flex; align-items: center; gap: 6px; }
.m-title .ztd-ico { width: 16px; height: 16px; color: var(--blue); }
.m-breadcrumb { font-family: 'Geist Mono', monospace; font-size: 10px; color: var(--gray-l); margin-top: 2px; }
.m-actions { display: flex; gap: 8px; }
.m-btn { background: var(--blue); color: white; border: none; padding: 6px 14px; border-radius: 6px; font-size: 12px; font-family: 'Inter', sans-serif; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
.m-btn-ghost { background: white; color: var(--text-muted); border: 1px solid var(--border); padding: 6px 14px; border-radius: 6px; font-size: 12px; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
.m-btn .ztd-ico, .m-btn-ghost .ztd-ico { width: 12px; height: 12px; stroke-width: 2; }
.m-folder-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-bottom: 16px; }
.m-folder { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 12px 8px; text-align: center; cursor: pointer; transition: all 0.15s; }
.m-folder:hover { border-color: var(--blue); background: var(--blue-ultra); }
.m-folder-icon { font-size: 20px; margin-bottom: 5px; color: var(--blue); display: flex; justify-content: center; }
.m-folder-icon .ztd-ico { width: 22px; height: 22px; stroke-width: 1.6; }
.m-folder-name { font-size: 10px; color: var(--text-muted); font-family: 'Geist Mono', monospace; }
.m-file-list { display: flex; flex-direction: column; gap: 4px; }
.m-file { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; border: 1px solid transparent; transition: all 0.15s; cursor: pointer; }
.m-file:hover { background: var(--surface); border-color: var(--border); }
.m-badge { font-family: 'Geist Mono', monospace; font-size: 9px; padding: 2px 6px; border-radius: 4px; }
.b-pdf { background: rgba(220,38,38,0.08); color: #DC2626; border: 1px solid rgba(220,38,38,0.15); }
.b-xl  { background: rgba(5,150,105,0.08); color: #059669; border: 1px solid rgba(5,150,105,0.15); }
.b-doc { background: rgba(47,93,132,0.1); color: var(--blue); border: 1px solid rgba(47,93,132,0.18); }
.b-zip { background: rgba(180,130,0,0.08); color: #B45309; border: 1px solid rgba(180,130,0,0.15); }
.m-file-name { font-size: 12px; color: var(--text-muted); flex: 1; font-family: 'Geist Mono', monospace; }
.m-file-size { font-family: 'Geist Mono', monospace; font-size: 10px; color: var(--gray-l); }
.m-enc { font-size: 10px; color: var(--green); font-family: 'Geist Mono', monospace; display: inline-flex; align-items: center; gap: 3px; }
.m-enc .ztd-ico { width: 11px; height: 11px; stroke-width: 2; }

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.trust-scroll { display: flex; gap: 64px; align-items: center; animation: scroll-x 32s linear infinite; width: max-content; }
@keyframes scroll-x { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.trust-item { font-family: 'Geist Mono', monospace; font-size: 12px; font-weight: 400; color: var(--gray-l); white-space: nowrap; letter-spacing: 1.5px; text-transform: uppercase; }
.trust::before,.trust::after { content:''; position:absolute; top:0; bottom:0; width:100px; z-index:2; pointer-events:none; }
.trust::before { left:0; background: linear-gradient(90deg, var(--surface), transparent); }
.trust::after  { right:0; background: linear-gradient(-90deg, var(--surface), transparent); }

/* ═══════════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════════ */
section { padding: 112px 0; scroll-margin-top: 96px; }
.tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.tag::before { content:''; width:22px; height:1px; background:var(--blue); }
.section-h {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: var(--blue-dark);
}
.section-p {
  font-size: 19px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 52px;
}

/* ═══════════════════════════════════════════
   BENTO FEATURES
═══════════════════════════════════════════ */
.bento-head { text-align: center; }
.bento-head .section-p { margin: 0 auto 52px; }
.bento { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.bento-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-xl));
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-card:hover { border-color: rgba(47,93,132,0.25); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.bento-card:hover::before { opacity: 1; }
.bc-1, .bc-2, .bc-3, .bc-4, .bc-5, .bc-6 { grid-column: span 1; }
.bento-card { display: flex; flex-direction: column; }
.bc-last { grid-column: span 4; }
.bento-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: linear-gradient(135deg, #FFFFFF 0%, var(--blue-ultra) 100%);
  border: 1px solid rgba(47,93,132,0.18);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px rgba(26,52,78,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: all 0.2s ease;
  align-self: flex-start;
  position: relative;
}
.bento-chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(47,93,132,0.12);
}
.bento-card:hover .bento-chip {
  border-color: rgba(47,93,132,0.32);
  box-shadow: 0 2px 6px rgba(26,52,78,0.10), inset 0 1px 0 rgba(255,255,255,0.6);
  transform: translateY(-1px);
}
.bento-card:hover .bento-chip::before {
  background: var(--blue-dark);
  box-shadow: 0 0 0 3px rgba(47,93,132,0.18);
}
.bento-ico { font-size: 30px; margin-bottom: 16px; display: block; line-height: 0; }
.bento-ico .ztd-ico { width: 36px; height: 36px; color: var(--blue); stroke-width: 1.6; }
.bento-card:hover .bento-ico .ztd-ico { color: var(--blue-dark); }
.bento-card h3 { font-size: 20px; font-weight: 700; color: var(--blue-dark); margin-bottom: 9px; }
.bento-card p { font-size: 16px; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════
   WORKGROUP
═══════════════════════════════════════════ */
.alt-bg { background: var(--surface); }
.wg-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.wg-panel {
  background: white;
  border: 1px solid var(--border-b);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.wg-panel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-xl)); }
.wg-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.wg-panel-title { font-size: 15px; font-weight: 700; color: var(--blue-dark); display: inline-flex; align-items: center; gap: 7px; }
.wg-panel-title .ztd-ico { width: 16px; height: 16px; color: var(--blue); }
.wg-status { font-family: 'Geist Mono', monospace; font-size: 10px; color: var(--green); background: var(--green-bg); border: 1px solid rgba(26,122,94,0.2); padding: 3px 10px; border-radius: 100px; display: flex; align-items: center; gap: 5px; }
.wg-status::before { content:''; width:5px; height:5px; background:var(--green); border-radius:50%; }
.wg-groups { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.wg-group { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; transition: border-color 0.2s; }
.wg-group:hover { border-color: var(--border-b); }
.wg-group-l { display: flex; align-items: center; gap: 10px; }
.wg-group-l .wg-ico { width: 32px; height: 32px; border-radius: 8px; background: rgba(91,156,196,0.18); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue-xl); }
.wg-group-l .wg-ico .ztd-ico { width: 16px; height: 16px; stroke-width: 1.7; }
.wg-group-name { font-size: 14px; font-weight: 600; color: var(--blue-dark); font-family: 'Inter', sans-serif; }
.wg-group-count { font-family: 'Geist Mono', monospace; font-size: 10px; color: var(--gray-l); }
.wg-avs { display: flex; }
.wga { width: 26px; height: 26px; border-radius: 50%; border: 2px solid white; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: white; margin-left: -7px; }
.wga:first-child { margin-left: 0; }
.wga-1 { background: var(--blue); }
.wga-2 { background: #1A7A5E; }
.wga-3 { background: #B45309; }
.wga-4 { background: #7C3AED; }
.wga-5 { background: #DC2626; }
.wga-m { background: var(--gray-l); }
.wg-bar-wrap { background: var(--surface); border-radius: 12px; padding: 14px; border: 1px solid var(--border); }
.wg-bar-header { display: flex; justify-content: space-between; font-family: 'Geist Mono', monospace; font-size: 10px; color: var(--gray-l); margin-bottom: 8px; }
.wg-bar-val { color: var(--blue); }
.wg-bar { height: 6px; background: var(--gray-xl); border-radius: 100px; overflow: hidden; }
.wg-bar-fill { height: 100%; width: 62%; background: linear-gradient(90deg, var(--blue), var(--blue-xl)); border-radius: 100px; }
.wg-text .section-p { margin-bottom: 28px; }
.wg-list { display: flex; flex-direction: column; gap: 14px; }
.wg-item { display: flex; gap: 12px; align-items: flex-start; }
.wg-bullet { width: 32px; height: 32px; border-radius: 8px; background: var(--blue-ultra); border: 1px solid rgba(47,93,132,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; margin-top: 2px; color: var(--blue); }
.wg-bullet .ztd-ico { width: 18px; height: 18px; }
.wg-item p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.wg-item strong { color: var(--blue-dark); font-weight: 600; }

/* ═══════════════════════════════════════════
   SECURITY
═══════════════════════════════════════════ */
.sec-section {
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
}
.sec-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-xl), transparent); opacity: 0.5; }
.sec-section .tag { color: var(--blue-xl); }
.sec-section .tag::before { background: var(--blue-xl); }
.sec-section .section-h { color: white; }
.sec-section .section-p { color: rgba(255,255,255,0.55); }
.sec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.sec-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--r-lg); padding: 28px 24px; transition: all 0.25s; }
.sec-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-3px); border-color: rgba(255,255,255,0.15); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.sec-ico { width: 48px; height: 48px; border-radius: 12px; background: rgba(47,93,132,0.3); border: 1px solid rgba(91,156,196,0.25); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; color: var(--blue-xl); }
.sec-ico .ztd-ico { width: 24px; height: 24px; stroke-width: 1.7; }
.sec-card h3 { font-size: 19px; font-weight: 700; color: white; margin-bottom: 9px; }
.sec-card p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* Security CTA — downloads + page link */
.sec-cta {
  margin-top: 28px;
  background: linear-gradient(135deg, rgba(91,156,196,0.10) 0%, rgba(91,156,196,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.sec-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,156,196,0.55), transparent);
}
.sec-cta-head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 28px;
}
.sec-cta-ico {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91,156,196,0.28) 0%, rgba(47,93,132,0.32) 100%);
  border: 1px solid rgba(91,156,196,0.32);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-xl);
  flex-shrink: 0;
}
.sec-cta-ico .ztd-ico { width: 30px; height: 30px; stroke-width: 1.6; }
.sec-cta-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-xl);
  margin-bottom: 8px;
}
.sec-cta-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: white;
  margin-bottom: 8px;
}
.sec-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}
.sec-cta-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sec-cta-card {
  display: grid;
  grid-template-columns: 44px 1fr 22px;
  gap: 14px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.sec-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91,156,196,0.10) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.sec-cta-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(91,156,196,0.35);
  transform: translateY(-2px);
}
.sec-cta-card:hover::before { opacity: 1; }
.sec-cta-card-ico {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: rgba(91,156,196,0.14);
  border: 1px solid rgba(91,156,196,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-xl);
  flex-shrink: 0;
}
.sec-cta-card-ico .ztd-ico { width: 22px; height: 22px; stroke-width: 1.7; }
.sec-cta-card-body { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.sec-cta-card-label {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-xl);
}
.sec-cta-card-title {
  font-size: 14.5px;
  font-weight: 600;
  color: white;
  line-height: 1.35;
  font-family: 'Inter', sans-serif;
}
.sec-cta-card-arrow {
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: transform 0.25s ease, color 0.25s ease;
}
.sec-cta-card-arrow .ztd-ico { width: 18px; height: 18px; stroke-width: 1.8; }
.sec-cta-card:hover .sec-cta-card-arrow { color: var(--blue-xl); transform: translateX(3px); }
.sec-cta-card-link { background: rgba(91,156,196,0.10); border-color: rgba(91,156,196,0.28); }

@media (max-width: 960px) {
  .sec-cta { padding: 26px; }
  .sec-cta-head { grid-template-columns: 1fr; gap: 16px; }
  .sec-cta-ico { width: 52px; height: 52px; }
  .sec-cta-ico .ztd-ico { width: 24px; height: 24px; }
  .sec-cta-actions { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   GUEST
═══════════════════════════════════════════ */
.guest-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.guest-panel { background: white; border: 1px solid var(--border-b); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.guest-panel::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg, var(--blue-xl), var(--blue)); }
.gp-title { font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.gp-title .ztd-ico { width: 18px; height: 18px; color: var(--blue); }
.gp-label { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-l); margin-bottom: 5px; display: block; }
.gp-input { width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 9px 13px; font-size: 14px; color: var(--text-muted); font-family: 'Geist Mono', monospace; margin-bottom: 13px; display: flex; align-items: center; gap: 8px; }
.gp-input .ztd-ico { width: 14px; height: 14px; color: var(--blue); flex-shrink: 0; }
.gp-perms { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; margin-bottom: 14px; }
.gp-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 13px; font-size: 15px; color: var(--text-muted); border-bottom: 1px solid var(--border); font-family: 'Inter', sans-serif; }
.gp-row:last-child { border-bottom: none; }
.toggle { width: 36px; height: 20px; border-radius: 100px; position: relative; cursor: pointer; transition: background 0.2s; flex-shrink: 0; }
.toggle.on { background: var(--blue); box-shadow: 0 0 8px rgba(47,93,132,0.3); }
.toggle.off { background: var(--gray-xl); }
.toggle::after { content:''; position:absolute; width:14px; height:14px; background:white; border-radius:50%; top:3px; transition:left 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.toggle.on::after { left: 19px; }
.toggle.off::after { left: 3px; }
.gp-expiry { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--blue); }
.gp-btn { width: 100%; background: var(--blue); color: white; border: none; border-radius: var(--r-sm); padding: 12px; font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 600; cursor: pointer; box-shadow: 0 4px 16px rgba(47,93,132,0.25); transition: all 0.2s; }
.gp-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   COMMUNICATION
═══════════════════════════════════════════ */
.comm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.comm-card { border-radius: var(--r-lg); padding: 36px 30px; border: 1px solid var(--border); transition: transform 0.25s, box-shadow 0.25s; }
.comm-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.comm-card.c-blue { background: var(--blue); border-color: var(--blue); }
.comm-card.c-light { background: var(--blue-ultra); border-color: rgba(47,93,132,0.15); }
.comm-card.c-white { background: white; }
.comm-icon { font-size: 34px; margin-bottom: 18px; display: block; line-height: 0; }
.comm-icon .ztd-ico { width: 38px; height: 38px; }
.c-blue .comm-icon .ztd-ico { color: rgba(255,255,255,0.95); }
.c-light .comm-icon .ztd-ico { color: var(--blue); }
.c-white .comm-icon .ztd-ico { color: var(--blue); }
.comm-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.c-blue h3 { color: white; }
.c-light h3, .c-white h3 { color: var(--blue-dark); }
.comm-card p { font-size: 16px; line-height: 1.65; }
.c-blue p { color: rgba(255,255,255,0.75); }
.c-light p, .c-white p { color: var(--text-muted); }
.comm-sub { display: inline-block; margin-top: 14px; font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; }
.c-blue .comm-sub { color: rgba(255,255,255,0.5); }
.c-light .comm-sub, .c-white .comm-sub { color: var(--blue); }

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing-section { background: var(--surface); }
.pricing-head { text-align: center; }
.pricing-head .section-p { margin: 0 auto 32px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; align-items: start; }

/* Info icon next to feature item */
.price-features .pf { position: relative; }
.pf-text { flex: 1; }
.pf-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  margin-left: 4px;
  color: var(--gray-l);
  text-decoration: none;
  border-radius: 50%;
  flex-shrink: 0;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.pf-info .ztd-ico { width: 14px; height: 14px; stroke-width: 2; }
.pf-info:hover { color: var(--blue); background: var(--blue-ultra); transform: scale(1.1); }

/* Custom plan card (enterprise contact) */
.custom-plan-card {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px 22px;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  text-decoration: none;
  color: white;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 28px rgba(26,52,78,0.20);
}
.custom-plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(91,156,196,0.30) 0%, transparent 60%);
  pointer-events: none;
}
.custom-plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(26,52,78,0.28);
}
.custom-plan-ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: white;
  position: relative;
  backdrop-filter: blur(6px);
}
.custom-plan-ico .ztd-ico { width: 24px; height: 24px; stroke-width: 1.7; }
.custom-plan-text { position: relative; }
.custom-plan-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin: 0 0 4px;
}
.custom-plan-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin: 0;
}
.custom-plan-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: white;
  color: var(--blue-dark);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.custom-plan-cta .ztd-ico { width: 14px; height: 14px; stroke-width: 2.2; transition: transform 0.25s ease; }
.custom-plan-card:hover .custom-plan-cta .ztd-ico { transform: translateX(3px); }
@media (max-width: 720px) {
  .custom-plan-card { grid-template-columns: 1fr; text-align: center; padding: 22px; }
  .custom-plan-ico { margin: 0 auto; }
  .custom-plan-cta { justify-self: center; }
}

/* Credits info card */
.credits-card {
  margin-top: 14px;
  background: linear-gradient(135deg, var(--blue-ultra) 0%, white 100%);
  border: 1.5px solid rgba(47,93,132,0.16);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 4px 18px rgba(26,52,78,0.05);
  scroll-margin-top: 110px;
}
.credits-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: white;
  border: 1px solid rgba(47,93,132,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(47,93,132,0.10);
}
.credits-icon .ztd-ico { width: 24px; height: 24px; stroke-width: 1.7; }
.credits-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--blue-dark);
  margin: 0 0 4px;
}
.credits-text p {
  font-size: 14px; color: var(--text-muted); line-height: 1.55;
  margin: 0;
}
@media (max-width: 720px) {
  .credits-card { flex-direction: column; text-align: center; padding: 22px; }
}
.price-card { background: white; border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 34px 28px; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.price-card.featured { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,93,132,0.07), var(--shadow-lg); }
.price-card.featured::before {
  content: '';
  position: absolute;
  top: -1.5px;
  left: -1.5px;
  right: -1.5px;
  bottom: -1.5px;
  background: linear-gradient(90deg, var(--blue), var(--blue-xl));
  border-radius: calc(var(--r-lg) + 1.5px);
  -webkit-mask: linear-gradient(180deg, #000 0, #000 5.5px, transparent 5.5px);
          mask: linear-gradient(180deg, #000 0, #000 5.5px, transparent 5.5px);
  pointer-events: none;
}
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 5px 18px; border-radius: 100px; white-space: nowrap; box-shadow: 0 4px 12px rgba(47,93,132,0.3); }
.price-tier { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 14px; }
.price-amount { display: flex; align-items: flex-start; gap: 3px; margin-bottom: 5px; }
.price-cur { font-size: 22px; font-weight: 700; color: var(--gray); padding-top: 8px; }
.price-num { font-size: 62px; font-weight: 700; color: var(--blue-dark); line-height: 1; letter-spacing: -2px; }
.price-per { font-size: 15px; color: var(--gray-l); align-self: flex-end; padding-bottom: 8px; }
.price-custom { font-size: 36px; font-weight: 700; color: var(--blue-dark); letter-spacing: -1px; padding: 12px 0; }
.price-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 22px; line-height: 1.5; }
.price-div { height: 1px; background: var(--border); margin-bottom: 20px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; padding: 0; }
.pf { display: flex; align-items: flex-start; gap: 9px; font-size: 16px; color: var(--text-muted); line-height: 1.4; }
.pf-dot { width: 16px; height: 16px; background: var(--green-bg); border: 1px solid rgba(26,122,94,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.pf-dot svg { width: 8px; height: 8px; stroke: var(--green); fill: none; stroke-width: 3; }
.price-btn { width: 100%; padding: 13px; border-radius: var(--r-sm); font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; text-align: center; text-decoration: none; display: block; }
.price-btn.solid { background: var(--blue); color: white; box-shadow: 0 4px 16px rgba(47,93,132,0.25); }
.price-btn.solid:hover { background: var(--blue-dark); transform: translateY(-1px); }
.price-btn.outline { background: transparent; color: var(--blue); border: 1.5px solid var(--border-b); }
.price-btn.outline:hover { border-color: var(--blue); background: var(--blue-ultra); }
.price-footer { text-align: center; margin-top: 28px; font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--gray-l); letter-spacing: 0.5px; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-wrap { display: grid; grid-template-columns: 360px 1fr; gap: 72px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; cursor: pointer; font-size: 18px; font-weight: 600; color: var(--blue-dark); gap: 16px; user-select: none; transition: color 0.2s; }
.faq-q:hover { color: var(--blue); }
.faq-plus { width: 26px; height: 26px; border: 1.5px solid var(--border-b); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; color: var(--blue); flex-shrink: 0; transition: all 0.25s; }
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--blue); border-color: var(--blue); color: white; }
.faq-a { font-size: 16px; color: var(--text-muted); line-height: 1.72; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }

/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.cta-final {
  padding: 120px 0;
  background: var(--blue-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 500px; background: radial-gradient(ellipse, rgba(47,93,132,0.4) 0%, transparent 65%); pointer-events: none; }
.cta-final::after { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg, transparent, rgba(91,156,196,0.5), transparent); }
.cta-label { font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-xl); margin-bottom: 22px; display: block; position: relative; }
.cta-final h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -1.5px; color: white; margin-bottom: 18px; position: relative; }
.cta-final > .container > p { font-size: 19px; color: rgba(255,255,255,0.6); font-weight: 400; margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; position: relative; line-height: 1.65; }
.cta-btns { display: flex; gap: 12px; justify-content: center; position: relative; flex-wrap: wrap; }
.btn-white { font-family: 'Inter', sans-serif; font-size: 19px; font-weight: 600; color: var(--blue-dark); background: white; border: none; cursor: pointer; padding: 15px 32px; border-radius: var(--r-sm); transition: all 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.15); text-decoration: none; display: inline-flex; align-items: center; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }
.btn-white-outline { font-family: 'Inter', sans-serif; font-size: 19px; font-weight: 500; color: rgba(255,255,255,0.8); background: transparent; border: 1.5px solid rgba(255,255,255,0.25); cursor: pointer; padding: 14px 30px; border-radius: var(--r-sm); transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center; }
.btn-white-outline:hover { border-color: rgba(255,255,255,0.6); color: white; }
.cta-note { margin-top: 22px; font-family: 'Geist Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.3); position: relative; letter-spacing: 0.3px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer { border-top: 1px solid var(--border); padding: 64px 0 30px; background: var(--surface); }
.footer-top {
  display: grid;
  grid-template-columns: minmax(300px, 2fr) 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand-logo img { height: 56px; width: auto; display: block; filter: brightness(0) saturate(100%) invert(23%) sepia(40%) saturate(700%) hue-rotate(180deg) brightness(80%); }
.footer-brand-logo .custom-logo-link img { height: 56px !important; width: auto !important; }
.footer-brand-desc { font-size: 15px; color: var(--text-muted); line-height: 1.65; max-width: 360px; margin: 0; }

.footer-company {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-company-name {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue-dark);
  font-weight: 500;
}
.footer-address {
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-meta { display: flex; flex-direction: column; gap: 4px; }
.footer-meta-row { display: flex; gap: 8px; align-items: baseline; font-family: 'Geist Mono', monospace; font-size: 12px; }
.footer-meta-label { color: var(--gray-l); letter-spacing: 0.5px; min-width: 42px; text-transform: uppercase; font-size: 10px; }
.footer-meta-val { color: var(--blue-dark); }
.footer-meta-link { color: var(--blue); text-decoration: none; transition: color 0.2s; }
.footer-meta-link:hover { color: var(--blue-dark); text-decoration: underline; text-underline-offset: 3px; }

.footer-col h4 { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-l); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; margin: 0; }
.footer-col ul li a { font-size: 15px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--gray-l); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--gray-l); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--blue); }

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-section { padding: 80px 0 100px; background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%); }
.contact-head { text-align: center; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.contact-form-wrap {
  background: white;
  border: 1.5px solid var(--border-b);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-xl), var(--accent));
}

.contact-msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  margin-bottom: 22px;
  font-size: 14px;
  border: 1px solid;
}
.contact-msg .ztd-ico { width: 18px; height: 18px; }
.contact-msg.success { background: var(--green-bg); border-color: rgba(26,122,94,0.25); color: var(--green); }
.contact-msg.error   { background: rgba(220,38,38,0.06); border-color: rgba(220,38,38,0.25); color: #B91C1C; }
.contact-msg.warn    { background: rgba(245,158,11,0.07); border-color: rgba(245,158,11,0.30); color: #B45309; }
.contact-msg strong  { font-size: 15px; }
.contact-msg span    { color: var(--text-muted); font-size: 13px; }

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  margin-bottom: 22px;
}
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-full  { grid-column: 1 / -1; }
.cf-field label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.cf-req { color: var(--blue); }

.cf-field input[type="text"],
.cf-field input[type="email"],
.cf-field select,
.cf-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 13px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(47,93,132,0.10);
}
.cf-field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.cf-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232F5D84' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
}
.cf-field.has-error input,
.cf-field.has-error select,
.cf-field.has-error textarea {
  border-color: rgba(220,38,38,0.55);
  background: rgba(220,38,38,0.04);
}
.cf-field.has-error label { color: #B91C1C; }

/* Inline per-field error message */
.cf-error {
  display: none;
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px;
  line-height: 1.4;
  color: #B91C1C;
  margin-top: 1px;
}
.cf-field.has-error .cf-error:not(:empty) { display: block; }

/* ═══════════════════════════════════════════
   ABOUT PAGE (Chi siamo)
═══════════════════════════════════════════ */
.about-page { padding: 90px 0; }
.about-head { margin-bottom: 42px; }
.about-body { max-width: 760px; margin: 0 auto; }
.about-lead { font-size: 18px; line-height: 1.75; color: var(--text); margin: 0 0 20px; }
.about-body > p { font-size: 16px; line-height: 1.75; color: var(--text-muted); margin: 0 0 16px; }
.about-h2 { font-family: 'Inter', sans-serif; font-size: 24px; font-weight: 700; color: var(--blue-dark); margin: 42px 0 14px; letter-spacing: -0.2px; }
.about-contact { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px 24px; margin: 10px 0 26px; }
.about-company-name { font-weight: 700; color: var(--blue-dark); margin-bottom: 4px; }
.about-contact address { font-style: normal; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.about-meta { font-family: 'Geist Mono', monospace; font-size: 13px; color: var(--text-muted); line-height: 1.9; }
.about-meta a, .about-cta a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.about-meta a:hover, .about-cta a:hover { color: var(--blue-dark); }
.about-cta { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin-top: 6px; }
@media (max-width: 600px) {
  .about-page { padding: 60px 0; }
  .about-h2 { font-size: 21px; }
  .about-lead { font-size: 17px; }
}

.cf-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cf-radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-size: 13px;
  font-family: 'Geist Mono', monospace;
  color: var(--text-muted);
  transition: all 0.2s;
  user-select: none;
}
.cf-radio input { position: absolute; opacity: 0; pointer-events: none; }
.cf-radio:hover { border-color: rgba(47,93,132,0.4); color: var(--blue); }
.cf-radio:has(input:checked) {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(47,93,132,0.25);
}

.cf-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.cf-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-b);
  border-radius: 5px;
  background: white;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s;
}
.cf-check input[type="checkbox"]:checked {
  background: var(--blue);
  border-color: var(--blue);
}
.cf-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px; left: 6px;
  width: 4px; height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cf-check a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.cf-check a:hover { color: var(--blue-dark); }
.cf-field.has-error .cf-check { color: #B91C1C; }
.cf-field.has-error .cf-check input { border-color: rgba(220,38,38,0.55); }

.cf-turnstile { margin-top: 4px; }
.cf-field.has-error .cf-turnstile { outline: 1px solid rgba(220,38,38,0.4); outline-offset: 6px; border-radius: 4px; }

.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: white;
  background: var(--blue);
  border: none;
  cursor: pointer;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(47,93,132,0.28);
}
.cf-submit .ztd-ico { width: 16px; height: 16px; stroke-width: 2; }
.cf-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(47,93,132,0.36);
}
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.cf-note {
  margin-top: 18px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--gray-l);
}

/* Side cards */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 110px;
}
.contact-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 20px;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover {
  border-color: rgba(47,93,132,0.32);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.cc-ico {
  grid-row: 1 / -1;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-ultra);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  border: 1px solid rgba(47,93,132,0.18);
}
.cc-ico .ztd-ico { width: 18px; height: 18px; stroke-width: 1.7; }
.cc-label {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gray-l);
}
.cc-value {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
}
.cc-mono { font-family: 'Geist Mono', monospace; font-size: 13px; color: var(--blue); letter-spacing: 0.3px; }
.cc-link { text-decoration: none; transition: color 0.2s; }
.cc-link:hover { color: var(--blue-dark); }

@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-side { position: static; }
  .cf-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}

/* ═══════════════════════════════════════════
   SECURITY PAGE
═══════════════════════════════════════════ */
.sec-page { padding: 80px 0 100px; background: linear-gradient(180deg, var(--white) 0%, var(--surface) 100%); }
.sec-page-head { text-align: center; margin-bottom: 48px; }
.sec-page-dl {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.sec-page-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-dark);
  background: white;
  border: 1.5px solid var(--border-b);
  padding: 9px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.sec-page-dl-btn .ztd-ico { width: 15px; height: 15px; color: var(--blue); stroke-width: 1.8; }
.sec-page-dl-btn:hover { border-color: var(--blue); background: var(--blue-ultra); transform: translateY(-1px); }

/* Featured CREST / Cyberglobal card */
.sec-crest {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto 52px;
  padding: 28px 30px;
  background: linear-gradient(135deg, var(--blue-ultra) 0%, #ffffff 100%);
  border: 1px solid rgba(47,93,132,0.22);
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(26,52,78,0.10);
  position: relative;
  overflow: hidden;
}
.sec-crest::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px; background: linear-gradient(180deg, var(--blue-l), var(--blue)); }
.sec-crest-badge {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(47,93,132,0.30);
}
.sec-crest-badge .ztd-ico { width: 26px; height: 26px; color: #fff; stroke-width: 2; }
.sec-crest-eyebrow { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.sec-crest-title { font-family: 'Inter', sans-serif; font-size: 21px; font-weight: 700; color: var(--blue-dark); margin: 0 0 10px; letter-spacing: -0.3px; }
.sec-crest-text { font-size: 15.5px; line-height: 1.7; color: var(--text-muted); margin: 0 0 18px; }
.sec-crest-text a { color: var(--blue); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.sec-crest-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.sec-crest-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  padding: 11px 20px; border-radius: 10px; text-decoration: none;
  box-shadow: 0 4px 14px rgba(47,93,132,0.25); transition: all 0.2s;
}
.sec-crest-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
.sec-crest-btn .ztd-ico { width: 16px; height: 16px; stroke-width: 2; }
.sec-crest-link { display: inline-flex; align-items: center; gap: 6px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--blue); text-decoration: none; }
.sec-crest-link .ztd-ico { width: 15px; height: 15px; transition: transform 0.2s; }
.sec-crest-link:hover .ztd-ico { transform: translateX(3px); }
@media (max-width: 600px) {
  .sec-crest { flex-direction: column; gap: 16px; padding: 24px 22px; }
  .sec-crest-title { font-size: 19px; }
}

/* Dark variant — inside the home security section (--blue-dark bg) */
.sec-crest-dark {
  max-width: none;
  margin: 28px 0 0;
  background: linear-gradient(135deg, rgba(91,156,196,0.14) 0%, rgba(91,156,196,0.05) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}
.sec-crest-dark::before { background: linear-gradient(180deg, var(--blue-xl), var(--blue)); }
.sec-crest-dark .sec-crest-badge { background: var(--blue); box-shadow: 0 6px 16px rgba(0,0,0,0.35); }
.sec-crest-dark .sec-crest-badge .ztd-ico { color: #fff; }
.sec-crest-dark .sec-crest-eyebrow { color: var(--blue-xl); }
.sec-crest-dark .sec-crest-title { color: #fff; }
.sec-crest-dark .sec-crest-text { color: rgba(255,255,255,0.6); }
.sec-crest-dark .sec-crest-text a { color: var(--blue-xl); }
.sec-crest-dark .sec-crest-btn { background: var(--blue); }
.sec-crest-dark .sec-crest-btn:hover { background: var(--blue-l); }
.sec-crest-dark .sec-crest-link { color: var(--blue-xl); }

.sec-page-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 56px;
}
.sec-page-pillar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.sec-page-pillar:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.sec-page-pillar-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-ultra);
  border: 1px solid rgba(47,93,132,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.sec-page-pillar-ico .ztd-ico { width: 24px; height: 24px; stroke-width: 1.7; }
.sec-page-pillar h3 { font-size: 18px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.sec-page-pillar p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

.sec-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.sec-page-block {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 30px 26px;
  position: relative;
}
.sec-page-block-num {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sec-page-block-num::after { content:''; width: 22px; height: 1px; background: var(--blue); display: inline-block; }
.sec-page-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.sec-page-block p { font-size: 15.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.sec-page-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.sec-page-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.6;
}
.sec-page-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 12px;
  background: var(--green-bg);
  border: 1px solid rgba(26,122,94,0.25);
  border-radius: 50%;
}
.sec-page-list li::after {
  content: '';
  position: absolute;
  left: 3px; top: 11px;
  width: 6px; height: 4px;
  border-left: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  transform: rotate(-45deg);
}

.sec-page-cta {
  background: var(--blue-dark);
  border-radius: var(--r-lg);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sec-page-cta::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 380px; height: 100%;
  background: radial-gradient(ellipse at center right, rgba(91,156,196,0.25), transparent 70%);
  pointer-events: none;
}
.sec-page-cta h2 { color: white; font-size: 26px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.3px; }
.sec-page-cta p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.65; max-width: 540px; margin: 0; }
.sec-page-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; position: relative; }
.sec-page-cta-actions .btn-outline-lg {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: white;
}
.sec-page-cta-actions .btn-outline-lg:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); }
.sec-page-cta-actions .btn-outline-lg .ztd-ico { color: var(--blue-xl); }

@media (max-width: 960px) {
  .sec-page-pillars { grid-template-columns: 1fr; }
  .sec-page-grid { grid-template-columns: 1fr; }
  .sec-page-cta { grid-template-columns: 1fr; padding: 32px; }
  .sec-page-cta-actions { width: 100%; }
}

/* ═══════════════════════════════════════════
   MOBILE NAV (hamburger + drawer)
═══════════════════════════════════════════ */
.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(47,93,132,0.22);
  background: white;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-burger:hover { border-color: rgba(47,93,132,0.45); background: var(--blue-ultra); }
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.8px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

.nav-drawer { position: fixed; inset: 0; z-index: 999; visibility: hidden; pointer-events: none; }
.nav-drawer.open { visibility: visible; pointer-events: auto; }
.nav-drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(15,30,50,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-drawer.open .nav-drawer-overlay { opacity: 1; }
.nav-drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(86vw, 360px);
  height: 100%;
  background: white;
  box-shadow: -10px 0 40px rgba(15,30,50,0.18);
  display: flex;
  flex-direction: column;
  padding: 22px 24px 28px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  overflow-y: auto;
}
.nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
.nav-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.nav-drawer-logo img { height: 44px; width: auto; display: block; }
.nav-drawer-close {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(47,93,132,0.22);
  background: white;
  border-radius: 10px;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-drawer-close:hover { border-color: rgba(47,93,132,0.45); background: var(--blue-ultra); }

.nav-drawer-links .menu,
.nav-drawer-links ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 2px;
}
.nav-drawer-links a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-dark);
  text-decoration: none;
  padding: 14px 12px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-drawer-links a:hover,
.nav-drawer-links .current-menu-item > a { background: var(--blue-ultra); color: var(--blue); }

.nav-drawer-actions {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.nav-drawer-btn {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}
.nav-drawer-btn-ghost {
  color: var(--blue-dark);
  background: transparent;
  border: 1.5px solid rgba(47,93,132,0.28);
}
.nav-drawer-btn-ghost:hover { background: var(--blue-ultra); border-color: rgba(47,93,132,0.55); }
.nav-drawer-btn-cta {
  color: white;
  background: var(--blue);
  border: 1.5px solid var(--blue);
  box-shadow: 0 4px 14px rgba(47,93,132,0.25);
}
.nav-drawer-btn-cta:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.nav-drawer-lang {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

body.nav-locked { overflow: hidden; }

/* ═══════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   WP ADMIN BAR OFFSET
═══════════════════════════════════════════ */
.admin-bar nav { top: 32px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5,.bc-6,.bc-last { grid-column: span 1; }
  .sec-grid,.pricing-grid,.comm-grid { grid-template-columns: 1fr; }
  .wg-layout,.guest-layout,.faq-wrap,.footer-top { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-inner { height: 72px; }
  .nav-logo img,
  .custom-logo-link img { height: 44px !important; }
  .mockup-side { display: none; }
  .mockup-body { grid-template-columns: 1fr; }
  .hero-mockup-wrap { margin: 0 -20px; padding: 0 20px; }
  body { cursor: auto; }
  .cursor,.cursor-ring { display: none; }
  .container { padding: 0 20px; }
  section { padding: 72px 0; }
  .hero { padding: 64px 0 0; }
  .hero-headline { letter-spacing: -1px; }
  .faq-wrap { gap: 32px; }
  .faq-item.open .faq-a { max-height: 600px; }
  .wg-panel,.guest-panel { padding: 22px; }
  .price-card { padding: 28px 22px; }
  .cta-final { padding: 80px 0; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .btn-primary-lg, .btn-outline-lg { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-white, .btn-white-outline { width: 100%; justify-content: center; max-width: 320px; }
  .bento { grid-template-columns: 1fr; }
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5,.bc-6,.bc-last { grid-column: span 1; }
  .container { padding: 0 18px; }
  section { padding: 60px 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-meta-row { flex-wrap: wrap; }
  .footer-address { word-break: break-word; }
  .hero-checks { gap: 8px 18px; }
  .hc { font-size: 14px; }
  .section-p { font-size: 17px; }
}
