:root{
    --blue:#2563ff;
    --blue-dark:#1a46d6;
    --ink:#ffffff;
    --muted:rgba(255,255,255,0.82);
    --radius:10px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  body{
    font-family:'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
    /* background:#0b0b0d; */
  }

  .partner-hero{
    position:relative;
    min-height:300px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#0a0a0c;
  }

  .partner-hero__bg{
    position:absolute;
    inset:0;
    background-image:url('https://images.unsplash.com/photo-1521791136064-7986c2920216?fm=jpg&q=80&w=2000&auto=format&fit=crop');
    background-size:cover;
    background-position:center 30%;
    z-index:0;
  }

  /* Left 30% dark, gradually transparent to the right — matches reference */
  .partner-hero__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
      90deg,
      rgba(6,6,8,0.97) 0%,
      rgba(6,6,8,0.94) 22%,
      rgba(6,6,8,0.78) 38%,
      rgba(6,6,8,0.42) 55%,
      rgba(6,6,8,0.12) 72%,
      rgba(6,6,8,0.02) 100%
    );
    z-index:1;
  }

  .partner-hero__content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1240px;
    margin:0 auto;
    padding:64px 40px;
  }

  .partner-hero__inner{
    max-width:560px;
  }

  .partner-hero__eyebrow{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:12px;
    font-weight:600;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:#9db4ff;
    background:rgba(37,99,255,0.16);
    border:1px solid rgba(37,99,255,0.35);
    padding:5px 12px;
    border-radius:20px;
    margin-bottom:18px;
  }

  .partner-hero__title{
    font-size:44px;
    line-height:1.12;
    font-weight:700;
    color:var(--ink);
    letter-spacing:-0.01em;
    margin-bottom:16px;
  }

  .partner-hero__desc{
    font-size:15.5px;
    line-height:1.55;
    color:var(--muted);
    max-width:480px;
    margin-bottom:28px;
  }

  .partner-hero__actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:14.5px;
    font-weight:600;
    padding:12px 20px;
    border-radius:var(--radius);
    cursor:pointer;
    text-decoration:none;
    border:1px solid transparent;
    transition:transform 0.15s ease, background 0.15s ease, border-color .15s ease;
    line-height:1;
  }
  .btn:active{ transform:scale(0.97); }

  .btn--primary{
    background:var(--blue);
    color:#fff;
  }
  .btn--primary:hover{ background:var(--blue-dark); }

  .btn--outline{
    background:transparent;
    color:#fff;
    border-color:rgba(255,255,255,0.45);
  }
  .btn--outline:hover{
    background:rgba(255,255,255,0.08);
    border-color:#fff;
  }

  .btn svg{ width:16px; height:16px; flex-shrink:0; }

  /* ===== Responsive ===== */
  @media (max-width: 900px){
    .partner-hero{ min-height:520px; }
    .partner-hero__bg{ background-position:65% center; }
    .partner-hero__overlay{
      background:linear-gradient(
        180deg,
        rgba(6,6,8,0.55) 0%,
        rgba(6,6,8,0.75) 45%,
        rgba(6,6,8,0.95) 100%
      );
    }
    .partner-hero__content{ padding:0 24px; }
    .partner-hero__inner{
      max-width:100%;
      margin-top:auto;
      padding-bottom:48px;
    }
  }

  @media (max-width: 480px){
    .partner-hero{ min-height:460px; }
    .partner-hero__title{ font-size:34px; }
    .partner-hero__desc{ font-size:14px; }
    .partner-hero__actions{ gap:10px; }
    .btn{ padding:11px 16px; font-size:14px; flex:1 1 auto; justify-content:center; }
  }

  .auto-section{
  min-height:450px;
  font-family:'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  background:#ffffff;
  padding:50px 0;
}

.auto-section__container{
  max-width:1240px;
  margin:0 auto;
  padding:0 40px;
}

.auto-section__title{
  font-size:25px;
  font-weight:600;
  line-height:1.25;
  color:#111318;
  letter-spacing:-0.01em;
  max-width:760px;
  margin-bottom:14px;
}

.auto-section__desc{
  font-size:15px;
  line-height:1.6;
  color:#4b5563;
  max-width:760px;
  margin-bottom:36px;
}

/* ===== Grid: both cards in one row ===== */
.auto-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}

.auto-card{
  display:flex;
  flex-direction:column;
}

/* ===== Media box ===== */
.auto-card__media{
  position:relative;
  background:#f4f5f7;
  border-radius:16px;
  padding:32px;
  min-height:300px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom:18px;
}

.auto-card__img{
  width:78%;
  height:290px;
  object-fit:cover;
  border-radius:10px;
  position:relative;
  z-index:1;
  box-shadow:0 20px 40px -12px rgba(20,20,30,0.25);
}

