/* ========================================
   星探联盟 - Starlight Avenue Style
   CSS Prefix: xt-
   ======================================== */

/* Google Fonts Local Fallback */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

/* ========== CSS Variables ========== */
:root {
    --xt-primary: #483D8B;
    --xt-secondary: #FFD700;
    --xt-accent: #FFFFFF;
    --xt-text: #E6E6FA;
    --xt-link: #FFD700;
    --xt-dark: #1a1035;
    --xt-darker: #0d0820;
    --xt-card-bg: rgba(72, 61, 139, 0.3);
    --xt-border: rgba(255, 215, 0, 0.3);
    --xt-font-heading: 'Playfair Display', serif;
    --xt-font-body: 'Lato', sans-serif;
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--xt-font-body);
    background-color: var(--xt-darker);
    color: var(--xt-text);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: var(--xt-link);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    opacity: 0.85;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--xt-font-heading);
    color: var(--xt-secondary);
    line-height: 1.3;
}

/* ========== Jammer Block (Hidden) ========== */
.scout-jammer-block {
    display: none !important;
}

/* ========== Navigation ========== */
#xt-header {
    width: 100%;
    background: rgba(26, 16, 53, 0.92);
    padding: 0.8rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid var(--xt-border);
}

.xt-nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xt-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.xt-logo-icon {
    font-size: 1.8rem;
}

.sp-logo-text {
    font-family: var(--xt-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--xt-secondary);
    letter-spacing: 2px;
}

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

.xt-nav-links li a {
    color: var(--xt-text);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.xt-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--xt-secondary), transparent);
    transition: width 0.3s ease;
}

.xt-nav-links li a:hover {
    color: var(--xt-secondary);
}

.xt-nav-links li a:hover::after {
    width: 100%;
}

.xt-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.xt-hamburger span {
    width: 28px;
    height: 3px;
    background: var(--xt-secondary);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ========== Mobile Menu ========== */
.xt-mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--xt-darker), var(--xt-primary));
    z-index: 2000;
    padding: 4rem 2rem 2rem;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.xt-mobile-menu.xt-active {
    right: 0;
}

.xt-mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--xt-secondary);
    cursor: pointer;
    background: none;
    border: none;
}

.xt-mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.xt-mobile-menu ul li a {
    color: var(--xt-text);
    font-size: 1.1rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--xt-border);
}

.xt-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1999;
}

.xt-mobile-overlay.xt-active {
    display: block;
}

/* ========== Hero Section ========== */
.xt-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.xt-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.xt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 8, 32, 0.4) 0%, rgba(13, 8, 32, 0.85) 100%);
}

.xt-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
}

.xt-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.xt-hero-slogan {
    font-size: 1.6rem;
    color: var(--xt-accent);
    margin-bottom: 2rem;
    animation: xt-breathe 3s ease-in-out infinite;
}

@keyframes xt-breathe {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; text-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
}

.xt-btn-primary {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: transparent;
    border: 2px solid var(--xt-secondary);
    color: var(--xt-secondary);
    font-family: var(--xt-font-heading);
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.xt-btn-primary:hover {
    background: var(--xt-secondary);
    color: var(--xt-darker);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

/* ========== Section Common ========== */
.xt-section {
    padding: 5rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.xt-section-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 0.8rem;
}

.xt-section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--xt-text);
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.85;
}

.xt-section-full {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.xt-section-full .xt-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

/* ========== Rising Stars ========== */
.xt-stars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.xt-star-card {
    background: var(--xt-card-bg);
    border: 1px solid var(--xt-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xt-star-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.xt-star-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.xt-star-card-info {
    padding: 1.2rem;
    text-align: center;
}

.xt-star-card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.xt-star-card-info .xt-tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--xt-border);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--xt-secondary);
    margin-bottom: 0.5rem;
}

.xt-star-card-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========== Success Stories ========== */
.xt-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.xt-case-card {
    background: var(--xt-card-bg);
    border: 1px solid var(--xt-border);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: transform 0.3s ease;
}

.xt-case-card:hover {
    transform: scale(1.02);
}

.xt-case-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--xt-secondary);
    flex-shrink: 0;
}

.xt-case-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.xt-case-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.8rem;
}

.xt-case-stat {
    text-align: center;
}

.xt-case-stat .xt-stat-num {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--xt-secondary);
    display: block;
}

.xt-case-stat .xt-stat-label {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ========== Process ========== */
.xt-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.xt-process-step {
    text-align: center;
    position: relative;
}

.xt-process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--xt-primary), var(--xt-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.xt-process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.xt-process-step p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========== Brand Partners ========== */
.xt-brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.xt-brand-item {
    background: var(--xt-card-bg);
    border: 1px solid var(--xt-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.xt-brand-item:hover {
    transform: scale(1.05);
}

.xt-brand-item span {
    font-family: var(--xt-font-heading);
    font-size: 1rem;
    color: var(--xt-text);
    opacity: 0.8;
}

/* ========== News ========== */
.xt-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.xt-news-card {
    background: var(--xt-card-bg);
    border: 1px solid var(--xt-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.xt-news-card:hover {
    transform: translateY(-5px);
}

.xt-news-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.xt-news-card-body {
    padding: 1.2rem;
}

.xt-news-card-body .xt-date {
    font-size: 0.8rem;
    color: var(--xt-secondary);
    opacity: 0.7;
}

.xt-news-card-body h3 {
    font-size: 1rem;
    margin: 0.5rem 0;
    color: var(--xt-accent);
}

.xt-news-card-body p {
    font-size: 0.85rem;
    opacity: 0.75;
    line-height: 1.6;
}

/* ========== Mentors ========== */
.xt-mentors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.xt-mentor-card {
    text-align: center;
    background: var(--xt-card-bg);
    border: 1px solid var(--xt-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease;
}

.xt-mentor-card:hover {
    transform: translateY(-5px);
}

.xt-mentor-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--xt-secondary);
    margin: 0 auto 1rem;
}

.xt-mentor-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.xt-mentor-card .xt-mentor-title {
    font-size: 0.85rem;
    color: var(--xt-secondary);
    margin-bottom: 0.8rem;
}

.xt-mentor-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========== Data Insights ========== */
.xt-data-section {
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
}

.xt-data-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.xt-data-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.xt-data-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.xt-data-stat-item {
    text-align: center;
    background: var(--xt-card-bg);
    border: 1px solid var(--xt-border);
    border-radius: 16px;
    padding: 2rem 1rem;
}

.xt-data-stat-item .xt-big-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--xt-secondary);
    font-family: var(--xt-font-heading);
}

.xt-data-stat-item .xt-stat-desc {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* ========== Join Us ========== */
.xt-jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.xt-job-card {
    background: var(--xt-card-bg);
    border: 1px solid var(--xt-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.xt-job-card:hover {
    transform: translateY(-5px);
}

.xt-job-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.xt-job-card .xt-job-location {
    font-size: 0.85rem;
    color: var(--xt-secondary);
    margin-bottom: 0.8rem;
}

.xt-job-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* ========== CTA Section ========== */
.xt-cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--xt-primary), var(--xt-darker));
    border-top: 1px solid var(--xt-border);
    border-bottom: 1px solid var(--xt-border);
}

.xt-cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.xt-cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.85;
}

/* ========== Footer ========== */
#xt-footer {
    background: var(--xt-darker);
    border-top: 1px solid var(--xt-border);
    padding: 3rem 2rem 1.5rem;
}

.xt-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.xt-footer-col h4 {
    font-size: 1.1rem;
    color: var(--xt-secondary);
    margin-bottom: 1rem;
    font-family: var(--xt-font-heading);
}

.xt-footer-col ul {
    list-style: none;
}

.xt-footer-col ul li {
    margin-bottom: 0.5rem;
}

.xt-footer-col ul li a {
    color: var(--xt-text);
    font-size: 0.9rem;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.xt-footer-col ul li a:hover {
    opacity: 1;
    color: var(--xt-secondary);
}

.xt-footer-col p {
    font-size: 0.9rem;
    opacity: 0.75;
    line-height: 1.8;
}

.xt-footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--xt-border);
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.xt-footer-bottom p {
    margin-bottom: 0.4rem;
}

.xt-footer-bottom a {
    color: var(--xt-text);
}

