
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #0D1F30; --navy-deep: #06090F; --steel: #4AA0DC;
    --cyan: #38BDF8; --teal: #0E9E87; --indigo: #6366F1;
    --bg: #F4F7FA; --body: #1A2A3A; --slate: #5A7A94;
    --muted: #8AAFC8; --card: #F8FAFC; --border: #E8EFF6;
    --grad: linear-gradient(90deg, #4AA0DC, #38BDF8, #0E9E87);
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; color: var(--body); background: var(--bg); overflow-x: hidden; }
  .stripe { height: 3px; background: var(--grad); width: 100%; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 6%; height: 68px;
    background: rgba(6,9,15,0.93); backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(74,160,220,0.1);
    transition: background 0.3s;
  }
  .nav-stripe { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--grad); }
  .nav-brand { font-family: 'EB Garamond', serif; color: #fff; font-size: 1.35rem; letter-spacing: 0.06em; }
  .nav-brand span { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.3); display: block; margin-top: -2px; }
  .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
  .nav-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--steel); }
  .nav-cta { border: 1px solid var(--steel) !important; color: var(--steel) !important; padding: 7px 20px; border-radius: 2px; transition: all 0.2s !important; }
  .nav-cta:hover { background: var(--steel) !important; color: #fff !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: url('HERO_BG_URL') center center / cover no-repeat;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 120px 6% 80px; position: relative; overflow: hidden;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(6,9,15,0.55) 0%,
      rgba(6,9,15,0.25) 40%,
      rgba(6,9,15,0.45) 70%,
      rgba(6,9,15,0.82) 100%
    );
    z-index: 0;
  }
  .hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; border-radius: 50%; background: radial-gradient(circle, rgba(74,160,220,0.06) 0%, transparent 68%); pointer-events: none; z-index: 1; }
  .hero::after { content: ''; position: absolute; bottom: -20%; left: -10%; width: 50vw; height: 50vw; border-radius: 50%; background: radial-gradient(circle, rgba(14,158,135,0.05) 0%, transparent 68%); pointer-events: none; z-index: 1; }
  .hero-inner { position: relative; z-index: 2; max-width: 840px; }
  .hero-eyebrow { font-size: 12.5px; font-weight: 500; letter-spacing: 0.38em; text-transform: uppercase; color: var(--steel); margin-bottom: 28px; display: flex; align-items: center; justify-content: center; gap: 14px; }
  .hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; width: 28px; height: 1px; background: rgba(74,160,220,0.5); }
  .hero h1 { font-family: 'EB Garamond', serif; font-size: clamp(3.2rem, 7.5vw, 6.2rem); font-weight: 400; color: #fff; line-height: 1.07; margin-bottom: 28px; letter-spacing: -0.01em; }
  .hero h1 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .hero-sub { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 500px; margin: 0 auto 48px; }
  .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn { display: inline-block; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 36px; border-radius: 2px; cursor: pointer; border: none; text-decoration: none; transition: all 0.2s; }
  .btn-primary { background: var(--steel); color: #fff; }
  .btn-primary:hover { background: var(--cyan); transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.18); }
  .btn-ghost:hover { border-color: var(--steel); color: var(--steel); }
  .hero-tags { margin-top: 56px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
  .hero-tag-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 13px; font-weight: 400; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.75);
    transition: background 0.2s, border-color 0.2s;
  }
  .hero-tag-pill:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }
  .hero-tag-pill .dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
  .hero-tag-pill.aeo { border-color: rgba(99,102,241,0.3); background: rgba(99,102,241,0.08); color: #c4b5fd; }
  .hero-tag-pill.aeo .dot { background: #818cf8; }

  /* SECTIONS */
  section { padding: 96px 6%; }
  .section-label { font-size: 12px; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase; color: var(--steel); margin-bottom: 14px; display: block; }
  .section-title { font-family: 'EB Garamond', serif; font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 400; color: var(--navy); line-height: 1.15; margin-bottom: 18px; }
  .section-title em { font-style: italic; color: var(--steel); }
  .section-sub { font-size: 15px; color: var(--slate); line-height: 1.72; max-width: 500px; }

  /* SERVICES */
  .services { background: #fff; }
  .services-header { margin-bottom: 56px; }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); gap: 20px; }
  .service-card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 36px 30px; position: relative; overflow: hidden; transition: transform 0.22s, box-shadow 0.22s; }
  .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
  .service-card:nth-child(1)::before { background: var(--steel); }
  .service-card:nth-child(2)::before { background: var(--cyan); }
  .service-card:nth-child(3)::before { background: var(--teal); }
  .service-card:nth-child(4)::before { background: var(--indigo); }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(13,31,48,0.09); }
  .service-num { font-family: 'EB Garamond', serif; font-size: 13.5px; color: var(--muted); display: block; margin-bottom: 18px; }
  .service-name { font-family: 'EB Garamond', serif; font-size: 1.65rem; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
  .service-tag { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; display: block; }
  hr.divider { height: 1px; background: var(--border); border: none; margin-bottom: 18px; }
  .service-list { list-style: none; margin-bottom: 26px; }
  .service-list li { font-size: 13px; color: var(--slate); padding: 4.5px 0; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
  .service-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--steel); flex-shrink: 0; margin-top: 6px; }
  .service-card:nth-child(2) .service-list li::before { background: var(--cyan); }
  .service-card:nth-child(3) .service-list li::before { background: var(--teal); }
  .service-card:nth-child(4) .service-list li::before { background: var(--indigo); }
  .result-label { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: block; }
  .result-items { display: flex; flex-direction: column; gap: 6px; }
  .result-item { background: var(--bg); border-left: 2px solid var(--steel); padding: 8px 12px; font-size: 13.5px; color: var(--body); font-weight: 500; }
  .service-card:nth-child(2) .result-item { border-color: var(--cyan); }
  .service-card:nth-child(3) .result-item { border-color: var(--teal); }
  .service-card:nth-child(4) .result-item { border-color: var(--indigo); }

  /* AEO */
  .aeo { background: #0B0E1A; padding: 96px 6%; position: relative; overflow: hidden; }
  .aeo::before { content: ''; position: absolute; top: -30%; right: -15%; width: 55vw; height: 55vw; border-radius: 50%; background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 65%); }
  .aeo-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
  .aeo .section-label { color: #818cf8; }
  .aeo .section-title { color: #fff; }
  .aeo .section-title em { color: #818cf8; }
  .aeo .section-sub { color: rgba(255,255,255,0.45); max-width: 100%; }
  .aeo-badge { display: inline-block; margin-top: 24px; background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.25); color: #a5b4fc; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; padding: 7px 16px; border-radius: 2px; }
  .aeo-cards { display: flex; flex-direction: column; gap: 14px; }
  .aeo-card { background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.07); border-radius: 4px; padding: 24px 26px; transition: border-color 0.2s; }
  .aeo-card:hover { border-color: rgba(99,102,241,0.28); }
  .aeo-card h4 { font-family: 'EB Garamond', serif; font-size: 1.2rem; color: #fff; margin-bottom: 7px; }
  .aeo-card p { font-size: 13.5px; color: rgba(255,255,255,0.4); line-height: 1.65; }

  /* APPROACH */
  .approach { background: var(--bg); }
  .approach-header { margin-bottom: 56px; }
  .approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
  .approach-item { background: #fff; padding: 40px 30px; }
  .approach-num { font-family: 'EB Garamond', serif; font-size: 2.6rem; color: var(--border); font-weight: 400; line-height: 1; margin-bottom: 14px; }
  .approach-item h3 { font-family: 'EB Garamond', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 9px; }
  .approach-item p { font-size: 13.5px; color: var(--slate); line-height: 1.65; }

  /* CTA */
  .cta { background: var(--navy); padding: 84px 6%; text-align: center; position: relative; overflow: hidden; }
  .cta::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 60vw; height: 60vw; border-radius: 50%; background: radial-gradient(circle, rgba(74,160,220,0.05) 0%, transparent 70%); }
  .cta h2 { font-family: 'EB Garamond', serif; font-size: clamp(2.2rem, 4.5vw, 3.3rem); color: #fff; font-weight: 400; margin-bottom: 18px; position: relative; }
  .cta p { font-size: 15px; color: rgba(255,255,255,0.45); max-width: 440px; margin: 0 auto 40px; line-height: 1.7; position: relative; }
  .cta a { position: relative; }

  /* CONTACT */
  .contact { background: #fff; }
  .contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
  .contact-form { display: flex; flex-direction: column; gap: 14px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .fg { display: flex; flex-direction: column; gap: 6px; }
  .fg label { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--slate); }
  .fg input, .fg select, .fg textarea { background: var(--card); border: 1px solid var(--border); border-radius: 2px; padding: 11px 14px; font-family: 'Inter', sans-serif; font-size: 13.5px; color: var(--body); outline: none; transition: border-color 0.2s; }
  .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--steel); }
  .fg textarea { resize: vertical; min-height: 112px; }
  .contact-info p { font-size: 15px; color: var(--slate); line-height: 1.72; margin-bottom: 36px; }
  .contact-items { display: flex; flex-direction: column; gap: 14px; }
  .contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; border: 1px solid var(--border); border-radius: 4px; background: var(--card); }
  .c-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--steel); flex-shrink: 0; margin-top: 5px; }
  .contact-item h4 { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
  .contact-item p { font-size: 13.5px; color: var(--body); margin: 0; }

  /* FOOTER */
  footer { background: var(--navy-deep); padding: 56px 6% 32px; position: relative; overflow: hidden; }
  footer::before { content: ''; position: absolute; bottom: 0; right: 0; width: 40vw; height: 40vw; border-radius: 50%; background: radial-gradient(circle, rgba(14,158,135,0.04) 0%, transparent 70%); }
  .footer-stripe { margin-bottom: 52px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; z-index: 1; }
  .footer-brand-name { font-family: 'EB Garamond', serif; font-size: 1.55rem; color: rgba(255,255,255,0.82); letter-spacing: 0.05em; margin-bottom: 3px; }
  .footer-brand-sub { font-size: 13px; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 14px; }
  .footer-desc { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.7; max-width: 270px; }
  .footer-col h5 { font-size: 13px; letter-spacing: 0.38em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 18px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--steel); }
  .footer-bottom { max-width: 1200px; margin: 26px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.18); }
  .footer-tags { display: flex; gap: 18px; flex-wrap: wrap; }
  .footer-tags span { font-size: 12.5px; letter-spacing: 0.14em; color: rgba(255,255,255,0.16); text-transform: uppercase; }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
  .hero-inner > * { opacity:0; animation: fadeUp 0.65s ease forwards; }
  .hero-inner > *:nth-child(1) { animation-delay:0.1s; }
  .hero-inner > *:nth-child(2) { animation-delay:0.25s; }
  .hero-inner > *:nth-child(3) { animation-delay:0.4s; }
  .hero-inner > *:nth-child(4) { animation-delay:0.54s; }
  .hero-inner > *:nth-child(5) { animation-delay:0.68s; }
  .reveal { opacity:0; transform:translateY(18px); transition:opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity:1; transform:translateY(0); }

  @media (max-width:900px) {
    .nav-links { display:none; }
    .aeo-inner, .contact-inner { grid-template-columns:1fr; gap:48px; }
    .footer-inner { grid-template-columns:1fr; gap:32px; }
    .form-row { grid-template-columns:1fr; }
  }

  /* ── CASE STUDIES SECTION ── */
  .cs-section { background: #EEF4FB; padding: 96px 6%; }
  .cs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; margin-top: 56px; }
  .cs-card {
    background: #fff; border: 1px solid #D6E4F0; border-radius: 6px;
    overflow: hidden; transition: transform 0.22s, box-shadow 0.22s;
    display: flex; flex-direction: column;
  }
  .cs-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(13,31,48,0.11); }
  .cs-card-top { padding: 28px 28px 0; }
  .cs-card-tag { font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--steel); margin-bottom: 10px; display: block; }
  .cs-card-title { font-family: 'EB Garamond', serif; font-size: 1.45rem; color: var(--navy); margin-bottom: 10px; line-height: 1.2; }
  .cs-card-desc { font-size: 13.5px; color: var(--slate); line-height: 1.65; margin-bottom: 22px; }
  .cs-card-result {
    margin: 0 28px 0; padding: 14px 16px;
    background: var(--bg); border-left: 3px solid var(--steel); border-radius: 2px;
    display: flex; align-items: baseline; gap: 8px;
  }
  .cs-card-result strong { font-family: 'EB Garamond', serif; font-size: 1.9rem; color: var(--navy); font-weight: 400; }
  .cs-card-result span { font-size: 13px; color: var(--slate); }
  .cs-card-footer { margin-top: auto; padding: 18px 28px; border-top: 1px solid #E8EFF6; display: flex; justify-content: space-between; align-items: center; }
  .cs-card-client { font-size: 13px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
  .cs-card-link { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); text-decoration: none; font-weight: 500; }
  .cs-card-link:hover { color: var(--cyan); }
  .cs-placeholder { background: linear-gradient(135deg, #0D1F30 0%, #1a3a52 100%); height: 180px; display: flex; align-items: center; justify-content: center; }
  .cs-placeholder span { font-family: 'EB Garamond', serif; font-size: 1.8rem; color: rgba(255,255,255,0.1); letter-spacing: 0.1em; }

  /* ── ARTICLES SECTION ── */
  .articles-section { background: #F0F7F4; padding: 96px 6%; }
  .articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; margin-top: 56px; }
  .article-card {
    background: #fff; border: 1px solid #C8E4DA; border-radius: 6px;
    overflow: hidden; transition: transform 0.22s, box-shadow 0.22s;
  }
  .article-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(13,31,48,0.1); }
  .article-card-img { width: 100%; height: 180px; object-fit: cover; background: linear-gradient(135deg, #0D2B22 0%, #0E9E87 100%); display: flex; align-items: center; justify-content: center; }
  .article-card-img span { font-family: 'EB Garamond', serif; font-size: 1.8rem; color: rgba(255,255,255,0.12); letter-spacing: 0.1em; }
  .article-card-body { padding: 26px 26px 22px; }
  .article-card-cat { font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; display: block; }
  .article-card-title { font-family: 'EB Garamond', serif; font-size: 1.35rem; color: var(--navy); margin-bottom: 10px; line-height: 1.25; }
  .article-card-excerpt { font-size: 13px; color: var(--slate); line-height: 1.65; margin-bottom: 18px; }
  .article-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid #E8EFF6; }
  .article-card-date { font-size: 13px; color: var(--muted); }
  .article-card-link { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); text-decoration: none; font-weight: 500; }
  .article-card-link:hover { color: var(--steel); }

  .section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; flex-wrap: wrap; gap: 16px; }
  .section-view-all { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--steel); text-decoration: none; border-bottom: 1px solid rgba(74,160,220,0.3); padding-bottom: 2px; transition: color 0.2s; }
  .section-view-all:hover { color: var(--cyan); border-color: var(--cyan); }
  .articles-section .section-view-all { color: var(--teal); border-color: rgba(14,158,135,0.3); }
  .articles-section .section-view-all:hover { color: var(--steel); }


  .media-section::before {
    content: ''; position: absolute; top: -30%; left: -10%;
    width: 55vw; height: 55vw; border-radius: 50%;
    background: radial-gradient(circle, rgba(74,160,220,0.06) 0%, transparent 65%);
  }
  .media-section::after {
    content: ''; position: absolute; bottom: -20%; right: -5%;
    width: 40vw; height: 40vw; border-radius: 50%;
    background: radial-gradient(circle, rgba(14,158,135,0.05) 0%, transparent 65%);
  }
  .media-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
  .media-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
  .media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

  .media-feature {
    grid-column: 1 / -1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px; padding: 44px 40px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
    transition: border-color 0.2s;
  }
  .media-feature:hover { border-color: rgba(74,160,220,0.2); }

  .media-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px; padding: 36px 32px;
    position: relative; overflow: hidden;
    transition: transform 0.22s, border-color 0.22s;
  }
  .media-card:hover { transform: translateY(-4px); border-color: rgba(74,160,220,0.2); }
  .media-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  }
  .media-card:nth-child(2)::before { background: var(--steel); }
  .media-card:nth-child(3)::before { background: var(--teal); }

  .media-icon {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 20px;
  }
  .media-icon.photo { background: rgba(74,160,220,0.12); }
  .media-icon.video { background: rgba(14,158,135,0.12); }
  .media-icon.strategy { background: rgba(99,102,241,0.12); }

  .media-card h3, .media-feature h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.55rem; color: #fff; margin-bottom: 8px; font-weight: 500;
  }
  .media-sub {
    font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); margin-bottom: 18px; display: block;
  }
  hr.media-hr { height: 1px; background: rgba(255,255,255,0.07); border: none; margin-bottom: 18px; }
  .media-card ul, .media-feature ul { list-style: none; margin-bottom: 22px; }
  .media-card ul li, .media-feature ul li {
    font-size: 13.5px; color: rgba(255,255,255,0.78);
    padding: 4.5px 0; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
  }
  .media-card ul li::before, .media-feature ul li::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%;
    background: var(--steel); flex-shrink: 0; margin-top: 6px;
  }
  .media-card:nth-child(3) ul li::before { background: var(--teal); }

  .media-result-label { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 10px; display: block; }
  .media-outcomes { display: flex; flex-direction: column; gap: 6px; }
  .media-outcome {
    font-size: 13.5px; color: rgba(255,255,255,0.82); font-weight: 500;
    padding: 8px 12px;
    background: rgba(255,255,255,0.05);
    border-left: 2px solid var(--steel);
  }
  .media-card:nth-child(3) .media-outcome { border-color: var(--teal); }

  /* Feature card specifics */
  .media-feature-left h3 { font-size: 1.8rem; margin-bottom: 12px; }
  .media-feature-tag {
    display: inline-block; margin-bottom: 20px;
    background: rgba(74,160,220,0.1); border: 1px solid rgba(74,160,220,0.2);
    color: var(--steel); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 2px;
  }
  .media-feature-left p { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.75; margin-bottom: 24px; }
  .media-honest-box {
    background: rgba(74,160,220,0.06); border: 1px solid rgba(74,160,220,0.15);
    border-radius: 4px; padding: 18px 20px;
  }
  .media-honest-box p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0; font-style: italic; }

  .media-visual {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px; padding: 32px;
    display: flex; flex-direction: column; gap: 14px;
  }
  .media-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .media-stat {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px; padding: 18px 16px; text-align: center;
  }
  .media-stat strong {
    display: block; font-family: 'EB Garamond', serif;
    font-size: 1.8rem; color: #fff; font-weight: 400; margin-bottom: 4px;
  }
  .media-stat span { font-size: 12.5px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
  .media-stat-full {
    background: rgba(74,160,220,0.08); border: 1px solid rgba(74,160,220,0.15);
    border-radius: 4px; padding: 16px 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .media-stat-full span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }

  @media (max-width: 900px) {
    .media-feature { grid-template-columns: 1fr; }
    .media-grid { grid-template-columns: 1fr; }
    .media-feature { grid-column: auto; }
  }


/* Hide any Hostinger or WordPress injected footer badges */
#hostinger-badge,
.hostinger-badge,
.hostinger-footer,
#wp-footer-credit,
.wp-footer-credit,
[class*="hostinger"],
[id*="hostinger"] {
  display: none !important;
}
