/* CSS Reset & Variables */
    :root {
      --primary: #4f46e5;
      --primary-hover: #4338ca;
      --accent: #ec4899;
      --accent-gradient: linear-gradient(135deg, #4f46e5 0%, #ec4899 50%, #f97316 100%);
      --vibrant-pink: #f43f5e;
      --vibrant-cyan: #06b6d4;
      --vibrant-amber: #f59e0b;
      --bg-main: #f8fafc;
      --bg-card: #ffffff;
      --bg-alt: #f1f5f9;
      --text-main: #0f172a;
      --text-muted: #475569;
      --text-light: #64748b;
      --border-color: #e2e8f0;
      --border-accent: rgba(79, 70, 229, 0.15);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 22px;
      --radius-full: 9999px;
      --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
      --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
      --shadow-lg: 0 20px 35px -5px rgba(79, 70, 229, 0.12), 0 10px 15px -5px rgba(236, 72, 153, 0.08);
      --shadow-hover: 0 25px 50px -12px rgba(79, 70, 229, 0.22);
      --container-max: 1200px;
      --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-main);
      color: var(--text-main);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

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

    /* Typography */
    h1, h2, h3, h4, h5 {
      color: var(--text-main);
      font-weight: 700;
      line-height: 1.3;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

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

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

    .section-tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 16px;
      background: rgba(79, 70, 229, 0.08);
      color: var(--primary);
      border: 1px solid rgba(79, 70, 229, 0.2);
      border-radius: var(--radius-full);
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 14px;
      letter-spacing: 0.5px;
    }

    .section-title {
      font-size: 2.25rem;
      margin-bottom: 16px;
      letter-spacing: -0.5px;
    }

    .section-desc {
      font-size: 1.05rem;
      color: var(--text-muted);
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 28px;
      border-radius: var(--radius-full);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      border: 2px solid transparent;
      transition: var(--transition);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--accent-gradient);
      color: #ffffff;
      box-shadow: 0 10px 20px rgba(236, 72, 153, 0.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(79, 70, 229, 0.35);
      color: #ffffff;
    }

    .btn-secondary {
      background: #ffffff;
      color: var(--primary);
      border-color: rgba(79, 70, 229, 0.25);
      box-shadow: var(--shadow-sm);
    }

    .btn-secondary:hover {
      background: var(--bg-alt);
      border-color: var(--primary);
      transform: translateY(-2px);
    }

    /* Top Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      transition: var(--transition);
    }

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

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

    .brand-logo-wrap .ai-page-logo {
      height: 38px;
      width: auto;
      display: block;
    }

    .brand-text-block {
      display: flex;
      flex-direction: column;
    }

    .brand-title {
      font-size: 1.25rem;
      font-weight: 800;
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.2;
    }

    .brand-sub {
      font-size: 0.72rem;
      color: var(--text-light);
      font-weight: 500;
    }

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

    .nav-links li a {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text-muted);
      padding: 10px 12px;
      border-radius: var(--radius-sm);
    }

    .nav-links li a:hover,
    .nav-links li a.active {
      color: var(--primary);
      background: rgba(79, 70, 229, 0.05);
    }

    .nav-action {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      color: var(--text-main);
    }

    /* 1. Hero Section (Strictly NO Images) */
    .hero-section {
      position: relative;
      padding: 90px 0 110px 0;
      background: radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.12) 0%, transparent 40%),
                  radial-gradient(circle at 15% 70%, rgba(79, 70, 229, 0.12) 0%, transparent 50%),
                  linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      overflow: hidden;
      border-bottom: 1px solid var(--border-color);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 40px;
      align-items: center;
    }

    .hero-badge-wrap {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 18px;
      background: #ffffff;
      border: 1px solid rgba(236, 72, 153, 0.3);
      border-radius: var(--radius-full);
      box-shadow: 0 4px 12px rgba(236, 72, 153, 0.1);
      margin-bottom: 24px;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--vibrant-pink);
      border-radius: 50%;
      animation: pulse 1.8s infinite;
    }

    .hero-badge-text {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--vibrant-pink);
    }

    .hero-title {
      font-size: 3rem;
      line-height: 1.2;
      margin-bottom: 22px;
      letter-spacing: -1px;
    }

    .hero-highlight {
      background: var(--accent-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-description {
      font-size: 1.15rem;
      color: var(--text-muted);
      margin-bottom: 36px;
      max-width: 580px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 40px;
    }

    .hero-stats-row {
      display: flex;
      gap: 32px;
      padding-top: 24px;
      border-top: 1px solid var(--border-color);
    }

    .hero-stat-item strong {
      display: block;
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--text-main);
    }

    .hero-stat-item span {
      font-size: 0.85rem;
      color: var(--text-light);
    }

    /* Hero Visual Card (CSS Only, No Img) */
    .hero-visual-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(79, 70, 229, 0.12);
      position: relative;
    }

    .visual-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border-color);
    }

    .card-dots {
      display: flex;
      gap: 6px;
    }

    .card-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }
    .dot-red { background: #ef4444; }
    .dot-yellow { background: #f59e0b; }
    .dot-green { background: #10b981; }

    .visual-status-pill {
      font-size: 0.75rem;
      font-weight: 600;
      padding: 4px 10px;
      background: #ecfdf5;
      color: #059669;
      border-radius: var(--radius-full);
    }

    .visual-flow-grid {
      display: grid;
      gap: 14px;
    }

    .flow-step-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      background: var(--bg-alt);
      border-radius: var(--radius-md);
      border-left: 4px solid var(--primary);
    }

    .flow-step-item:nth-child(2) { border-left-color: var(--accent); }
    .flow-step-item:nth-child(3) { border-left-color: var(--vibrant-cyan); }
    .flow-step-item:nth-child(4) { border-left-color: var(--vibrant-amber); }

    .flow-info h4 {
      font-size: 0.95rem;
      margin-bottom: 2px;
    }

    .flow-info p {
      font-size: 0.8rem;
      color: var(--text-light);
    }

    .flow-tag {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary);
      background: #ffffff;
      padding: 4px 10px;
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-sm);
    }

    /* 2. Platform Intro / About */
    .about-section {
      background: #ffffff;
    }

    .about-feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }

    .about-card {
      background: var(--bg-main);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .about-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--accent-gradient);
      opacity: 0;
      transition: var(--transition);
    }

    .about-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: rgba(79, 70, 229, 0.3);
      background: #ffffff;
    }

    .about-card:hover::before {
      opacity: 1;
    }

    .about-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(236, 72, 153, 0.15));
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
    }

    .about-card h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
    }

    .about-card p {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 3. AIGC Models Supported */
    .models-marquee-section {
      background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
      padding: 60px 0;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .model-tags-container {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      max-width: 1050px;
      margin: 0 auto;
    }

    .model-tag {
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 8px 18px;
      border-radius: var(--radius-full);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-muted);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .model-tag:hover {
      border-color: var(--accent);
      color: var(--primary);
      transform: scale(1.05);
      box-shadow: var(--shadow-md);
    }

    /* 4. One-stop creation scenarios */
    .scenarios-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 24px;
    }

    .scenario-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 26px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .scenario-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(236, 72, 153, 0.3);
    }

    .scenario-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .scenario-badge {
      font-size: 0.75rem;
      padding: 4px 10px;
      border-radius: var(--radius-sm);
      background: rgba(79, 70, 229, 0.08);
      color: var(--primary);
      font-weight: 700;
    }

    .scenario-title {
      font-size: 1.15rem;
    }

    .scenario-body {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 18px;
    }

    .scenario-features {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .scenario-features li {
      font-size: 0.8rem;
      color: var(--text-light);
      background: var(--bg-alt);
      padding: 4px 10px;
      border-radius: var(--radius-sm);
    }

    /* 5. Industry Solutions */
    .solutions-section {
      background: #f1f5f9;
    }

    .solutions-tabs-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .solution-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 30px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }

    .solution-card h3 {
      font-size: 1.25rem;
      margin-bottom: 14px;
      color: var(--primary);
    }

    .solution-card p {
      font-size: 0.92rem;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .solution-list {
      list-style: none;
    }

    .solution-list li {
      position: relative;
      padding-left: 20px;
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .solution-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #10b981;
      font-weight: bold;
    }

    /* 6. Standard Workflow (Process) */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      position: relative;
    }

    .process-card {
      background: #ffffff;
      padding: 24px 20px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      text-align: center;
      position: relative;
      box-shadow: var(--shadow-sm);
    }

    .process-num {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--accent-gradient);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      font-weight: 800;
      margin: 0 auto 16px auto;
      box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
    }

    .process-card h4 {
      font-size: 1.05rem;
      margin-bottom: 8px;
    }

    .process-card p {
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.5;
    }

    /* 7. Case Center (With Specified Images) */
    .cases-section {
      background: #ffffff;
    }

    .cases-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .case-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .case-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }

    .case-img-wrap {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: var(--bg-alt);
    }

    .case-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: var(--transition);
    }

    .case-card:hover .case-img-wrap img {
      transform: scale(1.05);
    }

    .case-content {
      padding: 20px;
    }

    .case-content h4 {
      font-size: 1.1rem;
      margin-bottom: 8px;
    }

    .case-content p {
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    /* 8. Comparison Section (9.9 Score & 5 Star) */
    .comparison-section {
      background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    }

    .score-badge-card {
      background: #ffffff;
      border: 2px solid var(--primary);
      border-radius: var(--radius-lg);
      padding: 30px;
      text-align: center;
      max-width: 600px;
      margin: 0 auto 40px auto;
      box-shadow: var(--shadow-lg);
    }

    .stars-row {
      color: #f59e0b;
      font-size: 1.8rem;
      margin-bottom: 8px;
    }

    .score-number {
      font-size: 3.2rem;
      font-weight: 900;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 8px;
    }

    .score-subtitle {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-muted);
    }

    .table-container {
      overflow-x: auto;
      background: #ffffff;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-color);
    }

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

    .comparison-table th, 
    .comparison-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-color);
    }

    .comparison-table th {
      background: var(--bg-alt);
      font-weight: 700;
      font-size: 0.95rem;
    }

    .comparison-table td {
      font-size: 0.9rem;
    }

    .comparison-table tr:hover td {
      background: rgba(79, 70, 229, 0.02);
    }

    .highlight-col {
      background: rgba(79, 70, 229, 0.04);
      font-weight: 600;
      color: var(--primary);
    }

    /* 9. Token Pricing & Calculator */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }

    .pricing-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      position: relative;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .pricing-card.featured {
      border: 2px solid var(--accent);
      box-shadow: var(--shadow-lg);
      transform: scale(1.02);
    }

    .pricing-card:hover {
      box-shadow: var(--shadow-hover);
    }

    .pricing-tier-tag {
      position: absolute;
      top: -14px;
      right: 24px;
      background: var(--accent-gradient);
      color: #ffffff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: var(--radius-full);
    }

    .pricing-name {
      font-size: 1.35rem;
      margin-bottom: 10px;
    }

    .pricing-price {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 16px;
      display: flex;
      align-items: baseline;
      gap: 4px;
    }

    .pricing-price span {
      font-size: 0.9rem;
      color: var(--text-light);
      font-weight: normal;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 28px;
    }

    .pricing-features li {
      font-size: 0.9rem;
      color: var(--text-muted);
      padding: 8px 0;
      border-bottom: 1px dashed var(--border-color);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* 10. Reviews (6 Testimonials) */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
    }

    .review-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 26px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .review-text {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }

    .review-user-info {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--border-color);
      padding-top: 16px;
    }

    .review-avatar-text {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .review-meta h5 {
      font-size: 0.95rem;
      margin-bottom: 2px;
    }

    .review-meta span {
      font-size: 0.8rem;
      color: var(--text-light);
    }

    /* 11. FAQ Accordion (10+ Items) */
    .faq-container {
      max-width: 850px;
      margin: 0 auto;
    }

    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      margin-bottom: 14px;
      overflow: hidden;
      transition: var(--transition);
    }

    .faq-item.active {
      border-color: var(--primary);
      box-shadow: var(--shadow-sm);
    }

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

    .faq-toggle-icon {
      font-size: 1.25rem;
      color: var(--primary);
      transition: transform 0.28s ease;
    }

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

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      background: var(--bg-alt);
    }

    .faq-answer-inner {
      padding: 18px 22px;
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 12. Articles & Resource Shortcode */
    .articles-section {
      background: #ffffff;
      border-top: 1px solid var(--border-color);
    }

    .article-links-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
      justify-content: center;
    }

    .article-link-chip {
      background: var(--bg-alt);
      border: 1px solid var(--border-color);
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      color: var(--text-muted);
      transition: var(--transition);
    }

    .article-link-chip:hover {
      background: #ffffff;
      border-color: var(--primary);
      color: var(--primary);
    }

    /* 13. Contact & Requirement Form */
    .contact-section {
      background: #f8fafc;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      align-items: start;
    }

    .contact-info-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 36px 30px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
    }

    .contact-info-list {
      list-style: none;
      margin: 24px 0;
    }

    .contact-info-item {
      margin-bottom: 18px;
      display: flex;
      flex-direction: column;
    }

    .contact-info-item label {
      font-size: 0.8rem;
      color: var(--text-light);
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .contact-info-item span,
    .contact-info-item a {
      font-size: 1rem;
      color: var(--text-main);
      font-weight: 600;
    }

    .qr-container {
      margin-top: 24px;
      text-align: center;
      padding: 20px;
      background: var(--bg-alt);
      border-radius: var(--radius-md);
    }

    .qr-container img {
      max-width: 140px;
      height: auto;
      border-radius: var(--radius-sm);
      display: block;
      margin: 0 auto 10px auto;
      border: 1px solid var(--border-color);
    }

    .qr-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    /* Requirement Form */
    .form-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 36px 30px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
    }

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

    .form-group label {
      display: block;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--text-main);
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      font-size: 0.95rem;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      background: #ffffff;
      color: var(--text-main);
      transition: var(--transition);
      font-family: inherit;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    }

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

    /* 14. Partner / Franchise */
    .agency-banner {
      background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
      color: #ffffff;
      border-radius: var(--radius-lg);
      padding: 48px 40px;
      margin-top: 50px;
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 30px;
      align-items: center;
    }

    .agency-banner h3 {
      color: #ffffff;
      font-size: 1.8rem;
      margin-bottom: 12px;
    }

    .agency-banner p {
      color: #cbd5e1;
      font-size: 0.95rem;
    }

    .agency-cta-box {
      text-align: right;
    }

    /* Footer */
    .site-footer {
      background: #0f172a;
      color: #94a3b8;
      padding: 60px 0 30px 0;
      border-top: 1px solid #1e293b;
    }

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

    .footer-brand h4 {
      color: #ffffff;
      font-size: 1.3rem;
      margin-bottom: 14px;
    }

    .footer-brand p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: #94a3b8;
    }

    .footer-links-col h5 {
      color: #ffffff;
      font-size: 1rem;
      margin-bottom: 16px;
    }

    .footer-links-list {
      list-style: none;
    }

    .footer-links-list li {
      margin-bottom: 10px;
    }

    .footer-links-list li a {
      color: #94a3b8;
      font-size: 0.875rem;
    }

    .footer-links-list li a:hover {
      color: #ffffff;
      padding-left: 4px;
    }

    .friend-links-wrap {
      padding: 24px 0;
      border-top: 1px solid #1e293b;
      border-bottom: 1px solid #1e293b;
      margin-bottom: 24px;
      font-size: 0.85rem;
    }

    .friend-links-wrap strong {
      color: #e2e8f0;
      margin-right: 12px;
    }

    .friend-links-wrap a {
      color: #94a3b8;
      margin-right: 16px;
      display: inline-block;
      margin-bottom: 6px;
    }

    .friend-links-wrap a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      text-align: center;
      font-size: 0.8rem;
      color: #64748b;
    }

    /* Floating Contact Widget */
    .floating-widget {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #ffffff;
      color: var(--primary);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      cursor: pointer;
      transition: var(--transition);
      position: relative;
    }

    .float-btn:hover {
      background: var(--primary);
      color: #ffffff;
      transform: scale(1.08);
    }

    .float-qr-popover {
      position: absolute;
      right: 60px;
      bottom: 0;
      background: #ffffff;
      padding: 12px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-color);
      display: none;
      width: 150px;
      text-align: center;
    }

    .float-btn:hover .float-qr-popover {
      display: block;
    }

    .float-qr-popover img {
      width: 100%;
      height: auto;
      border-radius: 4px;
      display: block;
      margin-bottom: 6px;
    }

    .float-qr-popover span {
      font-size: 0.75rem;
      color: var(--text-main);
      font-weight: bold;
    }

    /* Animations */
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(1.2); }
    }

    /* Responsive Queries */
    @media (max-width: 992px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
      .hero-title {
        font-size: 2.4rem;
      }
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .agency-banner {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .agency-cta-box {
        text-align: center;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-action .btn-primary {
        display: none;
      }
      .mobile-menu-btn {
        display: block;
      }
      .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid var(--border-color);
        padding: 16px 20px;
        box-shadow: var(--shadow-md);
      }
      .nav-links.mobile-active li {
        width: 100%;
      }
      .nav-links.mobile-active li a {
        display: block;
        padding: 12px;
      }
      .hero-title {
        font-size: 2rem;
      }
      .section-title {
        font-size: 1.8rem;
      }
      .process-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }