/* ========================================
   Variables & Reset
   ======================================== */
:root {
    --primary-color: #005BAC;
    --secondary-color: #0071CE;
    --accent-color: #0088FF;
    --dark-bg: #ffffff;
    --dark-card: #f8f9fa;
    --dark-card-hover: #e9ecef;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --gradient-1: linear-gradient(135deg, #005BAC 0%, #0071CE 100%);
    --gradient-2: linear-gradient(135deg, #0071CE 0%, #0088FF 100%);
    --gradient-3: linear-gradient(135deg, #0088FF 0%, #005BAC 100%);
    --border-color: #dee2e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.sp-only {
    display: none;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo-image-large {
    height: 70px;
    width: auto;
}

.logo-separator {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
}

.tiktok-icon {
    font-size: 32px;
    color: #000000;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo i {
    color: var(--primary-color);
    font-size: 28px;
}

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

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

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.cta-btn {
    background: var(--gradient-1);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

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

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    background: var(--dark-card);
    text-align: center;
    font-weight: 500;
    transition: background 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--dark-card-hover);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 91, 172, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 113, 206, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-image-bg {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-text-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
    font-size: 24px;
    background: linear-gradient(45deg, #69C9D0, #EE1D52, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Poppins', 'Noto Sans JP', sans-serif;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 91, 172, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 91, 172, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-large {
    padding: 22px 60px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex: 0 1 200px;
    min-width: 180px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 91, 172, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   Section Common Styles
   ======================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ========================================
   Features Section
   ======================================== */
.features {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

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

.feature-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 91, 172, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 20px;
    font-size: 32px;
    margin-bottom: 25px;
    color: white;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-secondary);
}

.feature-list i {
    color: var(--primary-color);
}

/* ========================================
   Free Section
   ======================================== */
.free-section {
    background: linear-gradient(135deg, rgba(0, 91, 172, 0.1) 0%, rgba(0, 113, 206, 0.1) 100%);
    padding: 100px 0;
    text-align: center;
}

.free-content {
    max-width: 900px;
    margin: 0 auto;
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-1);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 91, 172, 0.3);
}

.free-badge i {
    font-size: 24px;
}

.free-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.3;
}

.free-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 50px;
}

.free-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.free-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: var(--dark-card);
    padding: 30px 20px;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.free-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 91, 172, 0.3);
}

.free-feature-item i {
    font-size: 36px;
    color: var(--primary-color);
}

.free-feature-item span {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* ========================================
   Results Section
   ========================================*/
.results {
    background: #f8f9fa;
}

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

.result-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 91, 172, 0.2);
}

.result-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.result-number {
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.result-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.result-description {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========================================
   Support Section
   ======================================== */
.support {
    background: var(--dark-bg);
}

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

.support-card {
    background: var(--dark-card);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.support-number {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.support-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.support-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   Recruitment Section
   ======================================== */
.recruitment {
    background: white;
    padding: 100px 0;
}

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

.recruitment-box {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.recruitment-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 91, 172, 0.15);
}

.recruitment-box.full-width {
    grid-column: 1 / -1;
}

.recruitment-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
}

.recruitment-subtitle i {
    font-size: 28px;
}

.recruitment-list {
    list-style: none;
    padding: 0;
}

.recruitment-list li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.recruitment-list li:last-child {
    border-bottom: none;
}

.recruitment-list i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

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

.condition-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.condition-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 600;
}

.condition-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
}

/* ========================================
   Flow Section
   ========================================*/

/* ========================================
   Flow Section
   ======================================== */
.flow {
    background: #f8f9fa;
}

.flow-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.flow-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.flow-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 45px;
    top: 90px;
    width: 2px;
    height: calc(100% + 40px);
    background: var(--gradient-1);
}

.flow-step {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: white;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 91, 172, 0.15);
}

.flow-content {
    flex: 1;
    background: var(--dark-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.flow-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.flow-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    background: var(--dark-bg);
}

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

.faq-item {
    background: var(--dark-card);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    background: linear-gradient(135deg, rgba(0, 91, 172, 0.1) 0%, rgba(0, 113, 206, 0.1) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-line {
    background: #06C755;
    color: white;
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 199, 85, 0.4);
}

.btn-form {
    background: var(--gradient-2);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 113, 206, 0.3);
}

.btn-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 113, 206, 0.4);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.cta-note i {
    color: var(--accent-color);
}

/* ========================================
   Contact Form Section
   ======================================== */
.contact-form {
    background: #f8f9fa;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--dark-card);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

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

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
}

.required {
    color: var(--primary-color);
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.1);
}

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

.btn-submit {
    width: 100%;
    margin-top: 20px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 14px;
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 91, 172, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 91, 172, 0.5);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1024px) {
    .hero-image-bg {
        width: 35%;
        opacity: 0.1;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .stat-item {
        flex: 0 1 45%;
        min-width: 150px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .features-grid,
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid,
    .free-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recruitment-content {
        grid-template-columns: 1fr;
    }
    
    .recruitment-conditions {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-image-bg {
        display: none;
    }
    
    .hero-stats {
        gap: 10px;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1 1 0;
        min-width: 0;
        max-width: calc(33.333% - 7px);
        padding: 15px 8px;
    }
    
    .stat-number {
        font-size: 12px;
        line-height: 1.3;
        word-break: keep-all;
    }
    
    .stat-label {
        font-size: 10px;
        line-height: 1.3;
        word-break: keep-all;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .features-grid,
    .support-grid,
    .results-grid,
    .free-features,
    .recruitment-content {
        grid-template-columns: 1fr;
    }
    
    .recruitment-box.full-width {
        grid-column: 1;
    }
    
    .recruitment-conditions {
        grid-template-columns: 1fr;
    }
    
    .flow-item {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .flow-item:not(:last-child)::after {
        display: none;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        gap: 40px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-card,
    .result-card,
    .support-card {
        padding: 25px;
    }
    
    .cta-title {
        font-size: 24px;
    }
}
