:root {
  --ink: #151f33;
  --muted: #687386;
  --soft: #f4f7fd;
  --paper: #ffffff;
  --line: #dfe6f1;
  --blue: #2f63ee;
  --blue-dark: #244aa8;
  --cyan: #0699c7;
  --purple: #671d73;
  --violet: #8b42ef;
  --mint: #17b59a;
  --orange: #f27b2f;
  --rose: #ef4b71;
  --shadow: 0 22px 48px rgba(32, 45, 76, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.footer{
    background:#F2F0EF;
    color:#222;
    padding:50px 5% 25px;
    border-top:1px solid #ddd;
	font-size:14px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr 1.2fr;
    gap:50px;
}

.footer-logo{
    width:220px;
    margin-bottom:25px;
}

.company-info p{
    line-height:1.8;
    color:#555;
    margin-bottom:5px;
}

.contact-info p{
    margin-bottom:12px;
    line-height:1.7;
	color:#333;
}

.contact-info i{
    color:#ff6b00;
    margin-right:8px;
    width:20px;
}

.contact-info a{
    text-decoration:none;
    color:#333;
    transition:.3s;
}

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

.footer-column h3{
    font-size:16px;
    margin-bottom:15px;
    color:#000;
    font-weight:700;
}

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

.footer-column ul li{
    margin-bottom:3px;
    line-height:1.6;
    color:#555;
}

.footer-column ul li a{
    text-decoration:none;
    color:#555;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#ff7a00;
}

.quick-title{
    margin-top:35px;
}
.social-icons{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff1e8;
    color:#ff6b00;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:18px;
    transition:all .4s ease;
}

.social-icons a:hover{
    background:#ff6b00;
    color:#fff;
    transform:translateY(-5px) rotate(360deg);
    box-shadow:0 10px 25px rgba(255,107,0,.25);
}
.social-icons img{
    width:20px;
    height:20px;
}

.newsletter-form{
    margin:20px 0;
}

.newsletter-form input{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:6px;
    margin-bottom:12px;
    outline:none;
}

.newsletter-form button{
    width:100%;
    padding:13px;
    border:none;
    background:#FC751F;
    color:#fff;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
}

.newsletter-form button:hover{
    background:#FFA64D;
}

.footer-column small{
    color:#666;
    line-height:1.6;
}

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid #ddd;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    color:#555;
}

.footer-links{
    display:flex;
    gap:20px;
}

.footer-links a{
    text-decoration:none;
    color:#555;
}

.footer-links a:hover{
    color:#ff7a00;
}

/* Responsive */
@media(max-width:991px){
    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

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

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }
}


/* ==========================
   PARTNERS SECTION
========================== */

.partners-section{
    background:#ffffff;
    padding:70px 0;
    overflow:hidden;
}

/* Container for side spacing */

.partners-container{
    max-width:1400px;
    margin:auto;
    padding:0 40px;
}

/* Heading */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:38px;
    font-weight:600;
    color:#111;
    line-height:1.3;
}

/* ==========================
   LOGO SLIDER
========================== */

.slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.slide-track{
    display:flex;
    align-items:center;
    width:calc(250px * 12);
    animation: scroll 30s linear infinite;
}

.slide{
    width:250px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.slide img{
    max-width:180px;
    height:80px;
    object-fit:contain;
    transition:0.3s ease;
    filter: grayscale(100%);
}

.slide img:hover{
    filter: grayscale(0%);
    transform:scale(1.05);
}

/* Infinite Smooth Animation */

@keyframes scroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-250px * 6));
    }
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media(max-width:768px){

    .partners-container{
        padding:0 20px;
    }

    .section-title h2{
        font-size:26px;
    }

    .slide{
        width:180px;
    }

    .slide img{
        max-width:130px;
        height:60px;
    }

    .slide-track{
        animation: scroll 20s linear infinite;
    }
}


.audit-btn{
    transition: all 0.3s ease;
}

.audit-btn span{
    display:inline-block;
    transition: transform 0.3s ease;
}

.audit-btn:hover{
    transform: translateY(-4px);
}

.audit-btn:hover span{
    transform: translateX(5px);
}

.primary-link{
    transition: all 0.3s ease;
}

.primary-link span{
    display:inline-block;
    transition: transform 0.3s ease;
}

.primary-link:hover{
    transform: translateY(-4px);
}

.primary-link:hover span{
    transform: translateX(5px);
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #eef1f6;
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 26px;
  width: min(1530px, calc(100% - 48px));
  min-height: 92px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border: 3px solid #ff2947;
  transform: rotate(45deg);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: rotate(-27deg);
}

