:root {
      --bg-main: #0a0414;
      --bg-card: rgba(22, 11, 40, 0.75);
      --bg-card-hover: rgba(36, 17, 66, 0.85);
      --border-color: rgba(255, 42, 133, 0.25);
      --border-glow: rgba(255, 42, 133, 0.6);
      --neon-pink: #ff2a85;
      --neon-purple: #9d4edd;
      --neon-violet: #7209b7;
      --neon-cyan: #00f5d4;
      --text-main: #f8fafc;
      --text-muted: #cbd5e1;
      --text-dim: #94a3b8;
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      --container-max: 1200px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg-main);
      background-image: 
        radial-gradient(circle at 15% 20%, rgba(157, 78, 221, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(255, 42, 133, 0.15) 0%, transparent 45%),
        linear-gradient(180deg, #0a0414 0%, #120722 50%, #08020f 100%);
      color: var(--text-main);
      font-family: var(--font-family);
      line-height: 1.6;
      overflow-x: hidden;
      min-height: 100vh;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
    }

    /* Header & Navigation */
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 4, 20, 0.88);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255, 42, 133, 0.2);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .brand-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-logo-wrap {
      max-width: 130px;
      display: flex;
      align-items: center;
    }

    .brand-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.5px;
    }

    .brand-tag {
      font-size: 0.7rem;
      background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
      color: #fff;
      padding: 2px 6px;
      border-radius: 4px;
      margin-left: 6px;
      font-weight: 600;
    }

    nav.main-nav {
      display: flex;
      align-items: center;
    }

    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 0;
    }

    .nav-links li a {
      font-size: 0.92rem;
      color: var(--text-muted);
      padding: 8px 14px;
      font-weight: 500;
      border-radius: 6px;
      display: inline-block;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
      color: #fff;
      background: rgba(255, 42, 133, 0.15);
      text-shadow: 0 0 8px rgba(255, 42, 133, 0.6);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .btn-cyber-outline {
      border: 1px solid var(--neon-pink);
      color: #fff;
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 0.88rem;
      font-weight: 600;
      background: rgba(255, 42, 133, 0.08);
      box-shadow: 0 0 10px rgba(255, 42, 133, 0.2);
    }

    .btn-cyber-outline:hover {
      background: var(--neon-pink);
      color: #fff;
      box-shadow: 0 0 16px rgba(255, 42, 133, 0.5);
    }

    .btn-cyber-primary {
      background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-violet) 100%);
      color: #fff;
      padding: 8px 20px;
      border-radius: 6px;
      font-size: 0.88rem;
      font-weight: 600;
      box-shadow: 0 0 16px rgba(255, 42, 133, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .btn-cyber-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 24px rgba(255, 42, 133, 0.6);
    }

    .mobile-menu-btn {
      display: none;
      background: transparent;
      border: 1px solid var(--border-color);
      color: #fff;
      padding: 8px 12px;
      border-radius: 6px;
      cursor: pointer;
    }

    /* Section Global Headers */
    .section-pad {
      padding: 80px 0;
      position: relative;
    }

    .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 50px auto;
    }

    .section-badge {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--neon-pink);
      background: rgba(255, 42, 133, 0.12);
      border: 1px solid rgba(255, 42, 133, 0.3);
      padding: 4px 14px;
      border-radius: 30px;
      text-transform: uppercase;
      margin-bottom: 12px;
      letter-spacing: 1px;
    }

    .section-title {
      font-size: 2.1rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }

    .section-desc {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* Hero Section (No Images Allowed!) */
    .hero-section {
      padding: 90px 0 70px 0;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    }

    .hero-content-wrap {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 18px;
      border-radius: 40px;
      background: rgba(157, 78, 221, 0.15);
      border: 1px solid rgba(157, 78, 221, 0.4);
      color: #f1c0e8;
      font-size: 0.88rem;
      font-weight: 600;
      margin-bottom: 24px;
      box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
    }

    .hero-pill-dot {
      width: 8px;
      height: 8px;
      background-color: var(--neon-pink);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--neon-pink);
    }

    .hero-title {
      font-size: 2.6rem;
      font-weight: 800;
      line-height: 1.25;
      color: #ffffff;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .hero-title span {
      background: linear-gradient(90deg, #ff2a85, #b5179e, #7209b7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .hero-subtitle {
      font-size: 1.12rem;
      color: var(--text-muted);
      margin-bottom: 36px;
      line-height: 1.75;
      max-width: 780px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-btn-group {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .btn-hero-primary {
      padding: 14px 34px;
      font-size: 1.05rem;
      border-radius: 8px;
      font-weight: 700;
      background: linear-gradient(135deg, #ff2a85 0%, #7209b7 100%);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 0 25px rgba(255, 42, 133, 0.45);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 0 35px rgba(255, 42, 133, 0.7);
    }

    .btn-hero-secondary {
      padding: 14px 28px;
      font-size: 1.05rem;
      border-radius: 8px;
      font-weight: 600;
      background: rgba(22, 11, 40, 0.85);
      border: 1px solid rgba(157, 78, 221, 0.5);
      color: #fff;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-hero-secondary:hover {
      background: rgba(36, 17, 66, 0.95);
      border-color: var(--neon-pink);
    }

    /* Cyber Stats Matrix */
    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 10px;
    }

    .stat-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      padding: 20px 16px;
      border-radius: 12px;
      text-align: center;
      backdrop-filter: blur(8px);
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      border-color: var(--neon-pink);
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(255, 42, 133, 0.2);
    }

    .stat-num {
      font-size: 1.85rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 4px;
      background: linear-gradient(90deg, #fff, #f72585);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .stat-label {
      font-size: 0.82rem;
      color: var(--text-dim);
      font-weight: 500;
    }

    /* Cards & Grids */
    .cyber-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 28px;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .cyber-card:hover {
      background: var(--bg-card-hover);
      border-color: var(--neon-pink);
      box-shadow: 0 12px 30px rgba(255, 42, 133, 0.18);
      transform: translateY(-4px);
    }

    .cyber-card-glow-bar {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
      opacity: 0.7;
    }

    /* Multi-Model Tag Cloud */
    .models-cloud-wrap {
      background: rgba(18, 8, 36, 0.7);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 30px;
      margin-top: 30px;
      text-align: center;
    }

    .models-badge-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 18px;
    }

    .model-tag {
      background: rgba(255, 42, 133, 0.08);
      border: 1px solid rgba(255, 42, 133, 0.25);
      color: #f1e0f7;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 500;
      transition: all 0.2s ease;
    }

    .model-tag:hover {
      background: var(--neon-pink);
      color: #fff;
      transform: scale(1.05);
      box-shadow: 0 0 12px var(--neon-pink);
    }

    /* AIGC Services Grid (27 Main Scenarios) */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service-icon-box {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(255, 42, 133, 0.2), rgba(114, 9, 183, 0.3));
      border: 1px solid rgba(255, 42, 133, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--neon-pink);
      font-size: 1.25rem;
      margin-bottom: 16px;
      font-weight: 800;
    }

    .service-card-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }

    .service-card-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Comparison Section */
    .score-banner {
      background: linear-gradient(135deg, rgba(255, 42, 133, 0.15), rgba(114, 9, 183, 0.25));
      border: 1px solid var(--neon-pink);
      border-radius: 16px;
      padding: 24px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px;
      box-shadow: 0 0 25px rgba(255, 42, 133, 0.2);
    }

    .score-left {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .score-digits {
      font-size: 2.8rem;
      font-weight: 900;
      color: #fff;
      text-shadow: 0 0 15px var(--neon-pink);
      line-height: 1;
    }

    .score-meta h4 {
      font-size: 1.2rem;
      color: #fff;
      margin-bottom: 4px;
    }

    .score-stars {
      color: #ffd166;
      font-size: 1rem;
      letter-spacing: 2px;
    }

    .score-tag-badge {
      background: var(--neon-pink);
      color: #fff;
      padding: 6px 16px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 0.88rem;
    }

    .table-container {
      overflow-x: auto;
      background: var(--bg-card);
      border-radius: 14px;
      border: 1px solid var(--border-color);
    }

    .cyber-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 650px;
    }

    .cyber-table th, .cyber-table td {
      padding: 16px 20px;
      border-bottom: 1px solid rgba(255, 42, 133, 0.12);
      font-size: 0.92rem;
    }

    .cyber-table th {
      background: rgba(30, 14, 56, 0.85);
      color: #fff;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.84rem;
      letter-spacing: 0.5px;
    }

    .cyber-table tr:hover td {
      background: rgba(255, 42, 133, 0.04);
    }

    .highlight-cell {
      color: var(--neon-cyan);
      font-weight: 700;
    }

    /* Process Flow */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }

    .process-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px;
      position: relative;
    }

    .process-step-num {
      font-size: 2rem;
      font-weight: 900;
      color: rgba(255, 42, 133, 0.3);
      position: absolute;
      top: 16px;
      right: 18px;
    }

    .process-card h4 {
      font-size: 1.1rem;
      color: #fff;
      margin-bottom: 8px;
    }

    .process-card p {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* Showcase & Banner Images Section */
    .media-showcase-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 30px;
    }

    .media-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 14px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .media-card:hover {
      border-color: var(--neon-pink);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 42, 133, 0.2);
    }

    .media-img-wrap {
      width: 100%;
      position: relative;
      background: #140827;
      overflow: hidden;
    }

    .media-img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.4s ease;
    }

    .media-card:hover .media-img-wrap img {
      transform: scale(1.03);
    }

    .media-info {
      padding: 20px;
    }

    .media-info h4 {
      font-size: 1.05rem;
      color: #fff;
      margin-bottom: 6px;
    }

    .media-info p {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .banner-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 24px;
    }

    .banner-strip .ai-page-image {
      width: 100%;
      height: auto;
      border-radius: 10px;
      border: 1px solid var(--border-color);
      display: block;
    }

    /* Reviews Section */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .review-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .review-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 18px;
      font-style: italic;
    }

    .review-user-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid rgba(255, 42, 133, 0.15);
      padding-top: 14px;
    }

    .review-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #fff;
      font-size: 0.95rem;
    }

    .review-info-name {
      font-size: 0.92rem;
      font-weight: 700;
      color: #fff;
    }

    .review-info-role {
      font-size: 0.78rem;
      color: var(--text-dim);
    }

    /* FAQ Accordion */
    .faq-accordion {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.25s ease;
    }

    .faq-item.active {
      border-color: var(--neon-pink);
      box-shadow: 0 0 15px rgba(255, 42, 133, 0.15);
    }

    .faq-question {
      padding: 18px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      color: #fff;
      font-size: 0.98rem;
      user-select: none;
    }

    .faq-toggle-icon {
      font-size: 1.2rem;
      color: var(--neon-pink);
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-toggle-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      background: rgba(14, 6, 28, 0.6);
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
      padding: 0 24px;
    }

    .faq-item.active .faq-answer {
      padding: 16px 24px 20px 24px;
      max-height: 250px;
    }

    /* Demand Form & Contact */
    .contact-container-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 36px;
      align-items: start;
    }

    .contact-info-panel {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 30px;
    }

    .contact-info-panel h3 {
      font-size: 1.35rem;
      color: #fff;
      margin-bottom: 20px;
    }

    .contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 24px;
    }

    .contact-list-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.92rem;
      color: var(--text-muted);
    }

    .contact-list-item strong {
      color: #fff;
      min-width: 80px;
    }

    .qr-box-wrap {
      text-align: center;
      background: rgba(10, 4, 20, 0.6);
      padding: 18px;
      border-radius: 10px;
      border: 1px dashed rgba(255, 42, 133, 0.3);
      max-width: 220px;
      margin: 0 auto;
    }

    .qr-box-wrap img {
      max-width: 140px;
      height: auto;
      border-radius: 6px;
      display: block;
      margin: 0 auto 8px auto;
    }

    .qr-box-wrap span {
      font-size: 0.8rem;
      color: var(--text-dim);
    }

    .form-panel {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 32px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-label {
      display: block;
      font-size: 0.88rem;
      color: #fff;
      margin-bottom: 6px;
      font-weight: 600;
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      background: rgba(10, 4, 20, 0.7);
      border: 1px solid rgba(255, 42, 133, 0.25);
      border-radius: 8px;
      color: #fff;
      font-size: 0.92rem;
      outline: none;
      transition: all 0.25s ease;
      font-family: inherit;
    }

    .form-control:focus {
      border-color: var(--neon-pink);
      box-shadow: 0 0 12px rgba(255, 42, 133, 0.35);
      background: rgba(18, 8, 36, 0.9);
    }

    textarea.form-control {
      resize: vertical;
      min-height: 95px;
    }

    .form-btn-submit {
      width: 100%;
      padding: 14px;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-violet) 100%);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      box-shadow: 0 0 20px rgba(255, 42, 133, 0.35);
      transition: all 0.25s ease;
    }

    .form-btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 28px rgba(255, 42, 133, 0.6);
    }

    /* Articles & Links Section */
    .articles-container {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 24px;
      margin-top: 24px;
    }

    .article-url-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 14px;
    }

    .article-link-tag {
      background: rgba(157, 78, 221, 0.12);
      border: 1px solid rgba(157, 78, 221, 0.3);
      color: #e2d9f3;
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 0.85rem;
    }

    .article-link-tag:hover {
      background: var(--neon-purple);
      color: #fff;
    }

    /* Footer */
    footer.site-footer {
      background: #06020c;
      border-top: 1px solid rgba(255, 42, 133, 0.2);
      padding: 60px 0 24px 0;
      color: var(--text-dim);
      font-size: 0.88rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 36px;
      margin-bottom: 40px;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 1rem;
      margin-bottom: 18px;
      font-weight: 700;
    }

    .footer-nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-nav a:hover {
      color: var(--neon-pink);
    }

    .friend-links-wrap {
      border-top: 1px solid rgba(255, 42, 133, 0.15);
      padding: 20px 0;
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      font-size: 0.85rem;
    }

    .friend-links-wrap a {
      color: var(--text-dim);
      transition: color 0.2s;
    }

    .friend-links-wrap a:hover {
      color: var(--neon-pink);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 20px;
      text-align: center;
      font-size: 0.82rem;
      color: #64748b;
    }

    /* Floating Customer Service & Back to Top */
    .floating-widget-bar {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .float-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(22, 11, 40, 0.9);
      border: 1px solid var(--neon-pink);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 0 15px rgba(255, 42, 133, 0.3);
      transition: all 0.25s ease;
    }

    .float-btn:hover {
      background: var(--neon-pink);
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(255, 42, 133, 0.6);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .services-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .process-grid, .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .contact-container-grid {
        grid-template-columns: 1fr;
      }
      .banner-strip {
        grid-template-columns: repeat(2, 1fr);
      }
      .media-showcase-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .header-actions .btn-cyber-outline {
        display: none;
      }
      .mobile-menu-btn {
        display: block;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #0d0618;
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
      }
      .nav-links.show {
        display: flex;
      }
      .hero-title {
        font-size: 1.85rem;
      }
      .services-grid, .reviews-grid, .process-grid, .hero-stats-grid, .footer-grid {
        grid-template-columns: 1fr;
      }
      .score-banner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }
      .score-left {
        flex-direction: column;
      }
    }