/* CG Constructions — v2
   Midnight base · brand indigo→cyan gradients · construction-orange heat accent */

:root {
  --night: #050816;
  --night-2: #0B1030;
  --night-3: #121a45;
  --indigo: #2E3192;
  --violet: #5B5FEF;
  --cyan: #00AEEF;
  --sky: #5CE1FF;
  --orange: #FF6A2B;
  --amber: #FFB02E;
  --cream: #F7F5F0;
  --mist: #EEF1FB;
  --white: #FFFFFF;
  --ink: #0B1030;
  --text: #2A3150;
  --muted: #646B88;
  --line: rgba(11, 16, 48, .1);
  --line-inv: rgba(255, 255, 255, .1);

  --g-brand: linear-gradient(120deg, #2E3192 0%, #5B5FEF 45%, #00AEEF 100%);
  --g-heat: linear-gradient(120deg, #FF6A2B 0%, #FFB02E 100%);
  --g-text: linear-gradient(100deg, #7C83FF 0%, #00AEEF 50%, #5CE1FF 100%);
  --g-text-warm: linear-gradient(100deg, #FF6A2B, #FFB02E);

  --f-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --f-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --f-serif: "Instrument Serif", Georgia, serif;

  --wrap: 1280px;
  --gutter: clamp(18px, 3.5vw, 40px);
  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --ease: cubic-bezier(.22, .8, .24, 1);
  --shadow: 0 24px 60px -20px rgba(11, 16, 48, .25);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0; font-family: var(--f-body); font-size: 16px; line-height: 1.65; color: var(--text);
  background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4 { font-family: var(--f-display); color: var(--ink); line-height: 1.1; margin: 0; letter-spacing: -.03em; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--cyan); color: var(--night); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 999; background: #fff; padding: 8px 14px; }

/* ================= Type ================= */
.tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 8px; border-radius: 99px;
  font-family: var(--f-display); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--indigo); background: rgba(46, 49, 146, .07); border: 1px solid rgba(46, 49, 146, .12); margin-bottom: 18px;
}
.tag i { width: 20px; height: 20px; border-radius: 50%; background: var(--g-brand); display: grid; place-items: center; }
.tag i::after { content: ""; width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: pulse 2s infinite; }
.dark .tag, .hero .tag, .p-hero .tag, .cta .tag, .form-card .tag.inv { color: var(--sky); background: rgba(92, 225, 255, .08); border-color: rgba(92, 225, 255, .18); }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.55); opacity: .6; } }

