:root {
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-accent: #91ffff;
  
    /* Rule of 9 spacing scale */
    --space-1: 9px;
    --space-2: 18px;
    --space-3: 27px;
    --space-4: 36px;
    --space-5: 45px;
    --space-6: 54px;
  
    --radius-soft: 18px;
    --radius-full: 900px;
  
    --max-width: 880px;
  }
  
  /* Global */
  body {
    background: var(--color-bg);
    color: var(--color-text);
    margin: 0;
    padding: 0;
  }
  
  .seo-page {
    color: var(--color-text);
  }
  
  /* Remove text decoration from all links */
  a {
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  /* Sections */
  .seo-section,
  .seo-contact,
  .seo-hero {
    padding: var(--space-6) var(--space-3);
  }
  
  /* Mobile section padding */
  @media (max-width: 768px) {
    .seo-section,
    .seo-contact,
    .seo-hero {
      padding: var(--space-4) 1rem;
    }
  }
  
  .seo-section-inner,
  .seo-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 var(--space-3);
  }
  
  @media (max-width: 768px) {
    .seo-section-inner,
    .seo-hero-inner {
      padding: 0 1rem;
    }
  }
  
  /* ------------------------------------- */
  /* HERO – Modern, Centered, Neon Look    */
  /* ------------------------------------- */
  
  .seo-hero {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding-top: calc(var(--space-6) * 1.5);
    padding-bottom: calc(var(--space-6) * 1.5);
  }
  
  @media (max-width: 768px) {
    .seo-hero {
      padding-top: var(--space-5);
      padding-bottom: var(--space-5);
    }
  }
  
  .seo-hero::before {
    content: "";
    position: absolute;
    inset: -180px;
    background:
      radial-gradient(circle at 50% 20%, rgba(145, 255, 255, 0.12), transparent 60%),
      radial-gradient(circle at 70% 80%, rgba(145, 255, 255, 0.08), transparent 70%);
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
  }
  
  .seo-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
  
  @media (max-width: 768px) {
    .seo-hero-inner {
      gap: var(--space-2);
      width: 100%;
      padding: 0 var(--space-2);
    }
  }
  
  /* Title */
  .seo-hero-title {
    font-size: 2.7rem;
    line-height: 1.2;
    width: 90%;
    max-width: 700px;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 0 9px rgba(145, 255, 255, 0.25);
  }
  
  /* Mobile hero title */
  @media (max-width: 768px) {
    .seo-hero-title {
      font-size: 2rem;
      width: 95%;
      line-height: 1.25;
    }
  }
  
  /* Button right after h1 */
  .seo-hero-cta {
    margin-top: var(--space-3);
    margin-bottom: var(--space-2);
  }
  
  @media (max-width: 768px) {
    .seo-hero-cta {
      margin-top: var(--space-2);
      margin-bottom: var(--space-2);
      width: 90%;
      max-width: 100%;
      font-size: 0.95rem;
      padding: var(--space-2) var(--space-3);
    }
  }
  
  /* Text */
  .seo-hero-text {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
  }
  
  @media (max-width: 768px) {
    .seo-hero-text {
      font-size: 1rem;
      width: 95%;
      max-width: 100%;
      line-height: 1.6;
    }
  }
  
  /* ------------------------------------- */
  /* BUTTON – Bigger, Rounder, Glowing     */
  /* ------------------------------------- */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition:
      box-shadow 200ms ease-out,
      background 150ms ease-out;
    word-wrap: break-word;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .btn {
      font-size: 0.95rem;
      padding: var(--space-2) var(--space-3);
      width: 100%;
      max-width: 100%;
    }
  }
  
  .btn-primary {
    background: var(--color-accent);
    color: #000;
    box-shadow:
      0 0 18px rgba(145, 255, 255, 0.6),
      0 0 54px rgba(145, 255, 255, 0.3),
      0 0 90px rgba(145, 255, 255, 0.15);
  }
  
  .btn-primary:hover {
    box-shadow:
      0 0 27px rgba(145, 255, 255, 0.8),
      0 0 108px rgba(145, 255, 255, 0.5);
    background: #a0ffff;
  }
  
  /* Secondary button style */
  .btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid rgba(145, 255, 255, 0.4);
    box-shadow: 0 0 9px rgba(145, 255, 255, 0.2);
  }
  
  .btn-secondary:hover {
    background: rgba(145, 255, 255, 0.1);
    border-color: rgba(145, 255, 255, 0.6);
    box-shadow: 0 0 18px rgba(145, 255, 255, 0.4);
    color: #a0ffff;
  }
  
  /* Inline CTAs within content */
  .seo-inline-cta {
    margin-top: var(--space-4);
    margin-bottom: var(--space-2);
    display: inline-block;
  }
  
  .seo-cta-center {
    text-align: center;
    margin-top: var(--space-5);
  }
  
  @media (max-width: 768px) {
    .seo-inline-cta {
      width: 100%;
      margin-top: var(--space-3);
    }
    
    .seo-cta-center {
      margin-top: var(--space-4);
    }
  }
  
  /* ------------------------------------- */
  /* HERO TRUST BADGE – 4.9/5 Sortlist     */
  /* ------------------------------------- */
  
  .hero-trust {
    margin-top: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.04);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-soft);
    backdrop-filter: blur(9px);
    border: 1px solid rgba(145, 255, 255, 0.18);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 200ms ease-out;
  }
  
  .hero-trust:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(145, 255, 255, 0.3);
    transform: translateY(-2px);
  }
  
  @media (max-width: 768px) {
    .hero-trust {
      padding: var(--space-1) var(--space-2);
      gap: var(--space-1);
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  
  .hero-trust-score {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
    text-shadow: 0 0 9px rgba(145, 255, 255, 0.5);
  }
  
  @media (max-width: 768px) {
    .hero-trust-score {
      font-size: 1.2rem;
    }
  }
  
  .hero-trust-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  @media (max-width: 768px) {
    .hero-trust-label {
      font-size: 0.9rem;
    }
  }
  
  /* Small star style */
  .hero-trust-star {
    width: 18px;
    height: 18px;
    background: var(--color-accent);
    mask: url("https://upload.wikimedia.org/wikipedia/commons/1/18/Five-pointed_star.svg") center/contain no-repeat;
    -webkit-mask: url("https://upload.wikimedia.org/wikipedia/commons/1/18/Five-pointed_star.svg") center/contain no-repeat;
    filter: drop-shadow(0 0 6px rgba(145, 255, 255, 0.6));
  }
  
  @media (max-width: 768px) {
    .hero-trust-star {
      width: 16px;
      height: 16px;
    }
  }
  
  /* ------------------------------------- */
  /* Headings & Text (Global)              */
  /* ------------------------------------- */
  
  .seo-section-title {
    font-size: 1.9rem;
    margin: 0 0 var(--space-3);
    text-shadow: 0 0 6px rgba(145, 255, 255, 0.2);
  }
  
  .seo-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.88);
    margin: var(--space-3) 0 var(--space-1);
  }
  
  p {
    line-height: 1.8;
    font-size: 1.125rem; /* 18px */
    color: rgba(255, 255, 255, 0.85);
  }
  
  @media (min-width: 900px) {
    p {
      font-size: 1.25rem; /* 20px on desktop */
    }
  }
  
  /* ------------------------------------- */
  /* Lists – Interactive Table Style       */
  /* ------------------------------------- */
  
  .seo-list {
    list-style: none;
    margin: var(--space-4) 0;
    padding: 0;
    display: grid;
    gap: var(--space-2);
  }
  
  .seo-list li {
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(145, 255, 255, 0.1);
    border-radius: var(--radius-soft);
    font-size: 1.125rem;
    line-height: 1.6;
    transition: all 200ms ease-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  @media (min-width: 900px) {
    .seo-list li {
      font-size: 1.25rem;
      padding: var(--space-3) var(--space-4);
    }
  }
  
  .seo-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-accent);
    opacity: 0;
    transition: opacity 200ms ease-out;
  }
  
  .seo-list li:hover {
    background: rgba(145, 255, 255, 0.05);
    border-color: rgba(145, 255, 255, 0.2);
    transform: translateX(4px);
  }
  
  .seo-list li:hover::before {
    opacity: 1;
  }
  
  .seo-list li.active {
    background: rgba(145, 255, 255, 0.08);
    border-color: rgba(145, 255, 255, 0.3);
  }
  
  .seo-list li.active::before {
    opacity: 1;
  }
  
  /* ------------------------------------- */
  /* List Variations - Icons, Checkmarks, Numbered */
  /* ------------------------------------- */
  
  /* Icon-based list */
  .seo-list-icons li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
  }
  
  .seo-list-icons .list-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(145, 255, 255, 0.1);
    border-radius: var(--radius-soft);
    border: 1px solid rgba(145, 255, 255, 0.2);
    color: var(--color-accent);
    transition: all 200ms ease-out;
  }
  
  .seo-list-icons .list-icon i {
    font-size: 1.2rem;
    line-height: 1;
  }
  
  .seo-list-icons li:hover .list-icon {
    background: rgba(145, 255, 255, 0.15);
    border-color: rgba(145, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(145, 255, 255, 0.3);
  }
  
  .seo-list-icons .list-text {
    flex: 1;
  }
  
  @media (max-width: 768px) {
    .seo-list-icons .list-icon {
      width: 40px;
      height: 40px;
    }
    
    .seo-list-icons .list-icon i {
      font-size: 1rem;
    }
  }
  
  /* Checkmark list */
  .seo-list-checkmarks li {
    padding-left: calc(28px + var(--space-2));
    position: relative;
    min-height: 28px;
  }
  
  .seo-list-checkmarks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: #000;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 1;
    box-shadow: 0 0 12px rgba(145, 255, 255, 0.5);
  }
  
  @media (max-width: 768px) {
    .seo-list-checkmarks li {
      padding-left: calc(24px + var(--space-2));
    }
    
    .seo-list-checkmarks li::before {
      width: 24px;
      height: 24px;
      font-size: 0.85rem;
    }
  }
  
  .seo-list-checkmarks li:hover::before {
    transform: scale(1.1);
    box-shadow: 0 0 18px rgba(145, 255, 255, 0.7);
  }
  
  /* Numbered list */
  .seo-list-numbered {
    counter-reset: seo-counter;
  }
  
  .seo-list-numbered li {
    padding-left: calc(32px + var(--space-2));
    position: relative;
    counter-increment: seo-counter;
    min-height: 32px;
  }
  
  .seo-list-numbered li::before {
    content: counter(seo-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(145, 255, 255, 0.2), rgba(145, 255, 255, 0.1));
    color: var(--color-accent);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid rgba(145, 255, 255, 0.3);
    opacity: 1;
  }
  
  @media (max-width: 768px) {
    .seo-list-numbered li {
      padding-left: calc(28px + var(--space-2));
    }
    
    .seo-list-numbered li::before {
      width: 28px;
      height: 28px;
      font-size: 0.85rem;
    }
  }
  
  .seo-list-numbered li:hover::before {
    background: linear-gradient(135deg, rgba(145, 255, 255, 0.3), rgba(145, 255, 255, 0.2));
    border-color: rgba(145, 255, 255, 0.5);
    transform: scale(1.1);
  }
  
  /* ------------------------------------- */
  /* Promotional CTA Section               */
  /* ------------------------------------- */
  
  .seo-promo {
    background: linear-gradient(135deg, rgba(145, 255, 255, 0.08) 0%, rgba(145, 255, 255, 0.03) 100%);
    border-top: 2px solid rgba(145, 255, 255, 0.2);
    border-bottom: 2px solid rgba(145, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .seo-promo::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(145, 255, 255, 0.15), transparent 70%);
    filter: blur(60px);
    opacity: 0.6;
    pointer-events: none;
  }
  
  .promo-box {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-5) var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(145, 255, 255, 0.2);
    border-radius: var(--radius-soft);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
  }
  
  .promo-content {
    text-align: center;
  }
  
  .promo-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    background: var(--color-accent);
    color: #000;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-3);
    box-shadow: 0 0 18px rgba(145, 255, 255, 0.5);
  }
  
  .promo-badge i {
    font-size: 0.85rem;
  }
  
  .promo-title {
    font-size: 2.5rem;
    margin: 0 0 var(--space-2);
    color: var(--color-text);
    text-shadow: 0 0 12px rgba(145, 255, 255, 0.3);
  }
  
  .promo-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .promo-text strong {
    color: var(--color-accent);
    font-weight: 600;
  }
  
  .promo-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
  }
  
  .promo-feature {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-3);
    background: rgba(145, 255, 255, 0.08);
    border: 1px solid rgba(145, 255, 255, 0.2);
    border-radius: var(--radius-soft);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .promo-feature i {
    color: var(--color-accent);
    font-size: 1rem;
  }
  
  .promo-cta {
    font-size: 1.15rem;
    padding: var(--space-3) var(--space-5);
    margin-bottom: var(--space-3);
  }
  
  .promo-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
  }
  
  .promo-note i {
    font-size: 0.85rem;
    color: rgba(145, 255, 255, 0.6);
  }
  
  @media (max-width: 768px) {
    .promo-box {
      padding: var(--space-4) var(--space-3);
    }
    
    .promo-title {
      font-size: 2rem;
    }
    
    .promo-text {
      font-size: 1.1rem;
    }
    
    .promo-features {
      flex-direction: column;
      align-items: stretch;
      gap: var(--space-2);
    }
    
    .promo-feature {
      justify-content: center;
    }
    
    .promo-cta {
      font-size: 1rem;
      padding: var(--space-2) var(--space-4);
      width: 100%;
    }
  }
  
  /* ------------------------------------- */
  /* Pricing Cards                         */
  /* ------------------------------------- */
  
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin: var(--space-5) 0;
  }
  
  @media (min-width: 900px) {
    .pricing-grid {
      grid-template-columns: 1fr 1fr;
      gap: var(--space-5);
    }
  }
  
  .pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(145, 255, 255, 0.15);
    border-radius: var(--radius-soft);
    padding: var(--space-5);
    position: relative;
    transition: all 300ms ease-out;
    display: flex;
    flex-direction: column;
  }
  
  .pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(145, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(145, 255, 255, 0.1);
  }
  
  /* Basic Package */
  .pricing-basic {
    background: rgba(255, 255, 255, 0.02);
  }
  
  /* Pro Package - Highlighted */
  .pricing-pro {
    background: linear-gradient(135deg, rgba(145, 255, 255, 0.08) 0%, rgba(145, 255, 255, 0.03) 100%);
    border: 2px solid rgba(145, 255, 255, 0.3);
    position: relative;
  }
  
  .pricing-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-soft);
    padding: 2px;
    background: linear-gradient(135deg, rgba(145, 255, 255, 0.4), rgba(145, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
  }
  
  .pricing-badge-popular {
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-1);
    background: var(--color-accent);
    color: #000;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 12px rgba(145, 255, 255, 0.5);
    z-index: 2;
  }
  
  @media (max-width: 768px) {
    .pricing-badge-popular {
      top: var(--space-1);
      right: var(--space-1);
      font-size: 0.75rem;
      padding: 6px var(--space-1);
    }
  }
  
  .pricing-badge-popular i {
    font-size: 0.75rem;
  }
  
  .pricing-header {
    text-align: left;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(145, 255, 255, 0.15);
    padding-right: var(--space-5);
  }
  
  @media (max-width: 768px) {
    .pricing-header {
      padding-right: var(--space-4);
    }
  }
  
  .pricing-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 var(--space-2);
    color: var(--color-text);
    line-height: 1.3;
  }
  
  .pricing-pro .pricing-name {
    color: var(--color-accent);
    text-shadow: 0 0 8px rgba(145, 255, 255, 0.4);
  }
  
  .pricing-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
  }
  
  /* Pricing Info Section */
  .pricing-info {
    margin-bottom: var(--space-4);
    padding: var(--space-3);
    background: rgba(145, 255, 255, 0.05);
    border-radius: var(--radius-soft);
    border: 1px solid rgba(145, 255, 255, 0.1);
  }
  
  .pricing-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
  }
  
  .pricing-info-item i {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-top: 0.2em;
    flex-shrink: 0;
  }
  
  .pricing-info-item strong {
    display: block;
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: var(--space-1);
  }
  
  .pricing-info-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Deliverables Section */
  .pricing-deliverables {
    margin-bottom: var(--space-5);
  }
  
  .deliverables-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid rgba(145, 255, 255, 0.15);
  }
  
  .pricing-pro .deliverables-title {
    color: var(--color-accent);
  }
  
  .deliverable-group {
    margin-bottom: var(--space-3);
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.02);
    border-radius: calc(var(--radius-soft) * 0.8);
    border-left: 3px solid rgba(145, 255, 255, 0.2);
  }
  
  .pricing-pro .deliverable-group {
    border-left-color: rgba(145, 255, 255, 0.4);
    background: rgba(145, 255, 255, 0.03);
  }
  
  .deliverable-category {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
    margin: 0 0 var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }
  
  .deliverable-category i {
    font-size: 0.9rem;
  }
  
  .deliverable-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .deliverable-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    padding: var(--space-1) 0;
    padding-left: var(--space-3);
    position: relative;
  }
  
  .deliverable-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
  }
  
  /* Benefits Section */
  .pricing-benefits {
    margin-bottom: var(--space-4);
    padding: var(--space-4);
    background: rgba(145, 255, 255, 0.05);
    border-radius: var(--radius-soft);
    border: 1px solid rgba(145, 255, 255, 0.15);
  }
  
  .pricing-pro .pricing-benefits {
    background: rgba(145, 255, 255, 0.08);
    border-color: rgba(145, 255, 255, 0.25);
  }
  
  .benefits-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 var(--space-3);
  }
  
  .pricing-pro .benefits-title {
    color: var(--color-accent);
  }
  
  .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    padding: var(--space-2) 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .benefits-list i {
    color: var(--color-accent);
    font-size: 1rem;
    margin-top: 0.2em;
    flex-shrink: 0;
  }
  
  .pricing-pro .benefits-list i {
    text-shadow: 0 0 6px rgba(145, 255, 255, 0.5);
  }
  
  .pricing-cta {
    width: 100%;
    margin-top: auto;
    text-align: center;
  }
  
  /* Custom Pricing Message */
  .pricing-custom {
    margin-top: var(--space-6);
    margin-bottom: var(--space-5);
  }
  
  .pricing-custom-content {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-5);
    background: rgba(145, 255, 255, 0.05);
    border: 1px solid rgba(145, 255, 255, 0.2);
    border-radius: var(--radius-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .pricing-custom-content::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(145, 255, 255, 0.1), transparent 70%);
    opacity: 0.5;
    pointer-events: none;
  }
  
  .pricing-custom-content > * {
    position: relative;
    z-index: 1;
  }
  
  .pricing-custom-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 var(--space-3);
    line-height: 1.4;
  }
  
  .pricing-custom-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 var(--space-2);
  }
  
  .pricing-custom-cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-accent);
    font-weight: 500;
    margin: var(--space-3) 0 var(--space-4);
  }
  
  .pricing-custom-btn {
    margin-top: var(--space-2);
  }
  
  @media (max-width: 768px) {
    .pricing-custom-content {
      padding: var(--space-4) var(--space-3);
    }
    
    .pricing-custom-title {
      font-size: 1.3rem;
    }
    
    .pricing-custom-text,
    .pricing-custom-cta-text {
      font-size: 1rem;
    }
  }
  
  .pricing-value {
    margin-top: var(--space-6);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (max-width: 768px) {
    .pricing-card {
      padding: var(--space-3);
    }
    
    .pricing-header {
      margin-bottom: var(--space-3);
      padding-bottom: var(--space-3);
      padding-right: var(--space-3);
    }
    
    .pricing-name {
      font-size: 1.4rem;
    }
    
    .pricing-info {
      padding: var(--space-2);
    }
    
    .deliverable-group {
      padding: var(--space-2);
    }
    
    .pricing-benefits {
      padding: var(--space-3);
    }
    
    .deliverables-title,
    .benefits-title {
      font-size: 1.1rem;
    }
    
    .pricing-badge-popular {
      font-size: 0.7rem;
      padding: 4px 8px;
    }
  }
  
  /* ------------------------------------- */
  /* Section Images & Layout               */
  /* ------------------------------------- */
  
  .seo-section {
    background: radial-gradient(circle at top, rgba(145, 255, 255, 0.03), transparent 70%);
    position: relative;
  }
  
  /* Grid layout for sections with images - use class .with-image on seo-section-inner */
  .seo-section-inner.with-image {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    align-items: center;
  }
  
  @media (max-width: 768px) {
    .seo-section-inner.with-image {
      gap: var(--space-3);
      padding: 0 1rem;
    }
  }
  
  @media (min-width: 900px) {
    .seo-section-inner.with-image {
      grid-template-columns: 1fr 1fr;
    }
    
    .seo-section-inner.with-image.reverse {
      grid-template-columns: 1fr 1fr;
    }
    
    .seo-section-inner.with-image.reverse .seo-section-content {
      order: 2;
    }
    
    .seo-section-inner.with-image.reverse .seo-section-image {
      order: 1;
    }
  }
  
  .seo-section-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  /* Mobile-first responsive adjustments */
  @media (max-width: 768px) {
    .seo-section-content {
      padding: 0 1rem;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
    
    .seo-section-inner.with-image .seo-section-content {
      padding: 0;
    }
    
    .seo-section-title {
      font-size: 1.6rem;
      line-height: 1.3;
    }
    
    .seo-subtitle {
      font-size: 1.15rem;
    }
    
    p {
      font-size: 1rem; /* 16px on mobile for better readability */
      line-height: 1.7;
    }
    
    .seo-list li {
      padding: var(--space-2);
      font-size: 1rem;
    }
    
    .seo-list li:hover {
      transform: translateX(2px); /* Smaller transform on mobile */
    }
  }
  
  @media (min-width: 900px) {
    .seo-section-content {
      max-width: 700px;
      padding: 0;
    }
  }
  
  .seo-section-image {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-soft);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(145, 255, 255, 0.1), rgba(145, 255, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  @media (max-width: 768px) {
    .seo-section-image {
      height: 300px;
      border-radius: calc(var(--radius-soft) * 0.8);
    }
  }
  
  .seo-section-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    transition: transform 300ms ease-out;
  }
  
  .seo-section-image:hover img {
    transform: scale(1.02);
  }
  
  /* Square images - maintain aspect ratio */
  .seo-section-image img[src*="seo-illustration"],
  .seo-section-image img[src*="seo-pillars"],
  .seo-section-image img[src*="seo-portfolio"] {
    object-fit: contain;
    padding: var(--space-2);
  }
  
  @media (min-width: 900px) {
    .seo-section-image {
      height: 500px;
    }
    
    .seo-section-image img[src*="seo-illustration"],
    .seo-section-image img[src*="seo-pillars"],
    .seo-section-image img[src*="seo-portfolio"] {
      padding: var(--space-3);
    }
  }
  
  .seo-section-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(145, 255, 255, 0.05) 100%);
    pointer-events: none;
  }
  
  /* Full-width sections (no image) */
  .seo-section-inner.full-width {
    grid-template-columns: 1fr;
  }
  
  /* ------------------------------------- */
  /* Consulting Grid Layout                */
  /* ------------------------------------- */
  
  .consulting-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-top: var(--space-4);
  }
  
  @media (min-width: 900px) {
    .consulting-grid {
      grid-template-columns: 1fr 1fr;
      gap: var(--space-6);
    }
  }
  
  .consulting-block {
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(145, 255, 255, 0.1);
    border-radius: var(--radius-soft);
    transition: all 200ms ease-out;
  }
  
  .consulting-block:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(145, 255, 255, 0.2);
    transform: translateY(-2px);
  }
  
  .consulting-block h3 {
    margin-top: 0;
  }
  
  @media (max-width: 768px) {
    .consulting-block {
      padding: var(--space-3);
    }
  }
  
  /* Hero section specific */
  .seo-hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
  
  /* ------------------------------------- */
  /* Responsive                            */
  /* ------------------------------------- */
  
  @media (min-width: 900px) {
    .seo-hero-title {
      font-size: 3.2rem;
      max-width: 700px;
    }
    .seo-hero-text {
      font-size: 1.3rem;
      max-width: 650px;
    }
    .hero-trust {
      margin-top: var(--space-3);
      padding: var(--space-2) var(--space-4);
    }
  }
  
  /* Image placeholders with subtle patterns */
  .seo-section-image.placeholder {
    background: 
      linear-gradient(135deg, rgba(145, 255, 255, 0.08) 0%, transparent 50%),
      radial-gradient(circle at 30% 30%, rgba(145, 255, 255, 0.1), transparent 50%),
      #0a0a0a;
  }
  
  .seo-section-image.placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
      repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(145, 255, 255, 0.02) 2px, rgba(145, 255, 255, 0.02) 4px);
    opacity: 0.3;
  }
  