/* ── Google Fonts ─────────────────────────────────────── */
/* ── Design Tokens ────────────────────────────────────── */
  :root {
    --p: #1F52B8;
    --p-light: #4a7fd4;
    --p-dark: #163d8a;
    --p-xlight: #EBF1FA;
    --grad: linear-gradient(135deg, #163d8a 0%, #1F52B8 55%, #4a7fd4 100%);
    --grad-soft: linear-gradient(135deg, rgba(22, 61, 138, 0.07) 0%, rgba(31, 82, 184, 0.10) 100%);
    --white: #ffffff;
    --surface: #f8fafd;
    --surface2: #f0f4fb;
    --border: #e4eaf5;
    --text-dark: #0f172a;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 4px 16px rgba(31, 82, 184, 0.08);
    --shadow-md: 0 8px 32px rgba(31, 82, 184, 0.12);
    --shadow-lg: 0 20px 60px rgba(31, 82, 184, 0.15);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dur: 0.25s;
    --font-head: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
  }

  /* ── Reset overrides from alf-premium.css ─────────────── */
  body {
    background: var(--white) !important;
    color: var(--text-body) !important;
    font-family: var(--font-body) !important;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-head) !important;
    color: var(--text-dark) !important;
    -webkit-text-fill-color: var(--text-dark) !important;
  }

  /* ── Utility Classes ──────────────────────────────────── */
  .hp-grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--p);
    background: var(--p-xlight);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
  }

  .hp-section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark) !important;
    -webkit-text-fill-color: var(--text-dark) !important;
  }

  .hp-section-sub {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.75;
    max-width: 560px;
  }

  /* ── Buttons ──────────────────────────────────────────── */
  .hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all var(--dur) var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
  }

  .hp-btn::before,
  .hp-btn::after {
    display: none !important;
  }

  .hp-btn--primary {
    background: var(--grad);
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(31, 82, 184, 0.3);
  }

  .hp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(31, 82, 184, 0.4);
    color: #fff !important;
  }

  .hp-btn--outline {
    background: transparent;
    color: var(--text-dark) !important;
    border-color: var(--border);
  }

  .hp-btn--outline:hover {
    border-color: var(--p);
    color: var(--p) !important;
    background: var(--p-xlight);
    transform: translateY(-2px);
  }

  .hp-btn--ghost {
    background: var(--p-xlight);
    color: var(--p) !important;
  }

  .hp-btn--ghost:hover {
    background: var(--p);
    color: #fff !important;
    transform: translateY(-2px);
  }

  .hp-btn--dark {
    background: var(--text-dark);
    color: #fff !important;
  }

  .hp-btn--dark:hover {
    background: var(--p-dark);
    transform: translateY(-2px);
    color: #fff !important;
  }

  /* ════════════════════════════════════════════════════════
   1. HERO SECTION
════════════════════════════════════════════════════════ */
  .hp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--white);
    overflow: hidden;
    padding: 130px 0 80px;
  }

  /* Gradient blob decorations */
  .hp-hero__blob1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 82, 184, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
  }

  .hp-hero__blob2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
  }

  .hp-hero__grid-bg {
    position: absolute;
    inset: 0;
    /* Dotted gradient pattern */
    background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px);
    background-size: 36px 36px;
    background-position: 0 0;
    /* Radial gradient mask for smooth fading */
    -webkit-mask-image: radial-gradient(ellipse 120% 100% at 50% 0%, black 20%, transparent 80%);
    mask-image: radial-gradient(ellipse 120% 100% at 50% 0%, black 20%, transparent 80%);
    pointer-events: none;
    z-index: 1;
  }

  .hp-hero__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 7px 16px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
  }

  .hp-hero__eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4a7fd4;
    flex-shrink: 0;
  }

  .hp-hero__title {
    font-size: clamp(38px, 5.5vw, 68px) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 24px !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
  }

  .hp-hero__title .hp-grad-text {
    -webkit-text-fill-color: transparent !important;
  }

  .hp-hero__sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
  }

  .hp-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .hp-hero__trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hp-hero__trust-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .hp-hero__trust-logo {
    height: 28px;
    width: auto;
    filter: grayscale(1) opacity(0.45);
    transition: filter var(--dur) var(--ease);
  }

  .hp-hero__trust-logo:hover {
    filter: grayscale(0) opacity(1);
  }

  /* Hero right — visual card */
  .hp-hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hp-hero__img-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
  }

  .hp-hero__img-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
  }

  .hp-hero__img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.5) 100%);
  }

  .hp-hero__float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
  }

  .hp-hero__float-card--tl {
    top: 30px;
    left: -30px;
  }

  .hp-hero__float-card--br {
    bottom: 40px;
    right: -30px;
  }

  .hp-hero__float-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
  }

  .hp-hero__float-card strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-head);
  }

  .hp-hero__float-card span {
    font-size: 12px;
    color: var(--text-muted);
  }

  /* ════════════════════════════════════════════════════════
   2. STATS STRIP
════════════════════════════════════════════════════════ */
  .hp-stats {
    background: var(--text-dark);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
  }

  .hp-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0.06;
  }

  .hp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .hp-stats__item {
    text-align: center;
    padding: 0 24px;
    position: relative;
  }

  .hp-stats__item+.hp-stats__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
  }

  .hp-stats__num {
    font-family: var(--font-head);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
  }

  .hp-stats__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
  }

  /* ════════════════════════════════════════════════════════
   3. PRACTICES (Features) SECTION
════════════════════════════════════════════════════════ */
  .hp-practices {
    padding: 100px 0;
    background: var(--surface);
  }

  .hp-practices__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }

  .hp-practice-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
    height: 100%;
  }

  .hp-practice-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    z-index: 0;
  }

  .hp-practice-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(22, 61, 138, 0.20);
    border-color: transparent;
  }

  .hp-practice-card:hover::after {
    opacity: 1;
  }

  .hp-practice-card>* {
    position: relative;
    z-index: 1;
  }

  .hp-practice-card__icon {
    width: 58px;
    height: 58px;
    background: var(--grad-soft);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--p);
    margin-bottom: 20px;
    transition: all var(--dur) var(--ease);
    border: 1px solid rgba(31, 82, 184, 0.12);
  }

  .hp-practice-card:hover .hp-practice-card__icon {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
  }

  .hp-practice-card h4 {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    -webkit-text-fill-color: var(--text-dark) !important;
    margin-bottom: 10px !important;
    transition: color var(--dur) var(--ease);
  }

  .hp-practice-card:hover h4 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
  }

  .hp-practice-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.65;
    margin: 0;
    flex: 1;
    transition: color var(--dur) var(--ease);
  }

  .hp-practice-card:hover p {
    color: rgba(255, 255, 255, 0.8);
  }

  .hp-practice-card__arr {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    font-size: 13px;
    font-weight: 600;
    color: var(--p);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--dur) var(--ease);
  }

  .hp-practice-card:hover .hp-practice-card__arr {
    opacity: 1;
    transform: translateX(0);
    color: rgba(255, 255, 255, 0.9);
  }

  /* ════════════════════════════════════════════════════════
   4. ABOUT / INFO SECTION
════════════════════════════════════════════════════════ */
  .hp-about {
    padding: 100px 0;
    background: var(--white);
  }

  .hp-about__img-wrap {
    position: relative;
  }

  .hp-about__img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
  }

  .hp-about__img-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border-radius: var(--radius-lg);
    background: var(--grad);
    opacity: 0.15;
    z-index: -1;
  }

  .hp-about__badge-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .hp-about__badge-float-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
  }

  .hp-about__badge-float strong {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-head);
    color: var(--text-dark);
    display: block;
    line-height: 1;
  }

  .hp-about__badge-float span {
    font-size: 12px;
    color: var(--text-muted);
  }

  .hp-about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 32px;
  }

  .hp-about__feat {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all var(--dur) var(--ease);
  }

  .hp-about__feat:hover {
    border-color: rgba(31, 82, 184, 0.25);
    box-shadow: var(--shadow-sm);
  }

  .hp-about__feat-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--grad-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p);
    font-size: 16px;
  }

  .hp-about__feat h5 {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    -webkit-text-fill-color: var(--text-dark) !important;
    margin-bottom: 3px !important;
  }

  .hp-about__feat p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
  }

  /* ════════════════════════════════════════════════════════
   5. CASE STUDIES SECTION
════════════════════════════════════════════════════════ */
  .hp-cases {
    padding: 100px 0;
    background: var(--surface);
  }

  /* Make all 3 case cards same height no matter content */
  .hp-cases .row {
    align-items: stretch;
  }

  .hp-cases .col-md-4 {
    display: flex;
  }

  .hp-case-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--dur) var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .hp-case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 82, 184, 0.2);
  }

  .hp-case-card__img {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .hp-case-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
  }

  .hp-case-card:hover .hp-case-card__img img {
    transform: scale(1.06);
  }

  .hp-case-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--grad);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 30px;
  }

  .hp-case-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .hp-case-card__body h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    -webkit-text-fill-color: var(--text-dark) !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
  }

  .hp-case-card__body h4 a {
    color: inherit !important;
    text-decoration: none !important;
  }

  .hp-case-card__body h4 a:hover {
    color: var(--p) !important;
    -webkit-text-fill-color: var(--p) !important;
  }

  .hp-case-card__body p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    flex: 1;
  }

  .hp-case-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--p) !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 16px;
    transition: gap var(--dur) var(--ease);
  }

  .hp-case-card:hover .hp-case-card__link {
    gap: 10px;
  }

  /* Featured case card */
  .hp-case-card--featured {
    background: var(--text-dark);
    border-color: transparent;
  }

  .hp-case-card--featured .hp-case-card__body h4 {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
  }

  .hp-case-card--featured .hp-case-card__body h4 a:hover {
    color: var(--p-light) !important;
    -webkit-text-fill-color: var(--p-light) !important;
  }

  .hp-case-card--featured p {
    color: rgba(255, 255, 255, 0.65);
  }

  .hp-case-card--featured .hp-case-card__link {
    color: var(--p-light) !important;
  }

  /* ════════════════════════════════════════════════════════
   6. CTA / CONSULTATION BAND
════════════════════════════════════════════════════════ */
  .hp-cta {
    padding: 80px 0;
    background: var(--white);
  }

  .hp-cta__inner {
    background: var(--grad);
    border-radius: var(--radius-xl);
    padding: 72px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
  }

  .hp-cta__inner::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
  }

  .hp-cta__inner::after {
    content: '';
    position: absolute;
    left: -40px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
  }

  .hp-cta__text {
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .hp-cta__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: block;
  }

  .hp-cta__title {
    font-size: clamp(24px, 3vw, 36px) !important;
    font-weight: 800 !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    margin-bottom: 12px !important;
  }

  .hp-cta__sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
  }

  .hp-cta__action {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .hp-btn--cta {
    background: #fff;
    color: var(--p) !important;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--dur) var(--ease);
  }

  .hp-btn--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: var(--p-dark) !important;
  }

  /* ════════════════════════════════════════════════════════
   6b. ACHIEVEMENT STATS (before CTA)
════════════════════════════════════════════════════════ */
  .hp-achieve {
    padding: 80px 0;
    background: var(--white);
  }

  .hp-achieve__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
  }

  .hp-achieve__card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--dur) var(--ease);
  }

  .hp-achieve__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
    transform: scaleX(0);
    transition: transform var(--dur) var(--ease);
  }

  .hp-achieve__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 82, 184, 0.15);
  }

  .hp-achieve__card:hover::before {
    transform: scaleX(1);
  }

  .hp-achieve__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--grad-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--p);
    margin: 0 auto 16px;
    transition: all var(--dur) var(--ease);
  }

  .hp-achieve__card:hover .hp-achieve__icon {
    background: var(--grad);
    color: #fff;
  }

  .hp-achieve__num {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
  }

  .hp-achieve__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    display: block;
  }

  .hp-achieve__sub {
    font-size: 12px;
    color: var(--text-muted);
  }

  @media (max-width: 991px) {
    .hp-achieve__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 575px) {
    .hp-achieve__grid {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
  }

  /* ════════════════════════════════════════════════════════
   7. TEAM SECTION
════════════════════════════════════════════════════════ */
  .hp-team {
    padding: 100px 0;
    background: var(--surface);
  }

  .hp-team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--dur) var(--ease);
    text-align: center;
  }

  .hp-team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 82, 184, 0.2);
  }

  .hp-team-card__img {
    position: relative;
    height: 300px;
    overflow: hidden;
  }

  .hp-team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s var(--ease);
  }

  .hp-team-card:hover .hp-team-card__img img {
    transform: scale(1.05);
  }

  .hp-team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    gap: 10px;
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
  }

  .hp-team-card:hover .hp-team-card__overlay {
    opacity: 1;
  }

  .hp-team-card__view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: var(--white);
    color: var(--p) !important;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all var(--dur) var(--ease);
    transform: translateY(10px);
  }

  .hp-team-card:hover .hp-team-card__view-btn {
    transform: translateY(0);
  }

  .hp-team-card__view-btn:hover {
    background: var(--grad);
    color: #fff !important;
  }

  .hp-team-card__linkedin {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background var(--dur) var(--ease);
    transform: translateY(10px);
  }

  .hp-team-card:hover .hp-team-card__linkedin {
    transform: translateY(0);
  }

  .hp-team-card__linkedin:hover {
    background: #0077b5;
  }

  .hp-team-card__body {
    padding: 22px 20px 24px;
  }

  .hp-team-card__body h4 {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    -webkit-text-fill-color: var(--text-dark) !important;
    margin-bottom: 4px !important;
  }

  .hp-team-card__body h4 a {
    color: inherit !important;
    text-decoration: none !important;
  }

  .hp-team-card__role {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
  }

  .hp-team-card__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px 0 14px;
  }

  .hp-team-card__soc-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--surface);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted) !important;
    text-decoration: none !important;
    transition: all var(--dur) var(--ease);
  }

  .hp-team-card__soc-link:hover {
    border-color: transparent;
    color: #fff !important;
    transform: translateY(-2px);
  }

  .hp-team-card__soc-link--li:hover {
    background: #0077b5;
  }

  .hp-team-card__soc-link--x:hover {
    background: #000;
  }

  .hp-team-card__soc-link--mail:hover {
    background: var(--p);
  }

  .hp-team-card__profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 0;
    border-radius: 30px;
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--p) !important;
    text-decoration: none !important;
    background: var(--p-xlight);
    transition: all var(--dur) var(--ease);
    margin-top: 4px;
  }

  .hp-team-card__profile-btn:hover {
    background: var(--grad);
    color: #fff !important;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
  }

  /* ════════════════════════════════════════════════════════
   8. NEWS SECTION
════════════════════════════════════════════════════════ */
  .hp-news {
    padding: 100px 0;
    background: var(--white);
  }

  .hp-news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--dur) var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .hp-news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(31, 82, 184, 0.2);
  }

  .hp-news-card__img {
    position: relative;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .hp-news-card--featured .hp-news-card__img {
    height: 300px;
  }

  .hp-news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
  }

  .hp-news-card:hover .hp-news-card__img img {
    transform: scale(1.05);
  }

  .hp-news-card__tag {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--grad);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 0 6px 0 0;
  }

  .hp-news-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .hp-news-card__meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
  }

  .hp-news-card__meta i {
    color: var(--p);
  }

  .hp-news-card__body h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    -webkit-text-fill-color: var(--text-dark) !important;
    margin-bottom: 10px !important;
    line-height: 1.45 !important;
  }

  .hp-news-card--featured .hp-news-card__body h4 {
    font-size: 22px !important;
  }

  .hp-news-card__body h4 a {
    color: inherit !important;
    text-decoration: none !important;
  }

  .hp-news-card__body h4 a:hover {
    color: var(--p) !important;
    -webkit-text-fill-color: var(--p) !important;
  }

  .hp-news-card__body p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    flex: 1;
  }

  .hp-news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--p) !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 16px;
    transition: gap var(--dur) var(--ease);
  }

  .hp-news-card:hover .hp-news-card__link {
    gap: 10px;
  }

  /* ════════════════════════════════════════════════════════
   9. CLIENTS SECTION
════════════════════════════════════════════════════════ */
  .hp-clients {
    padding: 0 0 56px;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
  }

  .hp-clients__head {
    text-align: center;
    margin-bottom: 48px;
  }

  .hp-clients__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--p);
    margin-bottom: 14px;
  }

  .hp-clients__eyebrow::before,
  .hp-clients__eyebrow::after {
    content: '';
    width: 36px;
    height: 1.5px;
    background: currentColor;
    opacity: 0.35;
  }

  .hp-clients__title {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark) !important;
    -webkit-text-fill-color: var(--text-dark) !important;
    margin: 0 0 10px;
    line-height: 1.25;
  }

  .hp-clients__title span {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hp-clients__subtitle {
    font-size: 15px;
    color: var(--text-body);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* Cards row */
  .hp-clients__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    overflow: visible;
  }

  .hp-cl-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: default;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.45;
    filter: grayscale(100%);
    flex: 0 0 auto;
    min-width: 0;
    padding: 0;
    height: 100px;
  }

  .hp-cl-brand:hover {
    opacity: 1;
    filter: grayscale(0%);
  }

  /* Logo wrapper when image exists */
  .hp-cl-brand__logo {
    max-height: 80px;
    max-width: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.5s ease;
  }

  /* Initials when no logo */
  .hp-cl-brand__init {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-muted);
    transition: all 0.5s ease;
  }

  .hp-cl-brand:hover .hp-cl-brand__init {
    background: var(--white);
    border-color: rgba(31, 82, 184, 0.3);
    color: var(--p);
    box-shadow: 0 12px 30px rgba(31, 82, 184, 0.15);
  }

  /* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
  @media (max-width: 991px) {
    .hp-hero {
      padding: 110px 0 60px;
      min-height: auto;
    }

    .hp-hero__title {
      font-size: 36px !important;
    }

    .hp-stats__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .hp-stats__item+.hp-stats__item::before {
      display: none;
    }

    .hp-practices__grid {
      grid-template-columns: 1fr 1fr;
    }

    .hp-about__img {
      height: 380px;
    }

    .hp-cta__inner {
      flex-direction: column;
      text-align: center;
      padding: 48px 32px;
    }

    .hp-hero__float-card {
      display: none;
    }
  }

  @media (max-width: 767px) {
    .hp-hero {
      padding: 100px 0 50px;
    }

    .hp-practices__grid {
      grid-template-columns: 1fr;
    }

    .hp-stats__grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .hp-about__features {
      grid-template-columns: 1fr;
    }

    .hp-cta__inner {
      padding: 40px 24px;
    }

    .hp-hero__actions {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /* ── Section spacing and headers ────────────────────── */
  .hp-section-header {
    max-width: 580px;
  }

  .hp-section-header.center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }
