/* -------------------------------------------------------------
       多彩涂鸦风企业官网 (Playful Modern Tech / Colorful Accent Style)
       - Light background, bold clean typography, energetic accent badges
       - High contrast readability, rigid containers, zero global distortion
    ------------------------------------------------------------- */
    :root {
      --bg-page: #F8F9FD;
      --bg-card: #FFFFFF;
      --text-main: #1A1D2D;
      --text-sub: #4A4F68;
      --text-muted: #7E84A3;

      /* Primary Brand Colors - Colorful Graffiti Palette */
      --color-pop-blue: #2563EB;
      --color-pop-purple: #7C3AED;
      --color-pop-pink: #EC4899;
      --color-pop-amber: #F59E0B;
      --color-pop-green: #10B981;
      --color-pop-cyan: #06B6D4;

      --border-color: #E2E8F0;
      --border-accent: #1A1D2D;
      --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
      --shadow-card: 0 10px 25px -5px rgba(30, 41, 59, 0.08);
      --shadow-pop: 4px 4px 0px #1A1D2D;

      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-full: 9999px;

      --container-max: 1240px;
    }

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

    html {
      scroll-behavior: smooth;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
      background-color: var(--bg-page);
      color: var(--text-main);
      line-height: 1.6;
    }

    body {
      background-color: var(--bg-page);
      overflow-x: hidden;
    }

    /* Container Standard */
    .container {
      width: 100%;
      max-width: var(--container-max);
      margin: 0 auto;
      padding-left: 20px;
      padding-right: 20px;
    }

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

    /* Top Utility Notice */
    .utility-bar {
      background: var(--text-main);
      color: #FFF;
      font-size: 13px;
      padding: 8px 0;
      text-align: center;
      font-weight: 500;
    }
    .utility-bar a {
      color: #FCD34D;
      text-decoration: underline;
      margin-left: 6px;
    }

    /* Header Nav */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--text-main);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }
    .brand-logo-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .brand-logo-wrap img.ai-page-logo {
      height: 42px;
      width: auto;
      object-fit: contain;
    }
    .brand-title-badge {
      background: #FEF08A;
      color: #1A1D2D;
      font-weight: 800;
      font-size: 13px;
      padding: 2px 8px;
      border-radius: 6px;
      border: 1.5px solid var(--text-main);
    }

    /* Navigation Links Container with gap: 0 requirement */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0; /* STRICT REQUIREMENT: gap: 0 */
      list-style: none;
    }
    .nav-links li a {
      padding: 10px 14px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
      border-radius: var(--radius-sm);
      display: inline-block;
    }
    .nav-links li a:hover {
      background: #F1F5F9;
      color: var(--color-pop-blue);
    }
    .nav-links li a.ai-page-home-link {
      background: #E0E7FF;
      color: #4338CA;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 700;
      border-radius: var(--radius-md);
      cursor: pointer;
      border: 2px solid var(--text-main);
      box-shadow: 3px 3px 0px var(--text-main);
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
      white-space: nowrap;
    }
    .btn:hover {
      transform: translate(-2px, -2px);
      box-shadow: 5px 5px 0px var(--text-main);
    }
    .btn:active {
      transform: translate(1px, 1px);
      box-shadow: 2px 2px 0px var(--text-main);
    }
    .btn-primary {
      background: var(--color-pop-amber);
      color: var(--text-main);
    }
    .btn-accent {
      background: var(--color-pop-blue);
      color: #FFFFFF;
    }
    .btn-secondary {
      background: #FFFFFF;
      color: var(--text-main);
    }

    /* Mobile Nav Toggle */
    .mobile-toggle {
      display: none;
      background: none;
      border: 2px solid var(--text-main);
      padding: 6px 10px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
    }

    /* Section Global Styles */
    section.page-section {
      padding: 70px 0;
      position: relative;
      border-bottom: 1px solid var(--border-color);
    }
    .section-head {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px auto;
    }
    .tag-badge {
      display: inline-block;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-radius: var(--radius-full);
      border: 2px solid var(--text-main);
      box-shadow: 2.5px 2.5px 0px var(--text-main);
      margin-bottom: 14px;
      background: #FEF08A;
      color: var(--text-main);
    }
    .tag-purple { background: #DDD6FE; }
    .tag-green { background: #A7F3D0; }
    .tag-pink { background: #FBCFE8; }
    .tag-cyan { background: #A5F3FC; }

    .section-title {
      font-size: 32px;
      font-weight: 900;
      color: var(--text-main);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .section-desc {
      font-size: 16px;
      color: var(--text-sub);
    }

    /* ---------------- HERO SECTION (NO IMAGES AT ALL) ---------------- */
    .hero-section {
      background: linear-gradient(135deg, #FFFBEB 0%, #EFF6FF 50%, #F5F3FF 100%);
      padding: 70px 0 80px 0;
      border-bottom: 2.5px solid var(--text-main);
      position: relative;
      overflow: hidden;
    }
    .hero-layout {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 40px;
      align-items: center;
    }
    .hero-content h1 {
      font-size: 38px;
      font-weight: 900;
      line-height: 1.25;
      color: var(--text-main);
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    .hero-content h1 span.highlight {
      background: #FDE047;
      padding: 0 8px;
      border-radius: 6px;
      border: 2px solid var(--text-main);
      display: inline-block;
      box-shadow: 3px 3px 0px var(--text-main);
    }
    .hero-lead {
      font-size: 17px;
      color: var(--text-sub);
      margin-bottom: 30px;
      line-height: 1.7;
    }
    .hero-btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 36px;
    }
    .hero-feature-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .hero-pill {
      font-size: 13px;
      font-weight: 700;
      padding: 6px 14px;
      background: #FFFFFF;
      border: 1.5px solid var(--text-main);
      border-radius: var(--radius-full);
      box-shadow: 2px 2px 0px var(--text-main);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .hero-pill::before {
      content: '★';
      color: var(--color-pop-amber);
    }

    /* Hero Right Visual: Data Code Canvas Box (Zero Image Requirement) */
    .hero-code-card {
      background: #FFFFFF;
      border: 2.5px solid var(--text-main);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: 7px 7px 0px var(--text-main);
      position: relative;
    }
    .code-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 2px solid var(--border-color);
      padding-bottom: 12px;
      margin-bottom: 18px;
    }
    .dots {
      display: flex;
      gap: 6px;
    }
    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 1px solid var(--text-main);
    }
    .dot-red { background: #EF476F; }
    .dot-yellow { background: #FFD166; }
    .dot-green { background: #06D6A0; }
    .code-card-title {
      font-size: 12px;
      font-weight: 800;
      color: var(--text-muted);
      font-family: monospace;
    }

    .matrix-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .stat-box {
      background: #F8FAFC;
      border: 1.5px solid var(--text-main);
      padding: 16px;
      border-radius: var(--radius-md);
      box-shadow: 3px 3px 0px var(--text-main);
    }
    .stat-box .num {
      font-size: 26px;
      font-weight: 900;
      color: var(--color-pop-blue);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-box .label {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-sub);
    }

    .model-chips-wrap {
      margin-top: 16px;
      background: #EEF2FF;
      border: 1.5px solid #818CF8;
      padding: 12px;
      border-radius: var(--radius-md);
    }
    .model-chips-title {
      font-size: 11px;
      font-weight: 800;
      color: #3730A3;
      margin-bottom: 8px;
      text-transform: uppercase;
    }
    .chips-inline {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .chip {
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      background: #FFFFFF;
      border: 1px solid #4338CA;
      border-radius: 4px;
      color: #312E81;
    }

    /* ---------------- PLATFORM OVERVIEW / ABOUT ---------------- */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    .about-card {
      background: #FFFFFF;
      border: 2px solid var(--text-main);
      border-radius: var(--radius-md);
      padding: 30px;
      box-shadow: 5px 5px 0px var(--text-main);
    }
    .about-card h3 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .about-card p {
      color: var(--text-sub);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .feature-list {
      list-style: none;
    }
    .feature-list li {
      position: relative;
      padding-left: 24px;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
    }
    .feature-list li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: var(--color-pop-green);
      font-weight: 900;
    }

    /* ---------------- SERVICES GRID (27 SCENARIOS) ---------------- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }
    .service-card {
      background: #FFFFFF;
      border: 2px solid var(--text-main);
      border-radius: var(--radius-md);
      padding: 22px;
      box-shadow: 4px 4px 0px var(--text-main);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 6px 6px 0px var(--text-main);
    }
    .service-badge {
      align-self: flex-start;
      font-size: 11px;
      font-weight: 800;
      padding: 3px 10px;
      border-radius: 4px;
      border: 1px solid var(--text-main);
      margin-bottom: 12px;
    }
    .sb-blue { background: #BFDBFE; color: #1E3A8A; }
    .sb-pink { background: #FBCFE8; color: #831843; }
    .sb-purple { background: #DDD6FE; color: #4C1D95; }
    .sb-yellow { background: #FEF08A; color: #713F12; }
    .sb-green { background: #A7F3D0; color: #064E3B; }

    .service-card h4 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--text-main);
    }
    .service-card p {
      font-size: 13.5px;
      color: var(--text-sub);
      line-height: 1.6;
    }

    /* Media Banner Section */
    .media-banner-block {
      background: #FFFFFF;
      border: 2.5px solid var(--text-main);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: 6px 6px 0px var(--text-main);
      margin-top: 40px;
      text-align: center;
    }
    .media-banner-block h3 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .banner-img-group {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 16px;
    }
    .banner-img-group img.ai-page-image {
      width: 100%;
      border-radius: var(--radius-sm);
      border: 2px solid var(--text-main);
      box-shadow: 3px 3px 0px var(--text-main);
      object-fit: cover;
    }

    /* ---------------- ONE-STOP CREATION / WORKFLOW ---------------- */
    .creation-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
    }
    .creation-box {
      background: #FFFFFF;
      border: 2px solid var(--text-main);
      border-radius: var(--radius-md);
      padding: 28px;
      box-shadow: 5px 5px 0px var(--text-main);
    }

    /* ---------------- INDUSTRY SOLUTIONS ---------------- */
    .solutions-tabs {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .solution-item {
      background: #FFFFFF;
      border: 2px solid var(--text-main);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: 4px 4px 0px var(--text-main);
    }
    .solution-item h4 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--color-pop-purple);
    }

    /* ---------------- SERVICE NETWORK & TIMELINE ---------------- */
    .network-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 30px;
      align-items: start;
    }
    .network-info {
      background: #FEF3C7;
      border: 2px solid var(--text-main);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: 4px 4px 0px var(--text-main);
    }
    .timeline-wrap {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .timeline-card {
      background: #FFFFFF;
      border: 2px solid var(--text-main);
      border-radius: var(--radius-md);
      padding: 18px 24px;
      box-shadow: 3px 3px 0px var(--text-main);
      display: flex;
      gap: 20px;
      align-items: center;
    }
    .timeline-step {
      font-size: 20px;
      font-weight: 900;
      background: var(--color-pop-amber);
      color: var(--text-main);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid var(--text-main);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* ---------------- RATING & COMPARISON ---------------- */
    .rating-hero-box {
      background: linear-gradient(135deg, #ECFDF5 0%, #EFF6FF 100%);
      border: 2.5px solid var(--text-main);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: 6px 6px 0px var(--text-main);
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }
    .rating-score-group {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .score-badge-large {
      font-size: 48px;
      font-weight: 900;
      color: var(--color-pop-blue);
      line-height: 1;
    }
    .stars {
      color: #F59E0B;
      font-size: 24px;
      letter-spacing: 2px;
    }

    .table-container {
      width: 100%;
      overflow-x: auto;
      border: 2.5px solid var(--text-main);
      border-radius: var(--radius-md);
      box-shadow: 5px 5px 0px var(--text-main);
      background: #FFFFFF;
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 650px;
    }
    .compare-table th, .compare-table td {
      padding: 16px 20px;
      border-bottom: 1.5px solid var(--border-color);
      border-right: 1.5px solid var(--border-color);
      font-size: 14px;
    }
    .compare-table th {
      background: #F1F5F9;
      font-weight: 800;
      color: var(--text-main);
    }
    .compare-table tr:hover {
      background: #FAF5FF;
    }
    .highlight-col {
      background: #FEFCE8;
      font-weight: 700;
      color: #854D0E;
    }

    /* ---------------- TOKEN PRICING REFERENCE ---------------- */
    .token-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }
    .token-card {
      background: #FFFFFF;
      border: 2px solid var(--text-main);
      border-radius: var(--radius-md);
      padding: 22px;
      box-shadow: 4px 4px 0px var(--text-main);
    }
    .token-price {
      font-size: 22px;
      font-weight: 900;
      color: var(--color-pop-green);
      margin: 10px 0;
    }

    /* ---------------- FAQ ACCORDION ---------------- */
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .faq-item {
      background: #FFFFFF;
      border: 2px solid var(--text-main);
      border-radius: var(--radius-md);
      box-shadow: 3.5px 3.5px 0px var(--text-main);
      overflow: hidden;
    }
    .faq-question {
      padding: 18px 20px;
      font-weight: 800;
      font-size: 15px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #FFFFFF;
      user-select: none;
    }
    .faq-question:hover {
      background: #F8FAFC;
    }
    .faq-answer {
      padding: 0 20px 18px 20px;
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.6;
      display: none;
      border-top: 1px dashed var(--border-color);
    }
    .faq-item.active .faq-answer {
      display: block;
    }
    .faq-icon {
      font-size: 18px;
      font-weight: 900;
      transition: transform 0.2s ease;
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    /* ---------------- USER REVIEWS (6 CARDS) ---------------- */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .review-card {
      background: #FFFFFF;
      border: 2px solid var(--text-main);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: 4px 4px 0px var(--text-main);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .reviewer-info {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }
    .reviewer-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid var(--text-main);
      background: #FED7AA;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: var(--text-main);
    }
    .reviewer-detail h5 {
      font-size: 15px;
      font-weight: 800;
    }
    .reviewer-detail p {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* ---------------- CASES & ARTICLES ---------------- */
    .articles-wrap {
      background: #FFFFFF;
      border: 2px solid var(--text-main);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: 4px 4px 0px var(--text-main);
      margin-top: 30px;
    }
    .article-links-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 14px;
    }
    .article-link-tag {
      background: #EFF6FF;
      border: 1.5px solid var(--color-pop-blue);
      padding: 8px 14px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 700;
      color: var(--color-pop-blue);
    }

    /* ---------------- FORM & CONTACT ---------------- */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
    .form-card {
      background: #FFFFFF;
      border: 2.5px solid var(--text-main);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: 6px 6px 0px var(--text-main);
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 6px;
    }
    .form-control {
      width: 100%;
      padding: 12px 14px;
      border: 2px solid var(--text-main);
      border-radius: var(--radius-sm);
      font-size: 14px;
      outline: none;
      background: #F8FAFC;
    }
    .form-control:focus {
      background: #FFFFFF;
      border-color: var(--color-pop-blue);
    }
    textarea.form-control {
      min-height: 100px;
      resize: vertical;
    }

    .contact-info-card {
      background: #FEF3C7;
      border: 2.5px solid var(--text-main);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: 6px 6px 0px var(--text-main);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .qr-group {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 16px;
      background: #FFFFFF;
      padding: 16px;
      border-radius: var(--radius-md);
      border: 2px solid var(--text-main);
    }
    .qr-group img {
      width: 110px;
      height: 110px;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid var(--text-main);
    }

    /* ---------------- FOOTER & FRIEND LINKS ---------------- */
    .site-footer {
      background: var(--text-main);
      color: #E2E8F0;
      padding: 50px 0 20px 0;
      border-top: 3px solid var(--text-main);
    }
    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 30px;
      margin-bottom: 40px;
    }
    .footer-col h5 {
      color: #FFFFFF;
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 8px;
      font-size: 13.5px;
    }
    .footer-links li a {
      color: #94A3B8;
    }
    .footer-links li a:hover {
      color: #FFFFFF;
    }

    .friend-links-box {
      border-top: 1px solid #334155;
      padding-top: 20px;
      margin-bottom: 20px;
      font-size: 13px;
    }
    .friend-links-box span {
      color: #94A3B8;
      margin-right: 10px;
      font-weight: bold;
    }
    .friend-links-box a {
      color: #CBD5E1;
      margin-right: 16px;
      display: inline-block;
    }
    .friend-links-box a:hover {
      color: #FCD34D;
    }

    .footer-bottom {
      text-align: center;
      border-top: 1px solid #334155;
      padding-top: 20px;
      font-size: 13px;
      color: #64748B;
    }

    /* Floating Widget */
    .floating-widget {
      position: fixed;
      right: 20px;
      bottom: 25px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .float-btn {
      width: 50px;
      height: 50px;
      background: var(--color-pop-amber);
      border: 2px solid var(--text-main);
      border-radius: 50%;
      box-shadow: 3px 3px 0px var(--text-main);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 13px;
      cursor: pointer;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .hero-layout, .about-grid, .creation-layout, .network-grid, .contact-grid, .faq-grid {
        grid-template-columns: 1fr;
      }
      .footer-content {
        grid-template-columns: 1fr 1fr;
      }
      .section-title {
        font-size: 26px;
      }
      .hero-content h1 {
        font-size: 30px;
      }
    }
    @media (max-width: 768px) {
      .mobile-toggle {
        display: block;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 16px;
        border-bottom: 2px solid var(--text-main);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
      }
      .nav-links.active {
        display: flex;
      }
      .nav-links li a {
        width: 100%;
        padding: 12px;
      }
      .footer-content {
        grid-template-columns: 1fr;
      }
    }