:root {
      --primary: #ff4d00;
      --primary-hover: #e04400;
      --secondary: #2563eb;
      --accent: #7c3aed;
      --accent-cyan: #06b6d4;
      --accent-yellow: #facc15;
      --dark: #0f172a;
      --text-main: #1e293b;
      --text-muted: #64748b;
      --bg-light: #f8fafc;
      --bg-contrast: #fff7ed;
      --card-bg: #ffffff;
      --border-color: #e2e8f0;
      --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 12px 24px -4px rgba(255, 77, 0, 0.12), 0 8px 16px -4px rgba(37, 99, 235, 0.08);
      --radius: 14px;
      --max-w: 1200px;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background-color: var(--bg-light);
      color: var(--text-main);
      line-height: 1.65;
      overflow-x: hidden;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.25s ease;
    }
    .container {
      width: 100%;
      max-width: var(--max-w);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid #ffedd5;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }
    .brand-group {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .logo-wrapper {
      display: flex;
      align-items: center;
      max-height: 48px;
    }
    .ai-page-logo {
      height: 44px;
      width: auto;
      display: block;
      object-fit: contain;
    }
    .brand-text {
      font-size: 20px;
      font-weight: 800;
      color: var(--dark);
      letter-spacing: -0.5px;
    }
    .brand-badge {
      background: linear-gradient(135deg, var(--primary), #ea580c);
      color: #fff;
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 20px;
      font-weight: 700;
      margin-left: 6px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 0;
    }
    .nav-links li a {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
      padding: 8px 12px;
      border-radius: 8px;
      display: inline-block;
      white-space: nowrap;
    }
    .nav-links li a:hover {
      color: var(--primary);
      background-color: #fff1ec;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 15px;
      padding: 10px 22px;
      border-radius: 10px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.25s ease;
      text-align: center;
      line-height: 1;
    }
    .btn-contrast-primary {
      background-color: var(--primary);
      color: #ffffff !important;
      border-color: var(--primary);
      box-shadow: 0 4px 14px rgba(255, 77, 0, 0.35);
    }
    .btn-contrast-primary:hover {
      background-color: var(--primary-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 77, 0, 0.45);
    }
    .btn-contrast-secondary {
      background-color: #1e1b4b;
      color: #ffffff !important;
      border-color: #1e1b4b;
    }
    .btn-contrast-secondary:hover {
      background-color: #312e81;
      transform: translateY(-2px);
    }
    .btn-outline {
      background-color: transparent;
      border-color: var(--primary);
      color: var(--primary) !important;
    }
    .btn-outline:hover {
      background-color: var(--primary);
      color: #ffffff !important;
    }
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }
    .mobile-menu-toggle span {
      width: 24px;
      height: 3px;
      background-color: var(--dark);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .hero-section {
      background: linear-gradient(135deg, #fff3eb 0%, #ffffff 50%, #eff6ff 100%);
      padding: 70px 0 55px;
      position: relative;
      border-bottom: 2px solid #fed7aa;
    }
    .hero-content {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ffedd5;
      color: #c2410c;
      font-size: 13px;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 30px;
      margin-bottom: 20px;
      border: 1px solid #fdba74;
    }
    .hero-title {
      font-size: 38px;
      font-weight: 900;
      line-height: 1.25;
      color: var(--dark);
      margin-bottom: 20px;
      letter-spacing: -0.8px;
    }
    .hero-title span.highlight {
      color: var(--primary);
      background: #ffedd5;
      padding: 0 8px;
      border-radius: 6px;
      display: inline-block;
    }
    .hero-desc {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 34px;
      line-height: 1.7;
    }
    .hero-cta-group {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 44px;
      flex-wrap: wrap;
    }
    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 20px;
    }
    .stat-card {
      background: #ffffff;
      padding: 20px 16px;
      border-radius: var(--radius);
      border: 2px solid #fed7aa;
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: transform 0.25s ease;
    }
    .stat-card:hover {
      transform: translateY(-4px);
      border-color: var(--primary);
    }
    .stat-value {
      font-size: 32px;
      font-weight: 900;
      color: var(--primary);
      line-height: 1.1;
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-main);
    }
    .model-pills-wrap {
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px dashed #cbd5e1;
    }
    .model-pills-title {
      font-size: 13px;
      font-weight: 700;
      color: #64748b;
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .model-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }
    .model-tag {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      color: #334155;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 6px;
      transition: all 0.2s;
    }
    .model-tag:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: #fff7ed;
    }
    .section-spacing {
      padding: 75px 0;
      border-bottom: 1px solid #e2e8f0;
    }
    .section-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px;
    }
    .section-eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--primary);
      background: #ffedd5;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: var(--dark);
      line-height: 1.3;
      margin-bottom: 14px;
    }
    .section-subtitle {
      font-size: 16px;
      color: var(--text-muted);
    }
    .platform-intro-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .platform-intro-card {
      background: #ffffff;
      padding: 30px;
      border-radius: var(--radius);
      border: 2px solid #e2e8f0;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .platform-intro-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: 100%;
      background: var(--primary);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .platform-intro-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: #fdba74;
    }
    .platform-intro-card:hover::before {
      opacity: 1;
    }
    .intro-badge-num {
      width: 42px;
      height: 42px;
      background: #fff7ed;
      color: var(--primary);
      border: 2px solid #fed7aa;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 18px;
    }
    .platform-intro-card h3 {
      font-size: 19px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 10px;
    }
    .platform-intro-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .service-card {
      background: #ffffff;
      border-radius: var(--radius);
      padding: 24px;
      border: 2px solid #e2e8f0;
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .service-card:hover {
      border-color: var(--secondary);
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
    }
    .service-tag {
      align-self: flex-start;
      background: #eff6ff;
      color: var(--secondary);
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 6px;
      margin-bottom: 12px;
    }
    .service-card h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .service-card p {
      font-size: 13.5px;
      color: #475569;
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .service-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 12px;
      border-top: 1px solid #f1f5f9;
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
    }
    .showcase-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
      margin-bottom: 40px;
      background: #ffffff;
      padding: 28px;
      border-radius: var(--radius);
      border: 2px solid #fed7aa;
    }
    .showcase-media-box {
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid #fed7aa;
      background: #f8fafc;
      box-shadow: var(--shadow-sm);
    }
    .showcase-media-box img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }
    .showcase-details h3 {
      font-size: 24px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 14px;
    }
    .showcase-details p {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 20px;
    }
    .feature-check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 24px;
    }
    .feature-check-list li {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .feature-check-list li::before {
      content: "✓";
      color: #ffffff;
      background: #10b981;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 900;
    }
    .gallery-tri-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .gallery-card {
      background: #ffffff;
      border-radius: var(--radius);
      overflow: hidden;
      border: 2px solid #e2e8f0;
    }
    .gallery-img-container {
      width: 100%;
      overflow: hidden;
      background: #f1f5f9;
    }
    .gallery-img-container img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      transition: transform 0.3s;
    }
    .gallery-card:hover .gallery-img-container img {
      transform: scale(1.04);
    }
    .gallery-info {
      padding: 18px;
    }
    .gallery-info h4 {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 6px;
    }
    .gallery-info p {
      font-size: 13px;
      color: var(--text-muted);
    }
    .process-timeline {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
      position: relative;
    }
    .process-step {
      background: #ffffff;
      padding: 22px 14px;
      border-radius: var(--radius);
      border: 2px solid #fed7aa;
      text-align: center;
      position: relative;
    }
    .step-index {
      width: 36px;
      height: 36px;
      margin: 0 auto 12px;
      background: var(--primary);
      color: #fff;
      font-weight: 900;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
    }
    .process-step h4 {
      font-size: 15px;
      font-weight: 800;
      margin-bottom: 6px;
      color: var(--dark);
    }
    .process-step p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .review-score-hero {
      background: linear-gradient(135deg, #ffedd5 0%, #fee2e2 50%, #eff6ff 100%);
      border: 3px solid #fdba74;
      border-radius: var(--radius);
      padding: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
    }
    .score-badge-area {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .score-number {
      font-size: 54px;
      font-weight: 900;
      color: var(--primary);
      line-height: 1;
    }
    .score-meta-text h3 {
      font-size: 22px;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 4px;
    }
    .stars {
      color: #f59e0b;
      font-size: 18px;
      letter-spacing: 2px;
    }
    .table-container {
      width: 100%;
      overflow-x: auto;
      background: #ffffff;
      border-radius: var(--radius);
      border: 2px solid #fed7aa;
      box-shadow: var(--shadow-sm);
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 650px;
    }
    .compare-table th, .compare-table td {
      padding: 16px 20px;
      border-bottom: 1px solid #e2e8f0;
      font-size: 14px;
    }
    .compare-table th {
      background: #fff7ed;
      color: var(--dark);
      font-weight: 800;
    }
    .compare-table tr:last-child td {
      border-bottom: none;
    }
    .compare-table td.highlight-col {
      background: #fffbf5;
      font-weight: 700;
      color: var(--primary);
    }
    .pricing-table-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .price-card {
      background: #ffffff;
      border-radius: var(--radius);
      padding: 26px 20px;
      border: 2px solid #e2e8f0;
      text-align: center;
      transition: all 0.25s;
    }
    .price-card.featured {
      border-color: var(--primary);
      box-shadow: var(--shadow-lg);
      transform: scale(1.02);
      position: relative;
    }
    .featured-ribbon {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      color: #fff;
      font-size: 11px;
      font-weight: 800;
      padding: 3px 12px;
      border-radius: 20px;
      white-space: nowrap;
    }
    .price-card h3 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 10px;
    }
    .price-amount {
      font-size: 30px;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 14px;
    }
    .price-amount span {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
    }
    .price-features {
      list-style: none;
      text-align: left;
      font-size: 13px;
      color: #475569;
      margin: 18px 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .review-card {
      background: #ffffff;
      padding: 24px;
      border-radius: var(--radius);
      border: 2px solid #fed7aa;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .review-text {
      font-size: 14px;
      color: #334155;
      line-height: 1.6;
      margin-bottom: 16px;
      font-style: italic;
    }
    .reviewer-info {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px dashed #fed7aa;
      padding-top: 14px;
    }
    .reviewer-avatar-text {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #f59e0b);
      color: #fff;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }
    .reviewer-meta h4 {
      font-size: 14px;
      font-weight: 800;
      color: var(--dark);
    }
    .reviewer-meta p {
      font-size: 12px;
      color: var(--text-muted);
    }
    .faq-list {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: #ffffff;
      border: 2px solid #fed7aa;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.2s;
    }
    .faq-header {
      padding: 18px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 700;
      font-size: 16px;
      color: var(--dark);
      background: #ffffff;
    }
    .faq-header:hover {
      background: #fffaf5;
      color: var(--primary);
    }
    .faq-icon {
      font-size: 20px;
      font-weight: 700;
      transition: transform 0.25s;
      color: var(--primary);
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    .faq-body {
      padding: 0 22px 18px;
      font-size: 14px;
      color: #475569;
      line-height: 1.65;
      display: none;
      border-top: 1px dashed #fed7aa;
      padding-top: 14px;
    }
    .faq-item.active .faq-body {
      display: block;
    }
    .form-section-wrap {
      background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
      border: 2px solid #fed7aa;
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow-sm);
    }
    .form-grid-layout {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
    }
    .form-desc-box h3 {
      font-size: 26px;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 16px;
    }
    .form-desc-box p {
      font-size: 14.5px;
      color: var(--text-muted);
      margin-bottom: 24px;
    }
    .contact-item-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 14px;
      font-weight: 600;
    }
    .contact-badge {
      background: #ffedd5;
      color: var(--primary);
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 800;
    }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-group label {
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
    }
    .form-control {
      width: 100%;
      padding: 12px 14px;
      border-radius: 8px;
      border: 2px solid #e2e8f0;
      font-size: 14px;
      background: #ffffff;
      outline: none;
      transition: border-color 0.2s;
    }
    .form-control:focus {
      border-color: var(--primary);
    }
    textarea.form-control {
      resize: vertical;
      min-height: 90px;
    }
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .article-card {
      background: #ffffff;
      padding: 22px;
      border-radius: var(--radius);
      border: 2px solid #e2e8f0;
      transition: all 0.25s;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .article-card:hover {
      border-color: var(--primary);
      transform: translateY(-3px);
    }
    .article-tag {
      font-size: 11px;
      font-weight: 700;
      color: var(--primary);
      background: #fff7ed;
      padding: 3px 8px;
      border-radius: 4px;
      display: inline-block;
      margin-bottom: 10px;
    }
    .article-card h3 {
      font-size: 16px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .article-link {
      font-size: 13px;
      font-weight: 700;
      color: var(--secondary);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .article-link:hover {
      color: var(--primary);
    }
    .agent-banner {
      background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
      color: #ffffff;
      padding: 44px;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }
    .agent-info h3 {
      font-size: 26px;
      font-weight: 900;
      margin-bottom: 12px;
    }
    .agent-info p {
      font-size: 15px;
      color: #cbd5e1;
      max-width: 650px;
      line-height: 1.6;
    }
    footer.site-footer {
      background: #ffffff;
      border-top: 3px solid #ffedd5;
      padding: 60px 0 30px;
    }
    .footer-top-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 30px;
      margin-bottom: 40px;
    }
    .footer-col h4 {
      font-size: 16px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 16px;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-links li a {
      font-size: 13.5px;
      color: #475569;
    }
    .footer-links li a:hover {
      color: var(--primary);
    }
    .footer-qr-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .footer-qr-img {
      width: 120px;
      height: 120px;
      border: 2px solid #fed7aa;
      border-radius: 8px;
      padding: 4px;
      background: #ffffff;
    }
    .footer-qr-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .friend-links-box {
      padding: 20px 0;
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
      margin-bottom: 24px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
    }
    .friend-links-label {
      font-size: 13px;
      font-weight: 800;
      color: var(--dark);
    }
    .friend-links-box a {
      font-size: 13px;
      color: var(--text-muted);
      background: #f1f5f9;
      padding: 4px 10px;
      border-radius: 6px;
    }
    .friend-links-box a:hover {
      background: #ffedd5;
      color: var(--primary);
    }
    .copyright-row {
      text-align: center;
      font-size: 13px;
      color: #94a3b8;
    }
    .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;
      border: 2px solid #fed7aa;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--primary);
      font-weight: 800;
      font-size: 13px;
      transition: all 0.25s;
    }
    .float-btn:hover {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
      transform: scale(1.08);
    }
    .qr-modal {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 10001;
    }
    .qr-modal.active {
      display: flex;
    }
    .qr-modal-content {
      background: #fff;
      padding: 24px;
      border-radius: 16px;
      text-align: center;
      max-width: 320px;
      position: relative;
    }
    .qr-modal-close {
      position: absolute;
      top: 10px;
      right: 14px;
      font-size: 20px;
      cursor: pointer;
      color: #64748b;
    }
    @media (max-width: 1024px) {
      .hero-stats-grid, .pricing-table-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .services-grid, .platform-intro-grid, .reviews-grid, .articles-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .process-timeline {
        grid-template-columns: repeat(3, 1fr);
      }
      .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .mobile-menu-toggle {
        display: flex;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 2px solid #fed7aa;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
      }
      .nav-links.show {
        display: flex;
      }
      .nav-links li {
        width: 100%;
      }
      .nav-links li a {
        display: block;
        padding: 12px 16px;
      }
      .hero-title {
        font-size: 28px;
      }
      .hero-stats-grid {
        grid-template-columns: 1fr;
      }
      .showcase-row {
        grid-template-columns: 1fr;
      }
      .services-grid, .platform-intro-grid, .reviews-grid, .articles-grid, .gallery-tri-grid {
        grid-template-columns: 1fr;
      }
      .process-timeline {
        grid-template-columns: 1fr;
      }
      .form-grid-layout {
        grid-template-columns: 1fr;
      }
      .agent-banner {
        flex-direction: column;
        text-align: center;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
      .review-score-hero {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }
      .score-badge-area {
        flex-direction: column;
      }
    }