.brand-mark::before {
  top: 13px;
}

.brand-mark::after {
  top: 22px;
}

.brand-name {
  color: #21418f;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.15vw, 24px);
  flex: 1 1 auto;
}

.nav-links a {
  position: relative;
  color: #202a40;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FC751F;
}

.nav-links a.active::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 3px;
  content: "";
  background: #f27b2f;
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.audit-btn,
.login-btn,
.primary-link,
.secondary-link,
.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 800;
}

.audit-btn,
.primary-link {
  gap: 14px;
  min-width: 220px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(120deg, #ff7a00, #666666);
  box-shadow: 0 16px 38px rgba(252, 117, 31, 0.20);
}

.login-btn,
.secondary-link {
  min-width: 104px;
  padding: 0 22px;
  color: #252f44;
  background: #ffffff;
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.home-hero {
  min-height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 18%, rgba(58, 96, 178, 0.14), transparent 24%),
    linear-gradient(180deg, #f4f7fd 0%, #ffffff 74%);
}

.hero-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0 32px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ff7a00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 1120px;
  margin: 0 auto;
  color: #121c30;
  font-size: clamp(48px, 5.2vw, 70px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.home-hero h1 span {
  color: #ff7a00;
}

.hero-copy {
  max-width: 850px;
  margin: 18px auto 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 220px 128px;
  gap: 10px;
  align-items: center;
  width: min(1030px, 100%);
  min-height: 74px;
  margin: 0 auto;
  padding: 7px 8px 7px 26px;
  background: #ffffff;
  border: 1px solid #e2e7f0;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.location-field {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.pin-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  color: #9ba5b5;
  flex: 0 0 auto;
}

.pin-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
}

.search-panel input,
.search-panel select {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 20px;
  font-weight: 700;
}

.search-panel input::placeholder {
  color: #9aa4b3;
}

.type-field {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.search-panel button,
.planner-card button,
.contact-form button {
  min-height: 56px;
  color: #ffffff;
  background: #ff7a00;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
}

.city-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 14px;
  margin-top: 34px;
}

.city-row strong {
  color: #99a2b3;
  font-size: 15px;
  text-transform: uppercase;
}

.city-row button {
  min-height: 32px;
  padding: 0 22px;
  color: #4d5869;
  background: #ffffff;
  border: 1px solid #dce2ec;
  border-radius: 999px;
  box-shadow: 0 8px 17px rgba(33, 44, 68, 0.09);
  cursor: pointer;
  font-size: 15px;
}

.mentor-rail {
  width: 100%;
  overflow: hidden;
  padding: 12px 0 30px;
  background: #ffffff;
  mask-image: linear-gradient(90deg, transparent 0, #000000 8%, #000000 92%, transparent 100%);
}

.mentor-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(42px, 5.8vw, 95px);
  min-width: 1530px;
}

.mentor-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
}

.mentor-card img {
  width: 58px;
  height: 58px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(34, 46, 75, 0.14);
  object-fit: cover;
}

.mentor-card h2 {
  margin: 0 0 6px;
  color: #30384a;
  font-size: 16px;
}

.mentor-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 8px;
  color: #3861b8;
  background: #fffdf7;
  border: 1px solid #e8dfd2;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.mentor-card b {
  color: #f8b400;
}

.faded {
  opacity: 0.28;
}

.audience-section {
  width: min(1540px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 74px;
}

.audience-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(640px, 100%);
  min-height: 68px;
  margin: 0 auto 30px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 17px 38px rgba(32, 45, 76, 0.14);
}

.tab {
  min-width: 180px;
  min-height: 50px;
  color: #253047;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.tab.active {
  color: #ffffff;
  background: #FC751F;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 176px;
  padding: 32px 18px 22px;
  background: var(--paper);
  border: 1px solid #dfe5ee;
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(32, 45, 76, 0.08);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(32, 45, 76, 0.14);
}

.service-card.is-hidden {
  display: none;
}

