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

html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: #0d0d0d;
  color: #ddd;
  line-height: 1.6;
}

main {
  flex: 1;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1.5rem 2rem;
}

.nav-pill {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  padding: 0.6rem 0.6rem 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.25), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.logo {
  color: #111;
  font-family: 'Baloo 2', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin: 0 1rem;
}

.nav-links a {
  color: #555;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #b35900;
}

.cta-button {
  display: inline-block;
  background: #ff4d2e;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #b35900;
}

.hero {
  text-align: center;
  padding: 8rem 2rem 6rem;
}

.hero h1 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 1.25rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.team > .eyebrow { margin-bottom: 0.45rem; }

.hero p {
  color: #aaa;
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.hero-intro {
  max-width: 640px;
  margin: 1.25rem auto 0;
  color: #999;
  font-size: 1rem;
}

.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
}

.solutions-marquee {
  padding: 1rem 0 5rem;
  text-align: center;
}

.solutions-marquee h2 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.marquee {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 2rem 0 2.5rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  will-change: transform;
}

.marquee-item {
  flex: 0 0 auto;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  padding: 1.05rem 2.1rem;
  color: #ccc;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  will-change: transform, opacity;
}

.marquee-item:hover {
  background-color: #ff4d2e;
  border-color: #ff4d2e;
  color: #fff;
}

.team {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 2rem 6rem;
  text-align: center;
}

.team h2 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.team-card {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 2rem;
}

.team-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 16px;
  background: #ff4d2e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.team-avatar svg {
  width: 3.5rem;
  height: 3.5rem;
}

.team-card h3 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-role {
  display: block;
  color: #ff8a65;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.9rem;
}

.team-card p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.6;
}

.services {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.services-list li {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 1.5rem;
}

.services-list h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Baloo 2', 'Inter', sans-serif;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.services-list h3::before {
  content: "\2713";
  color: #ff4d2e;
  font-weight: 700;
}

.services-list p {
  color: #999;
  font-size: 0.9rem;
}

.steps-slider {
  max-width: 640px;
  margin: 0 auto 3rem;
}

.steps-viewport {
  overflow: hidden;
  border-radius: 16px;
}