.h1 { font-size: clamp(40px, 5.6vw, 76px); font-weight: 800; letter-spacing: -.045em; line-height: 1.02; }
.h2 { font-size: clamp(30px, 3.6vw, 50px); letter-spacing: -.04em; line-height: 1.06; }
.h3 { font-size: clamp(20px, 1.8vw, 24px); }
.serif { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.grad { background: var(--g-text); -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% auto; animation: gradMove 6s linear infinite; }
.grad-warm { background: var(--g-text-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
@keyframes gradMove { to { background-position: 200% center; } }
.lead { font-size: clamp(16px, 1.3vw, 18.5px); color: var(--muted); line-height: 1.65; }
.dark { background: var(--night); color: rgba(255, 255, 255, .72); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark .lead { color: rgba(255, 255, 255, .66); }

.head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px 60px; align-items: end; margin-bottom: 48px; }
.head .lead { margin: 0; }
.head.center { grid-template-columns: 1fr; text-align: center; justify-items: center; max-width: 760px; margin-inline: auto; }

/* ================= Buttons ================= */
.btn {
  --bx: 0px; --by: 0px;
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-display); font-weight: 600; font-size: 15px; letter-spacing: -.01em;
  padding: 15px 24px; border-radius: 99px; border: 0; cursor: pointer; white-space: nowrap; isolation: isolate;
  transform: translate(var(--bx), var(--by)); transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
}
.btn svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-grad { color: #fff; background: linear-gradient(120deg, #2E3192, #5B5FEF, #00AEEF, #5B5FEF, #2E3192); background-size: 300% 100%; animation: btnFlow 6s linear infinite; box-shadow: 0 12px 30px -10px rgba(91, 95, 239, .7); }
.btn-grad:hover { box-shadow: 0 18px 40px -10px rgba(0, 174, 239, .75); }
@keyframes btnFlow { to { background-position: 300% 0; } }
.btn-heat { color: #1a0d00; background: var(--g-heat); box-shadow: 0 12px 30px -10px rgba(255, 106, 43, .7); }
.btn-heat:hover { box-shadow: 0 18px 40px -8px rgba(255, 106, 43, .8); }
.btn-glass { color: #fff; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .22); backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255, 255, 255, .16); }
.btn-dark { color: #fff; background: var(--night); }
.btn-dark:hover { background: var(--indigo); }
.btn-light { color: var(--ink); background: #fff; border: 1px solid var(--line); }
.btn-light:hover { border-color: var(--indigo); color: var(--indigo); }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn .ico-c { width: 30px; height: 30px; border-radius: 50%; background: rgba(255, 255, 255, .18); display: grid; place-items: center; margin-right: -12px; }
.btn .ico-c svg { width: 15px; height: 15px; }

.link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-display); font-weight: 600; font-size: 15px; color: var(--indigo); }
.link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link:hover svg { transform: translateX(4px); }
.dark .link { color: var(--sky); }

/* ================= Logo ================= */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo svg { width: 48px; height: 48px; flex: none; filter: drop-shadow(0 4px 14px rgba(0, 174, 239, .35)); }
.logo .star-shine { animation: starShine 5s var(--ease) infinite; }
@keyframes starShine { 0%, 55% { transform: translateX(-120px); } 85%, 100% { transform: translateX(120px); } }
.logo-word { display: flex; flex-direction: column; line-height: 1; }
.logo-word b {
  font-family: var(--f-display); font-weight: 800; font-size: 21px; letter-spacing: .01em; white-space: nowrap;
  background: linear-gradient(105deg, #fff 0%, #fff 42%, #8FE8FF 50%, #fff 58%, #fff 100%); background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent; animation: wordShine 5s var(--ease) infinite;
}
.logo-word small { font-size: 9.5px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; color: rgba(255, 255, 255, .55); margin-top: 6px; }
@keyframes wordShine { 0%, 55% { background-position: 100% 0; } 85%, 100% { background-position: 0 0; } }
.logo.on-light .logo-word b { background-image: linear-gradient(105deg, #2E3192 0%, #2E3192 42%, #00AEEF 50%, #2E3192 58%, #2E3192 100%); }
.logo.on-light .logo-word small { color: var(--muted); }

/* ================= Header ================= */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: linear-gradient(90deg, var(--violet), var(--cyan), var(--amber)); z-index: 100; }

.topbar { background: var(--night); color: rgba(255, 255, 255, .7); font-size: 13px; position: relative; overflow: hidden; }
.topbar::before { content: ""; position: absolute; inset: auto 0 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 174, 239, .6), rgba(255, 176, 46, .5), transparent); }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 40px; }
.topbar ul { display: flex; gap: 24px; align-items: center; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; color: var(--cyan); }
.topbar .live { display: inline-flex; align-items: center; gap: 8px; }
.topbar .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #3BE08A; box-shadow: 0 0 0 0 rgba(59, 224, 138, .6); animation: ping 2s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 8px rgba(59, 224, 138, 0); } 100% { box-shadow: 0 0 0 0 rgba(59, 224, 138, 0); } }

.header { position: sticky; top: 0; z-index: 80; background: rgba(5, 8, 22, .82); backdrop-filter: blur(16px) saturate(160%); border-bottom: 1px solid var(--line-inv); transition: background .3s; }
.header.scrolled { background: rgba(5, 8, 22, .94); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 80px; transition: min-height .3s var(--ease); }
.header.scrolled .wrap { min-height: 68px; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav ul { display: flex; gap: 4px; }
.nav ul a { position: relative; display: block; font-family: var(--f-display); font-size: 14.5px; font-weight: 500; color: rgba(255, 255, 255, .78); padding: 9px 16px; border-radius: 99px; transition: color .25s, background .25s; }
.nav ul a:hover { color: #fff; background: rgba(255, 255, 255, .07); }
.nav ul a[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, .1); }
.nav ul a[aria-current="page"]::after { content: ""; position: absolute; left: 50%; bottom: 3px; width: 5px; height: 5px; margin-left: -2.5px; border-radius: 50%; background: var(--cyan); }
.nav-call { display: flex; align-items: center; gap: 10px; color: #fff; font-family: var(--f-display); font-size: 14px; font-weight: 600; }
.nav-call span.i { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .08); border: 1px solid var(--line-inv); }
.nav-call svg { width: 16px; height: 16px; color: var(--cyan); }
.nav-call small { display: block; font-size: 11px; color: rgba(255, 255, 255, .5); font-weight: 500; }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, .08); border: 1px solid var(--line-inv); cursor: pointer; padding: 0; place-items: center; }
.menu-btn span { display: block; width: 18px; height: 2px; background: #fff; margin: 4px auto; border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ================= Aurora background ================= */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aurora b { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; mix-blend-mode: screen; animation: drift 18s ease-in-out infinite alternate; }
.aurora b:nth-child(1) { width: 520px; height: 520px; background: #5B5FEF; top: -160px; left: -120px; }
.aurora b:nth-child(2) { width: 460px; height: 460px; background: #00AEEF; bottom: -200px; right: 10%; animation-duration: 22s; animation-delay: -6s; }
.aurora b:nth-child(3) { width: 340px; height: 340px; background: #FF6A2B; top: 30%; right: -120px; opacity: .35; animation-duration: 26s; animation-delay: -12s; }
@keyframes drift { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(80px, 40px) scale(1.15); } 100% { transform: translate(-40px, 90px) scale(.9); } }
.grid-bg { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 75%); }

/* ================= Hero ================= */
.hero { position: relative; overflow: hidden; background: var(--night); color: #fff; }
.hero-slides { position: absolute; inset: 0; }
.hero-slides img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.12); transition: opacity 1.6s ease, transform 7s linear; }
.hero-slides img.on { opacity: 1; transform: scale(1); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(5, 8, 22, .96) 0%, rgba(5, 8, 22, .82) 40%, rgba(11, 16, 48, .45) 75%, rgba(5, 8, 22, .6) 100%), linear-gradient(0deg, var(--night) 0%, transparent 35%); }
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 56px; align-items: center; padding-block: clamp(60px, 8vw, 104px) 56px; }
.hero h1 { color: #fff; }
.rotator { display: inline-grid; vertical-align: bottom; overflow: hidden; height: 1.08em; }
.rotator span { grid-area: 1 / 1; transform: translateY(110%); opacity: 0; transition: transform .8s var(--ease), opacity .8s var(--ease); white-space: nowrap; padding-right: .12em; }
.rotator span.on { transform: none; opacity: 1; }
.rotator span.out { transform: translateY(-110%); opacity: 0; }
.hero .lead { color: rgba(255, 255, 255, .72); max-width: 580px; margin: 24px 0 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.chips span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; padding: 8px 14px; border-radius: 99px; background: rgba(255, 255, 255, .06); border: 1px solid var(--line-inv); color: rgba(255, 255, 255, .85); }
.chips svg { width: 15px; height: 15px; color: var(--amber); }

.glass {
  position: relative; background: linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--r-lg); backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .6);
}
.quick { padding: 28px; }
.quick::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(140deg, rgba(92, 225, 255, .8), transparent 40%, transparent 60%, rgba(255, 176, 46, .7)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.quick h3 { color: #fff; font-size: 21px; }
.quick p { font-size: 14px; color: rgba(255, 255, 255, .62); margin: 6px 0 20px; }
.quick-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.quick-opts button { display: flex; align-items: center; gap: 9px; text-align: left; padding: 11px 12px; border-radius: 12px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .88); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .25s var(--ease); line-height: 1.25; }
.quick-opts button svg { width: 18px; height: 18px; flex: none; color: var(--sky); }
.quick-opts button:hover { background: rgba(255, 255, 255, .1); border-color: rgba(92, 225, 255, .5); transform: translateY(-2px); }
.quick-opts button.sel { background: rgba(0, 174, 239, .18); border-color: var(--cyan); color: #fff; }
.quick .btn { width: 100%; }
.quick-foot { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 12.5px; color: rgba(255, 255, 255, .55); }
.quick-foot svg { width: 14px; height: 14px; color: #3BE08A; }

.hero-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-inv); }
.hero-stats > div { padding: 26px 24px; position: relative; }
.hero-stats > div + div::before { content: ""; position: absolute; left: 0; top: 24px; bottom: 24px; width: 1px; background: var(--line-inv); }
.hero-stats strong { display: block; font-family: var(--f-display); font-size: clamp(30px, 3.2vw, 44px); font-weight: 700; letter-spacing: -.04em; line-height: 1; color: #fff; }
.hero-stats strong em { font-style: normal; background: var(--g-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats > div > span { display: block; margin-top: 8px; font-size: 13.5px; color: rgba(255, 255, 255, .58); }
.slide-dots { position: absolute; right: var(--gutter); bottom: 130px; z-index: 3; display: flex; gap: 8px; }
.slide-dots button { width: 28px; height: 4px; border-radius: 4px; border: 0; padding: 0; background: rgba(255, 255, 255, .25); cursor: pointer; overflow: hidden; position: relative; }
.slide-dots button.on::after { content: ""; position: absolute; inset: 0; background: var(--cyan); transform-origin: left; animation: dotFill 6s linear forwards; }
@keyframes dotFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ================= Marquee ================= */
.marquee { position: relative; background: var(--g-brand); overflow: hidden; padding-block: 18px; }
.marquee.alt { background: var(--night-2); padding-block: 14px; }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee.alt .marquee-track { animation-direction: reverse; animation-duration: 46s; }
.marquee-track span { display: inline-flex; align-items: center; gap: 28px; padding-right: 28px; font-family: var(--f-display); font-size: clamp(20px, 2.4vw, 32px); font-weight: 700; letter-spacing: -.03em; color: #fff; white-space: nowrap; }
.marquee.alt .marquee-track span { color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .35); font-size: clamp(18px, 2vw, 26px); }
.marquee-track svg { width: 22px; height: 22px; color: var(--amber); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ================= Sections ================= */
.sec { padding-block: clamp(64px, 7.5vw, 104px); position: relative; }
.sec.sm { padding-block: clamp(48px, 5.5vw, 72px); }
.bg-cream { background: var(--cream); }
.bg-mist { background: var(--mist); }
.bg-night { background: var(--night); }
.bg-night-2 { background: var(--night-2); }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 118px; gap: 16px; }
.b { position: relative; border-radius: var(--r); overflow: hidden; background: #fff; border: 1px solid var(--line); padding: 26px; }
.b-photo { padding: 0; border: 0; }
.b-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.b-photo:hover img { transform: scale(1.06); }
.b-photo .badge { position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 10px; background: rgba(5, 8, 22, .7); backdrop-filter: blur(10px); color: #fff; padding: 10px 16px 10px 10px; border-radius: 99px; font-size: 13.5px; font-weight: 600; }
.b-photo .badge i { width: 28px; height: 28px; border-radius: 50%; background: var(--g-heat); display: grid; place-items: center; font-style: normal; }
.b-photo .badge svg { width: 14px; height: 14px; color: #1a0d00; }
.b-brand { background: var(--g-brand); color: #fff; border: 0; display: flex; flex-direction: column; justify-content: space-between; }
.b-brand::after { content: ""; position: absolute; width: 260px; height: 260px; right: -80px; top: -80px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .28), transparent 70%); }
.b-brand blockquote { margin: 0; font-family: var(--f-serif); font-style: italic; font-size: clamp(22px, 2.1vw, 30px); line-height: 1.2; color: #fff; position: relative; z-index: 1; }
.b-brand cite { font-style: normal; font-size: 13.5px; color: rgba(255, 255, 255, .75); position: relative; z-index: 1; }
.b-stat { display: flex; flex-direction: column; justify-content: space-between; }
.b-stat strong { font-family: var(--f-display); font-size: 54px; font-weight: 800; letter-spacing: -.05em; line-height: 1; background: var(--g-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.b-stat > span { font-size: 14px; color: var(--muted); font-weight: 500; }
.b-stat.heat { background: var(--night); border: 0; }
.b-stat.heat strong { background: var(--g-heat); -webkit-background-clip: text; background-clip: text; }
.b-stat.heat > span { color: rgba(255, 255, 255, .65); }
.b h3 { font-size: 19px; margin-bottom: 10px; }
.b p { font-size: 14.5px; color: var(--muted); margin: 0; }
.b-dark { background: var(--night); border: 0; color: rgba(255, 255, 255, .7); }
.b-dark h3 { color: #fff; }
.b-dark p { color: rgba(255, 255, 255, .62); }
.mini-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; margin-top: 14px; }
.mini-list li { display: flex; gap: 9px; font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.35; }
.b-dark .mini-list li { color: rgba(255, 255, 255, .85); }
.mini-list li::before { content: ""; flex: none; width: 16px; height: 16px; margin-top: 1px; border-radius: 5px; background: var(--g-brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 10px no-repeat; }
.icon-row { display: flex; gap: 10px; margin-top: 16px; }
.icon-row span { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--mist); color: var(--indigo); }
.icon-row svg { width: 22px; height: 22px; }

/* Sector switcher */
.switch { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: stretch; }
.switch-list { display: flex; flex-direction: column; gap: 6px; }
.switch-list button {
  position: relative; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; text-align: left; width: 100%;
  padding: 15px 18px; border-radius: 16px; border: 1px solid transparent; background: transparent; color: rgba(255, 255, 255, .7); cursor: pointer; overflow: hidden;
  transition: background .3s, border-color .3s, color .3s;
}
.switch-list button .n { font-family: var(--f-display); font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, .4); }
.switch-list button strong { font-family: var(--f-display); font-size: 18px; font-weight: 600; letter-spacing: -.02em; }
.switch-list button svg { width: 18px; height: 18px; opacity: 0; transform: translateX(-8px); transition: all .3s var(--ease); color: var(--cyan); }
.switch-list button:hover { background: rgba(255, 255, 255, .04); color: #fff; }
.switch-list button.on { background: linear-gradient(100deg, rgba(91, 95, 239, .22), rgba(0, 174, 239, .08)); border-color: rgba(92, 225, 255, .25); color: #fff; }
.switch-list button.on .n { background: var(--g-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.switch-list button.on svg { opacity: 1; transform: none; }
.switch-list button.on::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 3px; border-radius: 3px; background: var(--g-heat); }
.switch-panel { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 560px; background: var(--night-2); }
.panel { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .6s var(--ease), visibility 0s .6s; }
.panel.on { opacity: 1; visibility: visible; transition: opacity .6s var(--ease); }
.panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 6s var(--ease); clip-path: inset(0 0 0 100%); }
.panel.on img { transform: scale(1); clip-path: inset(0 0 0 0); transition: transform 6s var(--ease), clip-path 1s var(--ease); }
.panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 8, 22, .96) 8%, rgba(5, 8, 22, .45) 55%, rgba(5, 8, 22, .1)); }
.panel-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 34px; transform: translateY(24px); opacity: 0; transition: all .8s var(--ease) .15s; }
.panel.on .panel-body { transform: none; opacity: 1; }
.panel-body h3 { font-size: clamp(26px, 2.6vw, 34px); color: #fff; margin-bottom: 12px; }
.panel-body p { color: rgba(255, 255, 255, .75); max-width: 560px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 22px; }
.pills span { font-size: 13px; font-weight: 500; padding: 7px 13px; border-radius: 99px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16); color: #fff; backdrop-filter: blur(6px); }

/* Expanding panels */
.expand { display: flex; gap: 12px; height: 500px; }
.ex { position: relative; flex: 1; min-width: 0; border-radius: var(--r); overflow: hidden; cursor: pointer; transition: flex .8s var(--ease); background: var(--night); }
.ex.on { flex: 4.2; }
.ex img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s; filter: saturate(.7) brightness(.8); }
.ex.on img { filter: none; }
.ex::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 8, 22, .92), rgba(5, 8, 22, .1) 60%); }
.ex-label { position: absolute; left: 50%; bottom: 26px; z-index: 1; transform: translateX(-50%) rotate(180deg); writing-mode: vertical-rl; font-family: var(--f-display); font-weight: 600; color: #fff; font-size: 16px; white-space: nowrap; transition: opacity .3s; }
.ex.on .ex-label { opacity: 0; }
.ex-num { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); z-index: 1; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-family: var(--f-display); font-size: 13px; font-weight: 600; color: #fff; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .25); backdrop-filter: blur(6px); transition: left .6s var(--ease), background .3s; }
.ex.on .ex-num { left: 38px; background: var(--g-heat); color: #1a0d00; border: 0; }
.ex-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 30px; opacity: 0; transform: translateY(20px); transition: all .5s var(--ease); pointer-events: none; min-width: 360px; }
.ex.on .ex-body { opacity: 1; transform: none; transition-delay: .35s; }
.ex-body h3 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.ex-body p { color: rgba(255, 255, 255, .75); max-width: 460px; margin: 0; font-size: 15px; }

/* Spotlight cards */
.spot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.spot {
  --mx: 50%; --my: 50%;
  position: relative; padding: 30px; border-radius: var(--r); background: rgba(255, 255, 255, .03); border: 1px solid var(--line-inv); overflow: hidden; isolation: isolate;
  transition: transform .4s var(--ease), border-color .4s;
}
.spot::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(420px circle at var(--mx) var(--my), rgba(91, 95, 239, .28), transparent 45%); opacity: 0; transition: opacity .4s; }
.spot::after { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: radial-gradient(300px circle at var(--mx) var(--my), rgba(92, 225, 255, .9), transparent 50%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s; pointer-events: none; }
.spot:hover { transform: translateY(-4px); }
.spot:hover::before, .spot:hover::after { opacity: 1; }
.spot-ico { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(140deg, rgba(91, 95, 239, .35), rgba(0, 174, 239, .15)); border: 1px solid rgba(92, 225, 255, .25); color: var(--sky); margin-bottom: 22px; }
.spot-ico svg { width: 26px; height: 26px; }
.spot h3 { font-size: 20px; color: #fff; margin-bottom: 10px; }
.spot p { font-size: 15px; color: rgba(255, 255, 255, .62); margin: 0; }
.spot .num { position: absolute; top: 22px; right: 26px; font-family: var(--f-display); font-size: 48px; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .12); }

/* Timeline */
.timeline { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; padding-top: 34px; }
.timeline .rail { position: absolute; left: 0; right: 0; top: 13px; height: 3px; border-radius: 3px; background: var(--line); overflow: hidden; }
.timeline .rail i { position: absolute; inset: 0; background: linear-gradient(90deg, var(--violet), var(--cyan), var(--amber)); transform-origin: 0 50%; transform: scaleX(var(--p, 0)); transition: transform .2s linear; }
.t-step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px 20px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.t-step::before { content: ""; position: absolute; top: -28px; left: 22px; width: 17px; height: 17px; border-radius: 50%; background: #fff; border: 3px solid var(--line); transition: border-color .4s, background .4s, box-shadow .4s; }
.t-step.lit::before { border-color: var(--cyan); background: var(--cyan); box-shadow: 0 0 0 6px rgba(0, 174, 239, .18); }
.t-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.t-step .k { font-family: var(--f-display); font-size: 12px; font-weight: 600; letter-spacing: .12em; color: var(--muted); }
.t-step .ic { width: 46px; height: 46px; border-radius: 14px; background: var(--mist); color: var(--indigo); display: grid; place-items: center; margin: 14px 0 16px; transition: background .4s, color .4s; }
.t-step.lit .ic { background: var(--g-brand); color: #fff; }
.t-step .ic svg { width: 22px; height: 22px; }
.t-step h3 { font-size: 17px; margin-bottom: 8px; }
.t-step p { font-size: 14px; color: var(--muted); margin: 0; }

/* Carousel */
.car-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 40px; flex-wrap: wrap; }
.car-nav { display: flex; gap: 10px; }
.car-nav button { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-inv); background: rgba(255, 255, 255, .05); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .3s, border-color .3s; }
.car-nav button:hover { background: var(--g-brand); border-color: transparent; }
.car-nav svg { width: 20px; height: 20px; }
.carousel { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-inline: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))); scroll-padding-inline: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))); cursor: grab; }
.carousel::-webkit-scrollbar { display: none; }
.carousel.drag { cursor: grabbing; scroll-snap-type: none; }
.card-p { flex: none; width: clamp(280px, 30vw, 400px); aspect-ratio: 4 / 5; position: relative; border-radius: var(--r); overflow: hidden; scroll-snap-align: start; background: var(--night-2); user-select: none; }
.card-p.w { width: clamp(300px, 44vw, 600px); }
.card-p img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform 1.2s var(--ease); }
.card-p:hover img { transform: scale(1.07); }
.card-p::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 8, 22, .9), transparent 55%); }
.card-p .cap { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; }
.card-p .cap small { display: inline-block; font-family: var(--f-display); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 5px 10px; border-radius: 99px; background: rgba(255, 176, 46, .16); color: var(--amber); border: 1px solid rgba(255, 176, 46, .3); margin-bottom: 10px; }
.card-p .cap strong { display: block; font-family: var(--f-display); font-size: 20px; font-weight: 600; color: #fff; letter-spacing: -.02em; line-height: 1.25; }
.car-progress { max-width: var(--wrap); margin: 30px auto 0; padding-inline: var(--gutter); }
.car-progress div { height: 3px; background: var(--line-inv); border-radius: 3px; overflow: hidden; }
.car-progress i { display: block; height: 100%; width: 30%; background: var(--g-text); border-radius: 3px; transform-origin: 0 50%; transition: transform .2s; }

/* Tabs (values) */
.tabs-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.tab-bar { position: relative; display: inline-flex; padding: 5px; border-radius: 99px; background: #fff; border: 1px solid var(--line); margin-bottom: 30px; flex-wrap: wrap; }
.tab-bar button { position: relative; z-index: 1; border: 0; background: none; cursor: pointer; padding: 11px 20px; border-radius: 99px; font-family: var(--f-display); font-size: 14.5px; font-weight: 600; color: var(--muted); transition: color .3s; }
.tab-bar button.on { color: #fff; }
.tab-bar .ind { position: absolute; top: 5px; bottom: 5px; left: 0; border-radius: 99px; background: var(--g-brand); transition: transform .5s var(--ease), width .5s var(--ease); box-shadow: 0 8px 20px -8px rgba(91, 95, 239, .7); }
.tab-panels { position: relative; min-height: 250px; }
.tab-p { position: absolute; inset: 0; opacity: 0; transform: translateY(14px); transition: all .5s var(--ease); pointer-events: none; }
.tab-p.on { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.tab-p h3 { font-size: clamp(26px, 2.8vw, 38px); margin-bottom: 16px; }
.tab-p p { font-size: 17px; color: var(--muted); }
.tab-media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 5 / 4; }
.tab-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.08); transition: opacity .7s, transform 1.4s var(--ease); }
.tab-media img.on { opacity: 1; transform: none; }
.tab-media .float { position: absolute; right: 18px; bottom: 18px; z-index: 1; padding: 16px 18px; border-radius: 16px; background: rgba(5, 8, 22, .72); backdrop-filter: blur(12px); color: #fff; display: flex; gap: 12px; align-items: center; max-width: 280px; font-size: 13.5px; line-height: 1.4; }
.tab-media .float i { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--g-heat); display: grid; place-items: center; }
.tab-media .float svg { width: 20px; height: 20px; color: #1a0d00; }

/* Audience cards */
.aud-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.aud { position: relative; padding: 28px 24px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s; }
.aud::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--g-brand); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.aud:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.aud:hover::before { transform: scaleX(1); }
.aud .ic { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--g-brand); color: #fff; margin-bottom: 18px; box-shadow: 0 10px 24px -8px rgba(91, 95, 239, .6); }
.aud:nth-child(even) .ic { background: var(--g-heat); color: #1a0d00; box-shadow: 0 10px 24px -8px rgba(255, 106, 43, .6); }
.aud .ic svg { width: 24px; height: 24px; }
.aud h3 { font-size: 18px; margin-bottom: 8px; }
.aud p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.faq-side { position: sticky; top: 110px; }
.help-card { margin-top: 28px; padding: 26px; border-radius: var(--r); background: var(--night); color: rgba(255, 255, 255, .7); position: relative; overflow: hidden; }
.help-card::before { content: ""; position: absolute; width: 240px; height: 240px; right: -90px; bottom: -110px; border-radius: 50%; background: radial-gradient(circle, rgba(0, 174, 239, .5), transparent 70%); }
.help-card h3 { color: #fff; font-size: 20px; margin-bottom: 6px; position: relative; }
.help-card p { font-size: 14.5px; position: relative; }
.help-card .row { display: flex; gap: 10px; flex-wrap: wrap; position: relative; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-family: var(--f-display); font-size: 17.5px; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: none; position: relative; width: 36px; height: 36px; border-radius: 50%; background: var(--mist); transition: background .3s, transform .4s var(--ease); }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: var(--indigo); border-radius: 2px; transition: transform .4s var(--ease), background .3s; }
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i { background: var(--g-brand); transform: rotate(180deg); }
.faq details[open] summary i::before, .faq details[open] summary i::after { background: #fff; }
.faq details[open] summary i::after { transform: rotate(0); }
.faq .ans { overflow: hidden; }
.faq .ans p { color: var(--muted); padding: 0 50px 22px 0; margin: 0; }

/* CTA */
.cta { position: relative; overflow: hidden; background: var(--night); }
.cta-box { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--night-2); padding: clamp(40px, 6vw, 72px); display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; isolation: isolate; }
.cta-box::before { content: ""; position: absolute; inset: 0; z-index: -1; background: conic-gradient(from var(--ang, 0deg) at 70% 50%, #2E3192, #5B5FEF, #00AEEF, #FF6A2B, #2E3192); opacity: .55; filter: blur(60px); animation: spin 14s linear infinite; }
@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes spin { to { --ang: 360deg; } }
.cta-box::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5, 8, 22, .85), rgba(5, 8, 22, .35)); }
.cta-box h2 { color: #fff; }
.cta-box p { color: rgba(255, 255, 255, .75); margin: 16px 0 0; font-size: 17px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.cta-actions .btn { width: 100%; }

/* ================= Footer ================= */
.footer { position: relative; background: var(--night); color: rgba(255, 255, 255, .6); font-size: 14.5px; overflow: hidden; }
.footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 174, 239, .6), rgba(255, 176, 46, .6), transparent); }
.f-top { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.4fr; gap: 40px; padding-block: 72px 48px; }
.f-top p { margin: 20px 0 22px; max-width: 340px; }
.footer h4 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #fff; font-weight: 600; margin-bottom: 20px; }
.footer li { margin-bottom: 10px; }
.footer a:hover { color: #fff; }
.f-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.f-contact svg { width: 18px; height: 18px; color: var(--cyan); flex: none; margin-top: 3px; }
.f-contact address { font-style: normal; }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-inv); background: rgba(255, 255, 255, .04); transition: background .3s, border-color .3s, transform .3s; }
.socials a:hover { background: var(--g-brand); border-color: transparent; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; color: #fff; }
.f-word { font-family: var(--f-display); font-weight: 800; font-size: clamp(38px, 8.4vw, 124px); letter-spacing: -.05em; line-height: .8; text-align: center; white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(255, 255, 255, .1); background: linear-gradient(90deg, rgba(91, 95, 239, .0), rgba(92, 225, 255, .22), rgba(255, 176, 46, .0)); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; animation: gradMove 8s linear infinite; user-select: none; margin-bottom: -.12em; }
.f-bottom { border-top: 1px solid var(--line-inv); }
.f-bottom .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px; font-size: 13.5px; }

