/* IMExDesk homepage — pure CSS (no libs)
   Palette: Navy #0F4C81 · Orange #FF6B35 · Green #00C896 */

:root {
  --navy: #0F4C81;
  --navy-deep: #0a3559;
  --navy-ink: #072743;
  --orange: #FF6B35;
  --orange-hot: #ff5722;
  --green: #00C896;
  --green-soft: #e6faf4;
  --bg: #F8FAFC;
  --surface: #ffffff;
  --text: #1E293B;
  --muted: #64748B;
  --line: #e2e8f0;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 76, 129, 0.08);
  --shadow-lift: 0 18px 40px rgba(15, 76, 129, 0.16);
  --font: "Source Sans 3", "Noto Sans Bengali", system-ui, sans-serif;
  --display: Outfit, "Noto Sans Bengali", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-left.visible, .reveal-right.visible { transform: none; }
.stagger > .reveal:nth-child(1) { transition-delay: .05s; }
.stagger > .reveal:nth-child(2) { transition-delay: .12s; }
.stagger > .reveal:nth-child(3) { transition-delay: .19s; }
.stagger > .reveal:nth-child(4) { transition-delay: .26s; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.35rem; border-radius: 999px; border: 0; cursor: pointer;
  font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: scale(1.04); }
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  color: #fff; box-shadow: 0 10px 24px rgba(255,107,53,.35);
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px);
}

/* Navbar */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: rgba(248,250,252,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(15,76,129,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; width: min(1120px, calc(100% - 2rem)); margin-inline: auto;
}
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--display); font-weight: 800; color: #fff; }
.nav.scrolled .brand { color: var(--navy); }
.brand img { width: 34px; height: 34px; }
.nav-links { display: none; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: rgba(255,255,255,.86); font-weight: 600; font-size: .95rem; }
.nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--orange); }
.nav-cta { display: none; gap: .6rem; align-items: center; }
.menu-btn {
  display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.25); border-radius: 10px; background: transparent; color: #fff;
}
.nav.scrolled .menu-btn { color: var(--navy); border-color: var(--line); }
.mobile-menu {
  display: none; background: #fff; border-top: 1px solid var(--line);
  padding: .75rem 1rem 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: .75rem .85rem; border-radius: 10px; color: var(--text); font-weight: 600;
}
.mobile-menu a:hover { background: #f1f5f9; }

@media (min-width: 900px) {
  .nav-links, .nav-cta { display: flex; }
  .menu-btn, .mobile-menu { display: none !important; }
}

/* Hero */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: grid; align-items: center;
  padding: 7rem 0 5rem;
  background: #071f33;
  color: #fff;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-poster,
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero-video {
  opacity: 0;
  transition: opacity .6s ease;
  /* GPU-friendly compositing — reduces jank */
  transform: translateZ(0);
  will-change: opacity;
}
.hero-video.is-ready { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(7,31,51,.78) 0%, rgba(15,76,129,.45) 45%, rgba(7,31,51,.55) 100%),
    linear-gradient(to top, rgba(7,31,51,.85), transparent 42%);
}
#particles {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1; opacity: .45;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }

/* Soft photo backgrounds — tall bands so page white does not show through */
.section-bg {
  position: relative;
  isolation: isolate;
  background-color: #0b1c2e;
}
.section-bg::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .62;
  filter: saturate(1.05) contrast(1.05);
}
.section-bg::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(11, 28, 46, 0.48) 0%,
    rgba(15, 76, 129, 0.38) 45%,
    rgba(11, 28, 46, 0.55) 100%
  );
}
.section-bg-mid::before { background-image: url("../media/port/mid.jpeg"); }
.section-bg-star::before {
  background-image: url("../media/port/star-bg.jpg");
  opacity: .72;
}
.section-bg-star::after {
  background: linear-gradient(
    180deg,
    rgba(6, 24, 48, 0.55) 0%,
    rgba(10, 40, 72, 0.42) 45%,
    rgba(6, 24, 48, 0.62) 100%
  );
}
.section-bg-bottom::before {
  background-image: url("../media/port/bottom-background.jpg");
  opacity: .55;
}
.section-bg-bottom::after {
  background: linear-gradient(180deg, rgba(7,31,51,.65), rgba(7,31,51,.78));
}

/* Tall mid band: stats + products share one photo */
.band-mid {
  margin-top: -3rem;
  padding: 3.25rem 0 4.5rem;
  min-height: min(92svh, 980px);
  display: flex;
  align-items: center;
}
.band-mid .stats-grid { margin-bottom: 2.75rem; }

/* Star band: demo + how + testimonials — one continuous photo */
.band-star {
  padding: 3.5rem 0 4.5rem;
  min-height: min(110svh, 1200px);
}
.band-star-block { margin-top: 3.5rem; }
.band-star .demo-copy h3 { color: #e8f1ff; margin: 0 0 .6rem; font-family: var(--display); }
.band-star .demo-copy > p { color: rgba(226, 232, 240, 0.88); }
.band-star .demo-copy .eyebrow { color: #7dd3fc; }

/* Full dark vessel band — no white around Free Tool heading */
.band-dark {
  background: linear-gradient(180deg, #061828 0%, #0a3559 42%, #071f33 100%);
  padding: 3.5rem 0 4.25rem;
  min-height: min(78svh, 820px);
}
.band-dark .section-head .eyebrow { color: #7dd3fc; }
.band-dark .section-head h2 { color: #e8f1ff; }
.band-dark .section-head p { color: rgba(226, 232, 240, 0.86); }

/* Light text on photo sections */
.section-bg .section-head h2,
.section-bg .section-head .eyebrow { color: #e8f1ff; }
.section-bg .section-head p { color: rgba(226,232,240,.88); }
.section-bg .feature-card,
.section-bg .stat-card,
.section-bg .step,
.section-bg .t-card,
.section-bg .bill-card,
.section-bg .compare div {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}
.section-bg#how .step p,
.section-bg#testimonials .t-card cite,
.band-star .step p,
.band-star .t-card cite { color: var(--muted); }

@media (max-width: 767px) {
  /* Keep video in layout so it can load/play — do not display:none */
  #particles { opacity: .18; }
  .section-bg::before { opacity: .42; }
  .section-bg::after {
    background: linear-gradient(180deg, rgba(11,28,46,.62), rgba(11,28,46,.72));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none !important; }
}

.hero::before { content: none; }
.badge-live {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .4rem .9rem; border-radius: 999px;
  background: rgba(0,200,150,.15); border: 1px solid rgba(0,200,150,.35);
  color: #9af0d6; font-size: .8rem; font-weight: 700; letter-spacing: .04em;
}
.badge-live i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(0,200,150,.6);
  animation: pulseRing 1.8s infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(0,200,150,.55); }
  70% { box-shadow: 0 0 0 12px rgba(0,200,150,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,200,150,0); }
}
.hero h1 {
  margin: 1.1rem auto .8rem; max-width: 18ch;
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.15; letter-spacing: -.02em;
}
.hero h1 span {
  background: linear-gradient(90deg, #fff, #ffd0bf 40%, #9af0d6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin: 0 auto 1.5rem; max-width: 42rem; color: rgba(255,255,255,.82); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.trust-row {
  margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center;
  color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 600;
}
.trust-row span {
  padding: .35rem .75rem; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
}
.float-stats {
  margin: 2.2rem auto 0; display: grid; gap: .8rem;
  grid-template-columns: repeat(2, minmax(0,1fr));
  max-width: 520px;
}
.float-card {
  padding: .9rem 1rem; border-radius: 14px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px); text-align: left;
  animation: floatY 5s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: .6s; }
.float-card:nth-child(3) { animation-delay: 1.1s; }
.float-card:nth-child(4) { animation-delay: 1.6s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card strong { display: block; font-size: 1.25rem; font-family: var(--display); }
.float-card span { font-size: .78rem; opacity: .8; }
.scroll-indicator {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.45); border-radius: 14px;
}
.scroll-indicator::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  margin-left: -2px; border-radius: 4px; background: #fff;
  animation: mouseBounce 1.4s infinite;
}
@keyframes mouseBounce {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

@media (min-width: 700px) {
  .float-stats { grid-template-columns: repeat(4, minmax(0,1fr)); max-width: 900px; }
}

/* Sections — tighter so white page bg does not dominate */
section { padding: 2.85rem 0; }
.section-head { text-align: center; margin-bottom: 1.6rem; }
.eyebrow {
  display: inline-block; margin-bottom: .55rem;
  color: var(--navy); font-weight: 800; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.section-head h2 {
  margin: 0 0 .55rem; font-family: var(--display); font-size: clamp(1.6rem, 3.2vw, 2.3rem);
}
.section-head p { margin: 0 auto; max-width: 40rem; color: var(--muted); }

/* Stats */
.stats-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
.stat-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow); text-align: center;
}
.stat-card .num {
  font-family: var(--display); font-size: 2rem; font-weight: 800; color: var(--navy);
}
.stat-card .label { color: var(--muted); font-size: .9rem; font-weight: 600; }
@media (min-width: 900px) {
  .stats-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

/* Features */
.features-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
.feature-card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  transition: width .35s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.feature-card:hover::before { width: 100%; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: .9rem;
  background: #e8f1f8; color: var(--navy); font-size: 1.35rem;
  transition: transform .3s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(8deg); }
.feature-card h3 { margin: 0 0 .4rem; font-family: var(--display); }
.feature-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.coming {
  display: inline-block; margin-top: .75rem;
  padding: .25rem .6rem; border-radius: 999px; font-size: .72rem; font-weight: 800;
  background: #fff4e5; color: #b45309;
}
@media (min-width: 700px) {
  .features-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1000px) {
  .features-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

/* Vessel dashboard box */
.vessel-box {
  background: rgba(4, 22, 40, 0.55); color: #e8eef5; border-radius: 20px; padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 20px 50px rgba(0,0,0,.28); max-height: 34rem; overflow: auto;
  backdrop-filter: blur(8px);
}
.vessel-box h3 {
  margin: 0 0 1rem; font-family: var(--display); font-size: 1.05rem;
  letter-spacing: .04em; text-transform: uppercase; color: #93c5fd;
}
.vessel-tools {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: .9rem; align-items: center;
}
.vessel-tools input, .vessel-tools select {
  background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.12);
  color: #fff; border-radius: 10px; padding: .55rem .75rem;
}
.vessel-tools button {
  background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff;
  border: 0; border-radius: 10px; padding: .55rem 1rem; font-weight: 700; cursor: pointer;
}
.vessel-table-wrap { overflow: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,.08); }
.vessel-table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .82rem; }
.vessel-table th {
  text-align: left; padding: .7rem .65rem; background: rgba(59,130,246,.12);
  color: #93c5fd; text-transform: uppercase; letter-spacing: .04em; font-size: .72rem;
  position: sticky; top: 0;
}
.vessel-table td {
  padding: .65rem; border-top: 1px solid rgba(255,255,255,.05); color: #dbe7f5;
}
.vessel-table tr:hover td { background: rgba(59,130,246,.05); }
.phase {
  display: inline-block; padding: .15rem .55rem; border-radius: 999px;
  font-size: .68rem; font-weight: 800; letter-spacing: .03em;
  border: 1px solid rgba(255,255,255,.15);
}
.phase-WORKING { background: rgba(34,197,94,.15); color: #4ade80; }
.phase-INBOUND, .phase-EXPECTED { background: rgba(59,130,246,.15); color: #60a5fa; }
.phase-DUE, .phase-DEPARTED { background: rgba(251,191,36,.15); color: #fbbf24; }
.vessel-meta { margin-top: .75rem; color: #94a3b8; font-size: .8rem; }

/* Demo */
.demo-grid {
  display: grid; gap: 1.25rem; align-items: center;
}
.demo-copy h3 { font-family: var(--display); margin: 0 0 .6rem; }
.demo-copy p { color: var(--muted); }
.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-top: 1rem;
}
.compare div {
  padding: .85rem; border-radius: 12px; border: 1px solid var(--line); background: #fff;
}
.compare .before { color: #b91c1c; }
.compare .after { color: #047857; }
.bill-card {
  position: relative;
  background: rgba(255,255,255,.72); border: 1px solid rgba(15,76,129,.12);
  border-radius: 18px; padding: 1.2rem; backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lift);
}
.verified {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .7rem; border-radius: 999px; font-size: .78rem; font-weight: 800;
  color: #047857; background: var(--green-soft); border: 1px solid rgba(0,200,150,.35);
  position: relative;
}
.verified::after {
  content: ""; position: absolute; inset: -4px; border-radius: inherit;
  border: 2px solid rgba(0,200,150,.35); animation: pulseRing 2s infinite;
}
.bill-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .65rem 0; border-bottom: 1px dashed var(--line);
  opacity: 0; transform: translateY(10px);
}
.bill-card.visible .bill-row {
  animation: rowIn .45s ease forwards;
}
.bill-card.visible .bill-row:nth-child(2) { animation-delay: .08s; }
.bill-card.visible .bill-row:nth-child(3) { animation-delay: .16s; }
.bill-card.visible .bill-row:nth-child(4) { animation-delay: .24s; }
.bill-card.visible .bill-row:nth-child(5) { animation-delay: .32s; }
.bill-card.visible .bill-row:nth-child(6) { animation-delay: .4s; }
@keyframes rowIn {
  to { opacity: 1; transform: none; }
}
@media (min-width: 900px) {
  .demo-grid { grid-template-columns: 1.05fr .95fr; }
}

/* How */
.steps {
  display: grid; gap: 1rem; position: relative;
}
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem; box-shadow: var(--shadow); text-align: center;
}
.step-num {
  width: 44px; height: 44px; margin: 0 auto .7rem; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--navy), #1d6fb5);
  transition: transform .25s ease;
}
.step:hover .step-num { transform: scale(1.08) rotate(-8deg); }
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps::before {
    content: ""; position: absolute; top: 42px; left: 12%; right: 12%; height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--orange), var(--green));
    opacity: .35; z-index: 0;
  }
  .step { position: relative; z-index: 1; }
}

