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

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

:root {
  --blue-dark:   #0F6EB7;
  --blue-bright: #22AEE4;
  --blue-light:  #6EB3D4;
  --gray:        #59565F;
  --dark:        #2E2E36;
  --black:       #000000;
  --white:       #ffffff;
  --off-white:   #F7F9FB;
  --green:       #00C896;
  --font: 'Montserrat', sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); font-weight: 500; color: var(--dark); background: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h); background: var(--dark);
  display: flex; align-items: center;
  padding: 0 clamp(1.5rem,5vw,4rem);
  border-bottom: 1px solid rgba(34,174,228,.12);
  overflow: hidden;
}
/* LED laser scan along nav bottom edge */
nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -45%;
  width: 45%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(34,174,228,.2) 20%,
    rgba(34,174,228,.9) 45%,
    #22AEE4 50%,
    rgba(34,174,228,.9) 55%,
    rgba(34,174,228,.2) 80%,
    transparent 100%
  );
  filter: drop-shadow(0 0 4px #22AEE4) drop-shadow(0 0 10px rgba(34,174,228,.7));
  animation: navLaser 12s linear infinite;
  pointer-events: none;
}
@keyframes navLaser {
  0%   { left: -45%; }
  100% { left: 105%; }
}

.nav-inner { width:100%; max-width:var(--max-w); margin:0 auto; display:flex; align-items:center; justify-content:space-between; }
.nav-logo { font-size:clamp(1.1rem,2vw,1.35rem); font-weight:800; letter-spacing:.12em; text-transform:uppercase; line-height:1; text-decoration:none; display:flex; align-items:center; gap:.7rem; }
.nav-logo .thumb { color:var(--blue-bright); }
.nav-logo .print { color:var(--white); }
.nav-sub { display:block; font-size:.55em; font-weight:700; letter-spacing:.28em; color:var(--blue-light); margin-top:.25em; }
.nav-logo-wrap { display:flex; flex-direction:column; }

/* Thumbprint logo — transparent PNG, no cropping needed */
.nav-logo-img-crop {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-img-crop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.nav-logo-img-crop.footer-sz {
  width: 48px;
  height: 48px;
}
.nav-links { display:flex; gap:2rem; list-style:none; align-items:center; }
.nav-links a { color:rgba(255,255,255,.75); text-decoration:none; font-size:.82rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; transition:color .2s; position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:var(--blue-bright); transition:width .25s ease; }
.nav-links a:hover, .nav-links a.active { color:var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta { background:var(--blue-bright) !important; color:var(--white) !important; padding:.55rem 1.4rem !important; border-radius:3px !important; }
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--blue-dark) !important; }
.nav-cta.active::after { display:none !important; }

