/* PINE LAKE CONSULTING – GLOBAL THEME STYLES */

:root {
  --bg-dark: #05060a;
  --bg-darker: #020308;
  --card-bg: #10121f;
  --text-main: #f5f7ff;
  --text-muted: #a0a4c0;
  --accent: #23b2ff;
  --accent-soft: rgba(35, 178, 255, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.72);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.6);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #101327 0, #020308 52%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Decorative scroll spine on desktop */
body::after {
  content: "";
  position: fixed;
  right: 1.6rem;
  top: 26vh;
  width: 2px;
  height: 46vh;
  background: linear-gradient(
    to bottom,
    rgba(35, 178, 255, 0),
    rgba(35, 178, 255, 0.7),
    rgba(35, 178, 255, 0)
  );
  opacity: 0.4;
  pointer-events: none;
  z-index: 5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header / NAV */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 10, 0.96),
    rgba(5, 6, 10, 0.88),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff, #23b2ff 35%, #05060a);
  box-shadow: 0 0 24px rgba(35, 178, 255, 0.65);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: transform 0.2s ease-out;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--text-main);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
}

/* Hamburger / mobile nav toggle */

.nav-toggle {
  display: none; /* shown only in mobile breakpoint */
  background: none;
  border: 0;
  padding: 0;
  margin-left: auto;
  cursor: pointer;

  width: 32px;
  height: 24px;

  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition:
    transform 0.18s ease-out,
    opacity 0.18s ease-out,
    background-color 0.18s ease-out;
}

.nav-toggle span + span {
  margin-top: 4px;
}

/* Open (X) state */
.nav-toggle.nav-toggle--open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.nav-toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.nav-toggle--open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-cta {
  display: none !important;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.15s ease-out,
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out,
    border-color 0.15s ease-out;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #23b2ff, #0071bd);
  color: #020308;
  box-shadow: 0 12px 40px rgba(35, 178, 255, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(35, 178, 255, 0.65);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--text-main);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
  background: rgba(255, 255, 255, 0.02);
}

/* Button hover light sweep & focus */

.btn-primary::after,
.btn-outline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(35, 178, 255, 0.3), transparent 55%);
  opacity: 0;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
  transform: translate3d(-20%, -20%, 0);
  pointer-events: none;
}

.btn-primary:hover::after,
.btn-outline:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Sections */

main {
  flex: 1;
}

section {
  padding: 3.4rem 0;
  scroll-margin-top: 5.5rem;
}

/* subtle alternation for section backgrounds */
main > section:nth-of-type(even) {
  background: radial-gradient(
    circle at top left,
    rgba(8, 11, 27, 0.9),
    rgba(2, 3, 8, 0.98)
  );
}

/* light divider between sections */
section + section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0 3.6rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(35, 178, 255, 0.36) 0, transparent 46%),
    radial-gradient(circle at 110% 10%, rgba(115, 86, 255, 0.3) 0, transparent 44%);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* extra diagonal sheen in hero */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0,
    rgba(255, 255, 255, 0.02) 28%,
    transparent 60%
  );
  mix-blend-mode: soft-light;
  opacity: 0.8;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3.2rem;
  align-items: center;
  z-index: 1;
}

.hero.single-col .hero-inner {
  grid-template-columns: minmax(0, 1.3fr);
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw + 1.2rem, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-lede {
  max-width: 32rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.hero-meta span::before {
  content: "●";
  margin-right: 0.4rem;
  color: var(--accent);
  font-size: 0.5rem;
  vertical-align: middle;
}

/* Hero panel */

.hero-panel {
  position: relative;
  background: radial-gradient(circle at top left, #171b2e, #050712);
  border-radius: 26px;
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  /* Remove float animation to avoid conflict with scroll reveal */
  /* animation: heroPanelFloat 14s ease-in-out infinite alternate; */
}


.hero-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0, rgba(35, 178, 255, 0.25) 0, transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.08) 0, transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-panel-inner {
  position: relative;
  z-index: 1;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.chip {
  font-size: 0.7rem;
  padding: 0.24rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 6, 20, 0.7);
  backdrop-filter: blur(16px);
  color: var(--text-muted);
}

.panel-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.panel-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.78rem;
}

.stat {
  min-width: 90px;
}

.stat strong {
  display: block;
  font-size: 1.2rem;
}

.stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Section headings */

.section-heading {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* animated accent line after headings */
.section-heading::after {
  content: "";
  height: 1px;
  width: 80px;
  margin-left: 0.8rem;
  background: linear-gradient(
    90deg,
    rgba(35, 178, 255, 0.12),
    rgba(35, 178, 255, 0.8),
    transparent
  );
  opacity: 0.9;
}

.section-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 34rem;
}

/* Pills / badges */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
  position: relative;
}

.pill {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
  color: var(--text-muted);
  background: rgba(7, 9, 20, 0.8);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
  position: relative;
}

.badge {
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 7, 18, 0.9);
  color: var(--text-muted);
}

/* abstract glow behind pill/badge rows 

.pill-row::before,
.badge-row::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(35, 178, 255, 0.2) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(115, 86, 255, 0.2) 0, transparent 60%);
  opacity: 0.65;
  mix-blend-mode: screen;
  pointer-events: none;
} */

/* Grids & cards */

