:root {
      --candy-pink: #ff6b8b;
      --candy-purple: #845ec2;
      --candy-blue: #2c73d2;
      --candy-cyan: #00c9a7;
      --candy-yellow: #ffc75f;
      --candy-orange: #ff9671;
      --bg-light: #fbfbfe;
      --bg-card: #ffffff;
      --text-main: #2d3142;
      --text-muted: #5c6274;
      --border-color: #edeef5;
      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --shadow-soft: 0 10px 30px rgba(132, 94, 194, 0.08);
      --shadow-hover: 0 16px 36px rgba(132, 94, 194, 0.16);
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 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", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-light);
      background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 107, 139, 0.05) 0%, transparent 35%),
        radial-gradient(circle at 90% 20%, rgba(132, 94, 194, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(0, 201, 167, 0.05) 0%, transparent 45%);
      color: var(--text-main);
      line-height: 1.65;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(237, 238, 245, 0.8);
      transition: var(--transition);
    }

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

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

    .brand-logo-wrap img {
      max-height: 44px;
      width: auto;
      object-fit: contain;
    }

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

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

    .nav-links li a {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-main);
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      transition: var(--transition);
      display: inline-block;
    }

    .nav-links li a:hover {
      color: var(--candy-purple);
      background: rgba(132, 94, 194, 0.08);
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 22px;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      text-align: center;
    }

    .btn-candy {
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-purple));
      color: #ffffff !important;
      box-shadow: 0 6px 18px rgba(255, 107, 139, 0.3);
    }

    .btn-candy:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(255, 107, 139, 0.45);
    }

    .btn-outline {
      background: #ffffff;
      color: var(--candy-purple) !important;
      border: 1.5px solid rgba(132, 94, 194, 0.35);
    }

    .btn-outline:hover {
      background: rgba(132, 94, 194, 0.05);
      border-color: var(--candy-purple);
      transform: translateY(-2px);
    }

    .btn-cyan {
      background: linear-gradient(135deg, var(--candy-cyan), var(--candy-blue));
      color: #ffffff !important;
      box-shadow: 0 6px 18px rgba(0, 201, 167, 0.3);
    }

    .btn-cyan:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(0, 201, 167, 0.45);
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--text-main);
      cursor: pointer;
      padding: 6px;
    }

    .section-wrap {
      padding: 80px 0;
      position: relative;
    }

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

    .section-tag {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-bottom: 14px;
      background: rgba(255, 107, 139, 0.12);
      color: var(--candy-pink);
      border: 1px solid rgba(255, 107, 139, 0.25);
    }

    .section-tag.tag-purple {
      background: rgba(132, 94, 194, 0.12);
      color: var(--candy-purple);
      border-color: rgba(132, 94, 194, 0.25);
    }

    .section-tag.tag-cyan {
      background: rgba(0, 201, 167, 0.12);
      color: var(--candy-cyan);
      border-color: rgba(0, 201, 167, 0.25);
    }

    .section-heading {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 16px;
      line-height: 1.35;
    }

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

    .hero-section {
      padding: 70px 0 60px 0;
      text-align: center;
      position: relative;
    }

    .hero-content {
      max-width: 960px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      background: #ffffff;
      border-radius: 50px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(132, 94, 194, 0.2);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--candy-purple);
      margin-bottom: 24px;
    }

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

    @keyframes pulse {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 201, 167, 0.7); }
      70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 201, 167, 0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 201, 167, 0); }
    }

    .hero-title {
      font-size: 2.8rem;
      font-weight: 900;
      line-height: 1.25;
      margin-bottom: 22px;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }

    .hero-title span {
      background: linear-gradient(120deg, var(--candy-pink), var(--candy-purple), var(--candy-blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 820px;
      margin: 0 auto 36px auto;
      line-height: 1.8;
    }

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

    .btn-hero-primary {
      padding: 14px 34px;
      font-size: 1.1rem;
      border-radius: 50px;
    }

    .hero-metrics-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      background: #ffffff;
      padding: 30px 24px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border-color);
    }

    .metric-item {
      text-align: center;
      border-right: 1px solid var(--border-color);
    }

    .metric-item:last-child {
      border-right: none;
    }

    .metric-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--candy-purple);
      line-height: 1.2;
      margin-bottom: 6px;
    }

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

    .model-tags-wrapper {
      margin-top: 36px;
      background: rgba(255, 255, 255, 0.85);
      border: 1px dashed rgba(132, 94, 194, 0.3);
      padding: 20px;
      border-radius: var(--radius-md);
      text-align: left;
    }

    .model-tags-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--candy-purple);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .model-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .model-chip {
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      color: var(--text-main);
      font-weight: 600;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
      transition: var(--transition);
    }

    .model-chip:hover {
      border-color: var(--candy-pink);
      color: var(--candy-pink);
      transform: translateY(-1px);
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .card {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-soft);
      padding: 28px;
      transition: var(--transition);
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(132, 94, 194, 0.3);
    }

    .card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .icon-pink { background: linear-gradient(135deg, var(--candy-pink), #ff8ea5); }
    .icon-purple { background: linear-gradient(135deg, var(--candy-purple), #a370f7); }
    .icon-cyan { background: linear-gradient(135deg, var(--candy-cyan), #29e2c2); }
    .icon-orange { background: linear-gradient(135deg, var(--candy-orange), var(--candy-yellow)); }
    .icon-blue { background: linear-gradient(135deg, var(--candy-blue), #5193eb); }

    .card-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
    }

    .card-desc {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 16px;
      flex-grow: 1;
    }

    .card-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: auto;
    }

    .badge-pill {
      font-size: 0.75rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 12px;
      background: rgba(132, 94, 194, 0.08);
      color: var(--candy-purple);
    }

    .platform-intro-box {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 40px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-soft);
      margin-bottom: 40px;
    }

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

    .intro-text h3 {
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 16px;
    }

    .intro-text p {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .intro-checklist {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .intro-checklist li {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .intro-checklist li::before {
      content: "✓";
      color: var(--candy-cyan);
      font-weight: 900;
      background: rgba(0, 201, 167, 0.15);
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }

    .intro-media-card {
      background: linear-gradient(145deg, #ffffff, #f7f5fc);
      border-radius: var(--radius-md);
      border: 1px solid rgba(132, 94, 194, 0.2);
      padding: 24px;
      box-shadow: var(--shadow-soft);
    }

    .intro-stat-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 0;
      border-bottom: 1px dashed var(--border-color);
    }

    .intro-stat-item:last-child {
      border-bottom: none;
    }

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

    .process-step-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 30px 22px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-soft);
      position: relative;
      text-align: center;
      transition: var(--transition);
    }

    .process-step-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .step-index {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-purple));
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px auto;
      box-shadow: 0 4px 12px rgba(255, 107, 139, 0.35);
    }

    .step-title {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-main);
    }

    .step-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .evaluation-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 2px solid rgba(132, 94, 194, 0.25);
      box-shadow: var(--shadow-hover);
      padding: 40px;
      margin-bottom: 30px;
    }

    .eval-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border-color);
      margin-bottom: 28px;
    }

    .eval-score-box {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .score-badge {
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-orange));
      color: #ffffff;
      font-size: 2.2rem;
      font-weight: 900;
      padding: 10px 20px;
      border-radius: var(--radius-md);
      line-height: 1;
      box-shadow: 0 6px 18px rgba(255, 107, 139, 0.35);
    }

    .score-stars {
      color: #ffb800;
      font-size: 1.3rem;
      margin-bottom: 4px;
    }

    .score-label {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-main);
    }

    .eval-table-container {
      overflow-x: auto;
    }

    .eval-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    .eval-table th, .eval-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-color);
      font-size: 0.95rem;
    }

    .eval-table th {
      background: rgba(132, 94, 194, 0.05);
      font-weight: 700;
      color: var(--text-main);
    }

    .eval-table tr:last-child td {
      border-bottom: none;
    }

    .highlight-col {
      background: rgba(255, 107, 139, 0.04);
      font-weight: 600;
      color: var(--candy-purple);
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

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

    .gallery-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .gallery-img-wrap {
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #f0f0f5;
    }

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

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

    .gallery-content {
      padding: 20px;
    }

    .gallery-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
    }

    .gallery-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

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

    .review-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(255, 107, 139, 0.3);
    }

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

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

    .review-author {
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--text-main);
    }

    .review-role {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .review-text {
      font-size: 0.95rem;
      color: var(--text-main);
      line-height: 1.65;
      margin-bottom: 16px;
    }

    .review-rating {
      color: #ffb800;
      font-size: 0.9rem;
    }

    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

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

    .faq-question {
      padding: 20px 24px;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      user-select: none;
    }

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

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

    .faq-item.active {
      border-color: rgba(132, 94, 194, 0.4);
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      color: var(--candy-pink);
    }

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

    .form-wrapper-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-hover);
      padding: 40px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
    }

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

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

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

    .form-control:focus {
      border-color: var(--candy-purple);
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(132, 94, 194, 0.12);
    }

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

    .contact-info-panel {
      background: linear-gradient(145deg, #fdf8ff, #f3f6ff);
      padding: 30px;
      border-radius: var(--radius-md);
      border: 1px solid rgba(132, 94, 194, 0.15);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .contact-info-title {
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 18px;
    }

    .contact-meta-list {
      list-style: none;
      margin-bottom: 24px;
    }

    .contact-meta-list li {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-meta-list li strong {
      color: var(--text-main);
    }

    .qr-container {
      text-align: center;
      background: #ffffff;
      padding: 16px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-color);
      max-width: 170px;
      margin: 0 auto;
    }

    .qr-container img {
      width: 100%;
      height: auto;
      border-radius: 6px;
    }

    .qr-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-muted);
      margin-top: 8px;
    }

    .articles-section {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 36px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-soft);
      margin-bottom: 40px;
    }

    .article-links-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 14px;
      margin-top: 20px;
    }

    .article-link-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 16px;
      background: #fbfbfe;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-main);
      transition: var(--transition);
    }

    .article-link-item:hover {
      border-color: var(--candy-cyan);
      color: var(--candy-cyan);
      background: #ffffff;
      transform: translateX(3px);
    }

    .agent-cta-box {
      background: linear-gradient(135deg, #845ec2, #ff6b8b);
      color: #ffffff;
      border-radius: var(--radius-lg);
      padding: 50px 40px;
      text-align: center;
      box-shadow: 0 16px 40px rgba(132, 94, 194, 0.25);
    }

    .agent-cta-box h3 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .agent-cta-box p {
      font-size: 1.1rem;
      max-width: 750px;
      margin: 0 auto 30px auto;
      opacity: 0.95;
      line-height: 1.7;
    }

    .btn-white-hero {
      background: #ffffff;
      color: var(--candy-purple) !important;
      font-weight: 700;
      padding: 14px 36px;
      font-size: 1.05rem;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .btn-white-hero:hover {
      background: #fdf8ff;
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
    }

    .site-footer {
      background: #ffffff;
      border-top: 1px solid var(--border-color);
      padding: 50px 0 30px 0;
      color: var(--text-main);
    }

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

    .footer-col-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 16px;
    }

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

    .footer-links-list a {
      font-size: 0.9rem;
      color: var(--text-muted);
      transition: var(--transition);
    }

    .footer-links-list a:hover {
      color: var(--candy-purple);
    }

    .friend-links-box {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .friend-links-box a {
      font-size: 0.85rem;
      padding: 4px 12px;
      background: #f5f6fa;
      border-radius: 6px;
      color: var(--text-muted);
      transition: var(--transition);
      border: 1px solid transparent;
    }

    .friend-links-box a:hover {
      color: var(--candy-pink);
      border-color: rgba(255, 107, 139, 0.3);
      background: #ffffff;
    }

    .footer-bottom-bar {
      border-top: 1px solid var(--border-color);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .floating-widget {
      position: fixed;
      right: 24px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .float-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #ffffff;
      color: var(--candy-purple);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
      border: 1px solid var(--border-color);
      cursor: pointer;
      transition: var(--transition);
      position: relative;
    }

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

    .float-qr-pop {
      position: absolute;
      right: 60px;
      bottom: 0;
      background: #ffffff;
      padding: 12px;
      border-radius: var(--radius-sm);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      border: 1px solid var(--border-color);
      width: 150px;
      display: none;
      text-align: center;
    }

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

    @media (max-width: 1024px) {
      .grid-4 { grid-template-columns: repeat(2, 1fr); }
      .grid-3 { grid-template-columns: repeat(2, 1fr); }
      .process-timeline { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .reviews-grid { grid-template-columns: repeat(2, 1fr); }
      .intro-grid { grid-template-columns: 1fr; }
      .footer-content-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 2rem; }
      .hero-subtitle { font-size: 1rem; }
      .section-heading { font-size: 1.7rem; }
      .hero-metrics-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .metric-item { border-right: none; }
      .grid-2, .grid-3, .grid-4, .process-timeline, .gallery-grid, .reviews-grid, .form-grid {
        grid-template-columns: 1fr;
      }
      .nav-menu {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-soft);
        padding: 20px;
      }
      .nav-menu.active { display: block; }
      .nav-links { flex-direction: column; width: 100%; align-items: flex-start; }
      .nav-links li { width: 100%; }
      .nav-links li a { width: 100%; padding: 12px 10px; }
      .nav-toggle { display: block; }
      .floating-widget { right: 16px; bottom: 20px; }
    }