/* Testimonials */
.t-grid { display: grid; gap: 1rem; }
.t-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow);
}
.stars { color: #f5a623; letter-spacing: 1px; margin-bottom: .5rem; }
.t-card p { margin: 0 0 .8rem; color: var(--text); }
.t-card cite { color: var(--muted); font-style: normal; font-size: .9rem; font-weight: 600; }
@media (min-width: 800px) {
  .t-grid { grid-template-columns: repeat(3, 1fr); }
}

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--navy-ink), var(--navy) 55%, #1a6aae);
  color: #fff;
}
.cta .section-head h2, .cta .section-head p, .cta .eyebrow { color: #fff; }
.cta .section-head p { color: rgba(255,255,255,.8); }
.cta-form {
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; max-width: 560px; margin: 0 auto;
}
.cta-form input {
  flex: 1 1 220px; padding: .9rem 1rem; border-radius: 999px; border: 0;
  outline: none;
}

/* Team + Support slide (live bottom-band style) */
.team-slide {
  padding: 4rem 0 4.5rem;
  min-height: min(72svh, 760px);
}
.team-panel {
  display: grid;
  gap: 1.5rem;
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  color: #e8eef5;
}
.team-founder {
  display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1rem;
}
.team-founder img, .team-side img {
  border-radius: 12px; object-fit: cover; border: 1px solid rgba(255,255,255,.15);
}
.team-founder img { width: 96px; height: 96px; }
.team-side {
  display: flex; gap: .75rem; align-items: center; margin-top: .85rem;
}
.team-side img { width: 48px; height: 48px; }
.team-col .role {
  margin: 0; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.role-ceo { color: #38bdf8; }
.role-admin { color: #4ade80; }
.role-advisor { color: #fbbf24; }
.team-col .name { margin: .2rem 0 0; font-weight: 700; color: #fff; font-family: var(--display); }
.team-links { display: flex; gap: .4rem; margin-top: .55rem; }
.team-links a {
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: #93c5fd; font-size: .75rem; font-weight: 800;
}
.team-support { text-align: center; }
.team-support h2 {
  margin: 0; font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff;
}
.team-support > p { margin: .4rem 0 1rem; color: #94a3b8; font-size: .95rem; }
.team-support form {
  display: grid; gap: .65rem; text-align: left; max-width: 420px; margin: 0 auto;
}
.team-support input {
  width: 100%; padding: .8rem 1rem; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.28); color: #fff; outline: none;
}
.team-support input:focus { border-color: #38bdf8; }
.team-support button {
  width: 100%; padding: .9rem 1rem; border: 0; border-radius: 12px; cursor: pointer;
  font-weight: 800; color: #fff;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}
#support-status { margin: .2rem 0 0; text-align: center; font-size: .88rem; color: #93c5fd; min-height: 1.2em; }
.team-secure { text-align: center; display: grid; align-content: space-between; gap: 1rem; }
.secure-badge {
  width: 64px; height: 64px; margin: 0 auto; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.6rem;
  background: rgba(56,189,248,.12); border: 1px solid rgba(56,189,248,.35);
  box-shadow: 0 0 24px rgba(56,189,248,.25);
}
.secure-title { margin: 0; font-size: 1.15rem; font-weight: 800; color: #fff; }
.secure-sub { margin: 0; color: #94a3b8; font-size: .9rem; }
.team-logo { margin: .5rem auto 0; max-width: 140px; height: auto; }

@media (min-width: 960px) {
  .team-panel {
    grid-template-columns: 1fr 1.15fr .9fr;
    gap: 1.25rem;
    padding: 1.6rem 1.4rem;
    align-items: stretch;
  }
  .team-col { border-right: 1px solid rgba(255,255,255,.08); padding-right: 1rem; }
  .team-support { border-right: 1px solid rgba(255,255,255,.08); padding: 0 1rem; }
}

/* Footer */
.footer {
  background: #071f33; color: rgba(255,255,255,.82); padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
.footer h4 { margin: 0 0 .7rem; color: #fff; font-family: var(--display); }
.footer a { display: block; margin: .35rem 0; color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between;
  font-size: .88rem; color: rgba(255,255,255,.55);
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* WhatsApp */
.wa-float {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff; font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(37,211,102,.4);
  animation: pulseRing 2s infinite;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important; transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
