 :root {
     --bg: #f6faf6;
     --panel: #ffffff;
     --text: #1e2a22;
     --muted: #6a786f;
     --line: #dbe8dd;
     --soft: #edf6ef;
     --accent: #6c8d71;
     --accent-strong: #4d6a53;
     --shadow: 0 16px 40px rgba(47, 73, 55, 0.08);
     --radius: 22px;
     --gradient-start: #88b593;
     --gradient-end: #5b7a62;
 }

 * {
     box-sizing: border-box;
 }

 html,
 body {
     margin: 0;
     padding: 0;
 }

 body {
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
     background: linear-gradient(180deg, #f8fff8 0%, #f6faf6 50%, #eef6f0 100%);
     color: var(--text);
     min-height: 100vh;
     padding-top: 70px;
 }

 /* ===== TOP NAVIGATION ===== */
 .top-nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     border-bottom: 1px solid var(--line);
     z-index: 1000;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
 }

 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 24px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 70px;
 }

 .nav-logo a {
     font-size: 24px;
     font-weight: 800;
     color: var(--accent-strong);
     text-decoration: none;
     letter-spacing: -0.02em;
 }

 .nav-links {
     display: flex;
     gap: 32px;
     align-items: center;
 }

 .nav-menu-btn {
     display: none;
     background: none;
     border: none;
     font-size: 24px;
     color: var(--text);
     cursor: pointer;
     padding: 8px;
 }

 @media (max-width: 768px) {
     .nav-links {
         position: fixed;
         top: 70px;
         left: 0;
         right: 0;
         background: rgba(255, 255, 255, 0.98);
         backdrop-filter: blur(10px);
         flex-direction: column;
         padding: 20px;
         gap: 16px;
         border-bottom: 1px solid var(--line);
         box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
         display: none;
     }

     .nav-links.active {
         display: flex;
     }

     .nav-menu-btn {
         display: block;
     }
 }

 .nav-link {
     color: var(--text);
     text-decoration: none;
     font-size: 15px;
     font-weight: 600;
     transition: color 0.3s ease;
     position: relative;
 }

 .nav-link:hover {
     color: var(--accent-strong);
 }

 .nav-link.active {
     color: var(--accent-strong);
 }

 .nav-link.active::after {
     content: '';
     position: absolute;
     bottom: -8px;
     left: 0;
     right: 0;
     height: 2px;
     background: var(--accent-strong);
 }

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

 .lang-select-nav {
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
     background: var(--soft);
     border: 1px solid var(--line);
     border-radius: 8px;
     padding: 8px 32px 8px 12px;
     font-size: 14px;
     font-weight: 600;
     color: var(--text);
     cursor: pointer;
     transition: all 0.3s ease;
     background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234d6a53' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 10px center;
 }

 .lang-select-nav:hover {
     border-color: var(--accent);
     background-color: #fff;
 }

 .lang-select-nav:focus {
     outline: none;
     border-color: var(--accent-strong);
 }

 .shell {
     max-width: 1200px;
     margin: 0 auto;
     padding: 24px 16px 56px;
 }

 /* ===== INTRO PAGE STYLES ===== */
 .hero-section {
     text-align: center;
     padding: 40px 20px 80px;
     max-width: 1000px;
     margin: 0 auto;
 }

 .hero-title {
     font-size: clamp(40px, 6vw, 72px);
     font-weight: 800;
     line-height: 1.1;
     letter-spacing: -0.02em;
     margin: 0 0 28px 0;
     background: linear-gradient(135deg, var(--text) 0%, var(--accent-strong) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero-subtitle {
     font-size: clamp(18px, 2.5vw, 22px);
     line-height: 1.7;
     color: var(--muted);
     margin: 0 0 48px 0;
     max-width: 750px;
     margin-left: auto;
     margin-right: auto;
 }

 .btn-large {
     font-size: 18px;
     padding: 20px 48px;
     display: inline-flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 60px;
     font-weight: 700;
 }

 .btn-arrow {
     font-size: 24px;
     transition: transform 0.3s ease;
 }

 .btn-primary:hover .btn-arrow {
     transform: translateX(6px);
 }

 .hero-illustration {
     max-width: 800px;
     margin: 0 auto 80px;
     opacity: 0.9;
 }

 .hero-illustration svg {
     width: 100%;
     height: auto;
     filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.05));
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 32px;
     margin: 80px 0;
     padding: 60px 0;
     border-top: 2px solid var(--line);
     border-bottom: 2px solid var(--line);
 }

 .stat-item {
     text-align: center;
 }

 .stat-number {
     font-size: clamp(36px, 5vw, 56px);
     font-weight: 800;
     color: var(--accent-strong);
     margin-bottom: 12px;
     line-height: 1;
 }

 .stat-label {
     font-size: 15px;
     color: var(--muted);
     font-weight: 600;
 }

 .features-section {
     margin: 100px 0;
 }

 .features-title {
     font-size: clamp(32px, 5vw, 42px);
     font-weight: 800;
     text-align: center;
     margin-bottom: 16px;
     color: var(--text);
 }

 .features-subtitle {
     font-size: 18px;
     color: var(--muted);
     text-align: center;
     margin-bottom: 56px;
 }

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

 .feature-card {
     background: #fff;
     border: 2px solid var(--line);
     border-radius: 24px;
     padding: 40px 28px;
     text-align: center;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .feature-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(47, 73, 55, 0.15);
     border-color: var(--accent);
 }

 .feature-icon {
     font-size: 56px;
     margin-bottom: 20px;
     display: inline-block;
     transition: transform 0.3s ease;
 }

 .feature-card:hover .feature-icon {
     transform: scale(1.1);
 }

 .feature-name {
     font-size: 22px;
     font-weight: 700;
     margin: 0 0 14px 0;
     color: var(--text);
 }

 .feature-desc {
     font-size: 15px;
     line-height: 1.7;
     color: var(--muted);
     margin: 0;
 }

 .testimonials-section {
     margin: 100px 0;
 }

 .testimonials-title {
     font-size: clamp(32px, 5vw, 42px);
     font-weight: 800;
     text-align: center;
     margin-bottom: 56px;
     color: var(--text);
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 28px;
 }

 .testimonial-card {
     background: #fff;
     border: 2px solid var(--line);
     border-radius: 24px;
     padding: 36px;
     transition: all 0.3s ease;
 }

 .testimonial-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 32px rgba(47, 73, 55, 0.12);
 }

 .testimonial-quote {
     font-size: 64px;
     line-height: 1;
     color: var(--accent);
     opacity: 0.3;
     margin-bottom: 16px;
 }

 .testimonial-text {
     font-size: 16px;
     line-height: 1.7;
     color: var(--text);
     margin: 0 0 24px 0;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .testimonial-avatar {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--accent), var(--accent-strong));
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     font-weight: 700;
 }

 .testimonial-name {
     font-size: 16px;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 4px;
 }

 .testimonial-type {
     font-size: 13px;
     color: var(--muted);
     font-weight: 600;
 }

 .final-cta {
     margin: 100px 0 60px;
     text-align: center;
 }

 .final-cta-title {
     font-size: clamp(28px, 4vw, 38px);
     font-weight: 700;
     margin-bottom: 36px;
     color: var(--text);
 }

 .card {
     background: var(--panel);
     border: 1px solid var(--line);
     border-radius: var(--radius);
     box-shadow: var(--shadow);
 }

 .hero {
     padding: 28px;
     margin-top: 20px;
     overflow: hidden;
     position: relative;
 }

 .hero::after {
     content: "";
     position: absolute;
     right: -60px;
     top: -60px;
     width: 180px;
     height: 180px;
     border-radius: 50%;
     background: linear-gradient(180deg, rgba(127, 165, 134, 0.18), rgba(127, 165, 134, 0.02));
     pointer-events: none;
 }

 .eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-size: 12px;
     color: var(--accent-strong);
     border: 1px solid var(--line);
     background: var(--soft);
     border-radius: 999px;
     padding: 8px 12px;
     margin-bottom: 16px;
 }

 h1,
 h2,
 h3,
 p {
     margin: 0;
 }

 .hero h1 {
     font-size: clamp(28px, 5vw, 52px);
     line-height: 1.08;
     letter-spacing: -0.03em;
     max-width: 680px;
 }

 .hero .sub {
     margin-top: 14px;
     color: var(--muted);
     font-size: 15px;
     line-height: 1.75;
     max-width: 720px;
 }

 .hero-grid {
     display: grid;
     grid-template-columns: 1.3fr 0.9fr;
     gap: 18px;
     align-items: stretch;
     margin-top: 24px;
 }

 .mini-panel {
     padding: 18px;
     border-radius: 18px;
     border: 1px solid var(--line);
     background: linear-gradient(180deg, #fbfefb, #f3f8f4);
 }

 .mini-panel h3 {
     font-size: 15px;
     margin-bottom: 10px;
 }

 .mini-panel ul {
     margin: 0;
     padding-left: 18px;
     color: var(--muted);
     line-height: 1.8;
     font-size: 14px;
 }

 .hero-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     margin-top: 22px;
 }

 .hero-minimal {
     min-height: 48vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     padding: 42px 20px;
 }

 .hero-minimal::after {
     display: none;
 }

 .hero-minimal h1 {
     max-width: none;
     margin: 0;
 }

 .hero-actions-single {
     justify-content: center;
     margin-top: 28px;
 }

 button {
     border: 0;
     cursor: pointer;
     transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
     font: inherit;
 }

 button:hover {
     transform: translateY(-2px);
 }

 button:active {
     transform: translateY(0);
 }

 button:disabled {
     cursor: not-allowed;
     opacity: 0.5;
     transform: none;
 }

 .btn-primary {
     background: var(--accent-strong);
     color: #fff;
     padding: 14px 20px;
     border-radius: 14px;
     box-shadow: 0 12px 30px rgba(77, 106, 83, 0.18);
     font-weight: 700;
 }

 .btn-secondary {
     background: #fff;
     color: var(--accent-strong);
     padding: 14px 20px;
     border-radius: 14px;
     border: 1px solid var(--line);
     font-weight: 700;
 }

 .screen {
     display: none;
 }

 .screen.active {
     display: block;
 }

 /* ===== TEST PAGE STYLES ===== */
 .test-wrap,
 .result-wrap {
     margin-top: 22px;
     padding: 32px;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
 }

 .topbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 16px;
     margin-bottom: 40px;
     flex-wrap: wrap;
 }

 .progress {
     flex: 1;
     min-width: 240px;
     height: 8px;
     background: #edf3ee;
     border-radius: 999px;
     overflow: hidden;
     position: relative;
 }

 .progress>span {
     display: block;
     width: 0;
     height: 100%;
     background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
     border-radius: inherit;
     transition: width .3s ease;
 }

 .progress-text {
     color: var(--muted);
     font-size: 13px;
     font-weight: 600;
     white-space: nowrap;
 }

 .question-container {
     min-height: 350px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .question {
     border: none;
     border-radius: 0;
     padding: 0;
     background: transparent;
     transition: opacity 0.3s ease;
 }

 .question.fade-out {
     opacity: 0;
 }

 .question.fade-in {
     opacity: 1;
 }

 .question-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 12px;
     margin-bottom: 20px;
     color: var(--muted);
     font-size: 12px;
     font-weight: 600;
 }

 .badge {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     border-radius: 999px;
     padding: 6px 14px;
     background: var(--soft);
     border: 1px solid var(--line);
     font-size: 12px;
     font-weight: 700;
 }

 .question-title {
     font-size: 18px;
     line-height: 1.6;
     white-space: pre-wrap;
     font-weight: 500;
     color: var(--text);
     margin-bottom: 24px;
 }

 .options {
     display: grid;
     gap: 12px;
     margin-top: 24px;
 }

 .option {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     padding: 14px 16px;
     border-radius: 14px;
     border: 2px solid var(--line);
     background: #fff;
     transition: all .2s ease;
     cursor: pointer;
 }

 .option:hover {
     border-color: var(--accent);
     background: var(--soft);
     transform: translateX(2px);
 }

 .option.selected {
     border-color: var(--accent-strong);
     background: var(--soft);
 }

 .option input {
     margin-top: 2px;
     accent-color: var(--accent-strong);
     transform: scale(1.2);
     flex-shrink: 0;
     cursor: pointer;
 }

 .option-code {
     font-weight: 700;
     color: var(--muted);
     min-width: 20px;
     transition: color 0.2s ease;
     font-size: 14px;
 }

 .option.selected .option-code {
     color: var(--accent-strong);
 }

 .option label {
     cursor: pointer;
     flex: 1;
     line-height: 1.5;
     font-size: 15px;
 }

 .actions-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 16px;
     flex-wrap: wrap;
     margin-top: 40px;
     padding-top: 24px;
     border-top: 2px solid var(--line);
 }

 .nav-buttons {
     display: flex;
     gap: 12px;
     flex: 1;
 }

 .btn-small {
     padding: 12px 20px;
     font-size: 14px;
 }

 .btn-arrow-left {
     font-size: 18px;
     transition: transform 0.3s ease;
 }

 .btn-secondary:hover .btn-arrow-left {
     transform: translateX(-4px);
 }

 .btn-primary .btn-arrow {
     font-size: 18px;
 }

 .result-hero {
     display: grid;
     grid-template-columns: 1.2fr 0.8fr;
     gap: 18px;
     align-items: stretch;
 }

 .type-box,
 .score-box,
 .dim-box,
 .top3-box,
 .about-box {
     border: 1px solid var(--line);
     border-radius: 18px;
     padding: 18px;
     background: linear-gradient(180deg, #ffffff, #fbfdfb);
 }

 .type-kicker {
     font-size: 12px;
     color: var(--accent-strong);
     margin-bottom: 8px;
     letter-spacing: .05em;
 }

 .type-name {
     font-size: clamp(30px, 5vw, 48px);
     line-height: 1.08;
     letter-spacing: -0.03em;
 }

 .type-subname {
     margin-top: 8px;
     color: var(--muted);
     font-size: 15px;
 }

 .match {
     margin-top: 18px;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     border-radius: 999px;
     padding: 10px 14px;
     background: var(--soft);
     border: 1px solid var(--line);
     color: var(--accent-strong);
     font-weight: 700;
 }

 .type-desc {
     margin-top: 18px;
     line-height: 1.85;
     font-size: 15px;
     color: #304034;
 }

 .score-box h3,
 .dim-box h3,
 .top3-box h3,
 .about-box h3 {
     font-size: 16px;
     margin-bottom: 12px;
 }

 .score-grid {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 10px;
 }

 .score-item {
     border: 1px solid var(--line);
     border-radius: 14px;
     padding: 12px;
     background: #fff;
 }

 .score-item .k {
     font-size: 12px;
     color: var(--muted);
     margin-bottom: 6px;
 }

 .score-item .v {
     font-size: 20px;
     font-weight: 800;
     color: var(--accent-strong);
 }

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

 .dim-pill {
     border: 1px solid var(--line);
     border-radius: 14px;
     padding: 12px;
     background: #fff;
 }

 .dim-pill .label {
     color: var(--muted);
     font-size: 12px;
     margin-bottom: 6px;
 }

 .dim-pill .value {
     font-size: 20px;
     font-weight: 800;
     color: var(--accent-strong);
 }

 .top3-list {
     display: grid;
     gap: 10px;
 }

 .top3-item {
     border: 1px solid var(--line);
     border-radius: 14px;
     padding: 12px;
     background: #fff;
     display: flex;
     justify-content: space-between;
     gap: 12px;
     align-items: center;
 }

 .top3-item strong {
     display: block;
     margin-bottom: 4px;
 }

 .top3-item span {
     color: var(--muted);
     font-size: 13px;
 }

 .top3-score {
     color: var(--accent-strong);
     font-weight: 800;
     white-space: nowrap;
 }

 .about-box p {
     color: var(--muted);
     font-size: 14px;
     line-height: 1.8;
 }

 .footer-note {
     margin-top: 16px;
     color: var(--muted);
     font-size: 12px;
     line-height: 1.7;
 }


 .result-layout {
     display: grid;
     gap: 18px;
 }

 .result-top {
     display: grid;
     grid-template-columns: 0.9fr 1.1fr;
     gap: 18px;
     align-items: stretch;
 }

 .poster-box,
 .type-box,
 .analysis-box,
 .dim-box,
 .note-box {
     border: 1px solid var(--line);
     border-radius: 18px;
     padding: 18px;
     background: linear-gradient(180deg, #ffffff, #fbfdfb);
 }

 .poster-box {
     display: grid;
     grid-template-rows: 1fr auto;
     min-height: 280px;
     overflow: hidden;
     position: relative;
     background:
         radial-gradient(circle at top right, rgba(127, 165, 134, 0.16), rgba(127, 165, 134, 0) 40%),
         linear-gradient(180deg, #ffffff, #f7fbf8);
 }

 .poster-box::after {
     content: "";
     position: absolute;
     right: -46px;
     bottom: -46px;
     width: 140px;
     height: 140px;
     border-radius: 50%;
     background: linear-gradient(180deg, rgba(127, 165, 134, 0.12), rgba(127, 165, 134, 0.01));
     pointer-events: none;
 }

 .poster-image {
     width: 100%;
     min-height: 220px;
     max-height: 460px;
     object-fit: contain;
     border-radius: 18px;
     background: rgba(255, 255, 255, 0.75);
     position: relative;
     z-index: 1;
 }

 .poster-box.no-image .poster-image {
     display: none;
 }

 .poster-caption {
     margin-top: 14px;
     color: var(--muted);
     font-size: 14px;
     line-height: 1.8;
     position: relative;
     z-index: 1;
 }

 .type-kicker {
     font-size: 12px;
     color: var(--accent-strong);
     margin-bottom: 8px;
     letter-spacing: .06em;
 }

 .type-name {
     font-size: clamp(30px, 5vw, 48px);
     line-height: 1.08;
     letter-spacing: -0.03em;
 }

 .type-subname {
     margin-top: 10px;
     color: var(--muted);
     font-size: 14px;
     line-height: 1.8;
 }

 .match {
     margin-top: 18px;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     border-radius: 999px;
     padding: 10px 14px;
     background: var(--soft);
     border: 1px solid var(--line);
     color: var(--accent-strong);
     font-weight: 700;
     font-size: 14px;
     line-height: 1.4;
 }

 .analysis-box h3,
 .dim-box h3,
 .note-box h3 {
     font-size: 16px;
     margin-bottom: 12px;
 }

 .result-actions {
     margin-top: 22px;
     display: flex;
     justify-content: flex-end;
 }

 .analysis-box p {
     margin: 0;
     color: #304034;
     font-size: 15px;
     line-height: 1.9;
     white-space: pre-wrap;
 }

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

 .dim-item {
     border: 1px solid var(--line);
     border-radius: 16px;
     padding: 14px;
     background: #fff;
 }

 .dim-item-top {
     display: flex;
     justify-content: space-between;
     align-items: baseline;
     gap: 10px;
     margin-bottom: 8px;
     flex-wrap: wrap;
 }

 .dim-item-name {
     font-size: 14px;
     font-weight: 700;
     color: var(--text);
 }

 .dim-item-score {
     color: var(--accent-strong);
     font-weight: 800;
     font-size: 14px;
     white-space: nowrap;
 }

 .dim-item p {
     margin: 0;
     color: var(--muted);
     font-size: 13px;
     line-height: 1.8;
 }

 .note-box p {
     margin: 0;
     color: var(--muted);
     font-size: 13px;
     line-height: 1.8;
 }

 .result-actions {
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 12px;
     flex-wrap: wrap;
     margin-top: 22px;
 }

 @media (max-width: 860px) {
     .result-top {
         grid-template-columns: 1fr;
     }

     .features-grid {
         grid-template-columns: 1fr;
     }

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

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

 @media (max-width: 860px) {

     .hero-grid,
     .result-hero {
         grid-template-columns: 1fr;
     }

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

 @media (max-width: 600px) {
     .shell {
         padding: 14px 12px 42px;
     }

     .hero-section {
         padding: 30px 16px 60px;
     }

     .hero-title {
         font-size: 32px;
         margin-bottom: 20px;
     }

     .hero-subtitle {
         font-size: 16px;
         margin-bottom: 32px;
     }

     .btn-large {
         font-size: 16px;
         padding: 16px 32px;
         margin-bottom: 40px;
     }

     .hero-illustration {
         margin-bottom: 60px;
     }

     .stats-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         margin: 60px 0;
         padding: 40px 0;
     }

     .stat-number {
         font-size: 36px;
     }

     .stat-label {
         font-size: 14px;
     }

     .features-section {
         margin: 60px 0;
     }

     .features-title {
         font-size: 28px;
         margin-bottom: 12px;
     }

     .features-subtitle {
         font-size: 16px;
         margin-bottom: 40px;
     }

     .feature-card {
         padding: 32px 24px;
     }

     .feature-icon {
         font-size: 48px;
     }

     .feature-name {
         font-size: 20px;
     }

     .testimonials-section {
         margin: 60px 0;
     }

     .testimonials-title {
         font-size: 28px;
         margin-bottom: 40px;
     }

     .testimonial-card {
         padding: 28px;
     }

     .testimonial-quote {
         font-size: 48px;
     }

     .final-cta {
         margin: 60px 0 40px;
     }

     .final-cta-title {
         font-size: 24px;
         margin-bottom: 28px;
     }

     .hero,
     .test-wrap,
     .result-wrap {
         padding: 16px;
     }

     .hero h1 {
         font-size: 32px;
     }

     .question {
         padding: 20px;
     }

     .question-title {
         font-size: 18px;
         margin-bottom: 24px;
     }

     .question-container {
         min-height: 300px;
     }

     .options {
         gap: 12px;
     }

     .option {
         padding: 16px 18px;
     }

     .option label {
         font-size: 15px;
     }

     .actions-bottom {
         flex-direction: column;
         gap: 12px;
     }

     .nav-buttons {
         width: 100%;
         order: 1;
     }

     .btn-small {
         width: 100%;
         order: 2;
     }

     .dim-grid,
     .score-grid {
         grid-template-columns: 1fr;
     }

     .nav-container {
         padding: 0 16px;
     }

     .types-grid {
         grid-template-columns: 1fr;
     }

     .contact-content {
         grid-template-columns: 1fr;
     }

     .footer-container {
         grid-template-columns: 1fr;
         gap: 32px;
     }
 }

 /* ===== TYPES PAGE ===== */
 .types-wrap,
 .contact-wrap {
     max-width: 1200px;
     margin: 0 auto;
     padding: 60px 24px;
 }

 .types-title,
 .contact-title {
     font-size: clamp(36px, 5vw, 48px);
     font-weight: 800;
     text-align: center;
     margin-bottom: 16px;
     color: var(--text);
 }

 .types-subtitle,
 .contact-subtitle {
     font-size: 18px;
     color: var(--muted);
     text-align: center;
     margin-bottom: 56px;
 }

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

 .type-card {
     background: #fff;
     border: 2px solid var(--line);
     border-radius: 20px;
     padding: 28px;
     text-align: center;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     cursor: pointer;
     text-decoration: none;
     color: inherit;
     display: block;
 }

 .type-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 16px 32px rgba(47, 73, 55, 0.15);
     border-color: var(--accent-strong);
 }

 .type-card-image {
     width: 100%;
     height: 200px;
     object-fit: contain;
     margin-bottom: 16px;
 }

 .type-card-code {
     font-size: 28px;
     font-weight: 800;
     color: var(--accent-strong);
     margin-bottom: 8px;
 }

 .type-card-name {
     font-size: 18px;
     font-weight: 700;
     color: var(--text);
     margin-bottom: 12px;
 }

 .type-card-intro {
     font-size: 14px;
     color: var(--muted);
     line-height: 1.6;
 }

 /* ===== CONTACT PAGE ===== */
 .contact-content {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 48px;
     margin-top: 48px;
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 32px;
 }

 .contact-item {
     background: #fff;
     border: 2px solid var(--line);
     border-radius: 20px;
     padding: 28px;
 }

 .contact-icon {
     font-size: 48px;
     margin-bottom: 16px;
 }

 .contact-item h3 {
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 12px;
     color: var(--text);
 }

 .contact-item p {
     font-size: 15px;
     color: var(--muted);
     line-height: 1.7;
     margin: 0;
 }

 .social-links {
     display: flex;
     gap: 12px;
     margin-top: 16px;
 }

 .social-link {
     padding: 8px 16px;
     background: var(--soft);
     border: 1px solid var(--line);
     border-radius: 8px;
     color: var(--accent-strong);
     text-decoration: none;
     font-size: 14px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .social-link:hover {
     background: var(--accent-strong);
     color: #fff;
     border-color: var(--accent-strong);
 }

 .contact-form-box {
     background: #fff;
     border: 2px solid var(--line);
     border-radius: 20px;
     padding: 36px;
 }

 .contact-form-box h3 {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 24px;
     color: var(--text);
 }

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

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

 .form-input,
 .form-textarea {
     width: 100%;
     padding: 12px 16px;
     border: 2px solid var(--line);
     border-radius: 12px;
     font-size: 15px;
     font-family: inherit;
     color: var(--text);
     transition: all 0.3s ease;
 }

 .form-input:focus,
 .form-textarea:focus {
     outline: none;
     border-color: var(--accent-strong);
     box-shadow: 0 0 0 3px rgba(77, 106, 83, 0.1);
 }

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

 /* ===== FOOTER ===== */
 .footer {
     background: var(--text);
     color: #fff;
     padding: 60px 0 0;
     margin-top: 80px;
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 24px 48px;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 48px;
 }

 .footer-section {
     display: flex;
     flex-direction: column;
 }

 .footer-title {
     font-size: 18px;
     font-weight: 700;
     margin-bottom: 16px;
     color: #fff;
 }

 .footer-desc {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.7;
 }

 .footer-links {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.7);
     text-decoration: none;
     font-size: 14px;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: #fff;
 }

 .footer-social {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
 }

 .footer-social-link {
     padding: 8px 16px;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 8px;
     color: #fff;
     text-decoration: none;
     font-size: 13px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .footer-social-link:hover {
     background: rgba(255, 255, 255, 0.2);
     border-color: rgba(255, 255, 255, 0.3);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding: 24px;
     text-align: center;
 }

 .footer-bottom p {
     margin: 0;
     font-size: 14px;
     color: rgba(255, 255, 255, 0.6);
 }