/* decorative purple sparkle blobs */
.blob{
  position:absolute;
  background:linear-gradient(135deg,#c9c3ff,#8b7ef0);
  opacity:0.55;
  clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
  z-index:0;
  filter:blur(0.3px);
}
.blob--tl{ width:110px; height:110px; top:22px; right:60px; opacity:0.35; }
.blob--br{ width:70px; height:70px; bottom:24px; left:36px; opacity:0.4; }

/* ===== Floating info card ===== */
.float-card{
  position:absolute;
  left:24px;
  bottom:34px;
  z-index:2;
  background:#ffffff;
  border:1px solid #6d5ff0;
  border-radius:12px;
  padding:14px 16px;
  width:280px;
  box-shadow:0 12px 28px -8px rgba(30,20,80,0.22);
}
.float-card--wide{ width:300px; }

.float-row{
  display:flex;
  align-items:center;
  gap:12px;
  padding:6px 0;
}

.float-icon{
  flex-shrink:0;
  width:34px;
  height:34px;
  border-radius:8px;
  background:#ece8ff;
  color:#6d5ff0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.float-icon svg{ width:18px; height:18px; }

.float-text{
  font-size:13.5px;
  font-weight:600;
  color:#1c1e26;
  line-height:1.3;
}

.float-divider{
  height:1px;
  background:#eceef2;
  margin:6px 0;
}

/* card 2 header layout */
.float-head{
  display:flex;
  align-items:center;
  gap:12px;
}
.float-head__text{
  display:flex;
  flex-direction:column;
  flex:1;
}
.float-head__title{
  font-size:14px;
  font-weight:700;
  color:#1c1e26;
}
.float-head__sub{
  font-size:12px;
  color:#8a8f9a;
}
.float-tag{
  font-size:11px;
  font-weight:700;
  color:#2563ff;
  background:#eaf0ff;
  padding:3px 9px;
  border-radius:20px;
  white-space:nowrap;
}

.float-detail{
  font-size:12.5px;
  padding:4px 0;
}
.float-detail__label{
  font-weight:700;
  color:#1c1e26;
  margin-right:4px;
}
.float-detail__value{
  color:#6b7280;
}

/* ===== Card text ===== */
.auto-card__title{
  font-size:19px;
  font-weight:700;
  color:#111318;
  margin-bottom:8px;
}

.auto-card__desc{
  font-size:14.5px;
  line-height:1.6;
  color:#4b5563;
  margin-bottom:14px;
}

.auto-card__link{
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-size:14.5px;
  font-weight:600;
  color:#2563ff;
  text-decoration:none;
  width:fit-content;
}
.auto-card__link svg{ width:15px; height:15px; transition:transform .15s ease; }
.auto-card__link:hover{ text-decoration:underline; }
.auto-card__link:hover svg{ transform:translateX(3px); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px){
  .auto-section__title{ font-size:28px; }
  .auto-card__media{ min-height:300px; padding:24px; }
  .auto-card__img{ height:240px; }
  .float-card, .float-card--wide{ width:250px; padding:12px 14px; left:16px; bottom:22px; }
}

@media (max-width: 768px){
  .auto-grid{
    grid-template-columns:1fr; /* stacks on tablet/mobile */
    gap:40px;
  }
  .auto-section__container{ padding:0 24px; }
}

@media (max-width: 480px){
  .auto-section{ padding:40px 0; }
  .auto-section__title{ font-size:24px; }
  .auto-section__desc{ font-size:14.5px; margin-bottom:28px; }
  .auto-card__media{ min-height:260px; padding:18px; border-radius:14px; }
  .auto-card__img{ width:85%; height:200px; }
  .float-card, .float-card--wide{
    width:calc(100% - 32px);
    left:16px;
    bottom:16px;
    padding:10px 12px;
  }
  .float-text{ font-size:12.5px; }
  .float-icon{ width:28px; height:28px; }
  .float-icon svg{ width:15px; height:15px; }
}


  .rwrp-section {
    width: 100%;
    height: 450px;
    background: #f7f8fa;
    box-sizing: border-box;
    padding: 18px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .rwrp-container {
    width: 100%;
    max-width: 1100px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .rwrp-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
  }
  .rwrp-subtitle {
    text-align: center;
    font-size: 12.5px;
    line-height: 1.4;
    color: #6b7280;
    max-width: 720px;
    margin: 0 auto 12px;
  }
  .rwrp-tabs {
    display: flex;
    background: #eceef1;
    border-radius: 10px;
    padding: 3px;
    gap: 3px;
    margin-bottom: 10px;
  }
  .rwrp-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  }
  .rwrp-tab .rwrp-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  .rwrp-tab.active {
    background: #fff;
    color: #2563eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }
  .rwrp-tab:hover:not(.active) {
    color: #1f2937;
  }
  .rwrp-panel {
    flex: 1;
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    min-height: 0;
  }
  .rwrp-content {
    flex: 0 0 34%;
    background: #e8edfd;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .rwrp-heading {
    font-size: 17px;
    font-weight: 700;
    color: #2f5bff;
    margin: 0 0 8px;
    line-height: 1.25;
  }
  .rwrp-desc {
    font-size: 12.5px;
    line-height: 1.45;
    color: #1f2937;
    margin: 0 0 10px;
  }
  .rwrp-note {
    font-size: 10.5px;
    color: #374151;
    font-style: italic;
    margin-top: auto;
  }
  .rwrp-image-wrap {
    flex: 1;
    position: relative;
    background: #ddd;
  }
  .rwrp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: opacity 0.25s ease;
  }
  .rwrp-fade {
    opacity: 0 !important;
  }

  /* Tablet */
  @media (max-width: 900px) {
    .rwrp-title { font-size: 22px; }
    .rwrp-subtitle { font-size: 11.5px; }
    .rwrp-tab span { display: none; }
    .rwrp-tab { padding: 8px; }
    .rwrp-content { flex: 0 0 40%; padding: 16px 14px; }
    .rwrp-heading { font-size: 15px; }
    .rwrp-desc { font-size: 11.5px; }
  }

  /* Mobile */
  @media (max-width: 600px) {
    .rwrp-section { padding: 12px 10px; }
    .rwrp-title { font-size: 18px; }
    .rwrp-subtitle { font-size: 10.5px; margin-bottom: 8px; }
    .rwrp-tabs { margin-bottom: 8px; }
    .rwrp-tab { padding: 7px 4px; font-size: 11px; }
    .rwrp-tab .rwrp-icon { width: 12px; height: 12px; }
    .rwrp-panel { flex-direction: column; }
    .rwrp-content { flex: 0 0 42%; padding: 12px; }
    .rwrp-heading { font-size: 13.5px; margin-bottom: 4px; }
    .rwrp-desc { font-size: 10.5px; margin-bottom: 6px; }
    .rwrp-note { font-size: 9px; }
    .rwrp-image-wrap { flex: 1; }
  }


.deloitte-section {
  width: 100%;
  background: #f4f5f6;
  box-sizing: border-box;
  padding: 32px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.deloitte-container {
  max-width: 1200px;
  margin: 0 auto;
}

.deloitte-title {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 26px;
}

.deloitte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.deloitte-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
}

.deloitte-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.14);
  transform: translateY(-2px);
}

.deloitte-text {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.deloitte-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.deloitte-heading {
  font-size: 16.5px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0 0 10px;
}

.deloitte-external {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #1a1a1a;
  margin-top: 2px;
}

.deloitte-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: #6b6b6b;
  margin: 0 0 10px;
}

.deloitte-tag {
  font-size: 12.5px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: auto;
}

.deloitte-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #000;
  overflow: hidden;
}

.deloitte-media-light {
  background: #f0f0f0;
}

.deloitte-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tablet */
@media (max-width: 992px) {
  .deloitte-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .deloitte-title {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .deloitte-section {
    padding: 22px 14px;
  }
  .deloitte-title {
    font-size: 19px;
    margin-bottom: 18px;
  }
  .deloitte-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .deloitte-text {
    padding: 16px 16px 14px;
  }
  .deloitte-heading {
    font-size: 15px;
  }
  .deloitte-desc {
    font-size: 12px;
  }
  .deloitte-media {
    aspect-ratio: 16 / 9;
  }
}


.udacity-hero {
  position: relative;
  width: 100%;
  max-height: 200px;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(120deg, #060a12 0%, #0d1420 40%, #16233a 75%, #1c2f4d 100%);
  background-image:
    linear-gradient(100deg, rgba(3,6,12,0.92) 0%, rgba(3,6,12,0.55) 45%, rgba(3,6,12,0.15) 75%),
    url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?w=1600&q=80');
  background-size: cover;
  background-position: center right;
}

.udacity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.05) 100%);
  pointer-events: none;
}

.udacity-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.udacity-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 6px;
  max-width: 560px;
}

.udacity-subtitle {
  font-size: 12.5px;
  color: #d7dbe2;
  margin: 0 0 12px;
  max-width: 480px;
}

.udacity-buttons {
  display: flex;
  gap: 10px;
}

.udacity-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
}

.udacity-btn:hover {
  transform: translateY(-1px);
}

.udacity-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.udacity-btn-primary {
  background: #2a5bff;
  color: #fff;
  border: 1.5px solid #2a5bff;
}

.udacity-btn-primary:hover {
  background: #1d47e0;
}

.udacity-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}

.udacity-btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

/* Tablet */
@media (max-width: 900px) {
  .udacity-content {
    padding: 0 28px;
  }
  .udacity-title {
    font-size: 21px;
    max-width: 420px;
  }
  .udacity-subtitle {
    font-size: 11.5px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .udacity-hero {
    height: 200px;
    background-position: center;
  }
  .udacity-overlay {
    background: rgba(0,0,0,0.6);
  }
  .udacity-content {
    padding: 0 18px;
  }
  .udacity-title {
    font-size: 15.5px;
    max-width: 100%;
    margin-bottom: 4px;
  }
  .udacity-subtitle {
    font-size: 10px;
    margin-bottom: 8px;
    max-width: 100%;
  }
  .udacity-buttons {
    gap: 8px;
  }
  .udacity-btn {
    padding: 6px 10px;
    font-size: 10.5px;
  }
  .udacity-icon {
    width: 12px;
    height: 12px;
  }
}

/* Extra small */
@media (max-width: 380px) {
  .udacity-buttons {
    flex-wrap: wrap;
  }
  .udacity-title {
    font-size: 14px;
  }
}