/* ================= Floating UI ================= */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 70; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.fab a, .fab button { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; border: 0; cursor: pointer; box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .45); transition: transform .3s var(--ease), opacity .3s; }
.fab a:hover, .fab button:hover { transform: scale(1.08); }
.fab .wa { background: #25D366; color: #fff; position: relative; }
.fab .wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: ring 2.4s infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }
.fab .wa svg { width: 28px; height: 28px; }
.fab .top { position: relative; background: var(--night); color: #fff; opacity: 0; pointer-events: none; }
.fab .top.show { opacity: 1; pointer-events: auto; }
.fab .top svg.arr { width: 18px; height: 18px; }
.fab .top svg.ring { position: absolute; inset: 0; width: 54px; height: 54px; transform: rotate(-90deg); }
.fab .top .ring circle { fill: none; stroke: var(--cyan); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 150.8; stroke-dashoffset: 150.8; }
.side-tab { position: fixed; right: 0; top: 50%; z-index: 70; transform: translateY(-50%) ; writing-mode: vertical-rl; background: var(--g-heat); color: #1a0d00; border: 0; cursor: pointer; font-family: var(--f-display); font-weight: 700; font-size: 13.5px; letter-spacing: .06em; padding: 18px 11px; border-radius: 12px 0 0 12px; box-shadow: -8px 10px 30px -10px rgba(255, 106, 43, .7); display: flex; align-items: center; gap: 10px; transition: padding .3s var(--ease); }
.side-tab:hover { padding-right: 16px; }
.side-tab svg { width: 16px; height: 16px; transform: rotate(90deg); }

/* ================= Modal ================= */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; visibility: hidden; }
.modal.open { visibility: visible; }
.modal-bg { position: absolute; inset: 0; background: rgba(5, 8, 22, .7); backdrop-filter: blur(8px); opacity: 0; transition: opacity .4s; }
.modal.open .modal-bg { opacity: 1; }
.modal-card { position: relative; width: min(920px, 100%); max-height: calc(100vh - 40px); overflow: auto; display: grid; grid-template-columns: .85fr 1.15fr; border-radius: var(--r-lg); background: #fff; box-shadow: 0 40px 120px -20px rgba(0, 0, 0, .6); opacity: 0; transform: translateY(30px) scale(.96); transition: all .5s var(--ease); }
.modal.open .modal-card { opacity: 1; transform: none; }
.modal-side { position: relative; overflow: hidden; background: var(--night); color: rgba(255, 255, 255, .72); padding: 36px 32px; display: flex; flex-direction: column; isolation: isolate; }
.modal-side > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; z-index: -2; }
.modal-side::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(160deg, rgba(46, 49, 146, .92), rgba(5, 8, 22, .88) 60%, rgba(0, 174, 239, .5)); }
.modal-side h3 { color: #fff; font-size: 28px; margin: 22px 0 10px; }
.modal-side p { font-size: 14.5px; }
.modal-side ul { margin-top: auto; display: grid; gap: 12px; padding-top: 24px; }
.modal-side li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: #fff; }
.modal-side li svg { width: 18px; height: 18px; color: var(--amber); flex: none; }
.modal-side .call { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-inv); font-size: 13px; }
.modal-side .call a { display: block; font-family: var(--f-display); font-size: 19px; font-weight: 700; color: #fff; }
.modal-main { padding: 34px 34px 30px; position: relative; }
.modal-x { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--mist); cursor: pointer; display: grid; place-items: center; color: var(--ink); transition: background .3s, transform .4s var(--ease); z-index: 2; }
.modal-x:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }
.modal-x svg { width: 18px; height: 18px; }

