  :root {
    --primary: #1a4fa8;
    --primary-dark: #0f3580;
    --primary-light: #3d72d4;
    --accent: #f97316;
    --accent-dark: #ea6c0a;
    --text-dark: #0f172a;
    --text-mid: #334155;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-blue: #eff6ff;
    --border: #e2e8f0;
    --success: #16a34a;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(15,53,128,0.10);
    --shadow-lg: 0 12px 48px rgba(15,53,128,0.16);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--bg); line-height: 1.65; font-size: 16px; }
  h1,h2,h3,h4,h5 { font-family: 'Sora', sans-serif; line-height: 1.2; }
  a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
  a:hover { color: var(--accent); }
  img { max-width: 100%; }
  .container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
  .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px; cursor: pointer; transition: all 0.25s; border: 2px solid transparent; text-decoration: none; }
  .btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
  .btn-primary:hover { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); }
  .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
  .btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }
  .btn-blue { background: var(--primary); color: #fff; }
  .btn-blue:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
  .section { padding: 80px 0; }
  .section-sm { padding: 56px 0; }
  .section-title { font-size: clamp(26px,3.5vw,40px); font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
  .section-subtitle { font-size: 17px; color: var(--text-light); max-width: 600px; }
  .badge { display: inline-block; background: var(--bg-blue); color: var(--primary); font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 100px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
  .tag-accent { background: #fff7ed; color: var(--accent); }

  /* NAV */
  .topbar { background: var(--primary-dark); color: #fff; padding: 9px 0; font-size: 13px; }
  .topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
  .topbar a { color: rgba(255,255,255,0.85); }
  .topbar a:hover { color: #fff; }
  .topbar-links { display: flex; gap: 20px; }
  nav { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
  .logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; color: var(--primary); display: flex; align-items: center; gap: 10px; }
  .logo span { color: var(--accent); }
  .logo-icon { width: 38px; height: 38px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
  .logo-icon svg { fill: white; }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-mid); padding: 8px 14px; border-radius: 8px; transition: all 0.2s; }
  .nav-links a:hover, .nav-links a.active { background: var(--bg-blue); color: var(--primary); }
  .nav-cta { margin-left: 12px; padding: 10px 22px; font-size: 14px; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: 0.3s; }
  .mobile-menu { display: none; background: #fff; border-top: 1px solid var(--border); padding: 16px 20px; }
  .mobile-menu.open { display: block; }
  .mobile-menu a { display: block; padding: 12px 0; font-family: 'Sora', sans-serif; font-size: 15px; color: var(--text-dark); border-bottom: 1px solid var(--border); }
  .mobile-menu a:last-child { border: none; }

  /* HERO — UNTOUCHED */
  .hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #2d5eb8 100%); padding: 64px 0 80px; position: relative; overflow: hidden; }
  .hero::before { content: ''; position: absolute; top: -60px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%); border-radius: 50%; }
  .hero::after { content: ''; position: absolute; bottom: -40px; left: 20%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%); border-radius: 50%; }
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
  .hero-content { color: #fff; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 100px; margin-bottom: 24px; font-family: 'Sora', sans-serif; }
  .hero-feature-check { width: 22px; height: 22px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
  .hero-badge::before { content: none; }
  .hero h1 { font-size: clamp(30px,4.5vw,52px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
  .hero h1 span { color: var(--accent); }
  .hero-desc { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 480px; }
  .hero-stats { display: flex; gap: 32px; margin-top: 36px; }
  .hero-stat { text-align: center; }
  .hero-stat .num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: #fff; }
  .hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }
  .hero-form-card { background: #fff; border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: 0 24px 64px rgba(0,0,0,0.25); }
  .form-title { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
  .form-subtitle { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { margin-bottom: 14px; }
  .form-group label { display: block; font-size: 12px; font-weight: 600; font-family: 'Sora', sans-serif; color: var(--text-mid); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text-dark); background: var(--bg-soft); transition: border 0.2s; outline: none; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: #fff; }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-submit { width: 100%; padding: 15px; background: var(--accent); color: #fff; border: 2px solid var(--accent); border-radius: var(--radius); font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.25s; margin-top: 4px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
  .form-submit:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); }
  .form-note { text-align: center; font-size: 12px; color: var(--text-light); margin-top: 10px; }
  .hero-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .hero-feature { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.9); }

  /* TRUST BAR */
  .trust-bar { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 20px 0; }
  .trust-items { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
  .trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--text-mid); }
  .trust-icon { font-size: 20px; }

  /* SERVICES — UNTOUCHED */
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
  .service-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.3s; position: relative; overflow: hidden; }
  .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transition: 0.3s; }
  .service-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon { width: 52px; height: 52px; background: var(--bg-blue); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
  .service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
  .service-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
  .service-link, .card-link { font-size: 13px; font-weight: 600; color: var(--primary); font-family: 'Sora', sans-serif; display: inline-flex; align-items: center; gap: 4px; }
  .service-link::after, .card-link::after { content: '→'; transition: transform 0.2s; margin-left: 4px; }
  .service-card:hover .service-link::after, .service-card:hover .card-link::after { transform: translateX(4px); }

  /* HOW IT WORKS */
  .hiw-bg { background: var(--bg-blue); }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
  .step { text-align: center; position: relative; }
  .step::after { content: '→'; position: absolute; right: -14px; top: 28px; font-size: 20px; color: var(--border); }
  .step:last-child::after { display: none; }
  .step-num { width: 56px; height: 56px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; margin: 0 auto 18px; }
  .step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
  .step p { font-size: 14px; color: var(--text-light); }

  /* REVIEWS CAROUSEL */
  .reviews-carousel-wrap { overflow: hidden; position: relative; margin-top: 48px; }
  .reviews-carousel-wrap::before, .reviews-carousel-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
  .reviews-carousel-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
  .reviews-carousel-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
  .reviews-track { display: flex; gap: 24px; animation: scrollReviews 40s linear infinite; width: max-content; }
  .reviews-track:hover { animation-play-state: paused; }
  @keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .review-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; width: 340px; flex-shrink: 0; transition: box-shadow 0.3s; }
  .review-card:hover { box-shadow: var(--shadow-lg); }
  .review-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; }
  .review-text { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .reviewer { display: flex; align-items: center; gap: 12px; }
  .reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0; }
  .reviewer-name { font-size: 14px; font-weight: 600; font-family: 'Sora', sans-serif; }
  .reviewer-loc { font-size: 12px; color: var(--text-light); }

  /* PROBLEMS / SCREEN ISSUES ACCORDION */
  .problems-accordion { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
  .problem-acc-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s; }
  .problem-acc-item.open { border-color: var(--primary); }
  .problem-acc-trigger { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; background: #fff; user-select: none; transition: background 0.2s; }
  .problem-acc-item.open .problem-acc-trigger { background: var(--bg-blue); }
  .problem-acc-icon-wrap { font-size: 24px; flex-shrink: 0; width: 42px; height: 42px; background: var(--bg-soft); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
  .problem-acc-meta { flex: 1; }
  .problem-acc-meta h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
  .problem-acc-item.open .problem-acc-meta h4 { color: var(--primary); }
  .problem-acc-meta span { font-size: 13px; color: var(--text-light); }
  .problem-acc-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-soft); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--text-mid); transition: all 0.25s; flex-shrink: 0; }
  .problem-acc-item.open .problem-acc-toggle { background: var(--primary); border-color: var(--primary); color: #fff; transform: rotate(45deg); }
  .problem-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .problem-acc-inner { padding: 0 24px 20px 82px; font-size: 15px; color: var(--text-mid); line-height: 1.75; }
  .problem-acc-item.open .problem-acc-body { max-height: 400px; }
  .problem-acc-inner p { margin-bottom: 10px; }
  .problem-acc-inner .acc-cta { display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: #fff; padding: 9px 18px; border-radius: 8px; font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; margin-top: 8px; transition: all 0.2s; }
  .problem-acc-inner .acc-cta:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }

  /* WHY US */
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 48px; }
  .why-points { display: flex; flex-direction: column; gap: 20px; }
  .why-point { display: flex; gap: 16px; }
  .why-check { width: 32px; height: 32px; background: #dcfce7; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
  .why-point h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
  .why-point p { font-size: 14px; color: var(--text-light); }
  .why-image { background: linear-gradient(135deg, var(--bg-blue) 0%, #dbeafe 100%); border-radius: var(--radius-lg); padding: 48px 36px; text-align: center; }
  .stats-block { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-box { background: #fff; border-radius: var(--radius); padding: 24px 20px; text-align: center; box-shadow: var(--shadow); }
  .stat-box .num { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800; color: var(--primary); }
  .stat-box .desc { font-size: 13px; color: var(--text-light); margin-top: 4px; }

  /* LOCATIONS SEO GRID */
  .locations-seo { background: var(--bg-soft); }
  .locations-intro { font-size: 16px; color: var(--text-light); max-width: 820px; line-height: 1.75; margin-bottom: 48px; }
  .locations-intro a { color: var(--primary); font-weight: 600; }
  .locations-mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
  .loc-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.3s; position: relative; overflow: hidden; }
  .loc-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: 0.3s; transform-origin: left; }
  .loc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
  .loc-card:hover::after { transform: scaleX(1); }
  .loc-card-icon { font-size: 28px; margin-bottom: 14px; }
  .loc-card h3 { font-size: 19px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
  .loc-card-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
  .loc-card-suburbs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
  .loc-suburb-tag { font-size: 11px; font-weight: 600; background: var(--bg-blue); color: var(--primary); padding: 3px 10px; border-radius: 100px; font-family: 'Sora', sans-serif; }
  .loc-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--primary); font-family: 'Sora', sans-serif; transition: gap 0.2s; }
  .loc-card-link:hover { gap: 10px; color: var(--accent); }
  .loc-card-badge { position: absolute; top: 16px; right: 16px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 100px; font-family: 'Sora', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; }

  /* SUBURB QUICK LINKS */
  .suburb-links-section { margin-top: 16px; }
  .suburb-links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 20px; }
  .suburb-link-item { display: block; padding: 10px 14px; background: #fff; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--primary); font-family: 'Sora', sans-serif; transition: all 0.2s; text-align: center; }
  .suburb-link-item:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }

  /* RELATED SERVICE — DSTV */
  .related-service-box { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 28px; padding: 26px 28px; background: var(--bg-blue); border: 1.5px solid var(--border); border-left: 4px solid var(--accent); border-radius: var(--radius-lg); }
  .related-service-text { flex: 1 1 340px; }
  .related-service-text h3 { font-family: 'Sora', sans-serif; font-size: 19px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
  .related-service-text p { font-size: 14.5px; color: var(--text-light); line-height: 1.65; margin: 0; max-width: 620px; }
  .related-service-btn { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; padding: 13px 24px; background: var(--accent); color: #fff; border: 2px solid var(--accent); border-radius: var(--radius); font-family: 'Sora', sans-serif; font-size: 14.5px; font-weight: 700; text-decoration: none; transition: all 0.25s; }
  .related-service-btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
  .related-service-btn svg { width: 16px; height: 16px; fill: currentColor; }
  @media (max-width: 640px) {
    .related-service-box { padding: 22px 20px; }
    .related-service-btn { width: 100%; justify-content: center; }
  }

  /* CTA BANNER */
  .cta-banner { background: linear-gradient(135deg, var(--accent) 0%, #f97316cc 100%); padding: 64px 0; }
  .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
  .cta-text h2 { font-size: clamp(24px,3vw,36px); font-weight: 800; color: #fff; margin-bottom: 10px; }
  .cta-text p { font-size: 16px; color: rgba(255,255,255,0.9); }
  .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-white { background: #fff; color: var(--accent); border-color: #fff; font-weight: 700; }
  .btn-white:hover { background: #fff7ed; color: var(--accent-dark); }

  /* CONTACT */
  .contact-section { background: var(--bg-soft); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .contact-info h2 { font-size: clamp(24px,3vw,36px); font-weight: 800; margin-bottom: 20px; }
  .contact-info p { font-size: 16px; color: var(--text-light); margin-bottom: 30px; }
  .contact-details { display: flex; flex-direction: column; gap: 16px; }
  .contact-detail { display: flex; align-items: center; gap: 14px; }
  .contact-detail-icon { width: 44px; height: 44px; background: var(--bg-blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
  .contact-detail-text .label { font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
  .contact-detail-text .val { font-size: 16px; font-weight: 600; color: var(--text-dark); }
  .contact-form-box { background: #fff; border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow); }

  /* TOPICAL AUTHORITY CONTENT */
  .topical-section { background: var(--bg); }
  .topical-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
  .topical-block { padding: 32px; background: var(--bg-soft); border-radius: var(--radius-lg); border: 1px solid var(--border); }
  .topical-block h3 { font-size: 20px; font-weight: 800; margin-bottom: 14px; color: var(--text-dark); }
  .topical-block p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 12px; }
  .topical-block a { color: var(--primary); font-weight: 600; }
  .topical-block a:hover { color: var(--accent); }

  /* FAQ */
  .faq-section { background: var(--bg); }
  .faq-intro { font-size: 16px; color: var(--text-light); max-width: 780px; margin: 0 0 40px; line-height: 1.75; }
  .faq-intro a { color: var(--primary); font-weight: 600; }
  .faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
  .faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s; }
  .faq-item.open { border-color: var(--primary); }
  .faq-question { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; background: #fff; transition: background 0.2s; user-select: none; }
  .faq-item.open .faq-question { background: var(--bg-blue); }
  .faq-question h3 { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--text-dark); margin: 0; line-height: 1.4; }
  .faq-item.open .faq-question h3 { color: var(--primary); }
  .faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-soft); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; font-weight: 700; color: var(--text-mid); transition: all 0.25s; line-height: 1; }
  .faq-item.open .faq-icon { background: var(--primary); border-color: var(--primary); color: #fff; transform: rotate(45deg); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-mid); line-height: 1.75; }
  .faq-answer-inner ul { margin: 12px 0 0 20px; display: flex; flex-direction: column; gap: 6px; }
  .faq-answer-inner ul li { font-size: 15px; color: var(--text-mid); }
  .faq-item.open .faq-answer { max-height: 600px; }

  /* FOOTER — FULL WIDTH, NO CONTAINER RESTRICTION */
  footer { background: var(--text-dark); color: #fff; width: 100%; margin: 0; padding: 0; }
  .footer-main { padding: 64px 40px 48px; max-width: 1400px; margin: 0 auto; }
  .footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
  .footer-brand .logo { color: #fff; margin-bottom: 16px; }
  .footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 280px; }
  .footer-col h4 { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.1em; }
  .footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 10px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--accent); }
  .footer-seo-links { background: rgba(255,255,255,0.04); border-top: 1px solid rgba(255,255,255,0.08); padding: 32px 40px; max-width: 1400px; margin: 0 auto; }
  .footer-seo-links h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; font-family: 'Sora', sans-serif; }
  .footer-seo-link-list { display: flex; flex-wrap: wrap; gap: 8px 16px; }
  .footer-seo-link-list a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
  .footer-seo-link-list a:hover { color: var(--accent); }
  .footer-bottom-bar { background: rgba(0,0,0,0.3); padding: 18px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.4); }
  .footer-bottom-bar a { color: rgba(255,255,255,0.5); margin-left: 16px; }
  .footer-bottom-bar a:hover { color: var(--accent); }
  .footer-social { display: flex; gap: 10px; margin-top: 20px; }
  .social-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: background 0.2s; }
  .social-icon:hover { background: var(--accent); }

  /* FLOATING MOBILE BUTTONS */
  .float-btns { display: none; }
  @media (max-width: 768px) {
    .float-btns { display: flex; position: fixed; bottom: 24px; left: 0; right: 0; justify-content: space-between; padding: 0 20px; z-index: 999; pointer-events: none; }
    .float-btn { pointer-events: all; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(0,0,0,0.22); transition: all 0.25s; border: none; cursor: pointer; text-decoration: none; }
    .float-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.28); }
    .float-btn-whatsapp { background: #25D366; }
    .float-btn-call { background: var(--primary); }
    .float-btn svg { width: 26px; height: 26px; fill: #fff; }
  }

  /* FORM STATE */
  .form-success { display: none; text-align: center; padding: 32px; }
  .form-success.show { display: block; }
  .form-fields.hide { display: none; }

  /* RESPONSIVE */
  @media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .form-row { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step::after { display: none; }
    .locations-mega-grid { grid-template-columns: repeat(2, 1fr); }
    .suburb-links-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .topical-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
  }
  @media (max-width: 600px) {
    .hero { padding: 40px 0 56px; }
    .section { padding: 56px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .locations-mega-grid { grid-template-columns: 1fr; }
    .suburb-links-grid { grid-template-columns: 1fr 1fr; }
    .stats-block { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-main { padding: 48px 20px 32px; }
    .footer-seo-links { padding: 24px 20px; }
    .footer-bottom-bar { padding: 16px 20px; flex-direction: column; text-align: center; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .cta-inner { flex-direction: column; text-align: center; }
    .topbar .topbar-links { display: none; }
    .hero-form-card { padding: 24px 18px; }
    .contact-form-box { padding: 24px 18px; }
    .problem-acc-inner { padding: 0 18px 18px 18px; }
    .faq-question { padding: 16px 18px; }
    .faq-answer-inner { padding: 0 18px 18px; }

    /* ── MOBILE FONT SIZE INCREASES (+2px across the board) ── */

    /* Base body text */
    body { font-size: 18px; }

    /* Section titles & subtitles */
    .section-title { font-size: clamp(28px, 7vw, 36px); }
    .section-subtitle { font-size: 17px; }
    .section-sub { font-size: 17px; }

    /* Topbar */
    .topbar { font-size: 15px; }

    /* Nav mobile menu */
    .mobile-menu a { font-size: 17px; }

    /* Hero */
    .hero-desc { font-size: 17px; }
    .hero-feature { font-size: 17px; }
    .hero-badge { font-size: 15px; }

    /* Form */
    .form-title { font-size: 22px; }
    .form-subtitle { font-size: 15px; }
    .form-group label { font-size: 14px; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 17px; }
    .form-note { font-size: 14px; }
    .form-submit { font-size: 18px; }

    /* Trust bar */
    .trust-item { font-size: 16px; }

    /* Service cards */
    .service-card h3 { font-size: 20px; }
    .service-card p { font-size: 16px; }
    .service-link, .card-link { font-size: 16px; }

    /* How it works steps */
    .step h3 { font-size: 18px; }
    .step p { font-size: 16px; }

    /* Problems accordion */
    .problem-acc-meta h4 { font-size: 18px; }
    .problem-acc-meta span { font-size: 15px; }
    .problem-acc-inner p { font-size: 16px; }
    .problem-acc-inner .acc-cta { font-size: 15px; }

    /* Why us */
    .why-point h4 { font-size: 18px; }
    .why-point p { font-size: 16px; }
    .stat-box .num { font-size: 34px; }
    .stat-box .desc { font-size: 15px; }

    /* Reviews */
    .review-text { font-size: 16px; }
    .reviewer-name { font-size: 16px; }
    .reviewer-loc { font-size: 14px; }

    /* Location cards */
    .loc-card h3 { font-size: 20px; }
    .loc-card-desc { font-size: 16px; }
    .loc-card-link { font-size: 15px; }
    .loc-suburb-tag { font-size: 13px; }
    .suburb-link-item { font-size: 15px; }

    /* CTA banner */
    .cta-text p { font-size: 17px; }
    .btn { font-size: 17px; }
    .btn-white, .btn-outline { font-size: 17px; }

    /* Contact */
    .contact-info p { font-size: 17px; }
    .contact-detail-text .label { font-size: 14px; }
    .contact-detail-text .val { font-size: 18px; }

    /* Topical content blocks */
    .topical-block h3 { font-size: 20px; }
    .topical-block p { font-size: 16px; }

    /* FAQ */
    .faq-intro { font-size: 17px; }
    .faq-question h3 { font-size: 17px; }
    .faq-answer-inner { font-size: 16px; }
    .faq-answer-inner ul li { font-size: 16px; }
    .badge { font-size: 14px; }

    /* Locations intro */
    .locations-intro { font-size: 17px; }

    /* Footer */
    .footer-brand p { font-size: 16px; }
    .footer-col a { font-size: 16px; }
    .footer-col h4 { font-size: 13px; }
    .footer-seo-link-list a { font-size: 15px; }
    .footer-bottom-bar { font-size: 14px; }
  }

  /* ====================================================== */
  /* ============ PREMIUM ENHANCEMENTS (2026) ============= */
  /* ====================================================== */
  img, picture { display: block; }
  img { height: auto; }
  picture > img { width: 100%; }
  .text-center { text-align: center; }
  .text-center .section-subtitle { margin-left: auto; margin-right: auto; }
  :focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

  /* Header logo + nav call CTA */
  .logo-link { display: inline-flex; align-items: center; }
  .logo-link img { height: 46px; width: auto; }
  .nav-cta-call { display: inline-flex; align-items: center; gap: 8px; margin-left: 14px; padding: 11px 20px; background: var(--accent); color: #fff; border-radius: var(--radius); font-family: 'Sora',sans-serif; font-weight: 700; font-size: 14px; transition: all .25s; white-space: nowrap; }
  .nav-cta-call:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(249,115,22,.32); }
  .nav-cta-call svg { width: 16px; height: 16px; fill: currentColor; }

  /* Hero background image + overlay */
  .hero { isolation: isolate; }
  .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
  .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
  .hero-overlay { position: absolute; inset: 0; z-index: 0; background: linear-gradient(125deg, rgba(15,53,128,.95) 0%, rgba(26,79,168,.90) 52%, rgba(45,94,184,.82) 100%); }
  .hero .container { position: relative; z-index: 2; }
  .hero-rating { display: flex; align-items: center; gap: 10px; margin-top: 22px; font-size: 14px; color: rgba(255,255,255,.92); }
  .hero-rating .stars { color: #fbbf24; letter-spacing: 1px; font-size: 16px; }

  /* Trust bar */
  .trust-item svg { width: 22px; height: 22px; flex-shrink: 0; fill: var(--primary); }
  .trust-item .ti-strong { color: var(--text-dark); font-weight: 700; }

  /* Figures + captions */
  figure { margin: 0; }
  figcaption { font-size: 13px; color: var(--text-light); margin-top: 10px; text-align: center; }
  .service-card figure { position: relative; }
  .service-card figcaption { position: absolute; left: 12px; bottom: 12px; margin: 0; background: rgba(15,23,42,.80); color: #fff; font-size: 11px; font-weight: 600; font-family: 'Sora',sans-serif; padding: 5px 11px; border-radius: 100px; letter-spacing: .02em; }

  /* Why-us image + heading */
  .why-head { max-width: 560px; }
  .why-image-figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
  .why-image-figure img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; }
  .why-image-figure figcaption { padding: 12px 16px; margin: 0; background: var(--text-dark); color: rgba(255,255,255,.85); text-align: left; font-size: 12.5px; }

  /* Lifestyle media band */
  .media-band-figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin: 36px 0 8px; position: relative; }
  .media-band-figure img { width: 100%; height: auto; max-height: 400px; object-fit: cover; }
  .media-band-figure figcaption { position: absolute; left: 0; right: 0; bottom: 0; margin: 0; text-align: left; padding: 28px 24px 16px; color: #fff; font-size: 13.5px; background: linear-gradient(transparent, rgba(15,23,42,.78)); }

  /* Brands strip */
  .brands-strip { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
  .brands-strip .container { text-align: center; }
  .brands-label { font-family: 'Sora',sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); margin-bottom: 18px; }
  .brands-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 30px; }
  .brand-name { font-family: 'Sora',sans-serif; font-weight: 800; font-size: clamp(16px,2.2vw,22px); color: var(--text-mid); opacity: .65; transition: opacity .2s, color .2s; }
  .brand-name:hover { opacity: 1; color: var(--primary); }

  /* Footer logo chip + SVG social icons */
  .footer-logo { display: inline-block; background: #fff; padding: 10px 16px; border-radius: 12px; margin-bottom: 18px; line-height: 0; }
  .footer-logo img { height: 40px; width: auto; }
  .social-icon svg { width: 18px; height: 18px; fill: #fff; }

  /* Motion discipline */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reviews-track { animation: none !important; transform: none !important; }
  }
  @media (max-width: 900px) {
    .why-image-figure img { max-height: 340px; }
  }
  @media (max-width: 600px) {
    .nav-cta-call { display: none; }
    .logo-link img { height: 40px; }
  }

  /* Inline SVG icons (replacing emoji) */
  .problem-acc-icon-wrap svg { width: 24px; height: 24px; fill: var(--primary); }
  .loc-card-icon { line-height: 0; }
  .loc-card-icon svg { width: 30px; height: 30px; fill: var(--primary); }
  .footer-col a svg { width: 15px; height: 15px; fill: currentColor; vertical-align: -2px; margin-right: 8px; }
  .why-point h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
  .problem-acc-meta h3 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
  .problem-acc-item.open .problem-acc-meta h3 { color: var(--primary); }
  @media (max-width: 600px) { .why-point h3 { font-size: 18px; } .problem-acc-meta h3 { font-size: 18px; } }
  /* ===================== BLOG ===================== */
  .blog-hero { background: linear-gradient(160deg, var(--bg-blue) 0%, #ffffff 100%); border-bottom: 1px solid var(--border); padding: 56px 0 48px; }
  .blog-hero h1 { font-size: clamp(28px,4vw,42px); font-weight: 800; color: var(--text-dark); margin-bottom: 14px; max-width: 800px; }
  .blog-hero p { font-size: 17px; color: var(--text-mid); max-width: 760px; line-height: 1.75; }

  /* Breadcrumbs */
  .crumbs { font-size: 13px; color: var(--text-light); padding: 16px 0 0; }
  .crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 0; padding: 0; }
  .crumbs li { display: flex; align-items: center; gap: 6px; }
  .crumbs li + li::before { content: "/"; color: var(--border); }
  .crumbs a { color: var(--text-light); }
  .crumbs a:hover { color: var(--primary); }
  .crumbs [aria-current] { color: var(--text-mid); font-weight: 600; }

  /* Category pills */
  .cat-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 0; }
  .cat-pill { font-family: 'Sora', sans-serif; font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 100px; border: 1.5px solid var(--border); background: #fff; color: var(--text-mid); cursor: pointer; transition: all 0.2s; }
  .cat-pill:hover { border-color: var(--primary); color: var(--primary); }
  .cat-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }

  /* Article cards */
  .post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 32px; }
  .post-card { display: flex; flex-direction: column; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; }
  .post-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .post-card-img { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-soft); }
  .post-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
  .post-card:hover .post-card-img img { transform: scale(1.04); }
  .post-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
  .post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
  .post-cat { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); background: var(--bg-blue); padding: 4px 10px; border-radius: 100px; }
  .post-card h2, .post-card h3 { font-size: 18px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
  .post-card h2 a, .post-card h3 a { color: var(--text-dark); }
  .post-card:hover h2 a, .post-card:hover h3 a { color: var(--primary); }
  .post-excerpt { font-size: 14.5px; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; flex: 1; }
  .read-more { display: inline-flex; align-items: center; gap: 7px; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--primary); align-self: flex-start; }
  .read-more svg { width: 14px; height: 14px; fill: currentColor; transition: transform 0.2s; }
  .post-card:hover .read-more svg { transform: translateX(3px); }

  /* Featured */
  .featured-post { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 32px; }
  .featured-post-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
  .featured-post-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .featured-post-body { padding: 40px 40px; display: flex; flex-direction: column; justify-content: center; }
  .featured-post-body h2 { font-size: clamp(21px,2.4vw,28px); font-weight: 800; line-height: 1.28; margin: 10px 0 12px; }
  .featured-post-body h2 a { color: var(--text-dark); }
  .featured-post-body h2 a:hover { color: var(--primary); }
  .featured-post-body p { font-size: 15.5px; color: var(--text-light); line-height: 1.75; margin-bottom: 22px; }

  /* ---------- ARTICLE PAGE ---------- */
  .article-head { padding: 8px 0 36px; border-bottom: 1px solid var(--border); }
  .article-head h1 { font-size: clamp(27px,3.8vw,40px); font-weight: 800; line-height: 1.22; margin: 12px 0 16px; max-width: 900px; }
  .article-standfirst { font-size: 17.5px; color: var(--text-mid); line-height: 1.75; max-width: 780px; }
  .byline { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; margin-top: 22px; font-size: 13.5px; color: var(--text-light); }
  .byline strong { color: var(--text-mid); font-weight: 600; }
  .byline .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }

  .article-figure { margin: 32px 0; }
  .article-figure img { width: 100%; height: auto; border-radius: var(--radius-lg); display: block; background: var(--bg-soft); }
  .article-figure figcaption { font-size: 13px; color: var(--text-light); margin-top: 10px; line-height: 1.6; }

  .article-layout { display: grid; grid-template-columns: minmax(0,1fr); gap: 0; }
  .article-body { max-width: 780px; padding: 8px 0 20px; }
  .article-body > p { font-size: 16.5px; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; }
  .article-body h2 { font-size: clamp(22px,2.6vw,28px); font-weight: 800; color: var(--text-dark); margin: 46px 0 14px; scroll-margin-top: 90px; }
  .article-body h3 { font-size: 19px; font-weight: 700; color: var(--text-dark); margin: 32px 0 10px; scroll-margin-top: 90px; }
  .article-body h4 { font-size: 16.5px; font-weight: 700; color: var(--text-mid); margin: 24px 0 8px; font-family: 'Sora', sans-serif; }
  .article-body ul, .article-body ol { margin: 0 0 22px 22px; display: flex; flex-direction: column; gap: 9px; }
  .article-body li { font-size: 16.5px; color: var(--text-mid); line-height: 1.8; }
  .article-body li strong { color: var(--text-dark); }
  .article-body a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: rgba(26,79,168,0.35); }
  .article-body a:hover { text-decoration-color: var(--accent); }
  .article-body strong { color: var(--text-dark); }

  /* Table of contents */
  .toc { background: var(--bg-soft); border: 1.5px solid var(--border); border-left: 4px solid var(--primary); border-radius: var(--radius); padding: 22px 24px; margin: 34px 0 8px; }
  .toc h2 { font-family: 'Sora', sans-serif; font-size: 13px !important; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-light); margin: 0 0 14px !important; }
  .toc ol { margin: 0 0 0 18px; display: flex; flex-direction: column; gap: 7px; }
  .toc li { font-size: 15px; line-height: 1.55; }
  .toc a { color: var(--primary); font-weight: 600; text-decoration: none; }
  .toc a:hover { color: var(--accent); text-decoration: underline; }

  /* Technician callout */
  .tech-note { background: #fff7ed; border: 1.5px solid #fed7aa; border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 22px 24px; margin: 30px 0; }
  .tech-note .callout-label { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--accent-dark); margin: 0 0 9px; }
  .tech-note p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin: 0 0 12px; }
  .tech-note p:last-child { margin-bottom: 0; }
  .key-box { background: var(--bg-blue); border: 1.5px solid #bfdbfe; border-radius: var(--radius); padding: 22px 24px; margin: 30px 0; }
  .key-box .callout-label { font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--primary); margin: 0 0 9px; }
  .key-box p, .key-box li { font-size: 16px; color: var(--text-mid); line-height: 1.8; }
  .key-box p { margin: 0 0 12px; }
  .key-box p:last-child { margin-bottom: 0; }
  .key-box ul { margin: 10px 0 0 20px; display: flex; flex-direction: column; gap: 7px; }

  /* Tables — horizontally scrollable on mobile */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 26px 0; border: 1.5px solid var(--border); border-radius: var(--radius); background: #fff; }
  .table-wrap table { border-collapse: collapse; width: 100%; min-width: 640px; font-size: 15px; }
  .table-wrap caption { caption-side: top; text-align: left; font-size: 13px; color: var(--text-light); padding: 14px 18px 0; line-height: 1.6; }
  .table-wrap th, .table-wrap td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.6; color: var(--text-mid); }
  .table-wrap thead th { background: var(--bg-soft); font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
  .table-wrap tbody th { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--text-dark); font-size: 14.5px; background: #fcfdff; }
  .table-wrap tr:last-child th, .table-wrap tr:last-child td { border-bottom: none; }
  .table-scroll-hint { display: none; font-size: 12.5px; color: var(--text-light); margin: -16px 0 24px; }

  /* Related + share */
  .related-section { background: var(--bg-soft); border-top: 1px solid var(--border); padding: 56px 0; }
  .related-section h2 { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
  .related-section > .container > p { color: var(--text-light); font-size: 15px; }
  .share-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 40px 0 8px; padding-top: 26px; border-top: 1px solid var(--border); }
  .share-row span { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-right: 4px; }
  .share-btn { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 9px; background: var(--bg-soft); border: 1.5px solid var(--border); transition: all 0.2s; }
  .share-btn:hover { background: var(--primary); border-color: var(--primary); }
  .share-btn svg { width: 17px; height: 17px; fill: var(--text-mid); transition: fill 0.2s; }
  .share-btn:hover svg { fill: #fff; }

  /* Article CTA */
  .article-cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: var(--radius-lg); padding: 36px 38px; margin: 44px 0 8px; }
  .article-cta h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 10px; }
  .article-cta p { font-size: 15.5px; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 22px; max-width: 560px; }
  .article-cta .btn-primary { background: var(--accent); border-color: var(--accent); }
  .article-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

  /* Blog responsive */
  @media (max-width: 980px) {
    .post-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-post { grid-template-columns: 1fr; }
    .featured-post-body { padding: 30px 26px 34px; }
  }
  @media (max-width: 640px) {
    .blog-hero { padding: 36px 0 32px; }
    .post-grid { grid-template-columns: 1fr; gap: 22px; }
    .article-body > p, .article-body li { font-size: 17px; line-height: 1.8; }
    .article-standfirst { font-size: 16.5px; }
    .article-cta { padding: 28px 22px; }
    .article-cta-actions .btn { width: 100%; justify-content: center; }
    .toc, .tech-note, .key-box { padding: 18px 18px; }
    .table-scroll-hint { display: block; }
    .related-section { padding: 40px 0; }
    .article-figure { margin: 24px -20px; }
    .article-figure img { border-radius: 0; }
    .article-figure figcaption { padding: 0 20px; }
  }
  .footer-col .footer-static { display: block; font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
  @media (max-width: 900px) { .footer-col .footer-static { font-size: 16px; } }
  .key-box ul + p, .tech-note ul + p, .key-box ol + p, .tech-note ol + p { margin-top: 14px; }
