/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 127, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.3) 30%, 
        rgba(0,0,0,0.6) 60%, 
        rgba(0,0,0,0.9) 85%, 
        rgba(0,0,0,1) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding-bottom: 6rem;
    width: 100%;
}

.profile-info {
    animation: fadeInUp 1s ease-out;
}

.name {
    font-size: 3.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8) !important;
    animation: none !important;
}


.title {
    font-size: 1.4rem;
    color: #ccc;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 감각적인 소개 링크 */
.intro-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 255, 127, 0.1) 100%);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

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

.intro-link:hover::before {
    left: 100%;
}

.intro-link:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(0, 255, 127, 0.2) 100%);
    border-color: rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 
        0 5px 15px rgba(0, 255, 255, 0.2),
        0 0 20px rgba(0, 255, 255, 0.1);
}

.intro-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: #ffffff;
}

.intro-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.intro-link:hover .intro-arrow {
    transform: translateX(3px);
}

/* 스크롤 인디케이터 */
.scroll-down {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.3rem;
    background: linear-gradient(135deg, rgba(0, 40, 80, 0.2) 0%, rgba(0, 20, 40, 0.3) 100%);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

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

.action-link:hover::before {
    left: 100%;
}

.action-link:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 255, 127, 0.1) 100%);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 
        0 5px 15px rgba(0, 255, 255, 0.15),
        0 0 25px rgba(0, 255, 255, 0.08);
}

.action-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
}

.action-icon {
    font-size: 1.1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 10% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #333;
}

.modal-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.5rem;
}

.close {
    color: #999;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffffff;
}

.modal-body {
    padding: 2rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-3px);
    border-color: #555;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.project-card:hover .project-arrow {
    transform: translateX(5px);
    opacity: 1;
}

.project-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.project-card h3 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.project-card p {
    color: #999;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.project-arrow {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.contact-info p {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* About Page Styles */
.about-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 255, 127, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease;
}

.about-page.hidden {
    transform: translateX(100%);
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid #333;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 40, 80, 0.2) 0%, rgba(0, 20, 40, 0.3) 100%);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-btn:hover {
    border-color: rgba(0, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 255, 127, 0.1) 100%);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.back-arrow {
    font-size: 1.2rem;
}

.about-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin: 0;
}

/* Slider Styles */
.about-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-container {
    display: flex;
    width: 600%;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    width: 16.666%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.slide-content {
    max-width: 600px;
    text-align: center;
    color: #ffffff;
}

.slide-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.slide h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.slide p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.experience-item {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #708D81;
}

.experience-item h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.experience-item p {
    color: #999;
    font-size: 1rem;
    margin: 0;
}

.slide blockquote {
    font-size: 2rem;
    font-style: italic;
    color: #708D81;
    margin: 2rem 0;
    position: relative;
}

.slide blockquote::before,
.slide blockquote::after {
    content: '"';
    font-size: 3rem;
    color: rgba(112, 141, 129, 0.3);
    position: absolute;
    top: -1rem;
}

.slide blockquote::before {
    left: -2rem;
}

.slide blockquote::after {
    right: -2rem;
}

/* Navigation Dots */
.slide-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #708D81;
    transform: scale(1.2);
}

/* Slide Control Buttons */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slide-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Portfolio Item Styles */
.portfolio-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #708D81;
}

.portfolio-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.experience-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(112, 141, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #708D81;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px dashed #708D81;
}

.portfolio-info {
    flex: 1;
}

.portfolio-info.full-width {
    width: 100%;
}

.portfolio-info h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.portfolio-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.year-badge, .book-badge {
    display: inline-block;
    background: #708D81;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.book-badge {
    background: #d4a574;
}

/* Stats Styles */
.intro-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    min-width: 80px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #708D81;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
}

/* Media & Education Styles */
.media-appearances, .education-history {
    margin-top: 2rem;
    text-align: left;
}

.media-appearances h4, .education-history h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.media-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.media-item {
    background: rgba(112, 141, 129, 0.2);
    color: #708D81;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.education-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.education-item strong {
    color: #708D81;
    display: block;
    margin-bottom: 0.5rem;
}

.additional-info {
    font-style: italic;
    color: #999;
    font-size: 0.9rem;
}

/* Tech Stack & Features */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tag {
    background: #708D81;
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.ai-features {
    margin-top: 2rem;
    text-align: left;
}

.ai-features h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    color: #ccc;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #708D81;
    font-weight: bold;
}

.vision-statement {
    margin-top: 2rem;
    text-align: center;
}

