:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-color: #FF6B35;
    --accent-gradient: linear-gradient(135deg, #FF6B35, #F7931E);
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --border: #e2e8f0;
    --radius: 16px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --animation-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --animation-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --animation-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--animation-normal);
}

.header.scrolled {
    background: rgba(248, 250, 252, 0.95);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
    margin-right: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: all var(--animation-fast);
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-menu a:hover {
    color: var(--text-primary);
    background: rgba(102, 126, 234, 0.05);
}

.nav-menu a.cta {
    background: var(--accent-gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transform: translateY(0);
}

.nav-menu a.cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #FF6B35 -10%, #F7931E 110%);
}

.hero {
    min-height: 100vh;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-background.jpg') center/cover no-repeat;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 0 80px;
    animation: heroSlideUp var(--animation-slow) ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    margin-bottom: 8px;
    opacity: 0;
    animation: titleSlideIn 0.8s ease-out 0.2s forwards;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    opacity: 0;
    animation: titleSlideIn 0.8s ease-out 0.4s forwards;
}

.hero-divider {
    margin: 32px 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.hero-divider svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-features {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.hero-features p {
    margin-bottom: 12px;
    padding: 10px 24px;
    background: rgba(0, 0, 0, 0.054);
    border-radius: 24px;
    display: inline-block;
    margin-left: 8px;
    margin-right: 8px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.disclaimer {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffffcf;
    font-weight: 700 !important;
    margin-top: 24px !important;
    font-size: 16px !important;
}

.hero-cta {
    margin-top: 48px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1s forwards;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 32px;
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-gradient);
    color: white;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all var(--animation-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 20px 40px rgba(255, 107, 53, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

@keyframes heroSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services {
    padding: 120px 0;
    background: var(--surface-alt);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 1.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 24px;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.service-card {
    background: var(--surface);
    padding: 48px 32px;
    border-radius: 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--animation-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
    opacity: 0;
    transition: opacity var(--animation-normal);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(102, 126, 234, 0.2);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 32px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
    transform: translateX(100%) rotate(45deg);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.3;
}

.service-subtitle {
    color: var(--accent-color);
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 600;
    padding: 6px 16px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: inline-block;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.service-description {
    line-height: 1.6;
}

.service-description p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 15px;
}

.consultation-status {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consultation-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.consultation-status .section-title {
    color: white;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.consultation-status .section-title::after {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.status-item {
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--animation-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.status-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.status-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.status-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.status-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.status-description {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.4;
}

.features {
    padding: 120px 0;
    background: var(--surface);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features .container {
    position: relative;
    z-index: 2;
}

.features .section-title {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 80px;
}

.features .section-title::after {
    background: var(--accent-gradient);
}

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

.feature-item {
    background: var(--surface);
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--animation-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03) 0%, rgba(247, 147, 30, 0.03) 100%);
    opacity: 0;
    transition: opacity var(--animation-normal);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 107, 53, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 32px;
    background: var(--accent-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: iconSpin 3s linear infinite;
    opacity: 0;
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.4;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

@keyframes iconSpin {
    to {
        transform: rotate(360deg);
    }
}

.consultation-form {
    padding: 120px 0;
    background: var(--surface-alt);
    position: relative;
}

.consultation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.form-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-subtitle {
    font-size: 20px;
    background: var(--accent-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-bottom: 16px;
}

.privacy-notice {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
}

.consultation-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    padding: 56px;
    border-radius: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.consultation-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    transition: all var(--animation-fast);
    font-family: inherit;
    background: var(--surface);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

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

.form-checkbox {
    margin: 40px 0;
    padding: 24px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-radius: 6px;
    position: relative;
    transition: all var(--animation-fast);
    flex-shrink: 0;
    margin-top: 2px;
    background: var(--surface);
}

.checkbox-label:hover .checkmark {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-gradient);
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.checkbox-label span:not(.checkmark) {
    color: var(--text-secondary);
    font-size: 15px;
}

.submit-button {
    width: 100%;
    background: var(--accent-gradient);
    color: white;
    padding: 20px 32px;
    border: none;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--animation-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    margin-top: 16px;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: var(--shadow-xl), 0 20px 40px rgba(255, 107, 53, 0.4);
}

.submit-button:active {
    transform: translateY(0) scale(0.98);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-button:disabled:hover {
    transform: none;
    box-shadow: var(--shadow-md);
}

.footer {
    background: var(--text-primary);
    color: white;
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-info h3 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 0;
}

.footer-contact i {
    width: 20px;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-menu a {
        font-size: 14px;
        padding: 6px 12px;
    }

    .nav-menu a.cta {
        padding: 8px 16px;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-features p {
        margin-bottom: 8px;
        padding: 6px 16px;
        font-size: 16px;
    }

    .services,
    .features,
    .consultation-form {
        padding: 80px 0;
    }

    .consultation-status {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .status-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 400px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .consultation-form-container {
        padding: 40px 24px;
        margin: 0 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header {
        padding: 12px 0;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-menu a {
        font-size: 13px;
        padding: 4px 8px;
    }

    .hero-content {
        padding: 80px 0 40px;
    }

    .hero-features p {
        font-size: 15px;
        padding: 4px 12px;
    }

    .cta-button {
        padding: 16px 24px;
        font-size: 16px;
        gap: 8px;
    }

    .service-card,
    .feature-item {
        padding: 32px 20px;
    }

    .consultation-form-container {
        padding: 32px 20px;
        margin: 0 12px;
        border-radius: 20px;
    }

    .submit-button {
        padding: 16px 24px;
        font-size: 16px;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(32px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .scale-in,
    .hero-content,
    .title-line,
    .title-highlight {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    top: 20%;
    left: 10%;
    animation-delay: -2s;
}

.floating-elements::after {
    top: 60%;
    right: 15%;
    animation-delay: -4s;
    width: 150px;
    height: 150px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loaded {
    opacity: 1;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.micro-interaction {
    transition: all var(--animation-fast);
}

.micro-interaction:hover {
    transform: translateY(-1px);
}

.pulse-effect {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.glow-effect {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.mobile-hidden {
    display: block;
}

@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}