/* Form (shared: modal + contact page) */
.steps { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-family: var(--f-display); font-size: 13px; font-weight: 600; color: var(--muted); }
.steps span { display: inline-flex; align-items: center; gap: 8px; }
.steps b { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--mist); color: var(--muted); font-size: 12px; transition: all .3s; }
.steps .on b { background: var(--g-brand); color: #fff; }
.steps .on { color: var(--ink); }
.steps hr { flex: 1; border: 0; height: 2px; background: var(--line); margin: 0; max-width: 60px; }
.fstep { display: none; animation: stepIn .5s var(--ease); }
.fstep.on { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
.fstep h4 { font-size: 20px; margin-bottom: 4px; }
.fstep .sub { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt label { display: flex; align-items: center; gap: 10px; padding: 12px 13px; border-radius: 12px; border: 1.5px solid var(--line); cursor: pointer; font-size: 14px; font-weight: 500; color: var(--ink); transition: all .25s var(--ease); line-height: 1.25; background: #fff; }
.opt label svg { width: 20px; height: 20px; color: var(--indigo); flex: none; }
.opt label:hover { border-color: rgba(91, 95, 239, .5); transform: translateY(-1px); }
.opt input:checked + label { border-color: var(--violet); background: linear-gradient(120deg, rgba(91, 95, 239, .1), rgba(0, 174, 239, .08)); box-shadow: 0 6px 18px -8px rgba(91, 95, 239, .6); }
.opt input:focus-visible + label { outline: 2px solid var(--cyan); outline-offset: 2px; }
.seg { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.seg .opt label { padding: 9px 14px; border-radius: 99px; font-size: 13.5px; }
.flabel { display: block; font-family: var(--f-display); font-size: 13px; font-weight: 600; color: var(--ink); margin: 18px 0 0; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fgrid .full { grid-column: 1 / -1; }
.fld { position: relative; }
.fld input, .fld textarea { width: 100%; font: inherit; font-size: 15px; color: var(--ink); background: var(--cream); border: 1.5px solid transparent; border-radius: 12px; padding: 22px 14px 8px; transition: border-color .25s, background .25s, box-shadow .25s; }
.fld textarea { min-height: 104px; resize: vertical; }
.fld label { position: absolute; left: 15px; top: 15px; font-size: 14.5px; color: var(--muted); pointer-events: none; transition: all .2s var(--ease); }
.fld input:focus, .fld textarea:focus { outline: 0; background: #fff; border-color: var(--violet); box-shadow: 0 0 0 4px rgba(91, 95, 239, .12); }
.fld input:focus + label, .fld input:not(:placeholder-shown) + label, .fld textarea:focus + label, .fld textarea:not(:placeholder-shown) + label { top: 6px; font-size: 11.5px; font-weight: 600; color: var(--violet); }
.fld.err input, .fld.err textarea { border-color: #E5484D; background: #fff5f5; }
.f-actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.f-actions .btn { flex: 1; }
.f-note { font-size: 12.5px; color: var(--muted); margin: 12px 0 0; text-align: center; }
.success { text-align: center; padding: 30px 10px; }
.success .tick { width: 84px; height: 84px; margin: 0 auto 20px; border-radius: 50%; background: var(--g-brand); display: grid; place-items: center; box-shadow: 0 20px 40px -12px rgba(91, 95, 239, .7); animation: pop .6s var(--ease); }
.success .tick svg { width: 40px; height: 40px; color: #fff; stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw .6s .3s forwards; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ================= Inner pages ================= */
.p-hero { position: relative; overflow: hidden; background: var(--night); color: #fff; }
.p-hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; padding-block: clamp(56px, 7vw, 92px); }
.p-hero h1 { color: #fff; font-size: clamp(38px, 5vw, 66px); }
.p-hero .lead { color: rgba(255, 255, 255, .7); margin: 20px 0 28px; max-width: 560px; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255, 255, 255, .55); margin-bottom: 20px; }
.crumbs a:hover { color: #fff; }
.crumbs svg { width: 14px; height: 14px; }
.collage { position: relative; height: 380px; }
.collage img { position: absolute; object-fit: cover; border-radius: var(--r); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6); border: 4px solid rgba(255, 255, 255, .08); }
.collage img:nth-child(1) { width: 62%; height: 78%; left: 0; top: 0; animation: floatY 7s ease-in-out infinite; }
.collage img:nth-child(2) { width: 50%; height: 62%; right: 0; bottom: 0; animation: floatY 8s ease-in-out -3s infinite; }
.collage .glass { position: absolute; left: 34%; bottom: 6%; padding: 14px 18px; display: flex; gap: 12px; align-items: center; z-index: 2; animation: floatY 6s ease-in-out -1s infinite; }
.collage .glass i { width: 42px; height: 42px; border-radius: 12px; background: var(--g-heat); display: grid; place-items: center; }
.collage .glass svg { width: 20px; height: 20px; color: #1a0d00; }
.collage .glass strong { display: block; font-family: var(--f-display); color: #fff; font-size: 15px; }
.collage .glass span { font-size: 12.5px; color: rgba(255, 255, 255, .65); }
@keyframes floatY { 50% { transform: translateY(-12px); } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.stack { position: relative; padding: 0 40px 40px 0; }
.stack img:first-child { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; border-radius: var(--r-lg); }
.stack img:nth-child(2) { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r); border: 6px solid #fff; box-shadow: var(--shadow); }
.stack .ribbon { position: absolute; left: 20px; top: 20px; background: var(--g-heat); color: #1a0d00; font-family: var(--f-display); font-weight: 700; padding: 12px 18px; border-radius: 14px; line-height: 1.1; }
.stack .ribbon b { display: block; font-size: 30px; letter-spacing: -.04em; }
.stack .ribbon span { font-size: 12px; font-weight: 600; }

.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.spec { display: flex; align-items: center; gap: 14px; padding: 18px; border-radius: 16px; background: #fff; border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s, border-color .35s; }
.spec:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.spec i { flex: none; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--mist); color: var(--indigo); transition: background .35s, color .35s; }
.spec:hover i { background: var(--g-brand); color: #fff; }
.spec svg { width: 22px; height: 22px; }
.spec strong { font-family: var(--f-display); font-size: 15px; font-weight: 600; color: var(--ink); line-height: 1.3; }

.policy { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.policy > div { position: relative; padding: 34px; border-radius: var(--r-lg); overflow: hidden; color: rgba(255, 255, 255, .78); }
.policy > div:first-child { background: var(--g-brand); }
.policy > div:last-child { background: var(--night); }
.policy > div:last-child::after { content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 106, 43, .5), transparent 70%); }
.policy i { width: 52px; height: 52px; border-radius: 14px; background: rgba(255, 255, 255, .14); display: grid; place-items: center; color: #fff; margin-bottom: 18px; }
.policy i svg { width: 26px; height: 26px; }
.policy h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.policy p { margin: 0; position: relative; z-index: 1; font-size: 15.5px; }

/* Services page */
.svc-nav { position: sticky; top: 68px; z-index: 40; background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.svc-nav ul { display: flex; gap: 6px; overflow-x: auto; padding-block: 10px; scrollbar-width: none; }
.svc-nav ul::-webkit-scrollbar { display: none; }
.svc-nav a { display: flex; align-items: center; gap: 8px; white-space: nowrap; font-family: var(--f-display); font-size: 13.5px; font-weight: 600; padding: 9px 15px; border-radius: 99px; color: var(--muted); border: 1px solid transparent; transition: all .25s; }
.svc-nav a svg { width: 16px; height: 16px; }
.svc-nav a:hover { color: var(--ink); border-color: var(--line); }
.svc-nav a.active { background: var(--g-brand); color: #fff; }
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 6vw, 76px); border-bottom: 1px solid var(--line); scroll-margin-top: 130px; }
.svc:nth-child(even) .svc-media { order: 2; }
.svc-media { position: relative; }
.svc-media img { width: 100%; aspect-ratio: 5 / 4.3; object-fit: cover; border-radius: var(--r-lg); }
.svc-media .chip { position: absolute; left: 18px; top: 18px; display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px; border-radius: 99px; background: rgba(5, 8, 22, .72); backdrop-filter: blur(10px); color: #fff; font-family: var(--f-display); font-size: 13px; font-weight: 600; }
.svc-media .chip i { width: 30px; height: 30px; border-radius: 50%; background: var(--g-brand); display: grid; place-items: center; }
.svc-media .chip svg { width: 16px; height: 16px; }
.svc .k { font-family: var(--f-display); font-size: 13px; font-weight: 600; letter-spacing: .1em; background: var(--g-text-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.svc h2 { font-size: clamp(28px, 3vw, 40px); margin: 10px 0 16px; }
.svc > div > p { color: var(--muted); }
.svc .mini-list { margin: 18px 0 22px; }
.why3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.why3 div { padding: 14px; border-radius: 14px; background: var(--cream); }
.why3 strong { display: block; font-family: var(--f-display); font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.why3 span { font-size: 13px; color: var(--muted); line-height: 1.45; display: block; }

/* Projects page */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filters button { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-display); font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: 99px; border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; transition: all .3s var(--ease); }
.filters button b { font-size: 11.5px; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 99px; background: var(--mist); color: var(--muted); display: grid; place-items: center; }
.filters button:hover { border-color: var(--indigo); }
.filters button.active { background: var(--g-brand); border-color: transparent; color: #fff; }
.filters button.active b { background: rgba(255, 255, 255, .2); color: #fff; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 14px; grid-auto-flow: dense; }
.g-tile { position: relative; overflow: hidden; border-radius: var(--r); border: 0; padding: 0; cursor: zoom-in; background: var(--night-2); text-align: left; transition: opacity .4s, transform .4s var(--ease); }
.g-tile.big { grid-column: span 2; grid-row: span 2; }
.g-tile.tall { grid-row: span 2; }
.g-tile[hidden] { display: none; }
.g-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.g-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 8, 22, .85), transparent 55%); opacity: .8; transition: opacity .4s; }
.g-tile:hover img { transform: scale(1.08); }
.g-tile .cap { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; transform: translateY(8px); transition: transform .4s var(--ease); }
.g-tile:hover .cap { transform: none; }
.g-tile .cap small { display: block; font-family: var(--f-display); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); font-weight: 600; }
.g-tile .cap strong { font-family: var(--f-display); font-size: 16px; font-weight: 600; color: #fff; line-height: 1.3; }
.g-tile .zoom { position: absolute; top: 14px; right: 14px; z-index: 1; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .15); backdrop-filter: blur(8px); display: grid; place-items: center; color: #fff; opacity: 0; transform: scale(.6); transition: all .4s var(--ease); }
.g-tile:hover .zoom { opacity: 1; transform: none; }
.g-tile .zoom svg { width: 18px; height: 18px; }

.lightbox { position: fixed; inset: 0; z-index: 210; background: rgba(5, 8, 22, .95); display: grid; place-items: center; padding: 60px 80px; opacity: 0; visibility: hidden; transition: opacity .35s, visibility 0s .35s; }
.lightbox.open { opacity: 1; visibility: visible; transition: opacity .35s; }
.lightbox figure { margin: 0; text-align: center; }
.lightbox img { max-height: 78vh; max-width: 100%; border-radius: var(--r); margin: 0 auto; }
.lightbox figcaption { color: rgba(255, 255, 255, .85); margin-top: 16px; font-family: var(--f-display); }
.lightbox figcaption span { color: rgba(255, 255, 255, .45); margin-left: 10px; font-size: 13px; }
.lb-btn { position: absolute; width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .06); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .3s; }
.lb-btn:hover { background: var(--g-brand); }
.lb-btn svg { width: 20px; height: 20px; }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 18px; top: 50%; margin-top: -25px; }
.lb-next { right: 18px; top: 50%; margin-top: -25px; }

/* Contact page */
.c-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: -54px; position: relative; z-index: 3; }
.c-card { position: relative; padding: 24px; border-radius: var(--r); background: #fff; box-shadow: var(--shadow); overflow: hidden; transition: transform .4s var(--ease); isolation: isolate; }
.c-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--g-brand); opacity: 0; transition: opacity .4s; }
.c-card:hover { transform: translateY(-6px); }
.c-card:hover::before { opacity: 1; }
.c-card i { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--mist); color: var(--indigo); margin-bottom: 16px; transition: background .4s, color .4s; }
.c-card:hover i { background: rgba(255, 255, 255, .18); color: #fff; }
.c-card i svg { width: 24px; height: 24px; }
.c-card small { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); transition: color .4s; }
.c-card strong { display: block; font-family: var(--f-display); font-size: 15.5px; color: var(--ink); margin-top: 4px; transition: color .4s; word-break: break-word; }
.c-card:hover small { color: rgba(255, 255, 255, .7); }
.c-card:hover strong { color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; }
.form-card { padding: clamp(24px, 3.5vw, 40px); border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.office { border-radius: var(--r-lg); overflow: hidden; background: var(--night); color: rgba(255, 255, 255, .7); }
.office-tabs { display: flex; padding: 6px; gap: 6px; background: var(--night-2); }
.office-tabs button { flex: 1; border: 0; border-radius: 12px; padding: 12px; font-family: var(--f-display); font-weight: 600; font-size: 14px; background: transparent; color: rgba(255, 255, 255, .6); cursor: pointer; transition: all .3s; }
.office-tabs button.on { background: var(--g-brand); color: #fff; }
.office-body { padding: 24px 26px; }
.office-body address { font-style: normal; color: #fff; font-size: 16px; line-height: 1.6; margin: 6px 0 16px; }
.office iframe { display: block; width: 100%; height: 300px; border: 0; filter: grayscale(.3) contrast(1.05); }
.office-body .row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ================= Reveal ================= */
.js [data-r] { opacity: 0; transition: opacity 1s var(--ease), transform 1s var(--ease), clip-path 1.2s var(--ease); transition-delay: var(--d, 0s); }
.js [data-r="up"] { transform: translateY(34px); }
.js [data-r="left"] { transform: translateX(-40px); }
.js [data-r="right"] { transform: translateX(40px); }
.js [data-r="zoom"] { transform: scale(.92); }
.js [data-r="clip"] { clip-path: inset(0 0 100% 0); opacity: 1; }
.js [data-r].in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
.words .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.words .w > span { display: inline-block; transition: transform 1s var(--ease); transition-delay: calc(var(--i) * 60ms); }
.js .words .w > span { transform: translateY(105%); }
.js .words.in .w > span { transform: none; }
.words.done .w { overflow: visible; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .js [data-r] { opacity: 1; transform: none; clip-path: none; }
  .words .w > span { transform: none; }
}

/* ================= Responsive ================= */
@media (max-width: 1180px) {
  .nav-call { display: none; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .timeline .rail { display: none; }
  .t-step::before { display: none; }
  .aud-grid, .spec-grid, .c-cards { grid-template-columns: repeat(2, 1fr); }
  .f-top { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .topbar .hide-md { display: none; }
  .menu-btn { display: grid; }
  .header { backdrop-filter: none; background: var(--night); }
  .nav { position: fixed; left: 0; right: 0; bottom: 0; top: 80px; flex-direction: column; align-items: stretch; gap: 20px; padding: 24px var(--gutter) 40px; background: var(--night); overflow-y: auto; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: all .4s var(--ease); }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav ul { flex-direction: column; gap: 4px; }
  .nav ul a { font-size: 22px; padding: 14px 18px; border-radius: 14px; }
  .nav ul a[aria-current="page"]::after { left: auto; right: 20px; top: 50%; margin-top: -2.5px; }
  .nav-call { display: flex; }
  .menu-open { overflow: hidden; }
  .menu-open .menu-btn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-btn span:nth-child(2) { opacity: 0; }
  .menu-open .menu-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .menu-open .fab, .menu-open .side-tab { display: none; }

  .hero-grid, .p-hero .wrap, .head, .split, .switch, .tabs-wrap, .faq-grid, .contact-grid, .svc, .cta-box { grid-template-columns: 1fr; }
  .head { gap: 14px; margin-bottom: 36px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats > div:nth-child(3)::before { display: none; }
  .hero-stats > div:nth-child(n+3) { border-top: 1px solid var(--line-inv); }
  .slide-dots { display: none; }
  .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 110px; }
  .bento .b { grid-column: span 6 !important; grid-row: span 2 !important; }
  .bento .b.half { grid-column: span 3 !important; }
  .bento .b.auto { grid-row: auto !important; }
  .switch-panel { min-height: 460px; }
  .expand { flex-direction: column; height: 760px; }
  .ex-label { writing-mode: horizontal-tb; transform: translateY(-50%); left: 70px; top: 50%; bottom: auto; }
  .ex-num { top: 50%; left: 36px; margin-top: -19px; transform: translateX(-50%); }
  .ex.on .ex-num { top: 22px; margin-top: 0; }
  .ex-body { min-width: 0; }
  .spot-grid { grid-template-columns: 1fr 1fr; }
  .svc:nth-child(even) .svc-media { order: 0; }
  .faq-side { position: static; }
  .collage { height: 320px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .policy { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .js [data-r="left"], .js [data-r="right"] { transform: translateY(30px); }
  .topbar ul.hide-sm { display: none; }
  .topbar .wrap { justify-content: center; }
  .logo svg { width: 40px; height: 40px; }
  .logo-word b { font-size: 17px; }
  .logo-word small { font-size: 8px; letter-spacing: .24em; }
  .header .btn-grad { display: none; }
  .nav .btn-grad { display: inline-flex; }
  .quick-opts { grid-template-columns: 1fr; }
  .bento .b.half { grid-column: span 6 !important; }
  .mini-list, .why3, .fgrid { grid-template-columns: 1fr; }
  .opt label { font-size: 13px; padding: 10px; gap: 8px; }
  .spot-grid, .timeline, .aud-grid, .spec-grid, .c-cards, .f-top { grid-template-columns: 1fr; }
  .c-cards { margin-top: -40px; }
  .modal { padding: 0; place-items: end center; }
  .modal-card { grid-template-columns: 1fr; border-radius: 22px 22px 0 0; max-height: 92vh; }
  .modal-side { display: none; }
  .modal-main { padding: 26px 20px 22px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g-tile.big { grid-column: span 2; }
  .lightbox { padding: 70px 14px; }
  .lb-prev, .lb-next { top: auto; bottom: 18px; margin: 0; }
  .lb-prev { left: calc(50% - 62px); } .lb-next { right: calc(50% - 62px); }
  .side-tab { display: none; }
  .fab { right: 14px; bottom: 14px; }
  .faq .ans p { padding-right: 0; }
  .expand { height: 700px; }
  .ex-body { padding: 22px; }
  .ex-body h3 { font-size: 21px; }
  .ex-body p { font-size: 14px; }
  .collage { height: 260px; }
  .collage .glass { left: 10%; }
}
