  :root{
    --navy: #10284c;
    --navy-deep: #0b1d38;
    --gold: #c9982e;
    --gold-light: #e0b653;
    --cream: #f4f2ee;
    --ink: #16233a;
    --muted: #5b6478;
    --line: #e4e1d8;
    --white: #ffffff;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  body{
    font-family:'Inter', sans-serif;
    color:var(--ink);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
  }
  a{text-decoration:none; color:inherit;}
  ul{list-style:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1280px; margin:0 auto; padding:0 32px;}

  /* ---------- HEADER ---------- */
  header{
    border-bottom:1px solid var(--line);
    position:sticky; top:0; background:var(--white); z-index:100;
  }
  .header-inner{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 32px; max-width:1280px; margin:0 auto; gap:24px;
  }
  .brand{display:flex; align-items:center; gap:14px;}
  .brand .mark{
    font-family:'Playfair Display', serif; font-weight:800; font-size:34px;
    color:var(--navy); letter-spacing:1px; line-height:1;
  }
  .brand .name-block{border-left:1px solid var(--line); padding-left:14px;}
  .brand .name-block .name{
    font-family:'Playfair Display', serif; font-weight:700; font-size:17px; color:var(--navy);
  }
  .brand .name-block .role{
    font-size:11.5px; color:var(--muted); letter-spacing:.3px; margin-top:2px;
  }
  nav{display:flex; align-items:center; gap:30px;}
  nav a{
    font-size:14.5px; font-weight:500; color:var(--ink); position:relative; padding-bottom:6px;
    white-space:nowrap;
  }
  nav a.active{color:var(--navy); font-weight:700;}
  nav a.active::after{
    content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--gold);
  }
  nav a:hover{color:var(--navy);}
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    font-size:14px; font-weight:600; padding:12px 20px; border-radius:6px;
    cursor:pointer; border:1px solid transparent; white-space:nowrap;
  }
  .btn-navy{background:var(--navy); color:var(--white);}
  .btn-navy:hover{background:var(--navy-deep);}
  .btn-gold{background:var(--gold); color:var(--white);}
  .btn-gold:hover{background:#b6862a;}
  .btn-outline{background:var(--white); color:var(--navy); border:1px solid #cfd3dc;}
  .btn-outline:hover{border-color:var(--navy);}
  .header-cta{flex-shrink:0;}

  /* ---------- HERO ---------- */
  .hero{
    background:var(--cream);
    position:relative;
    overflow:hidden;
  }
  .hero-grid{
    display:grid;
    grid-template-columns: 1.05fr 1fr;
    align-items:stretch;
    max-width:1280px; margin:0 auto;
    min-height:420px;
  }
  .hero-copy{
    padding:64px 32px 40px 32px;
    display:flex; flex-direction:column; justify-content:center;
  }
  .eyebrow{
    display:flex; align-items:center; gap:12px;
    color:var(--gold); font-weight:700; font-size:13px; letter-spacing:1.5px;
    margin-bottom:18px;
  }
  .eyebrow::before{content:""; width:34px; height:2px; background:var(--gold);}
  h1.headline{
    font-family:'Playfair Display', serif;
    font-weight:800;
    font-size:44px;
    line-height:1.18;
    color:var(--navy);
    margin-bottom:20px;
  }
  h1.headline .accent{color:var(--gold);}
  .hero-copy p.lede{
    font-size:16px; color:var(--muted); line-height:1.7; max-width:520px; margin-bottom:30px;
  }
  .hero-buttons{display:flex; flex-wrap:nowrap; gap:10px; margin-bottom:38px;}
  .hero-buttons .btn{
    padding:11px 15px; font-size:12.8px; gap:6px; white-space:nowrap;
  }
  .hero-buttons .btn svg{width:13px; height:13px; flex-shrink:0;}
  .stat-row{
    display:flex; flex-wrap:nowrap; gap:10px; border-top:1px solid var(--line); padding-top:26px;
  }
  .stat-item{display:flex; align-items:flex-start; gap:6px; min-width:0; flex:1 1 0;}
  .stat-icon{
    width:26px; height:26px; border-radius:50%; border:1.5px solid var(--gold);
    display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px;
  }
  .stat-icon svg{width:12px; height:12px; stroke:var(--gold);}
  .stat-item .num{font-family:'Playfair Display', serif; font-weight:800; font-size:12.5px; color:var(--navy); line-height:1.2; white-space:nowrap;}
  .stat-item .label{font-size:9px; color:var(--muted); line-height:1.3; white-space:normal; word-break:break-word;}

  .hero-visual{
    position:relative;
    min-height:420px;
  }
  .hero-photo-wrap{
    position:absolute; top:0; left:0; width:66%; height:100%;
    overflow:hidden;
  }
  .hero-photo-wrap img{
    height:100%; width:100%;
    object-fit:cover; object-position:top center;
    position:relative; z-index:2;
  }
  .hero-panel{
    position:absolute; top:0; right:0; bottom:0; width:44%;
    background:var(--navy);
    z-index:1;
    border-radius:120px 0 0 0;
    overflow:hidden;
  }
  .hero-panel-deco{
    position:absolute; top:0; left:0; width:100%; height:100%;
    opacity:.10; pointer-events:none;
  }
  .hero-panel::before{
    content:"";
    position:absolute; top:0; bottom:0; left:-6px; width:6px;
    background:linear-gradient(180deg, var(--gold-light), var(--gold));
    border-radius:120px 0 0 0;
  }
  .hero-side{
    position:absolute; top:0; right:0; bottom:0; width:38%;
    z-index:3; color:var(--white);
    padding:26px 30px 20px;
    display:flex; flex-direction:column; justify-content:flex-start;
  }
  .hero-side .signature{
    font-family:'Dancing Script', cursive; font-size:19px; color:var(--gold-light);
    line-height:1.2; white-space:nowrap;
  }
  .hero-side .initials{
    font-family:'Playfair Display', serif; font-size:14px; color:var(--white);
    opacity:.85; margin-bottom:22px; letter-spacing:1px;
  }
  .hero-side ul{display:flex; flex-direction:column; flex:1; justify-content:space-between; padding-bottom:10px;}
  .hero-side li{display:flex; align-items:center; gap:12px; font-size:13.5px; font-weight:500; line-height:1.35;}
  .side-icon{
    width:32px; height:32px; border-radius:50%; border:1.5px solid var(--gold);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .side-icon svg{width:15px; height:15px; stroke:var(--gold-light);}

  /* ---------- WHAT I DO ---------- */
  .section{padding:64px 32px;}
  .section-title{
    text-align:center; font-family:'Playfair Display', serif; font-weight:700;
    font-size:26px; color:var(--navy); margin-bottom:34px;
  }
  .cards-grid{
    max-width:1280px; margin:0 auto;
    display:grid; grid-template-columns:repeat(3, 1fr); gap:20px;
  }
  .card{
    border:1px solid var(--line); border-radius:10px; padding:22px;
    display:flex; gap:16px; align-items:flex-start;
    transition:box-shadow .2s ease, transform .2s ease;
  }
  .card:hover{box-shadow:0 10px 24px rgba(16,40,76,.08); transform:translateY(-2px);}
  .card-icon{
    width:46px; height:46px; border-radius:9px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
  }
  .card-icon.navy-bg{background:var(--navy);}
  .card-icon.gold-bg{background:var(--gold);}
  .card-icon svg{width:22px; height:22px; stroke:var(--white);}
  .card-title{font-weight:700; font-size:15.5px; color:var(--navy); margin-bottom:5px;}
  .card-desc{font-size:13.5px; color:var(--muted); line-height:1.5;}

  /* ---------- TRUST BAR ---------- */
  .trust{
    background:var(--navy); border-radius:14px; max-width:1280px; margin:8px auto 0;
    padding:36px 32px 40px;
  }
  .trust-title{
    text-align:center; color:var(--white); font-weight:700; font-size:16px;
    letter-spacing:.3px; padding-bottom:22px; margin-bottom:26px;
    border-bottom:1px solid rgba(255,255,255,.15);
  }
  .trust-grid{
    display:grid; grid-template-columns:repeat(5, 1fr); gap:20px;
  }
  .trust-item{display:flex; align-items:center; gap:14px;}
  .trust-icon{
    width:44px; height:44px; border-radius:50%; background:rgba(201,152,46,.15);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .trust-icon svg{width:22px; height:22px; stroke:var(--gold-light);}
  .trust-num{font-family:'Playfair Display', serif; font-weight:800; font-size:22px; color:var(--gold-light); line-height:1.1;}
  .trust-label{font-size:12.5px; color:#dbe0ea; line-height:1.35; margin-top:2px;}

  footer{
    text-align:center; padding:26px 20px; font-size:12.5px; color:var(--muted);
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1300px) and (min-width: 981px){
    .hero-buttons{flex-wrap:wrap;}
  }
  @media (max-width: 980px){
    nav{display:none;}
    .hero-grid{grid-template-columns:1fr;}
    .hero-visual{min-height:420px;}
    .hero-side{width:100%; position:relative; background:var(--navy); padding:30px 24px;}
    .hero-panel{display:none;}
    .hero-photo-wrap{position:relative; width:100%; height:420px;}
    .cards-grid{grid-template-columns:repeat(2, 1fr);}
    .trust-grid{grid-template-columns:repeat(2, 1fr);}
  }
  @media (max-width: 600px){
    h1.headline{font-size:32px;}
    .cards-grid{grid-template-columns:1fr;}
    .trust-grid{grid-template-columns:1fr;}
    .stat-row{gap:8px;}
    .header-inner{flex-wrap:wrap;}
  }

  /* ---------- PAGE BANNER (inner pages) ---------- */
  .page-banner{
    background:var(--navy); padding:46px 32px; text-align:center;
    position:relative; overflow:hidden;
  }
  .page-banner::after{
    content:""; position:absolute; left:0; right:0; bottom:0; height:4px;
    background:linear-gradient(90deg, var(--gold-light), var(--gold));
  }
  .page-banner h1{
    font-family:'Playfair Display', serif; font-weight:800; font-size:32px;
    color:var(--white); margin-bottom:10px;
  }
  .breadcrumb{font-size:13.5px; color:#c7cede;}
  .breadcrumb a{color:var(--gold-light); font-weight:600;}
  .breadcrumb .sep{margin:0 8px; opacity:.6;}

  /* ---------- CONSULTATION PAGE ---------- */
  .consult-wrap{
    max-width:1280px; margin:0 auto; padding:64px 32px;
    display:grid; grid-template-columns:1fr 0.62fr; gap:44px; align-items:start;
  }
  .consult-form-card{
    background:var(--white); border:1px solid var(--line); border-radius:14px;
    padding:38px; box-shadow:0 12px 30px rgba(16,40,76,.06);
  }
  .consult-form-card h2{
    font-family:'Playfair Display', serif; color:var(--navy); font-size:22px; margin-bottom:8px;
  }
  .consult-form-card .sub{color:var(--muted); font-size:14px; margin-bottom:28px;}
  .form-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
  .form-field{display:flex; flex-direction:column; gap:7px; margin-bottom:20px;}
  .form-field.full{grid-column:1 / -1;}
  .form-field label{font-size:13px; font-weight:600; color:var(--navy);}
  .form-field label .req{color:var(--gold); margin-left:2px;}
  .form-field input,
  .form-field select,
  .form-field textarea{
    font-family:'Inter', sans-serif; font-size:14px; color:var(--ink);
    border:1px solid #d8dbe3; border-radius:7px; padding:11px 13px;
    outline:none; transition:border-color .15s ease;
    background:var(--white);
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus{border-color:var(--gold);}
  .form-field textarea{resize:vertical; min-height:110px;}
  .consult-submit{
    width:100%; justify-content:center; padding:14px 20px; font-size:15px; margin-top:6px;
    border:none; cursor:pointer;
  }
  .form-success{
    background:#f0f7ef; border:1px solid #bfe0bb; color:#28603a;
    padding:16px 18px; border-radius:8px; font-size:14px; margin-bottom:24px;
    display:flex; align-items:center; gap:10px;
  }
  .form-error{
    background:#fdf1f0; border:1px solid #f2c2bd; color:#9c3327;
    padding:16px 18px; border-radius:8px; font-size:14px; margin-bottom:24px;
  }

  /* Sidebar */
  .consult-side{display:flex; flex-direction:column; gap:20px;}
  .side-card{
    border:1px solid var(--line); border-radius:14px; padding:26px;
  }
  .side-card.navy{background:var(--navy); border-color:var(--navy); color:var(--white);}
  .side-card h3{
    font-family:'Playfair Display', serif; font-size:17px; margin-bottom:16px;
    color:var(--navy);
  }
  .side-card.navy h3{color:var(--white);}
  .contact-row{display:flex; align-items:flex-start; gap:12px; margin-bottom:16px;}
  .contact-row:last-child{margin-bottom:0;}
  .contact-row .c-icon{
    width:38px; height:38px; border-radius:50%; flex-shrink:0;
    background:rgba(201,152,46,.14); display:flex; align-items:center; justify-content:center;
  }
  .side-card.navy .c-icon{background:rgba(255,255,255,.12);}
  .contact-row .c-icon svg{width:17px; height:17px; stroke:var(--gold);}
  .side-card.navy .c-icon svg{stroke:var(--gold-light);}
  .contact-row .c-label{font-size:12px; color:var(--muted); margin-bottom:2px;}
  .side-card.navy .contact-row .c-label{color:#c7cede;}
  .contact-row .c-value{font-size:14px; font-weight:600; color:var(--navy);}
  .side-card.navy .contact-row .c-value{color:var(--white);}
  .side-list{display:flex; flex-direction:column; gap:12px;}
  .side-list li{display:flex; align-items:center; gap:10px; font-size:13.5px; color:var(--muted);}
  .side-list li svg{width:15px; height:15px; stroke:var(--gold); flex-shrink:0;}

  @media (max-width: 900px){
    .consult-wrap{grid-template-columns:1fr;}
    .form-grid{grid-template-columns:1fr;}
  }

  /* ---------- ABOUT ME PAGE ---------- */
  .about-section{padding:60px 32px 70px; background:var(--cream);}
  .about-wrap{
    max-width:1280px; margin:0 auto;
    display:grid; grid-template-columns:0.82fr 1.18fr; gap:50px; align-items:start;
  }
  .about-visual{
    position:relative; overflow:hidden; background:var(--navy);
    min-height:640px; border-radius:0 160px 160px 0;
  }
  .about-visual::after{
    content:""; position:absolute; top:0; right:-7px; bottom:0; width:7px;
    background:linear-gradient(180deg, var(--gold-light), var(--gold));
  }
  .about-visual img{
    width:100%; height:100%; object-fit:cover; object-position:top center; display:block;
  }
  .about-badge{
    position:absolute; left:22px; bottom:22px; right:22px;
    background:rgba(9,20,40,.88); border:1px solid rgba(224,182,83,.45);
    border-radius:10px; padding:14px 18px; color:var(--white);
    backdrop-filter:blur(2px);
  }
  .about-badge .sig{
    font-family:'Dancing Script', cursive; color:var(--gold-light); font-size:20px; line-height:1.2;
  }
  .about-badge .deg{font-size:12px; color:#dfe3ec; margin-top:6px; line-height:1.5;}

  .about-copy .eyebrow{margin-bottom:14px;}
  .about-copy h1{
    font-family:'Playfair Display', serif; font-weight:800; font-size:34px;
    color:var(--navy); line-height:1.25; margin-bottom:10px;
  }
  .about-role{color:var(--gold); font-weight:700; font-size:15.5px; margin-bottom:18px;}
  .about-copy p{color:var(--muted); font-size:14.5px; line-height:1.75; margin-bottom:14px;}
  .about-copy p b{color:var(--navy);}

  .about-cards{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; margin:26px 0;}
  .about-card{background:var(--white); border:1px solid var(--line); border-radius:12px; padding:20px;}
  .about-icon-circle{
    width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    margin-bottom:12px;
  }
  .about-icon-circle.navy{background:var(--navy);}
  .about-icon-circle.gold{background:var(--gold);}
  .about-icon-circle svg{width:23px; height:23px; stroke:var(--white);}
  .about-card-title{font-weight:700; color:var(--navy); font-size:14px; margin-bottom:6px; line-height:1.3;}
  .about-card-desc{font-size:12.5px; color:var(--muted); line-height:1.5;}

  .about-stats{
    display:flex; background:var(--white); border:1px solid var(--line); border-radius:12px;
    padding:22px 26px; gap:30px; flex-wrap:wrap;
  }
  .about-stat{display:flex; align-items:center; gap:12px;}
  .about-stat-icon{
    width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .about-stat-icon.navy{background:var(--navy);}
  .about-stat-icon.gold{background:var(--gold);}
  .about-stat-icon svg{width:19px; height:19px; stroke:var(--white);}
  .about-stat-num{font-family:'Playfair Display', serif; font-weight:800; color:var(--navy); font-size:19px; line-height:1;}
  .about-stat-label{font-size:11.5px; color:var(--muted); margin-top:3px; line-height:1.3;}

  .about-buttons{display:flex; gap:16px; margin-top:26px; flex-wrap:wrap;}

  @media (max-width: 980px){
    .about-wrap{grid-template-columns:1fr;}
    .about-visual{min-height:420px; border-radius:0 0 60px 60px;}
    .about-visual::after{display:none;}
    .about-cards{grid-template-columns:repeat(2, 1fr);}
  }
  @media (max-width: 600px){
    .about-cards{grid-template-columns:1fr;}
    .about-stats{gap:18px;}
  }

  /* ---------- WHAT I DO (detailed) ---------- */
  .section-intro{
    max-width:700px; margin:0 auto 34px; text-align:center;
    color:var(--muted); font-size:14.5px; line-height:1.75;
  }
  .wid-grid{
    max-width:1280px; margin:0 auto;
    display:grid; grid-template-columns:repeat(3, 1fr); gap:20px;
  }
  .wid-card{
    background:var(--white); border:1px solid var(--line); border-radius:12px; padding:24px;
  }
  .wid-head{
    display:flex; align-items:center; gap:13px;
    margin-bottom:16px; padding-bottom:16px; border-bottom:1px solid var(--line);
  }
  .wid-icon{
    width:44px; height:44px; border-radius:10px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
  }
  .wid-icon.navy-bg{background:var(--navy);}
  .wid-icon.gold-bg{background:var(--gold);}
  .wid-icon svg{width:21px; height:21px; stroke:var(--white);}
  .wid-title{font-weight:700; font-size:15px; color:var(--navy); line-height:1.3;}
  .wid-list{display:flex; flex-direction:column; gap:9px;}
  .wid-list li{display:flex; align-items:flex-start; gap:8px; font-size:12.6px; color:var(--muted); line-height:1.4;}
  .wid-list li svg{width:14px; height:14px; stroke:var(--gold); flex-shrink:0; margin-top:2px;}

  @media (max-width: 980px){
    .wid-grid{grid-template-columns:repeat(2, 1fr);}
  }
  @media (max-width: 600px){
    .wid-grid{grid-template-columns:1fr;}
  }

  /* ---------- SUB-PAGE HERO (Services / Courses) ---------- */
  .sub-hero{background:var(--navy); position:relative; overflow:hidden;}
  .sub-hero-grid{
    max-width:1280px; margin:0 auto; display:grid; grid-template-columns:1.15fr 1fr;
    gap:40px; align-items:center; padding:56px 32px;
  }
  .sub-hero-eyebrow{
    color:var(--gold-light); font-weight:700; font-size:12.5px; letter-spacing:1.5px;
    margin-bottom:16px; display:flex; align-items:center; gap:10px;
  }
  .sub-hero-eyebrow::before{content:""; width:28px; height:2px; background:var(--gold-light);}
  .sub-hero h1{
    font-family:'Playfair Display', serif; font-weight:800; font-size:32px;
    color:var(--white); line-height:1.25; margin-bottom:14px;
  }
  .sub-hero p{color:#cbd3e3; font-size:14px; line-height:1.75; max-width:520px; margin-bottom:24px;}
  .sub-hero-buttons{display:flex; gap:14px; flex-wrap:wrap; margin-bottom:28px;}
  .sub-hero-stats{display:flex; gap:26px; flex-wrap:wrap;}
  .sub-hero-stat{display:flex; align-items:center; gap:10px;}
  .sub-hero-stat .ssi{
    width:32px; height:32px; border-radius:50%; background:rgba(201,152,46,.18);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .sub-hero-stat .ssi svg{width:15px; height:15px; stroke:var(--gold-light);}
  .sub-hero-stat .sst{font-size:12px; color:#dfe3ec; font-weight:600; line-height:1.35;}
  .sub-hero-visual{
    position:relative; height:270px; border-radius:18px;
    background:linear-gradient(135deg, #16305c, #0b1d38);
    border:1px solid rgba(224,182,83,.25);
    display:flex; align-items:center; justify-content:center; overflow:hidden;
  }
  .sub-hero-visual svg{width:78%; height:78%;}

  /* ---------- CARD LINK (used in simple 6-card grids) ---------- */
  .card-link{
    display:inline-flex; align-items:center; gap:6px; color:var(--gold);
    font-weight:700; font-size:12px; margin-top:10px;
  }
  .card-link svg{width:12px; height:12px;}

  /* ---------- DETAIL GRID (6 narrow columns) ---------- */
  .detail-grid{
    max-width:1280px; margin:0 auto; display:grid;
    grid-template-columns:repeat(6, 1fr); gap:16px;
  }
  .detail-card{
    background:var(--white); border:1px solid var(--line); border-radius:12px; padding:20px;
    display:flex; flex-direction:column;
  }
  .detail-icon{
    width:42px; height:42px; border-radius:10px; background:#eef1f7;
    display:flex; align-items:center; justify-content:center; margin-bottom:14px;
  }
  .detail-icon svg{width:20px; height:20px; stroke:var(--navy);}
  .detail-icon.gold-text svg{stroke:var(--gold);}
  .detail-title{font-weight:700; font-size:13.5px; color:var(--navy); margin-bottom:10px; line-height:1.3;}
  .detail-title.gold-text{color:var(--gold);}
  .detail-list{display:flex; flex-direction:column; gap:6px; margin-bottom:14px; flex:1;}
  .detail-list li{font-size:11px; color:var(--muted); line-height:1.5; padding-left:12px; position:relative;}
  .detail-list li::before{
    content:""; position:absolute; left:0; top:6px; width:4px; height:4px; border-radius:50%; background:var(--gold);
  }
  .detail-link{color:var(--gold); font-weight:700; font-size:11.5px; display:inline-flex; align-items:center; gap:5px;}

  /* ---------- CHOOSE / STATS WITH VISUAL ---------- */
  .choose-wrap{
    max-width:1280px; margin:0 auto; display:grid;
    grid-template-columns:0.78fr 2.1fr; gap:26px; align-items:center;
  }
  .choose-visual{
    height:220px; border-radius:16px;
    background:linear-gradient(135deg, var(--navy), var(--navy-deep));
    display:flex; align-items:center; justify-content:center; overflow:hidden;
  }
  .choose-visual svg{width:60%; height:60%;}
  .choose-stats-grid{display:grid; grid-template-columns:repeat(6, 1fr); gap:20px;}
  .choose-stat{text-align:center;}
  .choose-stat-icon{
    width:44px; height:44px; border-radius:50%; background:var(--cream);
    display:flex; align-items:center; justify-content:center; margin:0 auto 10px;
  }
  .choose-stat-icon svg{width:20px; height:20px; stroke:var(--navy);}
  .choose-num{font-family:'Playfair Display', serif; font-weight:800; font-size:21px; color:var(--navy); line-height:1;}
  .choose-label{font-size:11px; color:var(--muted); margin-top:4px; line-height:1.3;}

  /* ---------- TESTIMONIALS ---------- */
  .testi-carousel-wrap{max-width:1280px; margin:0 auto; position:relative;}
  .testi-grid{
    display:flex; gap:22px; overflow-x:auto; scroll-snap-type:x mandatory;
    scroll-behavior:smooth; padding:6px 2px 14px; -ms-overflow-style:none; scrollbar-width:none;
  }
  .testi-grid::-webkit-scrollbar{display:none;}
  .testi-grid .testi-card{flex:0 0 360px; scroll-snap-align:start;}
  .testi-nav{
    position:absolute; top:40%; transform:translateY(-50%);
    width:40px; height:40px; border-radius:50%; background:var(--navy); border:none; cursor:pointer;
    display:flex; align-items:center; justify-content:center; z-index:5;
    box-shadow:0 6px 16px rgba(16,40,76,.25);
  }
  .testi-nav:hover{background:var(--navy-deep);}
  .testi-nav svg{width:18px; height:18px; stroke:var(--white);}
  .testi-nav.prev{left:-20px;}
  .testi-nav.next{right:-20px;}
  @media (max-width: 1320px){
    .testi-nav.prev{left:6px;}
    .testi-nav.next{right:6px;}
  }
  @media (max-width: 700px){
    .testi-grid .testi-card{flex:0 0 88%;}
  }
  .testi-card{background:var(--white); border:1px solid var(--line); border-radius:14px; padding:26px;}
  .testi-quote-mark{color:var(--gold); font-family:'Playfair Display', serif; font-size:32px; line-height:1; margin-bottom:8px;}
  .testi-text{font-size:12.8px; color:var(--muted); line-height:1.7; margin-bottom:20px;}
  .testi-person{display:flex; align-items:center; gap:12px;}
  .testi-avatar{
    width:42px; height:42px; border-radius:50%; background:var(--navy); color:var(--white);
    display:flex; align-items:center; justify-content:center; font-weight:700; font-size:14px; flex-shrink:0;
  }
  .testi-name{font-weight:700; color:var(--navy); font-size:13px;}
  .testi-role{font-size:11px; color:var(--muted);}
  .testi-stars{color:var(--gold); font-size:12px; margin-top:3px; letter-spacing:1px;}

  /* ---------- CTA BANNER ---------- */
  .cta-banner{
    max-width:1280px; margin:0 auto; background:var(--navy); border-radius:16px;
    padding:32px 38px; display:flex; align-items:center; justify-content:space-between;
    gap:24px; flex-wrap:wrap;
  }
  .cta-left{display:flex; align-items:center; gap:18px;}
  .cta-icon{
    width:52px; height:52px; border-radius:50%; background:var(--gold); flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
  }
  .cta-icon svg{width:23px; height:23px; stroke:var(--white);}
  .cta-title{font-family:'Playfair Display', serif; font-weight:700; color:var(--white); font-size:18px; margin-bottom:4px;}
  .cta-desc{color:#c7cede; font-size:12.5px;}
  .cta-buttons{display:flex; gap:14px; flex-wrap:wrap;}

  /* ---------- SITE FOOTER ---------- */
  .site-footer{background:var(--navy-deep); color:#c7cede;}
  .footer-grid{
    max-width:1280px; margin:0 auto; padding:50px 32px 30px;
    display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr 1fr; gap:30px;
  }
  .footer-brand .fb-mark{font-family:'Playfair Display', serif; font-size:24px; font-weight:800; color:var(--white);}
  .footer-brand .fb-sub{font-size:11px; color:#8b93a8; margin-bottom:14px;}
  .footer-brand p{font-size:12px; line-height:1.7; color:#a8b0c4; margin-bottom:16px;}
  .footer-social{display:flex; gap:10px;}
  .footer-social a{
    width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,.08);
    display:flex; align-items:center; justify-content:center;
  }
  .footer-social svg{width:14px; height:14px; stroke:var(--white);}
  .footer-col h4{color:var(--white); font-size:13px; font-weight:700; margin-bottom:16px;}
  .footer-col ul{display:flex; flex-direction:column; gap:10px;}
  .footer-col a{font-size:12px; color:#a8b0c4;}
  .footer-col a:hover{color:var(--gold-light);}
  .footer-contact li{display:flex; align-items:flex-start; gap:8px; font-size:12px; color:#a8b0c4; margin-bottom:12px;}
  .footer-contact svg{width:14px; height:14px; stroke:var(--gold-light); flex-shrink:0; margin-top:2px;}
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,.08); padding:18px 32px;
    display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
    max-width:1280px; margin:0 auto; font-size:11px; color:#8b93a8;
  }
  .footer-bottom a{color:#8b93a8;}
  .footer-bottom-links{display:flex; gap:18px;}

  /* ---------- WHY BAR (courses page) ---------- */
  .why-bar{
    max-width:1280px; margin:0 auto; background:var(--white); border:1px solid var(--line);
    border-radius:14px; padding:24px 28px; display:flex; align-items:center; gap:28px; flex-wrap:wrap;
  }
  .why-left{flex-shrink:0; max-width:200px;}
  .why-left h3{font-family:'Playfair Display', serif; font-weight:700; color:var(--navy); font-size:16px; margin-bottom:4px;}
  .why-left p{font-size:11px; color:var(--muted); line-height:1.4;}
  .why-items{display:flex; gap:20px; flex-wrap:wrap; flex:1;}
  .why-item{text-align:center; min-width:76px;}
  .why-item .wi-icon{
    width:36px; height:36px; border-radius:10px; background:var(--cream);
    display:flex; align-items:center; justify-content:center; margin:0 auto 8px;
  }
  .why-item .wi-icon svg{width:17px; height:17px; stroke:var(--navy);}
  .why-item .wi-label{font-size:10.5px; color:var(--muted); font-weight:600; line-height:1.3;}

  /* ---------- COURSE CARDS ---------- */
  .course-grid{max-width:1280px; margin:0 auto; display:grid; grid-template-columns:repeat(3, 1fr); gap:20px;}
  .course-card{background:var(--white); border:1px solid var(--line); border-radius:14px; padding:22px;}
  .course-head{display:flex; align-items:center; gap:14px; margin-bottom:14px;}
  .course-icon-wrap{position:relative; width:58px; flex-shrink:0;}
  .course-num{
    position:absolute; top:-6px; left:-6px; width:24px; height:24px; border-radius:50%;
    background:var(--navy); color:var(--white); font-size:10.5px; font-weight:800;
    display:flex; align-items:center; justify-content:center; z-index:2; border:2px solid var(--white);
  }
  .course-icon-circle{
    width:58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  }
  .course-icon-circle svg{width:26px; height:26px;}
  .course-title{font-weight:700; color:var(--navy); font-size:15.5px; line-height:1.3;}
  .course-list{display:flex; flex-direction:column; gap:6px; margin-bottom:16px;}
  .course-list li{font-size:12px; color:var(--muted); padding-left:14px; position:relative; line-height:1.5;}
  .course-list li::before{
    content:""; position:absolute; left:0; top:7px; width:4px; height:4px; border-radius:50%; background:var(--gold);
  }
  .course-meta{
    display:flex; gap:16px; font-size:11px; color:var(--muted);
    border-top:1px solid var(--line); padding-top:14px; margin-bottom:14px; flex-wrap:wrap;
  }
  .course-meta span{display:flex; align-items:center; gap:5px;}
  .course-meta svg{width:13px; height:13px; stroke:var(--gold);}
  .course-btn{width:100%; justify-content:center;}

  /* ---------- FORMAT / RECEIVE GRIDS ---------- */
  .format-grid{max-width:1280px; margin:0 auto; display:grid; grid-template-columns:repeat(4, 1fr); gap:18px;}
  .format-card{background:var(--white); border:1px solid var(--line); border-radius:12px; padding:20px; text-align:center;}
  .format-icon{
    width:46px; height:46px; border-radius:12px; background:var(--cream);
    display:flex; align-items:center; justify-content:center; margin:0 auto 12px;
  }
  .format-icon svg{width:21px; height:21px; stroke:var(--navy);}
  .format-title{font-weight:700; color:var(--navy); font-size:13px; margin-bottom:6px;}
  .format-desc{font-size:11px; color:var(--muted); line-height:1.5;}

  .receive-grid{max-width:1280px; margin:0 auto; display:grid; grid-template-columns:repeat(8, 1fr); gap:14px;}
  .receive-item{text-align:center;}
  .receive-icon{
    width:42px; height:42px; border-radius:50%; background:var(--white); border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center; margin:0 auto 8px;
  }
  .receive-icon svg{width:18px; height:18px; stroke:var(--navy);}
  .receive-label{font-size:10px; color:var(--muted); font-weight:600; line-height:1.3;}

  /* ---------- TWO COLUMN PANELS (Upcoming Courses / FAQ) ---------- */
  .two-col{max-width:1280px; margin:0 auto; display:grid; grid-template-columns:1.1fr 1fr; gap:22px; align-items:start;}
  .panel-card{background:var(--white); border:1px solid var(--line); border-radius:14px; padding:24px;}
  .panel-title{
    font-weight:700; color:var(--navy); font-size:15.5px; margin-bottom:18px;
    display:flex; align-items:center; gap:8px;
  }
  .panel-title svg{width:17px; height:17px; stroke:var(--gold);}

  .uc-table{width:100%; border-collapse:collapse; font-size:12.5px;}
  .uc-table th{text-align:left; color:var(--navy); font-size:11px; padding:9px 8px; border-bottom:1px solid var(--line);}
  .uc-table td{padding:11px 8px; border-bottom:1px solid var(--line); color:var(--ink);}
  .status-badge{
    background:#fdf2e0; color:#a9761f; font-size:10.5px; font-weight:700;
    padding:4px 10px; border-radius:20px; white-space:nowrap;
  }

  .faq-item{border:1px solid var(--line); border-radius:10px; margin-bottom:10px; overflow:hidden;}
  .faq-item summary{
    padding:13px 16px; font-weight:600; font-size:13px; color:var(--navy); cursor:pointer;
    display:flex; align-items:center; gap:10px; list-style:none;
  }
  .faq-item summary::-webkit-details-marker{display:none;}
  .faq-item summary .faq-q-icon{
    width:24px; height:24px; border-radius:50%; background:var(--cream);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .faq-item summary .faq-q-icon svg{width:12px; height:12px; stroke:var(--navy);}
  .faq-item[open] summary{border-bottom:1px solid var(--line);}
  .faq-body{padding:12px 16px 16px 50px; font-size:12px; color:var(--muted); line-height:1.6;}

  @media (max-width: 1100px){
    .detail-grid{grid-template-columns:repeat(3, 1fr);}
    .choose-stats-grid{grid-template-columns:repeat(3, 1fr); gap:16px 10px;}
    .receive-grid{grid-template-columns:repeat(4, 1fr);}
  }
  @media (max-width: 980px){
    .sub-hero-grid{grid-template-columns:1fr;}
    .sub-hero-visual{height:220px;}
    .choose-wrap{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr; gap:30px 20px;}
    .course-grid{grid-template-columns:repeat(2, 1fr);}
    .format-grid{grid-template-columns:repeat(2, 1fr);}
    .two-col{grid-template-columns:1fr;}
  }
  @media (max-width: 640px){
    .detail-grid{grid-template-columns:repeat(2, 1fr);}
    .choose-stats-grid{grid-template-columns:repeat(2, 1fr);}
    .receive-grid{grid-template-columns:repeat(2, 1fr);}
    .footer-grid{grid-template-columns:1fr;}
    .course-grid{grid-template-columns:1fr;}
    .format-grid{grid-template-columns:1fr;}
    .why-bar{flex-direction:column; align-items:flex-start;}
    .cta-banner{flex-direction:column; align-items:flex-start; text-align:left;}
  }

  /* ---------- COURSE DETAIL LANDING PAGES (Research Methodology / Stats) ---------- */
  .cd-hero{padding:44px 32px 30px; max-width:1280px; margin:0 auto;}
  .cd-badge{
    display:inline-block; background:var(--navy); color:var(--white); font-weight:800;
    font-size:12px; letter-spacing:1px; padding:8px 18px; border-radius:30px; margin-bottom:16px;
  }
  .cd-badge.teal{background:#0e7c73;}
  .cd-title{font-family:'Playfair Display', serif; font-weight:800; font-size:40px; line-height:1.12; margin-bottom:8px;}
  .cd-title .line1{color:var(--navy); display:block;}
  .cd-title .line2{display:block;}
  .cd-title .line2.teal{color:#0e7c73;}
  .cd-title .line2.gold{color:var(--gold);}
  .cd-subtitle{font-weight:700; font-size:15px; color:var(--ink); margin-bottom:16px; letter-spacing:.2px;}
  .cd-tagbar{
    display:inline-flex; flex-wrap:wrap; gap:0; background:var(--navy); border-radius:8px; overflow:hidden;
    margin-bottom:14px;
  }
  .cd-tagbar span{
    display:flex; align-items:center; gap:7px; color:var(--white); font-weight:700; font-size:12.5px;
    padding:11px 16px; border-right:1px solid rgba(255,255,255,.15);
  }
  .cd-tagbar span:last-child{border-right:none;}
  .cd-tagbar svg{width:14px; height:14px;}
  .cd-tagline{color:var(--muted); font-size:13px; font-weight:600; margin-bottom:22px;}

  .cd-grid{display:grid; grid-template-columns:1fr 1fr; gap:36px; align-items:center;}
  .cd-visual{position:relative;}
  .cd-visual img{width:100%; border-radius:14px; box-shadow:0 16px 40px rgba(16,40,76,.14);}
  .cd-feature-row{display:grid; grid-template-columns:repeat(4, 1fr); gap:16px; margin-top:8px;}
  .cd-feature{text-align:center;}
  .cd-feature .cf-icon{
    width:44px; height:44px; border-radius:12px; background:var(--cream);
    display:flex; align-items:center; justify-content:center; margin:0 auto 8px;
  }
  .cd-feature .cf-icon svg{width:20px; height:20px; stroke:var(--navy);}
  .cd-feature .cf-label{font-size:11px; font-weight:700; color:var(--navy); line-height:1.35;}

  .cd-icon-badges{display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; margin-top:18px;}
  .cd-icon-badge{display:flex; align-items:flex-start; gap:10px;}
  .cd-icon-badge .cib-circle{
    width:40px; height:40px; border-radius:50%; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
  }
  .cd-icon-badge .cib-circle svg{width:19px; height:19px; stroke:var(--white);}
  .cd-icon-badge .cib-title{font-weight:800; font-size:12px; letter-spacing:.3px;}
  .cd-icon-badge .cib-desc{font-size:11px; color:var(--muted); line-height:1.3;}

  /* Course table */
  .cd-table-wrap{max-width:1280px; margin:30px auto 0; padding:0 32px;}
  .cd-table-title{
    background:var(--navy); color:var(--white); font-weight:800; font-size:14px; letter-spacing:.5px;
    text-align:center; padding:13px; border-radius:8px 8px 0 0;
  }
  .cd-table-cols{display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--line); border-top:none; border-radius:0 0 8px 8px; overflow:hidden;}
  .cd-course-table{width:100%; border-collapse:collapse; font-size:11.8px;}
  .cd-course-table th{
    background:#eef1f7; color:var(--navy); text-align:left; padding:8px 10px; font-size:11px; font-weight:700;
    border-bottom:1px solid var(--line);
  }
  .cd-course-table td{padding:7px 10px; border-bottom:1px solid var(--line); color:var(--ink);}
  .cd-course-table td.num{color:var(--muted); width:26px;}
  .cd-course-table td.level-beginner{color:#2a9d5c; font-weight:700;}
  .cd-course-table td.level-intermediate{color:#c9982e; font-weight:700;}
  .cd-course-table td.level-advanced{color:var(--navy); font-weight:700;}
  .cd-course-table td.price{font-weight:700; color:var(--navy); white-space:nowrap;}
  .cd-course-table tr:last-child td{border-bottom:none;}
  .cd-course-table td:first-child{border-right:1px solid var(--line);}

  /* Sidebar: What you'll learn */
  .cd-side{display:flex; flex-direction:column; gap:20px;}
  .cd-learn-box{background:var(--navy); border-radius:12px; padding:22px;}
  .cd-learn-box.light{background:var(--white); border:1px solid var(--line);}
  .cd-learn-title{
    color:var(--white); font-weight:800; font-size:14px; letter-spacing:.5px; text-align:center;
    margin-bottom:16px;
  }
  .cd-learn-title.dark{color:var(--navy);}
  .cd-learn-list{display:flex; flex-direction:column; gap:11px; margin-bottom:18px;}
  .cd-learn-list li{display:flex; align-items:flex-start; gap:9px; font-size:12px; color:#e3e8f2; line-height:1.4;}
  .cd-learn-list.dark li{color:var(--ink);}
  .cd-learn-list li svg{width:15px; height:15px; stroke:var(--gold-light); flex-shrink:0; margin-top:1px;}
  .cd-learn-list.dark li svg{stroke:var(--gold);}
  .cd-software-row{display:grid; grid-template-columns:repeat(4, 1fr); gap:10px;}
  .cd-software-row div{text-align:center;}
  .cd-software-icon{
    width:42px; height:42px; border-radius:10px; display:flex; align-items:center; justify-content:center;
    margin:0 auto 6px; font-weight:800; font-size:12px; color:var(--white);
  }
  .cd-software-label{font-size:10px; font-weight:700; color:#dfe3ec;}
  .cd-software-row.dark .cd-software-label{color:var(--muted);}

  .cd-enroll-box{background:var(--cream); border-radius:12px; padding:20px;}
  .cd-enroll-title{font-weight:800; font-size:13px; color:var(--navy); text-align:center; margin-bottom:16px;}
  .cd-enroll-grid{display:grid; grid-template-columns:repeat(4, 1fr); gap:10px;}
  .cd-enroll-item{text-align:center;}
  .cd-enroll-item svg{width:24px; height:24px; stroke:var(--navy); margin-bottom:6px;}
  .cd-enroll-item div{font-size:10px; font-weight:700; color:var(--navy); line-height:1.25;}

  .cd-why-box{background:#eef4fb; border-radius:12px; padding:20px;}
  .cd-why-title{font-weight:800; font-size:13px; color:var(--navy); margin-bottom:14px;}
  .cd-why-list{display:flex; flex-direction:column; gap:11px;}
  .cd-why-list li{display:flex; align-items:flex-start; gap:9px; font-size:11.5px; color:var(--ink); line-height:1.4;}
  .cd-why-list li svg{width:16px; height:16px; stroke:var(--navy); flex-shrink:0; margin-top:1px;}

  /* Certification + learning path row */
  .cd-bottom-grid{max-width:1280px; margin:22px auto 0; padding:0 32px; display:grid; grid-template-columns:0.8fr 1.5fr; gap:20px;}
  .cd-cert-box{background:var(--navy); border-radius:12px; padding:22px; color:var(--white);}
  .cd-cert-title{
    display:flex; align-items:center; gap:10px; font-weight:800; font-size:13px; letter-spacing:.3px;
    margin-bottom:16px; padding-bottom:14px; border-bottom:1px solid rgba(255,255,255,.15);
  }
  .cd-cert-title svg{width:20px; height:20px; stroke:var(--gold-light);}
  .cd-cert-row{
    display:flex; justify-content:space-between; align-items:center; gap:10px;
    font-size:11.5px; padding:9px 0; border-bottom:1px solid rgba(255,255,255,.08);
  }
  .cd-cert-row:last-child{border-bottom:none;}
  .cd-cert-name{color:#e3e8f2;}
  .cd-cert-meta{color:var(--gold-light); font-weight:700; white-space:nowrap;}

  .cd-path-box{background:var(--white); border:1px solid var(--line); border-radius:12px; padding:22px;}
  .cd-path-title{font-weight:800; font-size:14px; color:var(--navy); text-align:center; margin-bottom:16px;}
  .cd-path-steps{display:grid; grid-template-columns:repeat(4, 1fr); gap:14px;}
  .cd-path-step{border:1px solid var(--line); border-radius:10px; padding:14px 12px; position:relative;}
  .cd-path-num{
    width:26px; height:26px; border-radius:50%; color:var(--white); font-weight:800; font-size:12px;
    display:flex; align-items:center; justify-content:center; margin-bottom:8px;
  }
  .cd-path-step-title{font-weight:800; font-size:11.5px; color:var(--navy); margin-bottom:8px; letter-spacing:.2px;}
  .cd-path-step ul{display:flex; flex-direction:column; gap:4px;}
  .cd-path-step li{font-size:10.5px; color:var(--muted); padding-left:10px; position:relative;}
  .cd-path-step li::before{content:"•"; position:absolute; left:0; color:var(--gold);}

  .cd-cert-simple{background:#eef4fb; border-radius:12px; padding:20px; display:flex; align-items:flex-start; gap:20px; flex-wrap:wrap;}
  .cd-cert-simple .ccs-badge{text-align:center; flex-shrink:0; width:80px;}
  .cd-cert-simple .ccs-badge svg{width:34px; height:34px; stroke:var(--navy); margin-bottom:6px;}
  .cd-cert-simple .ccs-badge div{font-size:10px; font-weight:800; color:var(--navy); line-height:1.2;}
  .cd-cert-simple .ccs-items{display:flex; flex-direction:column; gap:10px; flex:1 1 260px; min-width:260px;}
  .cd-cert-simple .ccs-item{font-size:11.5px;}
  .cd-cert-simple .ccs-item .ccs-name{font-weight:700; color:var(--navy); margin-bottom:2px;}
  .cd-cert-simple .ccs-item .ccs-meta{color:var(--muted);}
  .cd-cert-simple .ccs-icons{display:flex; gap:18px; flex-shrink:0; flex-wrap:wrap; padding-top:2px;}
  .cd-cert-simple .ccs-icons div{text-align:center; width:66px;}
  .cd-cert-simple .ccs-icons svg{width:22px; height:22px; stroke:var(--navy); margin-bottom:5px;}
  .cd-cert-simple .ccs-icons span{font-size:9.5px; color:var(--muted); font-weight:600; display:block; line-height:1.25;}

  /* Bottom strip banner */
  .cd-strip{
    max-width:1280px; margin:26px auto 0; background:var(--navy); border-radius:0; padding:22px 32px;
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px;
  }
  .cd-strip-left{display:flex; align-items:center; gap:12px;}
  .cd-strip-left svg{width:26px; height:26px; stroke:var(--gold-light);}
  .cd-strip-left span{color:var(--gold-light); font-weight:800; font-size:14px; letter-spacing:.3px;}
  .cd-strip-right{display:flex; align-items:center; gap:12px;}
  .cd-strip-right svg{width:26px; height:26px; stroke:var(--white);}
  .cd-strip-right .csr-title{color:var(--white); font-weight:700; font-size:13.5px;}
  .cd-strip-right .csr-sub{color:var(--gold-light); font-size:10.5px;}

  @media (max-width: 1000px){
    .cd-grid{grid-template-columns:1fr;}
    .cd-table-cols{grid-template-columns:1fr;}
    .cd-bottom-grid{grid-template-columns:1fr;}
    .cd-icon-badges{grid-template-columns:1fr;}
  }
  @media (max-width: 700px){
    .cd-feature-row{grid-template-columns:repeat(2, 1fr);}
    .cd-software-row{grid-template-columns:repeat(2, 1fr);}
    .cd-enroll-grid{grid-template-columns:repeat(2, 1fr);}
    .cd-path-steps{grid-template-columns:1fr 1fr;}
    .cd-title{font-size:30px;}
    .cd-strip{flex-direction:column; align-items:flex-start;}
  }

  /* ---------- BLOG PAGE ---------- */
  .blog-featured{max-width:1280px; margin:0 auto; display:grid; grid-template-columns:1.3fr 1fr; gap:32px; align-items:center;}
  .video-embed-wrap{
    position:relative; width:100%; padding-bottom:56.25%; height:0;
    border-radius:14px; overflow:hidden; box-shadow:0 16px 40px rgba(16,40,76,.16); background:#000;
  }
  .video-embed-wrap iframe{position:absolute; top:0; left:0; width:100%; height:100%; border:0;}
  .blog-featured-tag{
    display:inline-flex; align-items:center; gap:6px; background:#fdeee0; color:#c0431f;
    font-weight:700; font-size:11px; padding:6px 12px; border-radius:20px; margin-bottom:14px;
  }
  .blog-featured h2{font-family:'Playfair Display', serif; font-weight:800; font-size:24px; color:var(--navy); line-height:1.3; margin-bottom:12px;}
  .blog-featured p{font-size:13.5px; color:var(--muted); line-height:1.7; margin-bottom:18px;}
  .blog-meta{display:flex; align-items:center; gap:16px; font-size:11.5px; color:var(--muted); margin-bottom:20px;}
  .blog-meta span{display:flex; align-items:center; gap:5px;}
  .blog-meta svg{width:13px; height:13px; stroke:var(--gold);}

  .blog-grid{max-width:1280px; margin:0 auto; display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;}
  .blog-card{background:var(--white); border:1px solid var(--line); border-radius:14px; overflow:hidden; display:flex; flex-direction:column;}
  .blog-card-thumb{position:relative; aspect-ratio:16/9; background:var(--navy); overflow:hidden;}
  .blog-card-thumb img{width:100%; height:100%; object-fit:cover; display:block;}
  .blog-card-thumb .play-btn{
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:52px; height:52px; border-radius:50%; background:rgba(16,40,76,.85);
    display:flex; align-items:center; justify-content:center; transition:background .15s ease;
  }
  .blog-card:hover .play-btn{background:var(--gold);}
  .blog-card-thumb .play-btn svg{width:20px; height:20px; fill:var(--white); stroke:none; margin-left:3px;}
  .blog-card-thumb .duration{
    position:absolute; bottom:8px; right:8px; background:rgba(0,0,0,.75); color:var(--white);
    font-size:10px; font-weight:700; padding:2px 7px; border-radius:4px;
  }
  .blog-card-body{padding:18px 20px 20px; display:flex; flex-direction:column; flex:1;}
  .blog-tag{
    display:inline-flex; align-self:flex-start; font-size:10px; font-weight:700; letter-spacing:.3px;
    padding:4px 10px; border-radius:20px; margin-bottom:10px;
  }
  .blog-tag.tag-video{background:#fdeee0; color:#c0431f;}
  .blog-tag.tag-article{background:#e8f0fb; color:#1d5fa8;}
  .blog-tag.tag-guide{background:#eaf7ee; color:#2a9d5c;}
  .blog-card-title{font-weight:700; font-size:14.5px; color:var(--navy); line-height:1.4; margin-bottom:8px;}
  .blog-card-desc{font-size:12px; color:var(--muted); line-height:1.6; margin-bottom:14px; flex:1;}
  .blog-card-foot{
    display:flex; align-items:center; justify-content:space-between; font-size:11px; color:var(--muted);
    border-top:1px solid var(--line); padding-top:12px;
  }
  .blog-card-foot .read-link{color:var(--gold); font-weight:700; display:inline-flex; align-items:center; gap:4px;}
  .blog-card-foot .read-link svg{width:11px; height:11px;}

  .blog-filter-bar{
    max-width:1280px; margin:0 auto 26px; display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
  }
  .blog-filter-bar a{
    font-size:12.5px; font-weight:600; padding:8px 16px; border-radius:20px; border:1px solid var(--line);
    color:var(--muted);
  }
  .blog-filter-bar a.active{background:var(--navy); color:var(--white); border-color:var(--navy);}

  @media (max-width: 980px){
    .blog-featured{grid-template-columns:1fr;}
    .blog-grid{grid-template-columns:repeat(2, 1fr);}
  }
  @media (max-width: 640px){
    .blog-grid{grid-template-columns:1fr;}
  }

  /* ---------- BLOG CATEGORY CAROUSELS ---------- */
  .cat-carousel-wrap{max-width:1280px; margin:0 auto 44px; position:relative;}
  .cat-header{display:flex; align-items:center; justify-content:space-between; margin-bottom:16px;}
  .cat-title{display:flex; align-items:center; gap:10px; font-family:'Playfair Display', serif; font-weight:800; color:var(--navy); font-size:19px;}
  .cat-title .cat-dot{width:8px; height:8px; border-radius:50%; background:var(--gold);}
  .cat-count{font-size:11.5px; color:var(--muted); font-weight:600;}
  .blog-track{
    display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory;
    scroll-behavior:smooth; padding:4px 2px 10px; -ms-overflow-style:none; scrollbar-width:none;
  }
  .blog-track::-webkit-scrollbar{display:none;}
  .blog-track .blog-card{flex:0 0 calc((100% - 40px) / 3); scroll-snap-align:start;}
  .scroll-nav{
    position:absolute; top:56%; transform:translateY(-50%);
    width:38px; height:38px; border-radius:50%; background:var(--navy); border:none; cursor:pointer;
    display:flex; align-items:center; justify-content:center; z-index:5;
    box-shadow:0 6px 16px rgba(16,40,76,.22);
  }
  .scroll-nav:hover{background:var(--navy-deep);}
  .scroll-nav svg{width:16px; height:16px; stroke:var(--white);}
  .scroll-nav.prev{left:-19px;}
  .scroll-nav.next{right:-19px;}
  @media (max-width: 1320px){
    .scroll-nav.prev{left:2px;}
    .scroll-nav.next{right:2px;}
  }
  @media (max-width: 900px){
    .blog-track .blog-card{flex:0 0 calc((100% - 20px) / 2);}
  }
  @media (max-width: 640px){
    .blog-track .blog-card{flex:0 0 88%;}
  }

  /* ---------- RESOURCES PAGE ---------- */
  .res-search-bar{
    max-width:760px; margin:0 auto 40px; display:flex; align-items:center; gap:10px;
    background:var(--white); border:1px solid var(--line); border-radius:40px; padding:6px 6px 6px 20px;
  }
  .res-search-bar svg{width:17px; height:17px; stroke:var(--muted); flex-shrink:0;}
  .res-search-bar input{
    flex:1; border:none; outline:none; font-family:'Inter', sans-serif; font-size:14px; color:var(--ink); background:transparent;
  }
  .res-search-bar button{
    background:var(--navy); color:var(--white); border:none; border-radius:30px; padding:10px 20px;
    font-weight:700; font-size:13px; cursor:pointer; flex-shrink:0;
  }

  .res-cat-block{max-width:1280px; margin:0 auto 46px;}
  .res-cat-head{display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; flex-wrap:wrap; gap:10px;}
  .res-cat-title{display:flex; align-items:center; gap:12px;}
  .res-cat-icon{
    width:38px; height:38px; border-radius:10px; background:var(--navy);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .res-cat-icon svg{width:18px; height:18px; stroke:var(--white);}
  .res-cat-title h3{font-family:'Playfair Display', serif; font-weight:700; color:var(--navy); font-size:18px;}
  .res-cat-count{font-size:11.5px; color:var(--muted); font-weight:600;}

  .res-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:20px;}
  .res-card{
    background:var(--white); border:1px solid var(--line); border-radius:12px; padding:20px;
    display:flex; gap:14px;
  }
  .res-file-icon{
    width:46px; height:46px; border-radius:10px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center; font-weight:800; font-size:10.5px; color:var(--white);
  }
  .res-file-icon.pdf{background:#c0392b;}
  .res-file-icon.doc{background:#2b579a;}
  .res-file-icon.xls{background:#1d6f42;}
  .res-file-icon.ppt{background:#c0431f;}
  .res-body{flex:1; min-width:0;}
  .res-title{font-weight:700; font-size:13.5px; color:var(--navy); line-height:1.35; margin-bottom:6px;}
  .res-desc{font-size:11.5px; color:var(--muted); line-height:1.5; margin-bottom:12px;}
  .res-meta-row{display:flex; align-items:center; justify-content:space-between; gap:10px;}
  .res-filemeta{font-size:10.5px; color:var(--muted); font-weight:600;}
  .res-download{
    display:inline-flex; align-items:center; gap:5px; background:var(--cream); color:var(--navy);
    font-weight:700; font-size:11px; padding:6px 12px; border-radius:20px; flex-shrink:0;
  }
  .res-download:hover{background:var(--gold); color:var(--white);}
  .res-download svg{width:12px; height:12px;}

  @media (max-width: 980px){
    .res-grid{grid-template-columns:repeat(2, 1fr);}
  }
  @media (max-width: 640px){
    .res-grid{grid-template-columns:1fr;}
    .res-card{flex-direction:column;}
  }

  /* ---------- CONTACT PAGE ---------- */
  .map-wrap{max-width:1280px; margin:0 auto; padding:0 32px 60px;}
  .map-frame{
    width:100%; height:340px; border-radius:14px; overflow:hidden; border:1px solid var(--line);
  }
  .map-frame iframe{width:100%; height:100%; border:0;}

  /* ---------- RESOURCES: CATEGORY OVERVIEW CARDS ---------- */
  .res-overview-grid{
    max-width:1280px; margin:0 auto; display:grid; grid-template-columns:repeat(3, 1fr); gap:22px;
  }
  .res-overview-card{
    display:flex; flex-direction:column; background:var(--white); border:1px solid var(--line);
    border-radius:14px; padding:28px; transition:box-shadow .2s ease, transform .2s ease;
  }
  .res-overview-card:hover{box-shadow:0 14px 32px rgba(16,40,76,.12); transform:translateY(-3px);}
  .roc-icon{
    width:56px; height:56px; border-radius:14px; background:var(--navy);
    display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  }
  .roc-icon svg{width:26px; height:26px; stroke:var(--white);}
  .roc-title{font-family:'Playfair Display', serif; font-weight:700; font-size:18px; color:var(--navy); margin-bottom:8px; line-height:1.3;}
  .roc-desc{font-size:12.5px; color:var(--muted); line-height:1.6; margin-bottom:20px; flex:1;}
  .roc-foot{
    display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--line); padding-top:16px;
  }
  .roc-count{font-size:12px; color:var(--navy); font-weight:700;}
  .roc-count span{color:var(--gold); font-family:'Playfair Display', serif; font-size:17px; margin-right:4px;}
  .roc-arrow{
    width:34px; height:34px; border-radius:50%; background:var(--cream);
    display:flex; align-items:center; justify-content:center; transition:background .15s ease;
  }
  .res-overview-card:hover .roc-arrow{background:var(--gold);}
  .roc-arrow svg{width:15px; height:15px; stroke:var(--navy);}
  .res-overview-card:hover .roc-arrow svg{stroke:var(--white);}

  /* ---------- RESOURCES: CATEGORY DETAIL PAGE ---------- */
  .res-detail-back{
    display:inline-flex; align-items:center; gap:6px; color:var(--muted); font-size:12.5px; font-weight:600;
    margin-bottom:20px;
  }
  .res-detail-back svg{width:13px; height:13px;}
  .res-detail-head{max-width:1280px; margin:0 auto 30px;}
  .res-detail-head h2{font-family:'Playfair Display', serif; font-weight:700; font-size:22px; color:var(--navy); margin-bottom:8px;}
  .res-detail-head p{font-size:13px; color:var(--muted); max-width:640px; line-height:1.6;}

  @media (max-width: 980px){
    .res-overview-grid{grid-template-columns:repeat(2, 1fr);}
  }
  @media (max-width: 640px){
    .res-overview-grid{grid-template-columns:1fr;}
  }

  /* ---------- ARTICLE HERO ---------- */
  .article-hero{background:var(--navy); position:relative; overflow:hidden;}
  .article-hero-grid{
    max-width:1280px; margin:0 auto; display:grid; grid-template-columns:1.3fr 1fr;
    gap:32px; align-items:center; padding:44px 32px;
  }
  .article-hero-crumb{font-size:12px; color:#c7cede; margin-bottom:14px;}
  .article-hero-crumb a{color:#c7cede;}
  .article-hero h1{font-family:'Playfair Display', serif; font-weight:800; font-size:32px; color:var(--white); margin-bottom:12px; line-height:1.2;}
  .article-hero p{color:#cbd3e3; font-size:13.5px; line-height:1.7; max-width:520px;}
  .article-hero-visual{height:200px; border-radius:14px; overflow:hidden;}
  .article-hero-visual img{width:100%; height:100%; object-fit:cover;}

  /* ---------- ARTICLE LAYOUT ---------- */
  .article-wrap{max-width:1280px; margin:0 auto; padding:50px 32px 70px; display:grid; grid-template-columns:0.9fr 1.6fr; gap:30px; align-items:start;}
  .article-list-panel{height:640px; overflow-y:auto; padding-right:6px;}
  .article-list-panel::-webkit-scrollbar{width:7px;}
  .article-list-panel::-webkit-scrollbar-thumb{background:var(--line); border-radius:10px;}
  .article-list-panel::-webkit-scrollbar-thumb:hover{background:var(--gold);}
  .article-bottom-row{
    grid-column:1 / -1; display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; margin-top:6px;
  }
  .article-main{background:var(--white); border:1px solid var(--line); border-radius:14px; padding:36px;}
  .article-tag{display:inline-block; background:#fdeee0; color:#c0431f; font-size:11px; font-weight:700; padding:6px 14px; border-radius:20px; margin-bottom:16px;}
  .article-title{font-family:'Playfair Display', serif; font-weight:800; font-size:26px; color:var(--navy); line-height:1.3; margin-bottom:14px;}
  .article-meta-row{display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; border-bottom:1px solid var(--line); padding-bottom:18px; margin-bottom:22px;}
  .article-meta{display:flex; align-items:center; gap:16px; flex-wrap:wrap; font-size:11.5px; color:var(--muted);}
  .article-meta span{display:flex; align-items:center; gap:5px;}
  .article-meta svg{width:13px; height:13px; stroke:var(--gold);}
  .article-actions{display:flex; gap:8px;}
  .article-actions button{
    width:34px; height:34px; border-radius:50%; background:var(--cream); border:none; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
  }
  .article-actions svg{width:15px; height:15px; stroke:var(--navy);}
  .article-featured-img{width:100%; border-radius:12px; margin-bottom:26px; overflow:hidden;}
  .article-featured-img img{width:100%; display:block;}
  .article-body p{font-size:14px; color:var(--ink); line-height:1.85; margin-bottom:18px;}
  .article-body h3{font-family:'Playfair Display', serif; font-weight:700; font-size:19px; color:var(--navy); margin:26px 0 16px;}
  .article-steps{display:flex; flex-direction:column; gap:16px; margin-bottom:22px;}
  .article-step{display:flex; gap:14px; align-items:flex-start;}
  .article-step-num{
    width:28px; height:28px; border-radius:50%; background:var(--navy); color:var(--white); font-weight:700; font-size:12.5px;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
  }
  .article-step-title{font-weight:700; color:var(--navy); font-size:14px; margin-bottom:3px;}
  .article-step-desc{font-size:12.5px; color:var(--muted); line-height:1.6;}
  .article-quote{
    background:var(--cream); border-left:3px solid var(--gold); border-radius:8px; padding:20px 24px;
    display:flex; align-items:flex-start; gap:14px; margin:26px 0;
  }
  .article-quote svg{width:20px; height:20px; stroke:var(--gold); flex-shrink:0; margin-top:2px;}
  .article-quote p{font-style:italic; color:var(--navy); font-size:14.5px; margin:0;}
  .article-share-row{display:flex; align-items:center; gap:12px; padding-top:22px; border-top:1px solid var(--line); margin-top:10px;}
  .article-share-row span{font-size:12.5px; font-weight:700; color:var(--navy);}
  .article-share-row a{
    width:32px; height:32px; border-radius:50%; background:var(--cream);
    display:flex; align-items:center; justify-content:center;
  }
  .article-share-row svg{width:14px; height:14px; stroke:var(--navy);}
  .article-nav{display:flex; justify-content:space-between; gap:16px; border-top:1px solid var(--line); margin-top:22px; padding-top:22px; flex-wrap:wrap;}
  .article-nav a{display:flex; align-items:center; gap:10px; font-size:12.5px; max-width:280px;}
  .article-nav .an-label{color:var(--muted); font-size:10.5px; display:block; margin-bottom:3px;}
  .article-nav .an-title{color:var(--navy); font-weight:700; font-size:12.5px; line-height:1.35;}
  .article-nav svg{width:14px; height:14px; stroke:var(--gold); flex-shrink:0;}
  .article-nav .prev-link{text-align:left;}
  .article-nav .next-link{text-align:right; margin-left:auto; flex-direction:row-reverse;}

  /* ---------- ARTICLE SIDEBAR ---------- */
  .art-side{display:flex; flex-direction:column; gap:20px;}
  .art-search{display:flex; align-items:center; gap:8px; background:var(--white); border:1px solid var(--line); border-radius:10px; padding:5px 5px 5px 14px;}
  .art-search svg{width:14px; height:14px; stroke:var(--muted); flex-shrink:0;}
  .art-search input{flex:1; border:none; outline:none; font-size:13px; font-family:'Inter',sans-serif; background:transparent;}
  .art-search button{background:var(--navy); border:none; border-radius:7px; width:32px; height:32px; display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0;}
  .art-search button svg{stroke:var(--white);}

  .art-side-card{background:var(--white); border:1px solid var(--line); border-radius:12px; padding:22px;}
  .art-side-card h4{font-weight:700; color:var(--navy); font-size:14px; margin-bottom:16px;}

  .art-author-photo{width:64px; height:64px; border-radius:50%; overflow:hidden; margin:0 auto 12px;}
  .art-author-photo img{width:100%; height:100%; object-fit:cover;}
  .art-author-name{font-weight:700; color:var(--navy); font-size:14px; text-align:center; margin-bottom:2px;}
  .art-author-role{font-size:11px; color:var(--gold); text-align:center; margin-bottom:12px;}
  .art-author-bio{font-size:11.5px; color:var(--muted); line-height:1.6; text-align:center; margin-bottom:16px;}

  .art-cat-list{display:flex; flex-direction:column; gap:11px;}
  .art-cat-list a{display:flex; align-items:center; justify-content:space-between; font-size:12.5px; color:var(--ink);}
  .art-cat-list a .acl-left{display:flex; align-items:center; gap:9px;}
  .art-cat-list a svg{width:14px; height:14px; stroke:var(--gold); flex-shrink:0;}
  .art-cat-list a .acl-count{background:var(--cream); color:var(--muted); font-size:10.5px; font-weight:700; padding:2px 9px; border-radius:12px;}

  .art-popular-item{display:flex; gap:12px; margin-bottom:14px;}
  .art-popular-item:last-child{margin-bottom:0;}
  .art-popular-thumb{width:52px; height:52px; border-radius:8px; flex-shrink:0; overflow:hidden;}
  .art-popular-title{font-size:12px; font-weight:700; color:var(--navy); line-height:1.35; margin-bottom:3px;}
  .art-popular-date{font-size:10.5px; color:var(--muted);}
  .art-view-all{color:var(--gold); font-weight:700; font-size:12px; display:inline-flex; align-items:center; gap:5px; margin-top:6px;}

  .art-subscribe p{font-size:11.5px; color:var(--muted); line-height:1.6; margin-bottom:14px;}
  .art-subscribe input{
    width:100%; font-family:'Inter',sans-serif; font-size:12.5px; padding:10px 12px; border:1px solid var(--line);
    border-radius:7px; margin-bottom:10px; outline:none;
  }
  .art-subscribe button{
    width:100%; background:var(--gold); color:var(--white); border:none; border-radius:7px; padding:10px;
    font-weight:700; font-size:12.5px; cursor:pointer;
  }
  .art-subscribe .art-privacy{font-size:10px; color:var(--muted); text-align:center; margin-top:8px;}

  @media (max-width: 980px){
    .article-hero-grid{grid-template-columns:1fr;}
    .article-hero-visual{height:160px;}
    .article-wrap{grid-template-columns:1fr;}
    .article-bottom-row{grid-template-columns:repeat(2, 1fr);}
    .article-list-panel{height:420px;}
  }
  @media (max-width: 640px){
    .article-bottom-row{grid-template-columns:1fr;}
  }
  @media (max-width: 600px){
    .article-main{padding:22px;}
    .article-nav{flex-direction:column;}
    .article-nav .next-link{margin-left:0; flex-direction:row;}
  }

  /* ---------- ARTICLE PDF VIEWER ---------- */
  .pdf-viewer-wrap{
    width:100%; height:640px; border-radius:10px; border:1px solid var(--line);
    overflow:hidden; margin-bottom:26px; background:var(--cream); position:relative;
  }
  .pdf-viewer-wrap iframe{width:100%; height:100%; border:0; display:none;}
  .pdf-viewer-empty{
    position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center; padding:30px; color:var(--muted);
  }
  .pdf-viewer-empty svg{width:44px; height:44px; stroke:var(--gold); margin-bottom:14px;}
  .pdf-viewer-empty h4{font-family:'Playfair Display', serif; color:var(--navy); font-size:17px; margin-bottom:6px;}
  .pdf-viewer-empty p{font-size:12.5px; max-width:320px; line-height:1.6;}

  .article-list{display:flex; flex-direction:column; gap:12px;}
  .article-list-item{
    display:flex; align-items:center; gap:14px; background:var(--white); border:1px solid var(--line);
    border-radius:10px; padding:16px 18px; cursor:pointer; text-align:left; width:100%;
    font-family:'Inter', sans-serif; transition:border-color .15s ease, box-shadow .15s ease;
  }
  .article-list-item:hover{border-color:var(--gold); box-shadow:0 6px 16px rgba(16,40,76,.08);}
  .article-list-item.active{border-color:var(--gold); background:var(--cream);}
  .ali-icon{
    width:38px; height:38px; border-radius:9px; background:var(--navy); flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
  }
  .ali-icon svg{width:17px; height:17px; stroke:var(--white);}
  .ali-body{flex:1; min-width:0;}
  .ali-tag{font-size:10px; font-weight:700; color:#c0431f; margin-bottom:3px; display:block;}
  .ali-title{font-weight:700; color:var(--navy); font-size:13.5px; line-height:1.35; margin-bottom:3px;}
  .ali-meta{font-size:11px; color:var(--muted);}
  .ali-arrow{width:30px; height:30px; border-radius:50%; background:var(--cream); flex-shrink:0; display:flex; align-items:center; justify-content:center;}
  .article-list-item:hover .ali-arrow{background:var(--gold);}
  .ali-arrow svg{width:13px; height:13px; stroke:var(--navy);}
  .article-list-item:hover .ali-arrow svg{stroke:var(--white);}
