:root {
    --primary-color: #cba87c;
    --primary-dark: #966736;
    --text-dark: #5a4a42;
    --text-light: #37312c;
    --bg-light: #fbf9f6;
    --bg-beige: #f0e9dd;
  }

  body, html {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    color: var(--text-dark);
    background: linear-gradient(to bottom, #fdfcf9 0%, #f4eee3 30%, #e9dfcc 100%);
    min-height: 100vh;
  }

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

  * {
    box-sizing: border-box;
  }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Header */
  header {
    background-color: transparent;
    padding: 15px 0;
  }

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

  .logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo-icon {
    width: 50px;
    height: 45px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .logo-text h1 {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 1px;
  }

  .logo-text p {
    margin: 2px 0 0;
    font-size: 10px;
    color: #888;
    letter-spacing: 0.5px;
  }

  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }

  nav li {
    display: flex;
    align-items: center;
  }

  nav li:not(:last-child)::after {
    content: '';
    display: block;
    width: 1px;
    height: 12px;
    background-color: #d4c5b4;
    margin: 0 20px;
  }

  nav {
    position: relative;
  }

  nav ul {
    position: relative;
  }

  nav a {
    font-size: 14px;
    color: var(--text-dark);
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
  }

  nav a:hover, nav a.active {
    color: var(--primary-dark);
  }

  nav .nav-indicator {
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, transparent, var(--primary-dark), transparent);
    border-radius: 999px;
    transition: transform 0.38s var(--ease-luxury), width 0.38s var(--ease-luxury), opacity 0.25s ease;
    opacity: 0;
    pointer-events: none;
    will-change: transform, width;
  }

  nav a.active::after {
    content: none;
  }

  /* Hero Section */
  .hero {
    position: relative;
    height: 420px;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(245,240,230,0.95) 0%, rgba(245,240,230,0.5) 45%, rgba(245,240,230,0) 100%);
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding-left: 20px;
  }

  .hero-content h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin: 0 0 15px;
    font-weight: 500;
    line-height: 1.4;
  }

  .hero-content p {
    font-size: 16px;
    color: var(--text-dark);
    margin-top: 15px;
    letter-spacing: 1px;
  }

  .hero-actions {
    margin-top: 26px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    display: inline-block;
    padding: 11px 22px;
    border-radius: 24px;
    font-size: 14px;
    transition: all 0.25s ease;
  }

  .btn-primary {
    background: linear-gradient(to bottom, #bd8b57, #966736);
    color: #fff;
    box-shadow: 0 6px 14px rgba(150, 103, 54, 0.22);
  }

  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(150, 103, 54, 0.28);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.76);
    color: var(--text-dark);
    border: 1px solid rgba(150, 103, 54, 0.2);
  }

  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.92);
  }

  /* Section Titles */
  .section-title {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
  }

  .section-title h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin: 0 0 5px;
    font-weight: 500;
  }

  .section-title span {
    font-size: 13px;
    color: var(--primary-color);
    font-style: italic;
  }
  
  .section-title::before,
  .section-title::after {
    content: "";
    position: absolute;
    top: 16px;
    width: 30%;
    height: 1px;
  }
  .section-title::before {
    left: 8%;
    background: linear-gradient(to right, transparent, #d8cbb8);
  }
  .section-title::after {
    right: 8%;
    background: linear-gradient(to left, transparent, #d8cbb8);
  }

  /* Expert Team */
  .experts-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 25px;
  }

  .expert-card {
    background: #fff;
    width: 23%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
    padding-bottom: 25px;
  }

  .expert-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  .expert-name {
    font-size: 20px;
    font-weight: 500;
    margin: 8px 0 8px 0px;
    color: var(--text-dark);
  }

  .expert-title {
    display: inline-block;
    background: linear-gradient(to right, #f4e8d3, #dec4a6);
    color: #6a5342;
    padding: 3px 18px;
    font-size: 13px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .expert-desc {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
  }

  .expert-small {
    font-size: 11px;
    color: var(--text-light);
    margin: 8px 0;
  }

  /* Services */
  .services-grid {
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }

  .service-card {
    position: relative;
    overflow: hidden;
    width: 23%;
    border-radius: 18px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    background: linear-gradient(160deg, rgba(255,255,255,0.92), rgba(245,233,216,0.96));
    border: 1px solid rgba(203, 168, 124, 0.25);
  }

  .service-icon {
    font-size: 42px;
    background: linear-gradient(#cba87c, #966736);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .service-card::before {
    content: "";
    position: absolute;
    inset: auto -20% -45% -20%;
    height: 62%;
    background: radial-gradient(circle at center, rgba(203, 168, 124, 0.22), transparent 68%);
    transform: rotate(-8deg);
    transition: transform 0.5s var(--ease-luxury), opacity 0.5s var(--ease-soft);
    opacity: 0.9;
  }

  .service-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
  }

  .service-card:hover::before {
    transform: rotate(0deg) scale(1.04);
  }

  .service-card h4 {
    font-size: 18px;
    margin: 0 0 12px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
  }

  .service-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
  }

  /* Process Section */
  .process-timeline {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 10px 0 18px;
  }

  .process-timeline::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(203, 168, 124, 0.15), rgba(150, 103, 54, 0.9), rgba(203, 168, 124, 0.15));
    box-shadow: 0 0 22px rgba(150, 103, 54, 0.18);
    animation: timelineFlow 3.6s linear infinite;
    background-size: 100% 200%;
  }

  .process-step-card {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 12px 16px 12px 0;
  }

  .process-step-card::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 28px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #b68450;
    box-shadow: 0 0 0 8px rgba(182, 132, 80, 0.12), 0 0 20px rgba(182, 132, 80, 0.25);
    z-index: 2;
    animation: timelineDot 3.2s ease-in-out infinite;
  }

  .process-step-card::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(247, 236, 221, 0.58));
    border: 1px solid rgba(203, 168, 124, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    transform: translateX(0);
    transition: transform 0.45s var(--ease-luxury), box-shadow 0.45s var(--ease-luxury);
    z-index: 0;
  }

  .process-step-card:hover::after {
    transform: translateX(6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  }

  .process-step-badge {
    position: relative;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d7ba92, #b68450 55%, #8f6339);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(150, 103, 54, 0.24);
    animation: processPulse 3.4s ease-in-out infinite;
  }

  .process-step-content {
    position: relative;
    z-index: 2;
    padding: 4px 8px 4px 2px;
  }

  .process-step-content h4 {
    margin: 0 0 8px;
    font-size: 17px;
    color: var(--text-dark);
    font-weight: 500;
  }

  .process-step-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.75;
    color: var(--text-light);
  }

  @keyframes processPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
  }

  @keyframes timelineDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.16); opacity: 0.88; }
  }

  @keyframes timelineFlow {
    0% { background-position: 0 0; }
    100% { background-position: 0 200%; }
  }

  /* FAQ Section */
  .faq-section {
    margin-top: 6px;
    position: relative;
    isolation: isolate;
    padding: 22px 8px 8px 8px;
  }

  .faq-list {
    display: grid;
    gap: 12px;
  }

  .faq-item {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(203, 168, 124, 0.28);
    border-radius: 6px;
    padding: 0 18px;
    overflow: hidden;
  }

  .faq-item summary {
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    padding: 16px 24px 16px 0;
    position: relative;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-dark);
    font-size: 18px;
    line-height: 1;
  }

  .faq-item[open] summary::after {
    content: "−";
  }

  .faq-item p {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
  }

  /* Contact Section */
  .contact-section {
    max-width: 900px;
    margin: 60px auto 80px;
    position: relative;
    isolation: isolate;
    padding: 24px 0 12px;
  }

  .contact-title {
    margin-bottom: 25px;
  }

  .contact-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-dark);
    margin: -10px 0 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-subtitle::before,
  .contact-subtitle::after {
    content: "-";
    margin: 0 8px;
    color: var(--primary-color);
  }

  .contact-container {
    display: flex;
    gap: 30px;
  }

  .contact-info {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .info-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
    padding: 5px 20px;
    margin: 0 10px;
    border-radius: 40px;
    border: 1px solid rgba(203, 168, 124, 0.3);
  }

  .info-icon {
    width: 38px;
    height: 38px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
  
  .info-label {
    margin-left: 15px;
    flex-grow: 1;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
  }
  
  .info-value {
    color: var(--text-dark);
    font-size: 13px;
  }

  .contact-form {
    flex: 0.8;
    background: #e8dccb;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  .contact-form input,
.contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #dcd0c0;
    border-radius: 2px;
    background: #fff;
    font-family: inherit;
    font-size: 13px;
    color: var(--text-dark);
    outline: none;
  }

.contact-method-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #9a6735 50%), linear-gradient(135deg, #9a6735 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

  .contact-form textarea {
    height: 90px;
    resize: none;
  }

  .contact-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to bottom, #bd8b57, #966736);
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.3s;
  }

  .contact-form button:hover {
    opacity: 0.9;
  }

  @media (max-width: 960px) {
    header {
      padding: 12px 0 10px;
    }

    .header-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    .logo-area {
      gap: 8px;
    }

    .logo-icon {
      width: 42px;
      height: 38px;
      flex: 0 0 auto;
    }

    .logo-text h1 {
      font-size: 18px;
      line-height: 1.2;
    }

    .logo-text p {
      font-size: 9px;
    }

    nav {
      width: 100%;
    }

    nav ul {
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 0;
    }

    nav li:not(:last-child)::after {
      margin: 0 12px;
    }

    .hero {
      min-height: auto;
      padding: 34px 0 52px;
      background-position: center top;
    }

    .hero-layout {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .hero-content {
      padding-left: 0;
      max-width: 100%;
    }

    .hero-content h2 {
      font-size: 32px;
    }

    .hero-content p {
      font-size: 15px;
      max-width: 100%;
    }

    .hero-panel {
      max-width: 100%;
      padding: 20px 18px;
    }

    .hero-subline {
      bottom: 14px;
    }

    .trust-strip {
      margin-top: -20px;
      margin-bottom: 26px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .transition-section {
      margin: 6px auto 14px;
    }

    .transition-text {
      padding: 0;
    }

    .transition-text h3 {
      font-size: 20px;
    }

    .transition-text p {
      font-size: 13px;
    }

    .experts-grid,
    .services-grid {
      flex-wrap: wrap;
    }

    .expert-card,
    .service-card {
      width: calc(50% - 10px);
    }

    .expert-card img {
      height: 190px;
    }

    .process-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-container {
      flex-direction: column;
    }
  }

  @media (max-width: 600px) {
    .header-content {
      gap: 10px;
    }

    .logo-area {
      align-items: flex-start;
    }

    .logo-icon {
      width: 36px;
      height: 32px;
    }

    .logo-text h1 {
      font-size: 16px;
    }

    .logo-text p {
      font-size: 8px;
    }

    nav ul {
      gap: 6px 0;
    }

    nav a {
      font-size: 12px;
    }

    nav li:not(:last-child)::after {
      margin: 0 8px;
    }

    .hero {
      min-height: auto;
      padding: 28px 0 40px;
      background-position: 62% center;
    }

    .hero-layout {
      gap: 12px;
      grid-template-columns: 1fr;
    }

    .hero-content h2 {
      font-size: 27px;
      line-height: 1.18;
    }

    .hero-copy p {
      font-size: 13px;
      line-height: 1.65;
    }

    .hero-actions {
      gap: 8px;
    }

    .btn-primary,
    .btn-secondary {
      padding: 9px 14px;
      font-size: 12px;
    }

    .hero-tags {
      gap: 8px;
    }

    .hero-tags span {
      padding: 5px 9px;
      font-size: 10px;
    }

    .hero-panel {
      padding: 18px 14px;
      border-radius: 12px;
    }

    .hero-panel h3 {
      font-size: 17px;
    }

    .hero-panel-list li {
      font-size: 12px;
    }

    .hero-panel-foot strong {
      font-size: 22px;
    }

    .hero-subline {
      display: none;
      bottom: 10px;
    }

    .hero-subline p {
      font-size: 11px;
      line-height: 1.45;
      max-width: calc(100% - 16px);
      padding: 7px 10px;
    }

    .hero-dots {
      margin-top: 8px;
    }

    .trust-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin-top: -14px;
      margin-bottom: 22px;
    }

    .trust-item {
      padding: 12px 8px;
    }

    .trust-item strong {
      font-size: 22px;
    }

    .transition-section {
      margin: 4px auto 10px;
    }

    .transition-text h3 {
      font-size: 17px;
    }

    .transition-text p {
      font-size: 11px;
      line-height: 1.65;
    }

    .experts-grid,
    .services-grid {
      flex-wrap: wrap;
      gap: 12px;
    }

    .expert-card,
    .service-card {
      width: calc(50% - 6px);
    }

    .expert-card img {
      height: 190px;
    }

    .value-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .value-card {
      padding: 16px 12px;
    }

    .value-card h4 {
      font-size: 15px;
      margin-bottom: 6px;
    }

    .value-card p {
      font-size: 11px;
      line-height: 1.55;
    }

    .process-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .process-card {
      padding: 18px 16px;
    }

    .section-title::before,
    .section-title::after {
      display: none;
    }

    .section-title {
      margin: 46px 0 28px;
    }
  }

  @media (max-width: 430px) {
    .hero {
      padding-bottom: 72px;
    }

    .expert-card img {
      height: 180px !important;
    }
  }

  /* Bottom Waves */
  .bottom-waves {
    height: 120px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100" preserveAspectRatio="none"><path d="M0,50 C320,100 420,0 720,50 C1020,100 1120,0 1440,50 L1440,100 L0,100 Z" fill="%23dccab2" opacity="0.6"/><path d="M0,70 C280,20 480,120 720,70 C960,20 1160,120 1440,70 L1440,100 L0,100 Z" fill="%23c4ae93" opacity="0.4"/></svg>');
    background-size: 100% 100%;
  }

  .footer-copy {
    text-align: center;
    padding: 14px 16px 24px;
    font-size: 12px;
    color: #8a786b;
  }

  .contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }

  .toast-notice {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 14px);
    min-width: 240px;
    max-width: calc(100vw - 32px);
    padding: 12px 18px;
    background: rgba(49, 36, 24, 0.92);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
    text-align: center;
    font-size: 14px;
    pointer-events: none;
  }

  .toast-notice.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 24, 16, 0.28);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.22s ease;
  }

  .confirm-overlay.is-visible {
    opacity: 1;
  }

  .confirm-dialog {
    width: min(420px, calc(100vw - 32px));
    background: rgba(255, 251, 244, 0.96);
    border: 1px solid rgba(203, 168, 124, 0.22);
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.18);
    padding: 18px;
    color: #5a4a42;
  }

  .confirm-dialog-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
  }

  .confirm-dialog-text {
    font-size: 13px;
    color: #7a6f65;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .confirm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }

  /* Visual Upgrade */
  html {
    scroll-behavior: auto;
  }

  body {
    background:
      radial-gradient(circle at 12% 18%, rgba(240, 208, 167, 0.32), transparent 35%),
      radial-gradient(circle at 85% 8%, rgba(166, 203, 228, 0.2), transparent 30%),
      linear-gradient(180deg, #fffaf3 0%, #f8f1e5 48%, #f5eddf 100%);
  }

  header {
    position: sticky;
    top: 0;
    z-index: 12;
    backdrop-filter: blur(8px);
    background: rgba(255, 251, 243, 0.72);
    border-bottom: 1px solid rgba(166, 132, 88, 0.12);
  }

  nav a {
    font-weight: 500;
    letter-spacing: 0.2px;
  }

  .hero {
    min-height: 75vh;
    height: auto;
    padding: 64px 0 72px;
  }

  .hero::after {
    content: "";
    position: absolute;
    right: 8%;
    top: 12%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(203, 168, 124, 0.45), transparent 70%);
    filter: blur(10px);
  }

  .hero-content {
    max-width: 680px;
  }

  .hero-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 1.6px;
    color: #8f6339;
    background: rgba(255, 248, 236, 0.85);
    border: 1px solid rgba(203, 168, 124, 0.36);
    padding: 6px 14px;
    border-radius: 999px;
  }

  .hero-content h2 {
    font-size: 44px;
    line-height: 1.18;
    letter-spacing: 0.6px;
    text-shadow: 0 2px 18px rgba(255, 255, 255, 0.35);
  }

  .hero-content p {
    max-width: 560px;
    line-height: 1.8;
    color: #5d4d45;
    font-size: 16px;
  }

  .hero-tags {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-tags span {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(203, 168, 124, 0.3);
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: #6a5448;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .btn-primary,
  .btn-secondary {
    font-weight: 500;
    letter-spacing: 0.3px;
  }

  .btn-primary {
    background: linear-gradient(135deg, #c99962 0%, #9a6735 65%, #7a4e28 100%);
    box-shadow: 0 10px 26px rgba(154, 103, 53, 0.3);
  }

  .btn-secondary {
    border-color: rgba(154, 103, 53, 0.32);
  }

  .trust-strip {
    margin-top: -30px;
    margin-bottom: 36px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    position: relative;
    z-index: 4;
  }

  .trust-item {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(203, 168, 124, 0.25);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(73, 44, 22, 0.08);
    backdrop-filter: blur(5px);
  }

  .trust-item strong {
    display: block;
    font-size: 30px;
    color: #8f6339;
    line-height: 1.15;
    margin-bottom: 6px;
  }

  .trust-item span {
    font-size: 13px;
    color: #74685f;
  }

  .transition-section {
    margin: 8px auto 18px;
  }

  .transition-text {
    padding: 2px 4px 0;
    max-width: 920px;
  }

  .transition-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.4px;
    color: #a06d3a;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .transition-text h3 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #4f3f36;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
  }

  .transition-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #6f6158;
    text-align: left;
  }

  .value-section {
    margin-top: 6px;
    margin-bottom: 12px;
  }

  .value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .value-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(249, 241, 228, 0.95));
    border: 1px solid rgba(203, 168, 124, 0.25);
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 12px 30px rgba(88, 56, 30, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .value-card:hover,
  .expert-card:hover,
  .service-card:hover,
  .process-card:hover,
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(88, 56, 30, 0.12);
  }

  .value-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d5b085, #ab7540);
    color: #fff;
    margin-bottom: 14px;
    font-size: 18px;
  }

  .value-card h4 {
    margin: 0 0 8px;
    color: #4f3f36;
    font-size: 19px;
    font-weight: 600;
  }

  .value-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: #70635b;
  }

  .section-title h3 {
    font-size: 30px;
    letter-spacing: 0.4px;
  }

  .section-title span {
    letter-spacing: 0.7px;
  }

  .expert-card,
  .service-card,
  .process-card,
  .faq-item,
  .contact-form {
    border-radius: 12px;
    border: 1px solid rgba(203, 168, 124, 0.2);
  }

  .expert-card img {
    height: 260px;
  }

  .service-card {
    background: linear-gradient(180deg, #fff, #fdf7ed);
  }

  .process-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 236, 220, 0.82));
  }

  .faq-item summary {
    font-size: 16px;
  }

  .testimonials-section {
    margin-top: 8px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .testimonial-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(248, 240, 226, 0.9));
    border: 1px solid rgba(203, 168, 124, 0.28);
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 8px 20px rgba(71, 45, 25, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .testimonial-card p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.8;
    color: #5c4d45;
  }

  .testimonial-meta {
    font-size: 12px;
    color: #8c786b;
    letter-spacing: 0.3px;
  }

  .contact-form {
    background: linear-gradient(180deg, #f0e1cd, #e8d7c2);
  }

  .contact-form input,
.contact-form select,
  .contact-form textarea {
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .contact-form input:focus,
.contact-form select:focus,
  .contact-form textarea:focus {
    border-color: rgba(154, 103, 53, 0.5);
    box-shadow: 0 0 0 3px rgba(201, 153, 98, 0.16);
  }

  @media (max-width: 960px) {
    .hero {
      min-height: 66vh;
      padding: 56px 0;
    }

    .hero-content h2 {
      font-size: 38px;
    }

    .trust-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-top: -20px;
    }

    .value-grid,
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .hero {
      min-height: auto;
      padding: 46px 0;
    }

    .hero-kicker {
      font-size: 11px;
      letter-spacing: 1.2px;
    }

    .hero-content h2 {
      font-size: 30px;
    }

    .hero-content p {
      font-size: 14px;
    }

    .trust-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin-top: 0;
      gap: 8px;
    }
  }

  /* Motion tuning: smoother, more premium */
  :root {
    --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .container {
    max-width: 1200px;
  }

  nav a {
    transition: color 0.45s var(--ease-soft), text-shadow 0.45s var(--ease-soft);
  }

  .btn-primary,
  .btn-secondary,
  .value-card,
  .expert-card,
  .service-card,
  .process-card,
  .testimonial-card,
  .trust-item,
  .contact-form,
  .faq-item {
    will-change: transform, box-shadow, border-color, background-color;
  }

  .btn-primary,
  .btn-secondary {
    transition: transform 0.55s var(--ease-luxury), box-shadow 0.55s var(--ease-luxury),
      background-color 0.45s var(--ease-soft), border-color 0.45s var(--ease-soft);
  }

  .btn-primary:hover,
  .btn-secondary:hover {
    transform: translate3d(0, -3px, 0);
  }

  .value-card,
  .expert-card,
  .service-card,
  .process-card,
  .testimonial-card,
  .trust-item {
    transition: transform 0.6s var(--ease-luxury), box-shadow 0.6s var(--ease-luxury),
      border-color 0.45s var(--ease-soft), background-color 0.45s var(--ease-soft);
  }

  .value-card:hover,
  .expert-card:hover,
  .service-card:hover,
  .process-card:hover,
  .testimonial-card:hover,
  .trust-item:hover {
    transform: translate3d(0, -6px, 0) scale(1.01);
    box-shadow: 0 18px 40px rgba(88, 56, 30, 0.14);
  }

  .faq-item {
    transition: box-shadow 0.5s var(--ease-luxury), border-color 0.45s var(--ease-soft),
      background-color 0.45s var(--ease-soft);
  }

  .faq-item summary {
    transition: color 0.4s var(--ease-soft);
  }

  .faq-item summary::after {
    content: "+";
    transition: transform 0.5s var(--ease-luxury), color 0.4s var(--ease-soft);
    transform: translateY(-50%) rotate(0deg);
  }

  .faq-item > p {
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height 0.65s var(--ease-luxury), opacity 0.45s var(--ease-soft),
      transform 0.55s var(--ease-luxury), padding 0.45s var(--ease-soft);
    padding-bottom: 0;
  }

  .faq-item[open] {
    box-shadow: 0 12px 28px rgba(88, 56, 30, 0.1);
    border-color: rgba(203, 168, 124, 0.42);
  }

  .faq-item[open] summary {
    color: #7d542f;
  }

  .faq-item[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
  }

  .faq-item[open] > p {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
    padding-bottom: 16px;
  }

  /* Final polish: grander spacing & typography */
  .container > .section-title:first-child {
    margin-top: 86px;
    margin-bottom: 48px;
  }

  .container > .section-title h3 {
    font-size: 34px;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .container > .section-title span {
    letter-spacing: 1.2px;
    opacity: 0.95;
  }

  .hero {
    background-attachment: fixed;
    padding-bottom: 118px;
    overflow: visible;
  }

  .hero-content {
    padding-top: 14px;
    padding-bottom: 20px;
  }

  .hero-layout {
    position: relative;
    z-index: 2;
  }

  .hero-subline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100px;
    margin: 0;
    z-index: 3;
    pointer-events: none;
  }

  .hero-subline .container {
    max-width: 1200px;
  }

  .hero-subline p {
    margin: 0 auto;
    max-width: 800px;
    padding: 10px 18px;
    text-align: center;
    color: #7f4213;
    font-size: 14px;
    line-height: 1.7;
    background: rgba(255, 248, 238, 0.18);
    border: 1px solid rgba(203, 168, 124, 0.12);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 24px rgba(73, 44, 22, 0.08);
  }

  .hero-content h2 {
    margin-bottom: 18px;
  }

  .hero-content p {
    font-size: 17px;
    line-height: 1.9;
  }

  .trust-strip {
    margin-bottom: 58px;
  }

  .value-section {
    margin-bottom: 26px;
  }

  .value-card {
    padding: 28px 24px;
  }

  .value-card p {
    line-height: 1.85;
  }

  .expert-name,
  .service-card h4,
  .process-card h4,
  .value-card h4 {
    letter-spacing: 0.4px;
  }

  .testimonials-section {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .testimonial-card {
    padding: 24px 22px;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.9;
  }

  .contact-section {
    margin-top: 78px;
    position: relative;
    padding: 24px 0 12px;
  }

  .process-section,
  .faq-section,
  .contact-section {
    position: relative;
    isolation: isolate;
  }

  .process-section::before {
    content: "";
    position: absolute;
    inset: -12px 0 -12px;
    z-index: -1;
    border-radius: 10px;
    background:
      radial-gradient(circle at 12% 18%, rgba(203, 168, 124, 0.14), transparent 30%),
      radial-gradient(circle at 86% 10%, rgba(166, 203, 228, 0.10), transparent 28%),
      linear-gradient(180deg, rgba(255, 251, 245, 0.86), rgba(247, 240, 227, 0.98));
  }

  .faq-section::before {
    content: "";
    position: absolute;
    inset: -12px 0 -12px;
    z-index: -1;
    border-radius: 10px;
    background:
      radial-gradient(circle at 18% 14%, rgba(166, 203, 228, 0.10), transparent 28%),
      radial-gradient(circle at 82% 16%, rgba(203, 168, 124, 0.12), transparent 30%),
      linear-gradient(180deg, rgba(248, 242, 233, 0.86), rgba(242, 234, 220, 0.98));
  }

  .contact-section::before {
    content: "";
    position: absolute;
    inset: -12px 0 -12px;
    z-index: -1;
    border-radius: 10px;
    background:
      radial-gradient(circle at 14% 12%, rgba(203, 168, 124, 0.12), transparent 30%),
      radial-gradient(circle at 82% 18%, rgba(166, 203, 228, 0.10), transparent 28%),
      linear-gradient(180deg, rgba(249, 242, 231, 0.90), rgba(242, 232, 217, 0.98));
  }

  @media (max-width: 960px) {
    .hero {
      background-attachment: scroll;
    }

    .trust-strip {
      margin-top: -38px;
      margin-bottom: 26px;
    }

    .transition-text {
      padding: 0 2px;
    }

    .transition-text h3 {
      font-size: 20px;
    }
  }

  @media (max-width: 600px) {
    .container > .section-title:first-child {
      margin-top: 34px;
      margin-bottom: 26px;
    }

    .hero-content p {
      font-size: 14px;
      line-height: 1.8;
    }

    .trust-strip {
      margin-top: -26px;
    }

    .transition-section {
      margin: 8px auto 14px;
    }

    .transition-text {
      padding: 0;
    }

    .transition-text h3 {
      font-size: 18px;
    }

    .transition-text p {
      font-size: 13px;
    }
  }

  /* FAQ smooth accordion (JS-driven) */
  .faq-item {
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 32px 16px 0;
    position: relative;
  }

  .faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    color: var(--primary-dark);
    font-size: 18px;
    line-height: 1;
    transition: transform 0.45s var(--ease-luxury), color 0.35s var(--ease-soft);
  }

  .faq-answer-wrap {
    height: 0;
    overflow: hidden;
    transition: height 0.45s var(--ease-luxury);
  }

  .faq-answer {
    margin: 0;
    padding: 0 0 16px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.35s var(--ease-soft), transform 0.45s var(--ease-luxury);
  }

  .faq-item.is-open .faq-question {
    color: #7d542f;
  }

  .faq-item.is-open .faq-question::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
  }

  .faq-item.is-open .faq-answer {
    opacity: 1;
    transform: translateY(0);
  }

  /* Banner layout refresh */
  .hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 30px;
    align-items: center;
  }

  .hero-content h2,
  .hero-copy {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s var(--ease-soft), transform 0.45s var(--ease-luxury);
  }

  .hero-content h2.is-visible,
  .hero-copy.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-copy p {
    margin: 0;
    color: #5d4d45;
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-copy p + p {
    margin-top: 8px;
  }

  .hero-panel {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(247, 236, 221, 0.86));
    border: 1px solid rgba(203, 168, 124, 0.32);
    border-radius: 18px;
    padding: 24px 24px;
    box-shadow: 0 18px 36px rgba(99, 61, 34, 0.12);
    backdrop-filter: blur(8px);
  }

  .hero-panel h3 {
    margin: 0 0 14px;
    font-size: 24px;
    color: #4f3f36;
    letter-spacing: 0.4px;
  }

  .hero-panel-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
  }

  .hero-panel-list li {
    font-size: 14px;
    color: #6c5a4e;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
  }

  .hero-panel-list i {
    color: #a06d3a;
  }

  .hero-panel-foot {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed rgba(160, 109, 58, 0.28);
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .hero-panel-foot strong {
    font-size: 30px;
    color: #8f6339;
  }

  .hero-panel-foot span {
    font-size: 13px;
    color: #7a695d;
  }

  .hero-dots {
    grid-column: 1 / -1;
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    width: 100%;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(148, 108, 69, 0.35);
    transition: all 0.35s var(--ease-soft);
    cursor: pointer;
  }

  .hero-dot.is-active {
    width: 24px;
    border-radius: 12px;
    background: rgba(148, 108, 69, 0.92);
  }

  .hero-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hero-bg-glow span {
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0.5;
  }

  .hero-bg-glow span:nth-child(1) {
    width: 200px;
    height: 200px;
    left: 6%;
    top: 15%;
    background: rgba(215, 184, 145, 0.5);
  }

  .hero-bg-glow span:nth-child(2) {
    width: 150px;
    height: 150px;
    right: 14%;
    top: 22%;
    background: rgba(177, 210, 233, 0.42);
  }

  .hero-bg-glow span:nth-child(3) {
    width: 120px;
    height: 120px;
    right: 30%;
    bottom: 16%;
    background: rgba(237, 201, 167, 0.35);
  }


  @media (max-width: 960px) {
    .hero-layout {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .hero-panel {
      max-width: 560px;
    }

    .hero-subline {
      bottom: 18px;
    }

    .hero-subline p {
      font-size: 13px;
      max-width: calc(100% - 24px);
    }
  }

  @media (max-width: 600px) {
    .hero {
      padding-bottom: 72px;
    }

    .hero-panel {
      padding: 20px 16px;
      border-radius: 14px;
    }

    .hero-panel h3 {
      font-size: 20px;
    }

    .hero-copy p {
      font-size: 15px;
    }

    .hero-subline {
      margin-top: 8px;
    }
  }
