* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0c14;
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><circle cx="50" cy="50" r="40" fill="none" stroke="%23818cf8" stroke-width="1"/></svg>') repeat;
    animation: float 20s linear infinite;
}

@keyframes float {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: clamp(28px, 4vw, 32px);
    font-weight: 800;
    background: linear-gradient(135deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(36px, 6vw, 54px);
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #cbd5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: #94a3b8;
    margin-bottom: 30px;
    max-width: 90%;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(16px, 2vw, 18px);
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.3);
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(168, 85, 247, 0.5);
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #818cf8;
    line-height: 1.2;
}

.stat-label {
    color: #94a3b8;
    font-size: clamp(14px, 2vw, 16px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-container {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    padding: clamp(25px, 4vw, 40px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.form-container h2 {
    font-size: clamp(24px, 3vw, 28px);
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
}

.form-container input,
.form-container select {
    width: 100%;
    padding: clamp(12px, 2vw, 15px);
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    font-size: clamp(14px, 2vw, 16px);
    transition: border-color 0.3s;
}

.form-container input:focus,
.form-container select:focus {
    outline: none;
    border-color: #818cf8;
}

.form-container button {
    width: 100%;
    padding: clamp(14px, 2vw, 15px);
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.form-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(168, 85, 247, 0.5);
}

.form-container button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-send-result {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: clamp(40px, 6vw, 60px);
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features,
.reviews {
    padding: clamp(50px, 8vw, 80px) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 30px);
}

.feature-card {
    background: #1e293b;
    padding: clamp(25px, 4vw, 40px) clamp(20px, 3vw, 30px);
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
    border-color: rgba(129, 140, 248, 0.2);
}

.feature-card img {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    margin-bottom: 20px;
    filter: none;
}

.feature-card h3 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-card p {
    color: #94a3b8;
    font-size: clamp(14px, 2vw, 16px);
}

.jobs {
    padding: 100px 0;
    background: linear-gradient(0deg, #0a0c14 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.jobs::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    border-radius: 50%;
    pointer-events: none;
}

.jobs-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.jobs-carousel-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.jobs-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 30px;
}

.jobs-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
}

.job-card {
    flex: 0 0 100%;
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1e293b, #2d3748);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.job-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(145deg, rgba(129, 140, 248, 0.3), rgba(168, 85, 247, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.job-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(99, 102, 241, 0.4);
}

.job-card:hover::before {
    opacity: 1;
}

.job-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.job-card:hover img {
    transform: scale(1.1);
}

.job-info {
    padding: 25px;
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}

.job-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: -0.5px;
}

.job-info .company {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-info .company::before {
    content: '🏢';
    font-size: 15px;
    opacity: 0.7;
}

.salary {
    color: #10b981;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(5px);
    margin-bottom: 12px;
}

.job-meta {
    display: flex;
    gap: 15px;
    margin-top: 12px;
    color: #94a3b8;
    font-size: 14px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-meta span.location::before {
    content: '📍';
    font-size: 13px;
}

.job-meta span.experience::before {
    content: '⏳';
    font-size: 13px;
}

.job-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 15px -3px rgba(239, 68, 68, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.jobs-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    z-index: 10;
}

.jobs-arrow:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(168, 85, 247, 0.7);
}

.jobs-arrow:active {
    transform: scale(0.95);
}

.jobs-arrow svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s;
}

.jobs-arrow-left:hover svg {
    transform: translateX(-3px);
}

.jobs-arrow-right:hover svg {
    transform: translateX(3px);
}

.jobs-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.jobs-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(51, 65, 85, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.jobs-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.jobs-dot:hover {
    background: #475569;
    transform: scale(1.3);
}

.jobs-dot.active {
    width: 40px;
    border-radius: 20px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}

.jobs-dot.active::before {
    opacity: 0.5;
}

.reviews {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0c14 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    border-radius: 50%;
    pointer-events: none;
}

.reviews::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    bottom: -300px;
    left: -300px;
    border-radius: 50%;
    pointer-events: none;
}

.carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.carousel-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    flex: 0 0 100%;
    background: linear-gradient(145deg, #1e293b, #2d3748);
    padding: 50px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    position: relative;
    backdrop-filter: blur(10px);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 180px;
    color: rgba(129, 140, 248, 0.1);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.review-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(145deg, rgba(129, 140, 248, 0.3), rgba(168, 85, 247, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    text-transform: uppercase;
}

.review-info {
    flex: 1;
}

.review-info h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    letter-spacing: -0.5px;
}

.review-info .position {
    color: #fbbf24;
    font-size: 16px;
    font-weight: 500;
}

.review-rating {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.star {
    color: #fbbf24;
    font-size: 24px;
    margin-right: 4px;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.3));
}

.review-text {
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-style: italic;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.review-date {
    color: #94a3b8;
    font-size: 15px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.review-date .verified {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.review-date .verified::before {
    content: '✓';
    font-weight: bold;
    font-size: 14px;
}

.review-date .date {
    color: #64748b;
    font-size: 14px;
}

.carousel-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.carousel-arrow:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(168, 85, 247, 0.7);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s;
}

.carousel-arrow-left:hover svg {
    transform: translateX(-3px);
}

.carousel-arrow-right:hover svg {
    transform: translateX(3px);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(51, 65, 85, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.dot:hover {
    background: #475569;
    transform: scale(1.3);
}

.dot.active {
    width: 40px;
    border-radius: 20px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}

.dot.active::before {
    opacity: 0.5;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.review-card {
    animation: slideIn 0.5s ease forwards;
}

.footer {
    background: #020617;
    padding: clamp(30px, 5vw, 40px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer p {
    color: #64748b;
    font-size: clamp(14px, 2vw, 16px);
}

.social-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: clamp(14px, 2vw, 16px);
}

.social-links a:hover {
    color: #818cf8;
}

@media (max-width: 992px) {
    .hero-grid {
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .job-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .jobs-carousel-container {
        gap: 10px;
    }
    
    .jobs-arrow {
        width: 44px;
        height: 44px;
    }
    
    .jobs-arrow svg {
        width: 22px;
        height: 22px;
    }
    
    .job-card {
        flex: 0 0 100%;
    }
    
    .job-card img {
        height: 200px;
    }
    
    .job-info h3 {
        font-size: 24px;
    }
    
    .job-info .company {
        font-size: 14px;
    }
    
    .salary {
        font-size: 20px;
        padding: 6px 14px;
    }
    
    .job-meta {
        font-size: 13px;
        gap: 12px;
    }
    
    .job-badge {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .review-card {
        padding: 35px;
    }
    
    .review-card::before {
        font-size: 140px;
        right: 20px;
    }
    
    .review-avatar {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .review-info h4 {
        font-size: 22px;
    }
    
    .review-info .position {
        font-size: 14px;
    }
    
    .star {
        font-size: 22px;
    }
    
    .review-text {
        font-size: 16px;
    }
    
    .review-date {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .carousel-arrow {
        width: 44px;
        height: 44px;
    }
    
    .carousel-arrow svg {
        width: 22px;
        height: 22px;
    }
    
    .carousel-container {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 14px 30px;
    }
    
    .jobs-arrow {
        width: 38px;
        height: 38px;
    }
    
    .jobs-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .job-info {
        padding: 20px;
    }
    
    .job-info h3 {
        font-size: 22px;
    }
    
    .job-info .company {
        font-size: 13px;
    }
    
    .salary {
        font-size: 18px;
        padding: 5px 12px;
    }
    
    .job-meta {
        font-size: 12px;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .job-badge {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .review-card::before {
        font-size: 100px;
        top: 10px;
        right: 15px;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .review-avatar {
        margin: 0 auto;
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .review-info h4 {
        font-size: 20px;
    }
    
    .review-info .position {
        font-size: 13px;
    }
    
    .review-rating {
        text-align: center;
    }
    
    .star {
        font-size: 20px;
    }
    
    .review-text {
        font-size: 15px;
        text-align: center;
    }
    
    .review-date {
        align-items: center;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .jobs-carousel-dots,
    .carousel-dots {
        gap: 8px;
    }
    
    .jobs-dot,
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .jobs-dot.active {
        width: 30px;
    }
}

@media (max-width: 360px) {
    h1 {
        font-size: 32px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .job-card img {
        height: 180px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-info h4 {
        font-size: 18px;
    }
    
    .star {
        font-size: 18px;
    }
    
    .review-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .form-container input,
    .form-container select,
    .form-container button {
        padding: 12px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
}