.vision-statement blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: #708D81;
    margin: 0;
    padding: 1.5rem;
    background: rgba(112, 141, 129, 0.1);
    border-radius: 10px;
    border-left: 4px solid #708D81;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding-bottom: 5rem;
    }
    
    .intro-link {
        margin-bottom: 2rem;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    .title {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        gap: 0.8rem;
    }
    
    .action-link {
        padding: 0.6rem 1.1rem;
        min-width: 120px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .project-card {
        padding: 1.5rem 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-bottom: 4rem;
    }
    
    .intro-link {
        margin-bottom: 1.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .title {
        font-size: 1rem;
    }
    
    
    .hero-actions {
        gap: 0.6rem;
    }
    
    .action-link {
        padding: 0.5rem 1rem;
        min-width: 110px;
        font-size: 0.85rem;
    }
    
    .project-card {
        padding: 1.2rem 0.8rem;
    }
    
    .project-card h3 {
        font-size: 1rem;
    }
    
    .project-card p {
        font-size: 0.8rem;
    }
    
    /* About Page Mobile */
    .about-header {
        padding: 1rem;
    }
    
    .about-header h2 {
        font-size: 1.5rem;
    }
    
    .slide {
        padding: 1rem;
    }
    
    .slide h3 {
        font-size: 2rem;
    }
    
    .slide p {
        font-size: 1rem;
    }
    
    .slide-icon {
        font-size: 3rem;
    }
    
    .slide blockquote {
        font-size: 1.5rem;
    }
    
    .slide blockquote::before,
    .slide blockquote::after {
        display: none;
    }
    
    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .prev-btn {
        left: 1rem;
    }
    
    .next-btn {
        right: 1rem;
    }
    
    /* Portfolio Mobile Styles */
    .portfolio-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .portfolio-image {
        width: 100px;
        height: 100px;
    }
    
    .intro-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-box {
        min-width: 120px;
    }
    
    .media-list {
        justify-content: center;
    }
    
    .tech-stack {
        justify-content: center;
    }
}

/* Landing Buttons Section */
.landing-buttons {
    padding: 5rem 0 !important;
    background: #ffffff !important;
    color: #1a1a1a !important;
    position: relative !important;
    z-index: 999 !important;
    width: 100% !important;
    min-height: 100vh !important;
    box-sizing: border-box !important;
    font-family: 'Inter', sans-serif !important;
    line-height: 1.6 !important;
}

.landing-buttons,
.landing-buttons *,
.landing-buttons *::before,
.landing-buttons *::after {
    color: #1a1a1a !important;
    background-color: transparent !important;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    background: transparent;
}

.landing-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a !important;
    background: none !important;
    -webkit-text-fill-color: #1a1a1a !important;
}

.landing-subtitle {
    font-size: 1.2rem;
    color: #6c757d !important;
    margin-bottom: 3rem;
    font-weight: 400;
}

.buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.landing-button-card {
    background: #ffffff !important;
    padding: 2.5rem 2rem !important;
    border-radius: 20px !important;
    border: 1px solid #e9ecef !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    color: #1a1a1a !important;
    position: relative !important;
    z-index: 1000 !important;
}

.landing-button-card,
.landing-button-card * {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
}

.landing-button-card p {
    color: #6c757d !important;
}

.landing-button-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.button-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.landing-button-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a !important;
}

.landing-button-card p {
    color: #6c757d !important;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 180px;
}

.cta-button * {
    color: inherit !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Button Color Variants */
.cta-button.youtube {
    background: #ff0000;
    color: #ffffff;
}

.cta-button.youtube:hover {
    background: #cc0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.cta-button.platform {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.cta-button.platform:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button.books {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

.cta-button.books:hover {
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

.cta-button.education {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
}

.cta-button.education:hover {
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
}

.cta-button.consultation {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: #ffffff;
}

.cta-button.consultation:hover {
    box-shadow: 0 8px 25px rgba(67, 233, 123, 0.4);
}

.cta-button.contact {
    background: linear-gradient(135deg, #1a1a1a 0%, #495057 100%);
    color: #ffffff;
}

.cta-button.contact:hover {
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.4);
}

/* Mobile Responsive for Landing Buttons */
@media (max-width: 768px) {
    .landing-buttons {
        padding: 3rem 0;
    }
    
    .landing-container {
        padding: 0 1rem;
    }
    
    .landing-title {
        font-size: 2rem;
    }
    
    .landing-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .buttons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .landing-button-card {
        padding: 2rem 1.5rem;
    }
    
    .button-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .landing-button-card h3 {
        font-size: 1.25rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        min-width: 160px;
    }
}