.grid {
  display: grid;
  gap: 1.7rem;
  margin-top: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: radial-gradient(circle at top left, #15182b, #050712);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.35rem 1.45rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, var(--accent-soft), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

/* subtle diagonal highlight on cards */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0,
    rgba(255, 255, 255, 0.04) 30%,
    transparent 65%
  );
  mix-blend-mode: soft-light;
  opacity: 0.7;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
}

/* card "icon" via label */
.card-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.65rem;
  position: relative;
  padding-left: 1.4rem;
}

/* geometric icon chip */
.card-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 0.35rem;
  background: radial-gradient(
    circle at 30% 20%,
    #ffffff,
    #23b2ff 45%,
    #0071bd
  );
  box-shadow: 0 8px 20px rgba(35, 178, 255, 0.45);
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.card-list {
  margin-top: 0.8rem;
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-muted);
  padding-left: 0;
}

.card-list li {
  position: relative;
  padding-left: 0.9rem;
  margin-bottom: 0.35rem;
}

.card-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.7rem;
  color: var(--accent);
}

/* Card hover state */

.card:hover,
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85);
  border-color: rgba(35, 178, 255, 0.35);
  background: radial-gradient(circle at top left, #1b1f3a, #050712);
}

.card-icon {
  margin-bottom: 0.6rem;
  opacity: 0.95;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.card:hover .card-icon {
  transform: translateY(-3px);
  opacity: 1;
}

/* Why layout */

.why-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1.7rem;
  margin-top: 1.9rem;
}

/* Team */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.team-card {
  background: radial-gradient(circle at top, #191d36, #050712);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

.team-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.team-role {
  font-size: 0.82rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.team-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.team-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.team-photo-wrap {
  margin: 0 auto 0.9rem;
  display: flex;
  justify-content: center;
}

.team-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    filter 0.18s ease-out;
}

.team-photo--bw {
  filter: grayscale(100%);
}

/* Team photo hover - reveal & lift */
.team-card:hover .team-photo {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.8);
  filter: none;
}

/* CTA panel */

.cta-section {
  padding: 3.4rem 0 3.8rem;
}

.cta-panel {
  position: relative;
  background: radial-gradient(circle at top left, #15182b, #020308);
  border-radius: var(--radius-xl);
  padding: 2.3rem 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  text-align: center;
  overflow: hidden;
}

/* abstract light behind CTA */
.cta-panel::before {
  content: "";
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(circle at 0 0, rgba(35, 178, 255, 0.24) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(115, 86, 255, 0.18) 0, transparent 60%);
  opacity: 0.85;
  mix-blend-mode: screen;
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.cta-panel p {
  max-width: 32rem;
  margin: 0 auto 1.8rem;
  font-size: 0.94rem;
  color: var(--text-muted);
}

.cta-meta {
  margin-top: 1.1rem;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.cta-meta a {
  color: var(--accent);
}

/* Footer */

footer {
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
}

/* Forms (contact) */

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 7, 18, 0.95);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(35, 178, 255, 0.4);
}

/* Typography & readability tweaks */

.hero-lede,
.section-subtitle,
.card-text,
.team-text,
.team-meta,
.cta-panel p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Pill & badge hover interactions */

.pill,
.badge {
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    border-color 0.16s ease-out,
    background 0.16s ease-out;
}

.pill:hover,
.badge:hover {
  transform: translateY(-1px);
  border-color: rgba(35, 178, 255, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.65);
  background: rgba(9, 12, 30, 0.95);
}

/* Scroll Reveal Base Styles */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Directional / variant starting states */
.reveal-left {
  transform: translateX(-32px);
}

.reveal-right {
  transform: translateX(32px);
}

.reveal-zoom {
  transform: scale(0.96);
}

/* Visible state */
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Override transform for specific variants when visible */
.reveal-left.visible,
.reveal-right.visible,
.reveal-zoom.visible {
  transform: translateX(0) translateY(0) scale(1);
}

/* Hero panel float animation */

@keyframes heroPanelFloat {
  0% {
    transform: translateY(0) translateX(0);
    box-shadow: var(--shadow-soft);
  }
  50% {
    transform: translateY(-4px) translateX(2px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
  }
  100% {
    transform: translateY(0) translateX(0);
    box-shadow: var(--shadow-soft);
  }
}

/* Responsive */

@media (max-width: 900px) {
  body::after {
    display: none; /* hide scroll spine on smaller screens */
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.4rem;
  }

  .hero-panel {
    max-width: 460px;
    margin: 0 auto;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .nav {
    position: relative;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .logo {
    padding-left: 0.25rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-right: 0.25rem;
  }

  .nav-links.nav-links--open {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: absolute;
    top: 100%;
    right: 1.5rem;
    left: 1.5rem;
    padding: 1rem 1.25rem 1.25rem;
    margin-top: 0.6rem;
    background: rgba(5, 7, 18, 0.96);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
    z-index: 50;
    font-size: 0.95rem;
  }

  .nav-links.nav-links--open a {
    color: var(--text-main);
  }

  .nav-links.nav-links--open .mobile-cta {
    margin-top: 0.6rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    display: block;
    color: var(--accent);
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-inner {
    gap: 2rem;
  }

  .hero-actions {
    gap: 0.7rem;
  }

  section {
    padding: 2.6rem 0;
  }

  .grid-2,
  .grid-3,
  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-panel {
    padding: 1.9rem 1.3rem 2.1rem;
  }

  .card,
  .team-card {
    padding: 1.3rem 1.2rem 1.35rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}