/* ── SHARED UTILS ── */
section { width:100%; }
.page-body { padding-top: var(--nav-h); }
.container { max-width:var(--max-w); margin:0 auto; padding:0 clamp(1.5rem,5vw,4rem); }
.section-pad { padding:clamp(4rem,8vw,7rem) 0; }
.section-label { font-size:.72rem; font-weight:700; letter-spacing:.3em; text-transform:uppercase; color:var(--blue-bright); margin-bottom:1rem; display:flex; align-items:center; gap:.7rem; }
.section-label::before { content:''; display:block; width:28px; height:2px; background:var(--blue-bright); flex-shrink:0; }
.section-h2 { font-size:clamp(2rem,4vw,3rem); font-weight:800; line-height:1.1; letter-spacing:-.01em; margin-bottom:1rem; }
.section-sub { font-size:1.05rem; font-weight:400; color:var(--gray); line-height:1.75; max-width:580px; }
.center-header { text-align:center; margin-bottom:3.5rem; }
.center-header .section-label { justify-content:center; }
.center-header .section-label::before { display:none; }
.center-header .section-sub { margin:0 auto; }

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; gap:.5rem; font-family:var(--font); font-weight:700; font-size:.85rem; letter-spacing:.1em; text-transform:uppercase; text-decoration:none; padding:.9rem 2rem; border-radius:3px; border:2px solid transparent; cursor:pointer; transition:all .22s ease; }
.btn-primary { background:var(--blue-bright); color:var(--white); border-color:var(--blue-bright); }
.btn-primary:hover { background:var(--blue-dark); border-color:var(--blue-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(34,174,228,.35); }
.btn-outline { background:transparent; color:var(--white); border-color:rgba(255,255,255,.35); }
.btn-outline:hover { border-color:var(--blue-bright); color:var(--blue-bright); transform:translateY(-2px); }
.btn-green { background:var(--green); color:var(--white); border-color:var(--green); }
.btn-green:hover { background:#00a87e; border-color:#00a87e; transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,200,150,.35); }
.btn-dark { background:var(--dark); color:var(--white); border-color:rgba(255,255,255,.2); }
.btn-dark:hover { border-color:var(--blue-bright); color:var(--blue-bright); transform:translateY(-2px); }

/* ── MAGNACON HIGHLIGHT BANNER ── */
.magnacon-highlight {
  background: linear-gradient(135deg, #00a87e 0%, #007a5e 60%, #005a45 100%);
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.magnacon-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(255,255,255,.04) 18px, rgba(255,255,255,.04) 36px);
  animation: stripeScroll 6s linear infinite;
}
@keyframes stripeScroll {
  from { background-position: 0 0; }
  to   { background-position: 51px 51px; }
}
.magnacon-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 0;
  flex-wrap: wrap;
}
.magnacon-badge {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.magnacon-content { flex: 1; min-width: 0; }

.magnacon-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.magnacon-sub {
  font-size: .78rem;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  margin-top: .15rem;
  line-height: 1.4;
}
.magnacon-cta {
  background: var(--white);
  color: #007a5e;
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: .6rem 1.3rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.magnacon-cta:hover { background: rgba(255,255,255,.88); transform: translateY(-1px); }

/* ── HERO (home) ── */
.hero { min-height:100vh; background:var(--black); display:grid; place-items:center; position:relative; overflow:hidden; padding-top:0; }
.hero-rings { position:absolute; inset:0; pointer-events:none; }
.hero-rings span { position:absolute; border-radius:50%; border:1px solid rgba(34,174,228,.07); transform:translate(-50%,-50%); left:75%; top:50%; animation:pulse 8s ease-in-out infinite; }
.hero-rings span:nth-child(1){width:180px;height:180px;animation-delay:0s}
.hero-rings span:nth-child(2){width:340px;height:340px;animation-delay:.6s}
.hero-rings span:nth-child(3){width:500px;height:500px;animation-delay:1.2s}
.hero-rings span:nth-child(4){width:660px;height:660px;animation-delay:1.8s}
.hero-rings span:nth-child(5){width:820px;height:820px;animation-delay:2.4s}
.hero-rings span:nth-child(6){width:980px;height:980px;animation-delay:3s;border-color:rgba(15,110,183,.05)}
@keyframes pulse { 0%,100%{opacity:.5} 50%{opacity:1} }
.hero::before { content:''; position:absolute; top:0; left:0; width:55%; height:3px; background:linear-gradient(90deg,var(--blue-bright),transparent); animation:slideIn .9s .2s both ease-out; }
@keyframes slideIn { from{transform:scaleX(0);transform-origin:left} to{transform:scaleX(1);transform-origin:left} }
.hero-content { position:relative; z-index:2; max-width:var(--max-w); width:100%; padding:0 clamp(1.5rem,5vw,4rem); display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:4rem; }
.hero-text { animation:fadeUp .8s .3s both ease-out; }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-eyebrow { font-size:.75rem; font-weight:700; letter-spacing:.3em; text-transform:uppercase; color:var(--blue-bright); margin-bottom:1.4rem; display:flex; align-items:center; gap:.8rem; }
.hero-eyebrow::before { content:''; display:block; width:36px; height:2px; background:var(--blue-bright); flex-shrink:0; }
.hero-h1 { font-size:clamp(2.4rem,5vw,4rem); font-weight:800; line-height:1.08; color:var(--white); letter-spacing:-.01em; margin-bottom:1.6rem; }
.hero-h1 em { font-style:normal; color:var(--blue-bright); }
.hero-sub { font-size:clamp(.95rem,1.4vw,1.1rem); font-weight:400; color:rgba(255,255,255,.6); line-height:1.75; max-width:480px; margin-bottom:2.4rem; }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; }
.hero-visual { animation:fadeUp .8s .55s both ease-out; display:flex; justify-content:center; align-items:center; }

/* Bold stats card */
.hero-bold-stats {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(34,174,228,.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-bold-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.6rem 1rem;
  text-align: center;
  animation: fadeUp .8s both ease-out;
}
.hero-bold-stat:nth-child(1) { animation-delay: .5s; }
.hero-bold-stat:nth-child(3) { animation-delay: .7s; }
.hero-bold-stat:nth-child(5) { animation-delay: .9s; }
.hero-bold-num {
  font-size: clamp(3rem,6vw,4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-bold-sup {
  font-size: .55em;
  font-weight: 800;
  color: var(--blue-bright);
  vertical-align: super;
  letter-spacing: 0;
}
.hero-bold-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: .4rem;
}
.hero-bold-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 0 1.5rem;
}

/* Client logo scroller */
.client-scroller {
  background: var(--white);
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(15,110,183,.08);
  border-bottom: 1px solid rgba(15,110,183,.08);
}
.client-scroller-label {
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(89,86,95,.4);
  margin-bottom: 1.2rem;
}
.client-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.client-track {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  animation: scrollClients 25s linear infinite;
  width: max-content;
}
.client-track:hover { animation-play-state: paused; }
@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo {
  flex-shrink: 0;
  width: 140px;
  height: 56px;
  border-radius: 8px;
  border: 1.5px dashed rgba(89,86,95,.2);
  background: rgba(89,86,95,.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(89,86,95,.3);
}
/* When real logos are added, replace .client-logo span with img */
.client-logo img {
  max-width: 110px;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .6;
  transition: opacity .2s, filter .2s;
}
.client-logo:hover img { opacity: 1; filter: grayscale(0); }

/* ── PROXIMITY QUOTE ── */
.proximity-quote {
  background: linear-gradient(180deg, var(--black) 0%, #141420 35%, var(--dark) 100%);
  padding: clamp(4rem,8vw,6.5rem) clamp(1.5rem,5vw,4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.proximity-quote::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70vw; height: 60%;
  background: radial-gradient(ellipse at bottom, rgba(34,174,228,.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Gradient overlay fades the blue text into the gray below */
.proximity-quote::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to bottom, transparent 0%, var(--dark) 100%);
  pointer-events: none;
  z-index: 3;
}
.proximity-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.proximity-top {
  font-size: clamp(.65rem, 1.2vw, .88rem);
  font-weight: 700;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 1.4rem;
  display: block;
}
.proximity-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
  margin: 0 auto 1.4rem;
  max-width: 560px;
  opacity: .45;
}
.proximity-big {
  font-size: clamp(5.5rem, 17vw, 14rem);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: .88;
  color: var(--blue-bright);
  display: block;
  text-shadow:
    0 0 80px rgba(34,174,228,.35),
    0 0 160px rgba(34,174,228,.15);
}
@media(max-width:600px) {
  .proximity-big { font-size: clamp(4rem,22vw,6rem); }
}

/* ── SOCIAL CAROUSEL ── */
.social-section { background:var(--dark); padding:clamp(3rem,6vw,5rem) 0; overflow:hidden; }
.social-section .center-header .section-h2 { color:var(--white); }
.social-section .center-header .section-sub { color:rgba(255,255,255,.55); }

/* Viewport: clips to show center card + just the edges of neighbors */
.carousel-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* soft fade at edges so cut-off cards blend into background */
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

/* The sliding rail */
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  padding: 1.5rem 0;
}

/* Each card — wide so one fills the section, neighbors barely peek */
.post-card {
  flex-shrink: 0;
  width: min(820px, 82vw);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .5s ease, box-shadow .5s ease, opacity .5s ease, border-color .5s ease;
  opacity: .3;
  transform: scale(.97);
  cursor: pointer;
}
.post-card.active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(34,174,228,.4);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.post-card:hover { opacity: .55; }
.post-card.active:hover { opacity: 1; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.6rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--blue-bright);
  transform: scale(1.3);
}

/* Nav arrows */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.2rem;
}
.carousel-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.carousel-arrow:hover {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
  background: rgba(34,174,228,.08);
}

.post-img { height:160px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.post-img-label { font-size:.65rem; font-weight:800; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.35); text-align:center; }
.post-img-icon { font-size:2.5rem; margin-bottom:.4rem; }
.post-img-content { display:flex; flex-direction:column; align-items:center; }
.post-body { padding:1rem 1.1rem 1.2rem; }
.post-platform { display:flex; align-items:center; gap:.5rem; margin-bottom:.6rem; }
.post-platform-dot { width:8px; height:8px; border-radius:50%; }
.post-platform-name { font-size:.65rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:rgba(255,255,255,.4); }
.post-text { font-size:.82rem; font-weight:400; color:rgba(255,255,255,.75); line-height:1.6; margin-bottom:.9rem; }
.post-meta { display:flex; align-items:center; gap:1rem; }
.post-stat { font-size:.72rem; font-weight:700; color:rgba(255,255,255,.35); }
.post-stat span { color:var(--blue-bright); }
.post-img.ig { background:linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.post-img.li { background:linear-gradient(135deg,#0077b5,#004471); }
.post-img.fb { background:linear-gradient(135deg,#1877f2,#0b5abf); }
.post-img.tw { background:linear-gradient(135deg,#1da1f2,#0d7cc4); }
.dot-ig{background:#fcb045} .dot-li{background:#0077b5} .dot-fb{background:#1877f2} .dot-tw{background:#1da1f2}

/* ── PRODUCTS / CARDS ── */
.products { background:var(--off-white); }
.products-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:1.6rem; }
.card { background:var(--white); border-radius:10px; padding:2.5rem 2rem; border:1px solid rgba(15,110,183,.12); position:relative; overflow:hidden; transition:transform .25s,box-shadow .25s; }
.card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--blue-dark),var(--blue-bright)); transform:scaleX(0); transform-origin:left; transition:transform .3s; }
.card:hover { transform:translateY(-6px); box-shadow:0 20px 48px rgba(15,110,183,.14); }
.card:hover::after { transform:scaleX(1); }
.card-icon { width:52px; height:52px; border-radius:10px; background:rgba(34,174,228,.1); display:flex; align-items:center; justify-content:center; margin-bottom:1.5rem; }
.card-icon svg { width:26px; height:26px; }
.card-title { font-size:1.15rem; font-weight:700; color:var(--dark); margin-bottom:.75rem; letter-spacing:-.01em; }
.card-body { font-size:.9rem; font-weight:400; color:var(--gray); line-height:1.75; }
.card-link { display:inline-flex; align-items:center; gap:.4rem; margin-top:1.4rem; font-size:.8rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--blue-dark); text-decoration:none; transition:gap .2s,color .2s; }
.card-link:hover { gap:.7rem; color:var(--blue-bright); }
.card-tag { display:inline-block; margin-top:1rem; font-size:.65rem; font-weight:800; letter-spacing:.18em; text-transform:uppercase; background:rgba(34,174,228,.1); color:var(--blue-dark); padding:.25rem .6rem; border-radius:20px; }
.card-tag.green { background:rgba(0,200,150,.12); color:#007a5e; }

/* ── STATS BAR ── */
.stats-bar { background:var(--blue-dark); position:relative; overflow:hidden; }
.stats-bar::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(-45deg,transparent,transparent 30px,rgba(255,255,255,.03) 30px,rgba(255,255,255,.03) 60px); }
.stats-grid { position:relative; display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item { padding:3rem 2rem; text-align:center; border-right:1px solid rgba(255,255,255,.12); }
.stat-item:last-child { border-right:none; }
.stat-num { font-size:clamp(2rem,4vw,3rem); font-weight:800; color:var(--white); line-height:1; margin-bottom:.4rem; }
.stat-num span { color:var(--blue-light); }
.stat-label { font-size:.78rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.6); }

/* ── ABOUT (shared between home teaser + about page) ── */
.about-section { background:var(--white); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(3rem,6vw,6rem); align-items:center; }
.about-visual { position:relative; }
.about-img-box { aspect-ratio:4/3; background:var(--dark); border-radius:10px; overflow:hidden; position:relative; }
.about-img-box::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 30% 40%,rgba(34,174,228,.3) 0%,transparent 60%),radial-gradient(ellipse at 70% 70%,rgba(15,110,183,.2) 0%,transparent 55%); }
.about-fingerprint { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.fp-ring { position:absolute; border-radius:50%; border:1.5px solid rgba(34,174,228,.25); }
.fp-ring:nth-child(1){width:60px;height:60px}
.fp-ring:nth-child(2){width:110px;height:110px;border-color:rgba(34,174,228,.2)}
.fp-ring:nth-child(3){width:165px;height:165px;border-color:rgba(34,174,228,.15)}
.fp-ring:nth-child(4){width:224px;height:224px;border-color:rgba(15,110,183,.12)}
.fp-ring:nth-child(5){width:286px;height:286px;border-color:rgba(15,110,183,.09)}
.fp-center { width:28px; height:28px; border-radius:50%; background:var(--blue-bright); box-shadow:0 0 40px rgba(34,174,228,.6); z-index:2; }
.about-badge { position:absolute; bottom:-1.2rem; right:-1.2rem; background:var(--blue-bright); color:var(--white); border-radius:8px; padding:1rem 1.4rem; font-size:.8rem; font-weight:700; line-height:1.3; box-shadow:0 8px 30px rgba(34,174,228,.4); }
.about-badge strong { display:block; font-size:1.6rem; font-weight:800; }
.about-list { list-style:none; margin:1.8rem 0; display:flex; flex-direction:column; gap:.9rem; }
.about-list li { display:flex; align-items:flex-start; gap:.8rem; font-size:.92rem; font-weight:500; color:var(--gray); line-height:1.6; }
.about-list li::before { content:''; display:block; width:8px; height:8px; border-radius:50%; background:var(--blue-bright); margin-top:.45rem; flex-shrink:0; }

/* ── PROCESS ── */
.process-section { background:var(--dark); }
.process-section .section-h2 { color:var(--white); }
.process-section .section-sub { color:rgba(255,255,255,.55); }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; position:relative; }
.process-steps::before { content:''; position:absolute; top:28px; left:12%; width:76%; height:1px; background:linear-gradient(90deg,var(--blue-dark),var(--blue-bright),var(--blue-dark)); opacity:.4; }
.process-step { text-align:center; }
.step-num { width:56px; height:56px; border-radius:50%; background:var(--dark); border:2px solid var(--blue-bright); display:flex; align-items:center; justify-content:center; font-size:1.1rem; font-weight:800; color:var(--blue-bright); margin:0 auto 1.4rem; position:relative; z-index:1; }
.step-title { font-size:.95rem; font-weight:700; color:var(--white); margin-bottom:.6rem; }
.step-body { font-size:.82rem; font-weight:400; color:rgba(255,255,255,.45); line-height:1.7; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background:var(--dark); padding:clamp(3.5rem,7vw,6rem) 0 clamp(3rem,6vw,5rem); position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--blue-bright),var(--blue-dark),transparent); }
.page-hero::after { content:''; position:absolute; top:0; right:0; width:50%; height:100%; background:radial-gradient(ellipse at 80% 50%,rgba(34,174,228,.07) 0%,transparent 70%); pointer-events:none; }
.page-hero-eyebrow { font-size:.72rem; font-weight:700; letter-spacing:.3em; text-transform:uppercase; color:var(--blue-bright); margin-bottom:1rem; display:flex; align-items:center; gap:.7rem; }
.page-hero-eyebrow::before { content:''; display:block; width:28px; height:2px; background:var(--blue-bright); }
.page-hero h1 { font-size:clamp(2.2rem,5vw,3.5rem); font-weight:800; color:var(--white); line-height:1.1; letter-spacing:-.01em; margin-bottom:1rem; }
.page-hero p { font-size:1.05rem; font-weight:400; color:rgba(255,255,255,.55); line-height:1.75; max-width:560px; }

/* ── PRODUCTS & PRICING ── */
.product-ecosystem { background: var(--dark); }
.product-ecosystem .section-h2 { color: var(--white); }
.product-ecosystem .section-sub { color: rgba(255,255,255,.55); }

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.eco-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.eco-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.4); border-color: rgba(34,174,228,.35); }
.eco-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.eco-card.sig::before  { background: linear-gradient(90deg, var(--blue-dark), var(--blue-bright)); }
.eco-card.amp::before  { background: linear-gradient(90deg, var(--green), #00a87e); }
.eco-card.circ::before { background: linear-gradient(90deg, #8b5cf6, #6d28d9); }
.eco-card.renew::before{ background: linear-gradient(90deg, #f59e0b, #d97706); }
.eco-num { font-size: .65rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .8rem; }
.eco-card.sig  .eco-num { color: var(--blue-bright); }
.eco-card.amp  .eco-num { color: var(--green); }
.eco-card.circ .eco-num { color: #a78bfa; }
.eco-card.renew .eco-num { color: #fbbf24; }
.eco-title { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: .25rem; letter-spacing: -.01em; }
.eco-tagline { font-size: .78rem; font-style: italic; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.eco-desc { font-size: .85rem; font-weight: 400; color: rgba(255,255,255,.6); line-height: 1.7; }
.eco-badge { display: inline-block; margin-top: 1rem; font-size: .62rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 20px; }
.eco-badge.sig  { background: rgba(34,174,228,.15); color: var(--blue-bright); }
.eco-badge.amp  { background: rgba(0,200,150,.15); color: var(--green); }
.eco-badge.circ { background: rgba(139,92,246,.15); color: #a78bfa; }
.eco-badge.renew{ background: rgba(245,158,11,.15); color: #fbbf24; }

/* Pricing blocks */
.pricing-block { padding: clamp(3rem,6vw,5rem) 0; }
.pricing-block:nth-child(even) { background: var(--off-white); }
.pricing-block:nth-child(odd)  { background: var(--white); }
.pricing-block-header { margin-bottom: 2.5rem; }
.pricing-block-tag { font-size: .68rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; margin-bottom: .5rem; }
.pricing-block-header h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: var(--dark); margin-bottom: .4rem; letter-spacing: -.01em; }
.pricing-block-header p { font-size: .95rem; color: var(--gray); line-height: 1.7; max-width: 600px; }

.pricing-cards { display: grid; gap: 1.2rem; }
.pricing-cards.cols-3 { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
.pricing-cards.cols-4 { grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
.pricing-cards.cols-2 { grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }

.price-card {
  background: var(--white);
  border: 1.5px solid rgba(15,110,183,.15);
  border-radius: 12px;
  padding: 1.8rem 1.6rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,110,183,.12); }
.price-card.featured {
  border-color: var(--green);
  background: linear-gradient(160deg, rgba(0,200,150,.05) 0%, var(--white) 60%);
}
.price-card.featured-blue {
  border-color: var(--blue-bright);
  background: linear-gradient(160deg, rgba(34,174,228,.06) 0%, var(--white) 60%);
}
.price-card-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: var(--white);
  font-size: .6rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  padding: .28rem .8rem; border-radius: 0 0 8px 8px; white-space: nowrap;
}
.price-card-badge.blue { background: var(--blue-bright); }

.price-tier { font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gray); margin-bottom: .5rem; }
.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: .2rem; }
.price-amount sup { font-size: 1.1rem; font-weight: 700; vertical-align: super; }
.price-period { font-size: .78rem; font-weight: 500; color: var(--gray); margin-bottom: .3rem; }
.price-retail { font-size: .75rem; color: var(--gray); text-decoration: line-through; margin-bottom: 1.2rem; }
.price-divider { border: none; border-top: 1px solid rgba(15,110,183,.1); margin: 1.2rem 0; }
.price-includes { list-style: none; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.price-includes li { font-size: .82rem; font-weight: 500; color: var(--gray); display: flex; align-items: flex-start; gap: .6rem; line-height: 1.5; }
.price-includes li::before { content: '✓'; font-weight: 800; color: var(--blue-bright); flex-shrink: 0; }
.price-includes li.green::before { color: var(--green); }
.price-cta { margin-top: 1.5rem; width: 100%; justify-content: center; font-size: .8rem; padding: .75rem; }

/* Renew custom card */
.renew-card {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a22 100%);
  border: 1px solid rgba(245,158,11,.25);
  border-radius: 16px;
  padding: clamp(2.5rem,5vw,4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.renew-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,#f59e0b,#d97706); }
.renew-card-title { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; color: var(--white); margin-bottom: .5rem; }
.renew-card-tag { font-size: .68rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: #fbbf24; margin-bottom: .8rem; }
.renew-card-desc { font-size: .92rem; color: rgba(255,255,255,.6); line-height: 1.75; margin-bottom: 1.5rem; }
.renew-includes { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.renew-includes li { font-size: .85rem; color: rgba(255,255,255,.65); display: flex; align-items: flex-start; gap: .6rem; line-height: 1.5; }
.renew-includes li::before { content: '→'; color: #fbbf24; flex-shrink: 0; font-weight: 700; }

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15,110,183,.1);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(15,110,183,.12);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* When a real image is dropped in, it fills the box */
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: linear-gradient(160deg, var(--dark) 0%, #1a1a22 100%);
}
.team-photo-placeholder svg {
  width: 52px;
  height: 52px;
  opacity: .4;
}
.team-photo-placeholder span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
}

.team-info {
  padding: 1.4rem 1.5rem 1.6rem;
}

.team-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.01em;
  margin-bottom: .2rem;
}

.team-role {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: .8rem;
}

.team-bio {
  font-size: .85rem;
  font-weight: 400;
  color: var(--gray);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ── CONTACT PAGE ── */
.contact-methods { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1.2rem; margin-bottom:3rem; }
.contact-method { background:var(--off-white); border:1px solid rgba(15,110,183,.12); border-radius:10px; padding:1.8rem 1.4rem; text-align:center; transition:border-color .2s,transform .2s; }
.contact-method:hover { border-color:var(--blue-bright); transform:translateY(-3px); }
.contact-method-icon { font-size:1.8rem; margin-bottom:.8rem; }
.contact-method-label { font-size:.68rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--blue-light); margin-bottom:.4rem; }
.contact-method-val { font-size:.9rem; font-weight:600; color:var(--dark); }
.contact-method-val a { color:var(--dark); text-decoration:none; }
.contact-method-val a:hover { color:var(--blue-bright); }

/* ── FORMS ── */
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-field { display:flex; flex-direction:column; gap:.45rem; }
.form-field.full { grid-column:1/-1; }
.form-label { font-size:.7rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--gray); }
.form-label.light { color:rgba(255,255,255,.45); }
.form-input, .form-select, .form-textarea { font-family:var(--font); font-size:.88rem; font-weight:500; padding:.8rem 1rem; border-radius:6px; border:1.5px solid rgba(15,110,183,.2); background:var(--white); color:var(--dark); outline:none; transition:border-color .2s; width:100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color:var(--blue-bright); }
.form-textarea { resize:vertical; min-height:100px; }
.form-input.dark-field, .form-select.dark-field, .form-textarea.dark-field { background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.12); color:var(--white); }
.form-input.dark-field::placeholder, .form-textarea.dark-field::placeholder { color:rgba(255,255,255,.25); }
.form-input.dark-field:focus, .form-select.dark-field:focus, .form-textarea.dark-field:focus { border-color:var(--blue-bright); }
.form-select.dark-field option { background:var(--dark); }

/* ── GET STARTED / CONFERENCE ── */
.gs-section { background:var(--black); position:relative; overflow:hidden; }
.gs-section::before { content:''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:700px; height:700px; border-radius:50%; background:radial-gradient(ellipse,rgba(34,174,228,.06) 0%,transparent 70%); pointer-events:none; }
.conf-booking { background:linear-gradient(135deg,rgba(0,168,126,.12) 0%,rgba(0,90,69,.08) 100%); border:1px solid rgba(0,200,150,.25); border-radius:16px; padding:clamp(2rem,4vw,3rem); margin-bottom:3rem; position:relative; overflow:hidden; }
.conf-booking::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--green),#00a87e,var(--green)); }
.conf-booking-header { display:flex; align-items:flex-start; gap:1.2rem; margin-bottom:2rem; flex-wrap:wrap; }
.conf-booking-icon { width:56px; height:56px; background:rgba(0,200,150,.15); border:1px solid rgba(0,200,150,.3); border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.conf-booking-icon svg { width:28px; height:28px; }
.conf-booking-title-wrap { flex:1; }
.conf-booking-tag { font-size:.65rem; font-weight:800; letter-spacing:.2em; text-transform:uppercase; color:var(--green); margin-bottom:.5rem; }
.conf-booking-title { font-size:1.5rem; font-weight:800; color:var(--white); line-height:1.2; margin-bottom:.3rem; }
.conf-booking-sub { font-size:.88rem; color:rgba(255,255,255,.5); font-weight:400; line-height:1.6; }
.day-tabs { display:flex; gap:.8rem; margin-bottom:1.5rem; flex-wrap:wrap; }
.day-tab { flex:1; min-width:200px; background:rgba(255,255,255,.04); border:1.5px solid rgba(255,255,255,.12); border-radius:10px; padding:1rem 1.2rem; cursor:pointer; transition:all .2s; text-align:center; }
.day-tab.active { background:rgba(0,200,150,.1); border-color:var(--green); }
.day-tab-day { font-size:.72rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:.25rem; }
.day-tab.active .day-tab-day { color:var(--green); }
.day-tab-date { font-size:1.1rem; font-weight:800; color:var(--white); }
.day-tab-label { font-size:.72rem; color:rgba(255,255,255,.4); margin-top:.2rem; }
.day-tab.active .day-tab-label { color:rgba(0,200,150,.7); }
.slots-label { font-size:.72rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:.8rem; }
.slots-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(100px,1fr)); gap:.6rem; margin-bottom:1.5rem; }
.slot { background:rgba(255,255,255,.04); border:1.5px solid rgba(255,255,255,.1); border-radius:8px; padding:.55rem .5rem; text-align:center; cursor:pointer; font-size:.8rem; font-weight:700; color:rgba(255,255,255,.6); transition:all .2s; }
.slot:hover { border-color:var(--blue-bright); color:var(--white); background:rgba(34,174,228,.08); }
.slot.selected { background:rgba(34,174,228,.15); border-color:var(--blue-bright); color:var(--white); }
.slot.taken { opacity:.3; cursor:not-allowed; text-decoration:line-through; }
.selected-slot-display { background:rgba(34,174,228,.08); border:1px solid rgba(34,174,228,.2); border-radius:6px; padding:.6rem 1rem; font-size:.82rem; font-weight:700; color:var(--blue-bright); margin-bottom:1rem; }
.selected-slot-display.hidden { display:none; }
.booking-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.booking-success { display:none; text-align:center; padding:2rem; background:rgba(0,200,150,.08); border:1px solid rgba(0,200,150,.25); border-radius:12px; margin-top:1rem; }
.booking-success h3 { font-size:1.3rem; font-weight:800; color:var(--green); margin-bottom:.5rem; }
.booking-success p { font-size:.9rem; color:rgba(255,255,255,.6); }
.section-divider { border:none; border-top:1px solid rgba(255,255,255,.1); margin:3rem 0; }

/* ── FOOTER ── */
footer { background:var(--dark); border-top:1px solid rgba(255,255,255,.07); }
.footer-inner { padding:3rem 0 2rem; display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:3rem; }
.footer-tagline { margin-top:.8rem; font-size:.82rem; font-weight:400; color:rgba(255,255,255,.4); line-height:1.65; max-width:240px; }
.footer-col-title { font-size:.72rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--blue-light); margin-bottom:1.2rem; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:.65rem; }
.footer-links a { color:rgba(255,255,255,.5); text-decoration:none; font-size:.85rem; font-weight:500; transition:color .2s; }
.footer-links a:hover { color:var(--blue-bright); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding:1.4rem 0; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; }
.footer-copy { font-size:.78rem; font-weight:400; color:rgba(255,255,255,.3); }
.footer-socials { display:flex; gap:1rem; }
.footer-socials a { width:34px; height:34px; border-radius:6px; border:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.5); text-decoration:none; font-size:.75rem; font-weight:700; transition:all .2s; }
.footer-socials a:hover { border-color:var(--blue-bright); color:var(--blue-bright); background:rgba(34,174,228,.08); }

/* ── CHECKOUT / PRODUCT LANDING ── */
.product-hero {
  background: var(--dark);
  padding: clamp(3.5rem,7vw,5.5rem) 0 clamp(3rem,6vw,4.5rem);
  position: relative;
  overflow: hidden;
}
.product-hero::after {
  content:'';position:absolute;top:0;right:0;width:50%;height:100%;
  background:radial-gradient(ellipse at 80% 50%,rgba(34,174,228,.07) 0%,transparent 65%);
  pointer-events:none;
}
.product-hero-eyebrow { font-size:.72rem;font-weight:700;letter-spacing:.3em;text-transform:uppercase;margin-bottom:.9rem;display:flex;align-items:center;gap:.7rem; }
.product-hero-eyebrow::before { content:'';display:block;width:24px;height:2px;flex-shrink:0; }
.product-hero h1 { font-size:clamp(2.2rem,5vw,3.4rem);font-weight:800;color:var(--white);line-height:1.08;letter-spacing:-.02em;margin-bottom:.9rem; }
.product-hero-tagline { font-size:1.1rem;font-style:italic;margin-bottom:.5rem; }
.product-hero-sub { font-size:1rem;font-weight:400;color:rgba(255,255,255,.55);line-height:1.75;max-width:580px; }

.checkout-section { background:var(--off-white);padding:clamp(3.5rem,7vw,5.5rem) 0; }
.checkout-layout { display:grid;grid-template-columns:1fr 460px;gap:3rem;align-items:start; }

/* Plan selector */
.plan-selector { display:flex;flex-direction:column;gap:.8rem;margin-bottom:1.8rem; }
.plan-option {
  display:flex;align-items:center;gap:1rem;
  border:1.5px solid rgba(15,110,183,.18);border-radius:10px;
  padding:1rem 1.2rem;cursor:pointer;transition:all .2s;background:var(--white);
}
.plan-option:hover { border-color:var(--blue-bright); }
.plan-option.selected { border-color:var(--blue-bright);background:rgba(34,174,228,.05); }
.plan-radio {
  width:18px;height:18px;border-radius:50%;
  border:2px solid rgba(15,110,183,.3);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;transition:border-color .2s;
}
.plan-option.selected .plan-radio { border-color:var(--blue-bright); }
.plan-radio::after {
  content:'';width:8px;height:8px;border-radius:50%;
  background:var(--blue-bright);opacity:0;transition:opacity .2s;
}
.plan-option.selected .plan-radio::after { opacity:1; }
.plan-info { flex:1; }
.plan-name { font-size:.92rem;font-weight:700;color:var(--dark);margin-bottom:.15rem; }
.plan-desc { font-size:.78rem;color:var(--gray); }
.plan-price { font-size:1.1rem;font-weight:800;color:var(--dark);white-space:nowrap; }
.plan-price small { font-size:.65rem;font-weight:600;color:var(--gray); }
.plan-badge { font-size:.6rem;font-weight:800;letter-spacing:.15em;text-transform:uppercase;background:var(--blue-bright);color:var(--white);padding:.2rem .55rem;border-radius:20px;margin-left:.5rem; }

/* Checkout card */
.checkout-card {
  background:var(--white);border-radius:14px;
  border:1px solid rgba(15,110,183,.12);
  padding:2rem;
  position:sticky;top:calc(var(--nav-h) + 1.5rem);
  box-shadow:0 8px 40px rgba(15,110,183,.08);
}
.checkout-card-title { font-size:1rem;font-weight:800;color:var(--dark);margin-bottom:1.4rem;padding-bottom:1rem;border-bottom:1px solid rgba(15,110,183,.1); }

.order-summary { margin-bottom:1.4rem;padding-bottom:1.4rem;border-bottom:1px solid rgba(15,110,183,.1); }
.order-line { display:flex;justify-content:space-between;align-items:baseline;margin-bottom:.5rem; }
.order-line-label { font-size:.85rem;font-weight:500;color:var(--gray); }
.order-line-val { font-size:.9rem;font-weight:700;color:var(--dark); }
.order-total-line { display:flex;justify-content:space-between;align-items:baseline; }
.order-total-label { font-size:.92rem;font-weight:700;color:var(--dark); }
.order-total-val { font-size:1.4rem;font-weight:800;color:var(--dark); }

/* Payment form fields */
.pay-field { display:flex;flex-direction:column;gap:.4rem;margin-bottom:1rem; }
.pay-label { font-size:.7rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--gray); }
.pay-input, .pay-select {
  font-family:var(--font);font-size:.9rem;font-weight:500;
  padding:.75rem 1rem;border-radius:7px;
  border:1.5px solid rgba(15,110,183,.2);
  background:var(--white);color:var(--dark);
  outline:none;transition:border-color .2s;width:100%;
}
.pay-input:focus, .pay-select:focus { border-color:var(--blue-bright); }
.pay-input::placeholder { color:rgba(89,86,95,.4); }
.pay-row { display:grid;grid-template-columns:1fr 1fr;gap:.8rem; }

.card-input-wrap { position:relative; }
.card-input-wrap .pay-input { padding-right:4rem; }
.card-brand-icons { position:absolute;right:.75rem;top:50%;transform:translateY(-50%);display:flex;gap:.3rem;opacity:.45; }
.card-brand-icons span { font-size:.55rem;font-weight:800;letter-spacing:.06em;background:var(--gray);color:white;padding:.15rem .35rem;border-radius:3px; }

.pay-btn { width:100%;padding:1rem;font-size:.9rem;justify-content:center;margin-top:.4rem; }

.trust-bar { display:flex;align-items:center;justify-content:center;gap:1.2rem;margin-top:1.2rem;flex-wrap:wrap; }
.trust-item { font-size:.68rem;font-weight:600;color:rgba(89,86,95,.6);display:flex;align-items:center;gap:.3rem; }

/* What's included list */
.includes-list { list-style:none;display:flex;flex-direction:column;gap:.75rem; }
.includes-list li { display:flex;align-items:flex-start;gap:.75rem;font-size:.92rem;font-weight:500;color:var(--dark);line-height:1.55; }
.includes-list li .check { width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:.65rem;font-weight:800;margin-top:.05rem; }

/* Stripe CTA */
.stripe-cta {
  display: none;
  margin-top: 1.4rem;
}
.stripe-cta.visible { display: block; }
.stripe-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: 1rem;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  background: #635bff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.stripe-cta-btn:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,91,255,.35);
}
.stripe-cta-url {
  margin-top: .75rem;
  font-size: .72rem;
  color: var(--gray);
  text-align: center;
  word-break: break-all;
  line-height: 1.5;
}
.stripe-cta-url a {
  color: #635bff;
  text-decoration: none;
}
.stripe-cta-url a:hover { text-decoration: underline; }
.stripe-cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: .6rem;
  font-size: .72rem;
  color: var(--gray);
}

.checkout-success { display:none;text-align:center;padding:2.5rem 1.5rem; }
.checkout-success-icon { font-size:3rem;margin-bottom:1rem; }
.checkout-success h3 { font-size:1.4rem;font-weight:800;color:var(--dark);margin-bottom:.5rem; }
.checkout-success p { font-size:.9rem;color:var(--gray);line-height:1.7; }

/* ── RESPONSIVE ── */
@media(max-width:1000px){
  .checkout-layout { grid-template-columns:1fr; }
  .checkout-card { position:static; }
}
@media(max-width:900px){
  .hero-content { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .hero-rings span { left:90%; }
  .about-grid { grid-template-columns:1fr; }
  .about-visual { order:-1; }
  .about-badge { bottom:.5rem; right:.5rem; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.12); }
  .process-steps { grid-template-columns:1fr 1fr; }
  .process-steps::before { display:none; }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .booking-form-grid { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
}
/* ── HAMBURGER & MOBILE NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  margin-left: .5rem;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #1e1e26;
  border-top: 1px solid rgba(255,255,255,.07);
  z-index: 199;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(.4,0,.2,1);
}
.nav-mobile-menu.open { max-height: 360px; }
.nav-mobile-menu a {
  display: flex;
  align-items: center;
  padding: 1rem clamp(1.5rem,5vw,2rem);
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s, color .15s;
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover,
.nav-mobile-menu a.active { background: rgba(255,255,255,.05); color: #fff; }
.nav-mobile-menu .nav-mobile-cta {
  background: var(--blue-bright);
  color: var(--white) !important;
  margin: .6rem 1rem 1rem;
  padding: .9rem 1rem;
  border-radius: 6px;
  border-bottom: none !important;
  justify-content: center;
  letter-spacing: .08em;
  font-size: .82rem;
}
.nav-mobile-menu .nav-mobile-cta:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

@media(max-width:600px){
  /* Nav */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: block; }
  .nav-logo { font-size:1rem; }
  .nav-sub { letter-spacing:.18em; }

  /* MagnaCon banner */
  .magnacon-inner { gap:.8rem; }
  .magnacon-title { font-size:.85rem; }
  .magnacon-cta { width:100%; text-align:center; }

  /* Hero — remove forced full-screen height on mobile */
  .hero { min-height: unset; padding: 3.5rem 0 3rem; }
  .hero-h1 { font-size:2rem; }
  .hero-sub { font-size:.9rem; }
  .hero-actions { flex-direction:column; }
  .hero-actions .btn { width:100%; justify-content:center; }

  /* Carousel cards */
  .post-card { width: min(88vw, 340px); }

  /* Stats */
  .stats-grid { grid-template-columns:1fr 1fr; }

  /* Process */
  .process-steps { grid-template-columns:1fr; }

  /* Products accordion */
  .accordion-wrap { padding:0 .75rem; }
  .accordion-trigger { padding:1.1rem 1rem; }
  .accordion-inner { padding:0 1rem 1.4rem; }
  .pkg-row { flex-direction:column; }
  .pkg-chip { min-width:unset; }

  /* Checkout pages */
  .pay-row { grid-template-columns:1fr 1fr; }

  /* Get Started slots */
  .slots-grid { grid-template-columns:repeat(3,1fr); }
  .booking-form-grid { grid-template-columns:1fr; }
  .day-tabs { flex-direction:column; }

  /* Footer — compact on mobile */
  .footer-inner { grid-template-columns:1fr 1fr; gap:1.4rem; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .footer-tagline { display: none; }
  .footer-col-title { margin-bottom: .6rem; font-size: .65rem; }
  .footer-links { gap: .4rem; }
  .footer-links a, .footer-links li { font-size: .78rem; }
  .footer-bottom { flex-direction:row; align-items:center; justify-content:space-between; padding: 1rem 0; }
  .footer-copy { font-size: .68rem; }

  /* Page hero */
  .page-hero h1 { font-size:1.8rem; }
  .products-grid { grid-template-columns:1fr; }

  /* Team */
  .team-grid { grid-template-columns:1fr 1fr; }
}