.xt-footer-honor {
    color: var(--xt-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* ========== Inner Page Styles ========== */
.xt-page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.xt-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.xt-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13, 8, 32, 0.5) 0%, rgba(13, 8, 32, 0.9) 100%);
}

.xt-page-hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.xt-page-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
}

.xt-page-hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
}

/* ========== Article Content ========== */
.xt-article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.xt-article-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.xt-article-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
}

.xt-article-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 2;
}

.xt-article-content img {
    border-radius: 12px;
    margin: 2rem auto;
    border: 1px solid var(--xt-border);
}

.xt-article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========== Scout Station Form ========== */
.xt-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.xt-form-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.xt-form-step-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.xt-form-step-indicator.xt-step-active {
    opacity: 1;
}

.xt-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--xt-card-bg);
    border: 2px solid var(--xt-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--xt-secondary);
}

.xt-step-active .xt-step-num {
    background: var(--xt-secondary);
    color: var(--xt-darker);
}

.xt-form-panel {
    display: none;
}

.xt-form-panel.xt-panel-active {
    display: block;
}

.xt-form-group {
    margin-bottom: 1.5rem;
}

.xt-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--xt-text);
}

.xt-form-group label .xt-required {
    color: #ff6b6b;
}

.xt-form-group input,
.xt-form-group select,
.xt-form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(72, 61, 139, 0.3);
    border: 1px solid var(--xt-border);
    border-radius: 8px;
    color: var(--xt-accent);
    font-family: var(--xt-font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.xt-form-group input:focus,
.xt-form-group select:focus,
.xt-form-group textarea:focus {
    outline: none;
    border-color: var(--xt-secondary);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

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

.xt-form-group select option {
    background: var(--xt-darker);
    color: var(--xt-text);
}

.xt-form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.xt-btn-secondary {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: transparent;
    border: 1px solid var(--xt-border);
    color: var(--xt-text);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.xt-btn-secondary:hover {
    border-color: var(--xt-secondary);
    color: var(--xt-secondary);
}

.xt-form-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.xt-form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.xt-form-success p {
    font-size: 1.1rem;
    opacity: 0.85;
}

/* ========== APP Download ========== */
.xt-app-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.xt-app-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.xt-app-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 2rem;
}

.xt-app-content h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.xt-app-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.85;
}

.xt-app-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.xt-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2rem;
    background: var(--xt-card-bg);
    border: 2px solid var(--xt-secondary);
    border-radius: 12px;
    color: var(--xt-accent);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.xt-app-btn:hover {
    background: var(--xt-secondary);
    color: var(--xt-darker);
}

.xt-app-btn .xt-app-icon {
    font-size: 1.8rem;
}

/* ========== Scroll Animation ========== */
.xt-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.xt-fade-in.xt-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== Star Particles Canvas ========== */
#xt-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ========== Responsive Design ========== */

/* 1440px */
@media (max-width: 1440px) {
    .xt-section {
        max-width: 1200px;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .xt-stars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .xt-cases-grid {
        grid-template-columns: 1fr;
    }

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

    .xt-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

/* 768px */
@media (max-width: 768px) {
    .xt-nav-links {
        display: none;
    }

    .xt-hamburger {
        display: flex;
    }

    .xt-hero-content h1 {
        font-size: 2.2rem;
    }

    .xt-hero-slogan {
        font-size: 1.2rem;
    }

    .xt-section-title {
        font-size: 1.8rem;
    }

    .xt-stars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

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

    .xt-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .xt-jobs-grid {
        grid-template-columns: 1fr;
    }

    .xt-form-steps {
        flex-direction: column;
        align-items: center;
    }

    .xt-page-hero-content h1 {
        font-size: 2rem;
    }
}

/* 360px */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .xt-hero-content h1 {
        font-size: 1.8rem;
    }

    .xt-stars-grid {
        grid-template-columns: 1fr;
    }

    .xt-news-grid {
        grid-template-columns: 1fr;
    }

    .xt-mentors-grid {
        grid-template-columns: 1fr;
    }

    .xt-data-stats {
        grid-template-columns: 1fr;
    }

    .xt-process-steps {
        grid-template-columns: 1fr;
    }

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

    .xt-app-buttons {
        flex-direction: column;
        align-items: center;
    }
}