.pill {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  color: #8aa0d6;
  background: #ffffff;
  border: 1px solid #e7ebf2;
  border-radius: 999px;
  box-shadow: 0 7px 15px rgba(32, 45, 76, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 17px;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 7px 16px rgba(32, 45, 76, 0.13);
}

.blue {
  color: #2563eb;
  background: #dbeafe;
}

.violet {
  color: #9333ea;
  background: #f1ddff;
}

.mint {
  color: #0f9f8d;
  background: #ccfbf1;
}

.sky {
  color: #0284c7;
  background: #d7f1ff;
}

.orange {
  color: #ea580c;
  background: #ffedd5;
}

.rose {
  color: #e11d48;
  background: #ffe0ea;
}

.service-card h2 {
  margin: 0 0 8px;
  color: #384153;
  font-size: 18px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.empty-result {
  margin: 22px 0 0;
  color: #d33554;
  font-weight: 800;
  text-align: center;
}

.planner-band,
.split-showcase,
.page-hero,
.page-section,
.process-section,
.contact-layout {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 74px;
}

.planner-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 38px;
  background: #faf3ed;
  border: 1px solid #f0e4da;
  border-radius: 18px;
}

.planner-copy h2,
.split-showcase h2,
.page-hero h1,
.section-heading h2,
.process-section h2,
.contact-copy h1,
.about-copy h2 {
  margin: 0;
  color: #172033;
  font-size: clamp(34px, 3.8vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.planner-copy p:last-child,
.split-showcase p,
.page-hero p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.planner-card {
  display: grid;
  grid-template-columns: 1fr 1fr 150px;
  gap: 16px;
  align-items: center;
  padding: 22px;
  background: #ffffff;
  border: 1px solid #f0e4da;
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(104, 31, 115, 0.1);
}

.planner-card label,
.contact-form label {
  display: grid;
  gap: 7px;
}

.planner-card span,
.contact-form span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.planner-card select {
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 18px;
  font-weight: 850;
}

.planner-card button {
  background: var(--purple);
}

.split-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  padding: 38px;
  background: #f3f7ff;
  border: 1px solid #e1e9f8;
  border-radius: 18px;
}

.split-showcase img,
.page-hero img {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stats-row div {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.stats-row strong {
  color: #FC751F	;
  font-size: 28px;
}

.stats-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.page-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
  padding-top: 58px;
}

.page-hero.compact {
  padding-top: 66px;
}

.page-hero p {
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.page-section {
  padding: 44px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(32, 45, 76, 0.07);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-grid article {
  padding: 24px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.detail-grid span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 16px;
  color: var(--blue);
  background: #e7efff;
  border-radius: 14px;
  font-weight: 950;
}

.detail-grid h3 {
  margin: 0 0 10px;
  color: #253047;
  font-size: 21px;
}

.detail-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.process-section {
  padding: 40px;
  color: #ffffff;
  background: #121c30;
  border-radius: 18px;
}

.process-section h2 {
  color: #ffffff;
  margin-bottom: 26px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-list div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}

.process-list strong {
  font-size: 19px;
}

.process-list p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
  padding-top: 58px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  padding: 10px 14px;
  color: #384153;
  background: #f4f7fd;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  font-weight: 700;
  resize: vertical;
}

.contact-form textarea {
  min-height: 110px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1530px, calc(100% - 48px));
  margin: 30px auto 0;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: #21418f;
  font-size: 24px;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.site-footer a {
  min-width: 170px;
  color: #ffffff;
  background: var(--purple);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 60;
  max-width: min(560px, calc(100% - 32px));
  padding: 14px 18px;
  color: #ffffff;
  background: #172033;
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1480px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .navbar {
    min-height: 82px;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .nav-links a.active::after {
    display: none;
  }
}

@media (max-width: 1180px) {
  .header-actions {
    display: none;
  }

  .search-panel,
  .planner-card,
  .planner-band,
  .split-showcase,
  .page-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .type-field {
    padding: 12px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-grid,
  .detail-grid,
  .detail-grid.four,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-panel {
    border-radius: 28px;
    padding: 18px;
  }
}

@media (max-width: 760px) {
  .navbar,
  .audience-section,
  .planner-band,
  .split-showcase,
  .page-hero,
  .page-section,
  .process-section,
  .contact-layout,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .brand-name {
    font-size: 23px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .home-hero h1 {
    font-size: 40px;
  }

  .hero-inner {
    width: min(100% - 28px, 1160px);
    padding-top: 34px;
  }

  .search-panel input,
  .search-panel select {
    font-size: 17px;
  }

  .mentor-rail {
    mask-image: none;
  }

  .mentor-track {
    justify-content: flex-start;
    min-width: 0;
    padding: 0 16px;
    overflow-x: auto;
  }

  .audience-tabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .tab {
    min-width: 142px;
    font-size: 14px;
  }

  .service-grid,
  .detail-grid,
  .detail-grid.four,
  .process-list,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .planner-band,
  .split-showcase,
  .page-section,
  .process-section {
    padding: 24px;
  }

  .page-hero {
    padding-top: 38px;
  }

  .page-hero img,
  .split-showcase img {
    height: 300px;
  }

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