:root {
  --navy: #101827;
  --navy-2: #182234;
  --orange: #e75925;
  --orange-dark: #c5481e;
  --text: #111827;
  --muted: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 24, 39, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
}

.brand img {
  width: 56px;
}

.brand-name {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-subtitle {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: white;
}

.site-nav a.active {
  color: white;
}

.site-nav a.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.site-nav .nav-cta.active::after {
  display: none;
}

.nav-cta {
  padding: 10px 16px;
  color: white !important;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(231, 89, 37, 0.28);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 28px;
  height: 2px;
  background: white;
  border-radius: 99px;
  position: relative;
  content: "";
}

.nav-toggle-label span::before {
  position: absolute;
  top: -8px;
}

.nav-toggle-label span::after {
  position: absolute;
  top: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(16,24,39,0.96) 0%, rgba(16,24,39,0.84) 48%, rgba(16,24,39,0.22) 100%),
    url("../img/office-colabSM.jpg") center/cover no-repeat;
}

.hero-inner {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 56px;
  padding: 90px 0;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy {
  max-width: 600px;
  margin: 26px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--orange);
  box-shadow: 0 18px 34px rgba(231, 89, 37, 0.3);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  color: white;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
}

.button-light {
  color: var(--navy);
  background: white;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
  color: rgba(255,255,255,0.72);
  font-size: 0.93rem;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-panel,
.info-panel {
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: panelFloat 6s ease-in-out infinite;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.hero-panel > * {
  position: relative;
  z-index: 2;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;

  background: radial-gradient(
    circle at var(--glow-x, 70%) var(--glow-y, 30%),
    rgba(231, 89, 37, 0.35) 0%,
    rgba(231, 89, 37, 0.18) 30%,
    rgba(231, 89, 37, 0.08) 55%,
    transparent 70%
  );

  filter: blur(40px);
  opacity: 0;
  transition: opacity 350ms ease;
}

.hero-panel:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
}

.hero-panel:hover::after {
  opacity: 0.5;
}

@keyframes panelFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes panelTint {
  0% { opacity: 0.18; }
  50% { opacity: 0.48; }
  100% { opacity: 0.18; }
}

.metric-value {
  transition: transform 180ms ease;
}

.hero-panel:hover .metric-value {
  transform: translateY(-2px);
}

@keyframes panelFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

@keyframes panelGlow {
  0%   { box-shadow: 0 0 0 0 rgba(231, 89, 37, 0.08); }
  50%  { box-shadow: 0 0 30px 4px rgba(231, 89, 37, 0.12); }
  100% { box-shadow: 0 0 0 0 rgba(231, 89, 37, 0.08); }
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.panel-label {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-title {
  margin: 4px 0 0;
  font-size: 1.2rem;
  font-weight: 850;
}

.status-pill {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  color: #bbf7d0;
  background: rgba(34,197,94,0.16);
  font-size: 0.78rem;
  font-weight: 850;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}

.metric-value {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.66);
  font-size: 0.84rem;
}

.panel-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,0.15);
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}

.panel-row strong {
  color: white;
}

.section {
  padding: 92px 0;
}

.section + .section {
  border-top: 1px solid rgba(0,0,0,0.04);
}

.section-soft {
  background: #f1f5f9;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 620px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-soft);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--orange);
  background: rgba(231,89,37,0.1);
  font-size: 1.45rem;
  font-weight: 900;
}

.card h3 {
  margin: 22px 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 650;
}

.card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--orange);
  font-weight: 900;
}

.page-hero {
  color: white;
  background:
    radial-gradient(circle at top right, rgba(231,89,37,0.28), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.page-hero-inner {
  padding: 92px 0;
  max-width: 850px;
}

.page-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 1.2rem;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 46px;
  align-items: stretch; /* THIS is the key */
}

.content-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-soft);
}

.content-card h2 {
  margin-top: 0;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.content-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: center; /* centers icon vertically */
  padding: 18px;
  border-radius: var(--radius-md);
  background: #f8fafc;
  border: 1px solid var(--border);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-item::before {
  content: "✓";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(231, 89, 37, 0.1);
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(231, 89, 37, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
}

.feature-item:hover::before {
  transform: scale(1.08);
  background: var(--orange);
  color: white;
}

.feature-text {
  display: block;
}

.feature-text strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.3;
}

.feature-text span {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.contact-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  margin: 0 0 10px;
}

.contact-card a {
  color: var(--orange);
  font-weight: 850;
}

.cta-band {
  padding: 0 0 92px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: 0;
  pointer-events: none;

  background: radial-gradient(
    circle at var(--glow-x, 70%) var(--glow-y, 30%),
    rgba(231, 89, 37, 0.35) 0%,
    rgba(231, 89, 37, 0.18) 30%,
    rgba(231, 89, 37, 0.08) 55%,
    transparent 70%
  );

  filter: blur(50px);
  opacity: 0;
  transition: opacity 350ms ease;
}

.page-hero:hover::after {
  opacity: 0.35;
}

.cta-inner {
  position: relative;
  overflow: hidden;
  isolation: isolate;  
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at top right, rgba(231,89,37,0.35), transparent 35%),
    var(--navy);
  box-shadow: var(--shadow);
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.cta-inner p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.72);
}

.cta-inner::after {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: 0;
  pointer-events: none;

  background: radial-gradient(
    circle at var(--glow-x, 70%) var(--glow-y, 30%),
    rgba(231, 89, 37, 0.35) 0%,
    rgba(231, 89, 37, 0.18) 30%,
    rgba(231, 89, 37, 0.08) 55%,
    transparent 70%
  );

  filter: blur(50px);
  opacity: 0;
  transition: opacity 350ms ease;
}

.cta-inner:hover::after {
  opacity: 0.35;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255,255,255,0.62);
  background: #0b1120;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a:hover {
  color: white;
}

@media (max-width: 768px) {
  .hero::before {
    transform: none;
  }
}

@media (max-width: 920px) {
  .nav-toggle-label {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 18px;
    background: rgba(16,24,39,0.98);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 76px 0;
  }

  .hero-panel {
    max-width: 520px;
    }

  .card-grid,
  .content-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 920px) {
  .site-nav a.active::after {
    display: none;
  }

  .site-nav a.active {
    color: white;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 46px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-subtitle {
    font-size: 0.66rem;
  }

  .site-nav {
    top: 74px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(16,24,39,0.96), rgba(16,24,39,0.88)),
      url("../img/office-colabSM.jpg") center/cover no-repeat;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .content-card,
  .card,
  .cta-inner {
    padding: 26px;
  }
}

/* Polish pass */

.site-nav a {
  position: relative;
}

.card,
.contact-card,
.content-card,
.feature-item {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-card:hover,
.content-card:hover,
.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
  border-color: rgba(231, 89, 37, 0.22);
}

.site-footer span {
  line-height: 1.5;
}

@media (max-width: 920px) {
  .page-hero-inner {
    padding: 72px 0;
  }

  .content-layout {
    gap: 28px;
  }

  .section-heading {
    margin-bottom: 28px;
  }
}

@media (max-width: 560px) {
  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
    letter-spacing: -0.045em;
  }

  .hero-copy,
  .page-hero p {
    font-size: 1.05rem;
  }

  .hero-proof {
    flex-direction: column;
    gap: 10px;
  }

  .page-hero-inner {
    padding: 58px 0;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

.lead-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f8fafc;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(231, 89, 37, 0.65);
  background: white;
  box-shadow: 0 0 0 4px rgba(231, 89, 37, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}