:root {
      --primary-yellow: #f59e0b;
      --vibrant-gold: #fbbf24;
      --deep-amber: #d97706;
      --dark-charcoal: #1e293b;
      --body-slate: #334155;
      --soft-cream: #fffbeb;
      --bg-white: #ffffff;
      --border-amber: #fde68a;
      --card-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
      --container-max: 1200px;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      scroll-behavior: smooth;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background-color: var(--soft-cream);
      color: var(--body-slate);
    }
    body {
      background: linear-gradient(180deg, #fffbeb 0%, #ffffff 30%, #fffdf5 70%, #fffbeb 100%);
      line-height: 1.6;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      overflow-x: hidden;
    }
    .main-container {
      width: 100%;
      max-width: var(--container-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 24px;
      padding-right: 24px;
    }
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 2px solid var(--vibrant-gold);
      box-shadow: 0 4px 12px rgba(245, 158, 11, 0.08);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .brand-wrap .ai-page-logo {
      height: 42px;
      width: auto;
      display: block;
    }
    .brand-name {
      font-size: 20px;
      font-weight: 800;
      color: var(--dark-charcoal);
      letter-spacing: -0.5px;
    }
    .brand-badge {
      background: #fef3c7;
      color: var(--deep-amber);
      font-size: 11px;
      padding: 2px 8px;
      border-radius: 999px;
      font-weight: 700;
      border: 1px solid var(--vibrant-gold);
    }
    nav.nav-bar {
      display: flex;
      align-items: center;
    }
    .nav-links {
      display: flex;
      list-style: none;
      align-items: center;
      gap: 0;
    }
    .nav-links li a {
      display: block;
      padding: 8px 14px;
      color: var(--body-slate);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: color 0.2s ease;
    }
    .nav-links li a:hover,
    .nav-links li a.active {
      color: var(--deep-amber);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn-header {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 20px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
    }
    .btn-header-primary {
      background: linear-gradient(135deg, var(--vibrant-gold), var(--primary-yellow));
      color: #78350f;
      border: 1px solid var(--primary-yellow);
      box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
    }
    .btn-header-primary:hover {
      background: linear-gradient(135deg, var(--primary-yellow), var(--deep-amber));
      color: #ffffff;
      transform: translateY(-1px);
    }
    .nav-toggle {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 8px;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--dark-charcoal);
      margin: 5px 0;
      transition: 0.3s;
    }
    .hero-section {
      padding: 72px 0 60px;
      text-align: center;
      position: relative;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: #fef3c7;
      color: #92400e;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 24px;
      border: 1px solid var(--border-amber);
    }
    .hero-tag::before {
      content: "";
      width: 8px;
      height: 8px;
      background: var(--deep-amber);
      border-radius: 50%;
      display: inline-block;
    }
    .hero-title {
      font-size: 42px;
      font-weight: 900;
      color: var(--dark-charcoal);
      line-height: 1.25;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    .hero-title span {
      background: linear-gradient(135deg, #b45309, #d97706);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      border-bottom: 3px solid var(--vibrant-gold);
    }
    .hero-subtitle {
      font-size: 18px;
      color: #475569;
      max-width: 820px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .hero-cta-group {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .btn-main-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 34px;
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: #ffffff;
      font-size: 16px;
      font-weight: 800;
      text-decoration: none;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(217, 119, 6, 0.28);
      transition: all 0.25s ease;
      border: 1px solid #b45309;
    }
    .btn-main-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 24px rgba(217, 119, 6, 0.38);
      background: linear-gradient(135deg, #fbbf24, #d97706);
    }
    .btn-sub-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 30px;
      background: #ffffff;
      color: var(--dark-charcoal);
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      border-radius: 10px;
      border: 2px solid var(--vibrant-gold);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
      transition: all 0.2s ease;
    }
    .btn-sub-cta:hover {
      background: #fef3c7;
      color: var(--deep-amber);
      transform: translateY(-2px);
    }
    .hero-metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 20px;
    }
    .metric-card {
      background: #ffffff;
      padding: 24px 20px;
      border-radius: 12px;
      border: 1px solid var(--border-amber);
      box-shadow: var(--card-shadow);
      text-align: left;
      border-top: 4px solid var(--vibrant-gold);
      transition: transform 0.2s ease;
    }
    .metric-card:hover {
      transform: translateY(-3px);
    }
    .metric-val {
      font-size: 32px;
      font-weight: 900;
      color: var(--deep-amber);
      margin-bottom: 4px;
      line-height: 1;
    }
    .metric-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--dark-charcoal);
      margin-bottom: 4px;
    }
    .metric-desc {
      font-size: 12px;
      color: #64748b;
    }
    .section-block {
      padding: 70px 0;
      border-top: 1px dashed rgba(245, 158, 11, 0.35);
    }
    .section-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 44px;
    }
    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 800;
      color: #b45309;
      text-transform: uppercase;
      letter-spacing: 1px;
      background: #fef3c7;
      padding: 4px 12px;
      border-radius: 6px;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: 30px;
      font-weight: 900;
      color: var(--dark-charcoal);
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .section-desc {
      font-size: 15px;
      color: #64748b;
      line-height: 1.6;
    }
    .model-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 30px;
    }
    .model-pill {
      background: #ffffff;
      border: 1px solid var(--border-amber);
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      color: var(--body-slate);
      box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    }
    .model-pill.hot {
      background: #fffbeb;
      border-color: var(--primary-yellow);
      color: var(--deep-amber);
      font-weight: 700;
    }
    .intro-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .intro-item {
      background: #ffffff;
      padding: 28px;
      border-radius: 12px;
      border: 1px solid var(--border-amber);
      box-shadow: var(--card-shadow);
      transition: all 0.2s ease;
    }
    .intro-item:hover {
      border-color: var(--vibrant-gold);
      transform: translateY(-3px);
    }
    .intro-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: #fef3c7;
      color: var(--deep-amber);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 16px;
    }
    .intro-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--dark-charcoal);
      margin-bottom: 10px;
    }
    .intro-text {
      font-size: 14px;
      color: #64748b;
      line-height: 1.65;
    }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid #fed7aa;
      padding: 24px;
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--vibrant-gold), var(--deep-amber));
    }
    .service-badge {
      font-size: 11px;
      font-weight: 700;
      color: var(--deep-amber);
      background: #fff7ed;
      padding: 2px 8px;
      border-radius: 4px;
      display: inline-block;
      margin-bottom: 12px;
      border: 1px solid #ffedd5;
    }
    .service-name {
      font-size: 17px;
      font-weight: 800;
      color: var(--dark-charcoal);
      margin-bottom: 10px;
    }
    .service-detail {
      font-size: 13px;
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 18px;
    }
    .service-footer {
      border-top: 1px dashed #fed7aa;
      padding-top: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: var(--deep-amber);
      font-weight: 700;
    }
    .media-card-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 24px;
      margin-bottom: 24px;
    }
    .media-box {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid var(--border-amber);
      overflow: hidden;
      box-shadow: var(--card-shadow);
    }
    .media-box-img-wrap {
      width: 100%;
      background: #fef3c7;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .media-box-img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }
    .media-box-content {
      padding: 20px;
    }
    .media-box-title {
      font-size: 16px;
      font-weight: 800;
      color: var(--dark-charcoal);
      margin-bottom: 6px;
    }
    .media-box-desc {
      font-size: 13px;
      color: #64748b;
    }
    .promo-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .promo-item {
      background: #ffffff;
      border: 1px solid var(--border-amber);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--card-shadow);
    }
    .promo-item img {
      width: 100%;
      height: auto;
      display: block;
    }
    .step-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }
    .step-card {
      background: #ffffff;
      padding: 20px 16px;
      border-radius: 10px;
      border: 1px solid var(--border-amber);
      text-align: center;
      position: relative;
    }
    .step-num {
      width: 32px;
      height: 32px;
      margin: 0 auto 12px;
      border-radius: 50%;
      background: var(--vibrant-gold);
      color: #78350f;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 14px;
    }
    .step-title {
      font-size: 15px;
      font-weight: 800;
      color: var(--dark-charcoal);
      margin-bottom: 6px;
    }
    .step-desc {
      font-size: 12px;
      color: #64748b;
      line-height: 1.5;
    }
    .score-banner {
      background: linear-gradient(135deg, #fffbeb, #fef3c7);
      border: 2px solid var(--vibrant-gold);
      border-radius: 12px;
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
    }
    .score-left {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .score-badge-large {
      font-size: 38px;
      font-weight: 900;
      color: #b45309;
      line-height: 1;
    }
    .score-stars {
      color: #d97706;
      font-size: 20px;
      letter-spacing: 2px;
      margin-bottom: 4px;
    }
    .score-text {
      font-size: 14px;
      color: #78350f;
      font-weight: 600;
    }
    .table-wrapper {
      width: 100%;
      overflow-x: auto;
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid var(--border-amber);
      box-shadow: var(--card-shadow);
    }
    .custom-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 14px;
    }
    .custom-table th,
    .custom-table td {
      padding: 16px 20px;
      border-bottom: 1px solid #fef3c7;
    }
    .custom-table th {
      background: #fffbeb;
      font-weight: 800;
      color: var(--dark-charcoal);
    }
    .custom-table tr:last-child td {
      border-bottom: none;
    }
    .custom-table td.highlight {
      background: #fffdf5;
      font-weight: 700;
      color: var(--deep-amber);
    }
    .agent-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .agent-card {
      background: #ffffff;
      padding: 28px;
      border-radius: 12px;
      border: 1px solid var(--border-amber);
      box-shadow: var(--card-shadow);
      border-top: 4px solid var(--deep-amber);
    }
    .agent-card h3 {
      font-size: 18px;
      font-weight: 800;
      color: var(--dark-charcoal);
      margin-bottom: 12px;
    }
    .agent-card p {
      font-size: 13px;
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .review-card {
      background: #ffffff;
      border: 1px solid var(--border-amber);
      border-radius: 12px;
      padding: 24px;
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .review-stars {
      color: var(--primary-yellow);
      margin-bottom: 10px;
      font-size: 14px;
    }
    .review-quote {
      font-size: 14px;
      color: var(--body-slate);
      line-height: 1.65;
      margin-bottom: 20px;
    }
    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #fef3c7;
      padding-top: 12px;
    }
    .author-avatar-badge {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #fde68a;
      color: #92400e;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 14px;
    }
    .author-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--dark-charcoal);
    }
    .author-role {
      font-size: 12px;
      color: #64748b;
    }
    .faq-list {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-amber);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }
    .faq-question {
      width: 100%;
      padding: 18px 20px;
      background: #ffffff;
      border: none;
      text-align: left;
      font-size: 15px;
      font-weight: 700;
      color: var(--dark-charcoal);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.2s ease;
    }
    .faq-question:hover {
      background: #fffdf5;
    }
    .faq-icon-sign {
      font-size: 18px;
      color: var(--deep-amber);
      font-weight: 400;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
      background: #fffdf8;
      border-top: 1px solid #fef3c7;
    }
    .faq-answer-inner {
      padding: 16px 20px;
      font-size: 14px;
      color: #475569;
      line-height: 1.7;
    }
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .article-card-main {
      background: #ffffff;
      border: 1px solid var(--border-amber);
      border-radius: 12px;
      padding: 24px;
      box-shadow: var(--card-shadow);
    }
    .article-links-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .article-links-list li a {
      color: var(--dark-charcoal);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }
    .article-links-list li a:hover {
      color: var(--deep-amber);
    }
    .contact-form-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      background: #ffffff;
      border: 1px solid var(--border-amber);
      border-radius: 16px;
      padding: 36px;
      box-shadow: var(--card-shadow);
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: var(--dark-charcoal);
      margin-bottom: 6px;
    }
    .form-control {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      font-size: 14px;
      color: var(--dark-charcoal);
      outline: none;
      transition: border-color 0.2s;
      background: #f8fafc;
    }
    .form-control:focus {
      border-color: var(--primary-yellow);
      background: #ffffff;
    }
    textarea.form-control {
      resize: vertical;
      min-height: 100px;
    }
    .btn-form-submit {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--vibrant-gold), var(--deep-amber));
      color: #ffffff;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
      transition: transform 0.2s;
    }
    .btn-form-submit:hover {
      transform: translateY(-2px);
    }
    .contact-side-info {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-left: 1px solid #fef3c7;
      padding-left: 36px;
    }
    .qr-container {
      display: flex;
      gap: 20px;
      align-items: center;
      background: #fffbeb;
      padding: 16px;
      border-radius: 12px;
      border: 1px solid var(--border-amber);
      margin-top: 16px;
    }
    .qr-image-wrap {
      width: 110px;
      height: 110px;
      background: #ffffff;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
      border: 1px solid #fed7aa;
    }
    .qr-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .qr-desc h4 {
      font-size: 15px;
      font-weight: 800;
      color: var(--dark-charcoal);
      margin-bottom: 4px;
    }
    .qr-desc p {
      font-size: 12px;
      color: #64748b;
      line-height: 1.5;
    }
    .info-list-side {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
    }
    .info-list-side li {
      font-size: 13px;
      color: var(--body-slate);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .info-list-side strong {
      color: var(--dark-charcoal);
      min-width: 75px;
    }
    .friend-links-box {
      margin-top: 24px;
      padding: 16px 20px;
      background: #ffffff;
      border: 1px solid var(--border-amber);
      border-radius: 10px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
    }
    .friend-links-box span {
      font-size: 13px;
      font-weight: 800;
      color: var(--dark-charcoal);
    }
    .friend-links-box a {
      color: #64748b;
      font-size: 13px;
      text-decoration: none;
      padding: 4px 10px;
      background: #f8fafc;
      border-radius: 6px;
      transition: all 0.2s;
    }
    .friend-links-box a:hover {
      color: var(--deep-amber);
      background: #fffbeb;
    }
    footer.site-footer {
      background: #1e293b;
      color: #94a3b8;
      border-top: 3px solid var(--vibrant-gold);
      padding: 48px 0 32px;
      margin-top: 60px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 32px;
      margin-bottom: 36px;
    }
    .footer-brand h3 {
      font-size: 20px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 12px;
    }
    .footer-brand p {
      font-size: 13px;
      color: #94a3b8;
      max-width: 380px;
      line-height: 1.6;
    }
    .footer-col h4 {
      font-size: 14px;
      font-weight: 700;
      color: #f8fafc;
      margin-bottom: 14px;
    }
    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .footer-col ul li a {
      color: #94a3b8;
      font-size: 13px;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover {
      color: var(--vibrant-gold);
    }
    .footer-bottom {
      border-top: 1px solid #334155;
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #64748b;
    }
    .footer-bottom a {
      color: #94a3b8;
      text-decoration: none;
    }
    .footer-bottom a:hover {
      color: var(--vibrant-gold);
    }
    .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: var(--vibrant-gold);
      color: #78350f;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      border: 2px solid #ffffff;
      cursor: pointer;
      text-decoration: none;
      font-weight: 800;
      font-size: 13px;
      transition: transform 0.2s;
    }
    .float-btn:hover {
      transform: scale(1.08);
    }
    @media (max-width: 1024px) {
      .hero-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .intro-grid,
      .service-grid,
      .agent-grid,
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .step-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .promo-row {
        grid-template-columns: 1fr;
      }
      .media-card-grid {
        grid-template-columns: 1fr;
      }
      .footer-top {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 2px solid var(--vibrant-gold);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
      }
      .nav-links.show {
        display: flex;
      }
      .nav-toggle {
        display: block;
      }
      .hero-title {
        font-size: 28px;
      }
      .intro-grid,
      .service-grid,
      .agent-grid,
      .reviews-grid,
      .articles-grid {
        grid-template-columns: 1fr;
      }
      .step-grid {
        grid-template-columns: 1fr;
      }
      .contact-form-wrap {
        grid-template-columns: 1fr;
        padding: 20px;
      }
      .contact-side-info {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #fef3c7;
        padding-top: 24px;
      }
      .score-banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
      }
      .score-left {
        flex-direction: column;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }
    }