.steps-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.step-slide {
  flex: 0 0 100%;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #ff4d2e;
  color: #fff;
  font-family: 'Baloo 2', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.step-slide.is-active .step-badge {
  animation: popIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  0% {
    transform: scale(0.4) rotate(-15deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.15) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.step-slide h3 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.step-slide p {
  color: #999;
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0 auto;
}

.steps-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.steps-arrow {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid #333;
  background: #161616;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.steps-arrow:hover {
  background-color: #ff4d2e;
  border-color: #ff4d2e;
  transform: scale(1.1) rotate(-4deg);
}

.steps-dots {
  display: flex;
  gap: 0.55rem;
}

.steps-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #333;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.steps-dot.is-active {
  background: #ff4d2e;
  transform: scale(1.4);
}

.feature-block {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 2rem 2.25rem;
  margin-bottom: 2.5rem;
}

.feature-block p {
  margin-bottom: 0.9rem;
}

.feature-block p:last-child {
  margin-bottom: 0;
}

.services-note {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.7;
}

.services-cta {
  text-align: center;
}

.about {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.about-intro {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.about-block {
  margin-bottom: 2.5rem;
}

.about-block h2 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.about-block p {
  color: #999;
  font-size: 1rem;
  line-height: 1.7;
}

.about-values {
  margin-top: 0;
  margin-bottom: 2.5rem;
}

.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.founder-avatar {
  flex-shrink: 0;
  width: 8rem;
  height: 8rem;
  border-radius: 16px;
  background: #ff4d2e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-avatar svg {
  width: 3.5rem;
  height: 3.5rem;
}

.founder-info h3 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.founder-info p {
  color: #999;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
}

.contact {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
  text-align: center;
}

.contact-info h3 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #999;
  text-decoration: none;
}

.contact-info a:hover {
  color: #ff4d2e;
}

.contact-form {
  background: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-field label {
  color: #ccc;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea {
  background: #0d0d0d;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #ff4d2e;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

.form-status {
  margin-top: 1rem;
  color: #6fcf97;
  font-size: 0.9rem;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

footer {
  background: #111;
  color: #fff;
  padding: 3.5rem 2rem 0;
}

footer a {
  color: #999;
  text-decoration: none;
}

footer a:hover {
  color: #ff4d2e;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 0.9rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.9rem;
}

.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid #2a2a2a;
  padding: 1.5rem 0;
  text-align: left;
}

.footer-bottom p {
  color: #999;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 2026 visual refresh */
:root {
  --ink: #edf6ff;
  --ink-soft: #a9c2dc;
  --paper: #050914;
  --paper-deep: #0b1424;
  --coral: #38a8ff;
  --coral-dark: #1879cf;
  --line: rgba(166, 215, 255, 0.16);
  --muted: #a8b9cc;
}

body {
  background:
    radial-gradient(circle at 90% 5%, rgba(56, 168, 255, 0.25), transparent 25rem),
    radial-gradient(circle at 6% 34%, rgba(23, 72, 135, 0.34), transparent 28rem),
    var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

main,
section,
.nav-pill,
.team-card,
.services-list li,
.founder-card,
.contact-form,
.footer-col {
  min-width: 0;
}

h1, h2, h3, p, a, span {
  overflow-wrap: anywhere;
}

header {
  padding: 1.1rem 2rem;
  background: linear-gradient(to bottom, rgba(5, 9, 20, 0.92), rgba(5, 9, 20, 0));
  backdrop-filter: blur(10px);
}

.nav-pill {
  max-width: 1120px;
  min-height: 58px;
  padding: 0.45rem 0.45rem 0.45rem 1.2rem;
  background: rgba(9, 22, 41, 0.84);
  border: 1px solid rgba(119, 196, 255, 0.23);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.logo,
.footer-logo {
  color: var(--ink);
  font-family: 'Baloo 2', 'Inter', sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.logo::before,
.footer-logo::before {
  content: '';
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 1.65rem;
  background: url('images/borgen-fortress-white-icon.png') center / contain no-repeat;
}

.nav-links { gap: 1.35rem; }
.nav-links a { color: var(--ink-soft); font-size: 0.72rem; }
.nav-links a:hover { color: var(--coral-dark); }

.cta-button {
  background: var(--coral-dark);
  border-radius: 10px;
  box-shadow: 0 5px 0 rgba(4, 30, 61, 0.42);
  padding: 0.8rem 1.25rem;
  transform: translateY(0);
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
  text-align: center;
}

.cta-button:hover {
  background: #0d5aab;
  box-shadow: 0 3px 0 rgba(4, 30, 61, 0.42);
  transform: translateY(2px);
}

.hero {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 9rem) 2rem clamp(4rem, 7vw, 6.5rem);
}

.hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  right: 7%;
  top: 18%;
  width: clamp(11rem, 22vw, 18rem);
  height: clamp(11rem, 22vw, 18rem);
  border-radius: 48% 52% 37% 63%;
  background: linear-gradient(145deg, #1579cd, #43b4ff);
  opacity: 0.95;
  transform: rotate(-16deg);
  animation: bubbleFloat 5.5s ease-in-out infinite;
  will-change: transform;
}

.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: calc(7% + clamp(2.5rem, 5.3vw, 4.2rem));
  top: calc(18% + clamp(2.7rem, 5.3vw, 4.4rem));
  width: clamp(4.5rem, 9vw, 7.5rem);
  height: clamp(4.5rem, 9vw, 7.5rem);
  background: rgba(2, 30, 68, 0.58);
  -webkit-mask: url('images/borgen-fortress-white-icon.png') center / contain no-repeat;
  mask: url('images/borgen-fortress-white-icon.png') center / contain no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.5;
  animation: bubbleFloat 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bubbleFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-16deg) scale(1); }
  25% { transform: translate3d(-0.65rem, 0.75rem, 0) rotate(-11deg) scale(1.03); }
  50% { transform: translate3d(-1.3rem, 1.2rem, 0) rotate(-6deg) scale(1.07); }
  75% { transform: translate3d(0.45rem, 0.5rem, 0) rotate(-20deg) scale(1.02); }
}

.hero h1 {
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(3.15rem, 7.2vw, 6.55rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero p,
.hero-intro {
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero .hero-cta { margin-top: 2.15rem; }

.solutions-marquee { padding: 1rem 0 6rem; }
.solutions-marquee h2,
.team h2,
.about-block h2 {
  color: var(--ink);
  font-size: 1.85rem;
  letter-spacing: -0.045em;
}

.marquee { padding: 1.5rem 0 2.5rem; }
.marquee-item {
  background: rgba(10, 25, 47, 0.82);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.marquee-item:hover { background: var(--coral); border-color: var(--coral); color: #fff; }

.team,
.services,
.about,
.contact { max-width: 1120px; }

.team-card,
.services-list li,
.feature-block,
.step-slide,
.founder-card,
.contact-form,
.admin-panel {
  background: rgba(10, 25, 47, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.19);
}

.team-card {
  padding: 0;
  overflow: hidden;
}

.team-card-content { padding: 1.75rem; }

.team-photo {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1579cd, #43b4ff);
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.team-photo span {
  position: absolute;
  font-family: 'Baloo 2', 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  color: #fff;
}

.team-photo img:not([hidden]) + span { display: none; }

.team-card,
.services-list li { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.team-grid-single { grid-template-columns: minmax(0, 460px); justify-content: center; }
.team-card:hover,
.services-list li:hover { transform: translateY(-5px); box-shadow: 0 22px 45px rgba(0, 0, 0, 0.32); }

.team-avatar,
.founder-avatar,
.step-badge {
  background: linear-gradient(145deg, #1579cd, #43b4ff);
  border-radius: 50%;
  color: #fff;
}

.team-avatar {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.team-card h3,
.services-list h3,
.step-slide h3,
.founder-info h3,
.contact-info h3,
.admin-panel h1,
.field-group h2 { color: var(--ink); }
.team-card p,
.services-list p,
.step-slide p,
.founder-info p,
.about-block p,
.about-intro { color: var(--muted); }
.team-role { color: var(--coral-dark); }
.services-list h3::before { color: var(--coral); }

.steps-viewport { border-radius: 18px; }
.steps-arrow { background: #0c1e36; border-color: var(--line); color: var(--ink); }
.steps-arrow:hover { background: var(--coral-dark); border-color: var(--coral-dark); }
.steps-dot { background: #36516e; }
.steps-dot.is-active { background: var(--coral); }
.services-note { color: var(--ink-soft); }

.contact-info > div {
  padding: 1.5rem;
  background: rgba(13, 31, 57, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.contact-info a { color: var(--ink-soft); }
.contact-info a:hover { color: var(--coral-dark); }
.form-field label { color: var(--ink-soft); }
.form-field input,
.form-field textarea,
#login-form input,
.field-group input,
.field-group textarea {
  background: #07111f;
  border-color: rgba(166, 215, 255, 0.23);
  color: var(--ink);
  min-width: 0;
}
.form-field input:focus,
.form-field textarea:focus,
#login-form input:focus,
.field-group input:focus,
.field-group textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(239, 111, 85, 0.14); }

footer {
  margin-top: 2rem;
  background: #020711;
  color: #fff;
}
footer a,
.footer-brand p,
.footer-bottom p { color: #c7d5cc; }
footer a:hover { color: #ffb3a4; }
.footer-logo,
.footer-col h4 { color: #fff; }
.footer-bottom { border-color: rgba(255, 255, 255, 0.18); }

@media (max-width: 760px) {
  header { padding: 0.75rem 1rem; }
  .nav-pill { border-radius: 13px; padding-left: 1rem; }
  .nav-links { display: none; }
  .logo { font-size: 1.2rem; }
  .logo::before { width: 1.45rem; height: 1.45rem; flex-basis: 1.45rem; }
  .nav-pill .cta-button { padding: 0.68rem 0.82rem; font-size: 0.64rem; }
  .hero { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero::before { opacity: 0.28; right: 1rem; }
  .hero::after { right: clamp(3.5rem, 7vw, 5rem); }
  .team,
  .services,
  .about,
  .contact { padding-left: 1.25rem; padding-right: 1.25rem; }
  .contact-form { padding: 1.5rem; }
}

@media (max-width: 480px) {
  header { padding: 0.6rem 0.75rem; }
  .nav-pill { min-height: 52px; padding: 0.35rem 0.35rem 0.35rem 0.85rem; }
  .logo { font-size: 1.05rem; }
  .logo::before { width: 1.25rem; height: 1.25rem; flex-basis: 1.25rem; }
  .nav-pill .cta-button { padding: 0.6rem 0.68rem; font-size: 0.58rem; letter-spacing: 0.02em; }

  .hero { padding-top: 4.5rem; padding-bottom: 3.5rem; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 3.6rem); }
  .hero p, .hero-intro { font-size: 1rem; }
  .hero::before { width: 11rem; height: 11rem; right: -2.5rem; top: 14%; }
  .hero::after { width: 4.25rem; height: 4.25rem; right: 0.8rem; top: calc(14% + 2.8rem); }

  .solutions-marquee { padding-bottom: 4.25rem; }
  .marquee-item { padding: 0.82rem 1.1rem; font-size: 0.9rem; }
  .team { padding-bottom: 4.25rem; }
  .team h2, .solutions-marquee h2 { font-size: 1.55rem; }
  .team-card, .services-list li, .feature-block, .step-slide, .founder-card { padding: 1.35rem; }
  .team-card { padding: 0; }
  .team-card-content { padding: 1.35rem; }
  .team-photo { height: 240px; }
  .team-avatar, .founder-avatar { width: 5.5rem; height: 5.5rem; }

  .contact-info { grid-template-columns: 1fr; margin-bottom: 1.5rem; }
  .contact-form { padding: 1.2rem; }
  .form-field input, .form-field textarea { font-size: 16px; }
  .footer-inner { gap: 1.75rem; }
  .footer-bottom-links { gap: 1rem; flex-wrap: wrap; }
  .contact-info a { font-size: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
