/* Orome AI Website Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f7;
    color: #1d1d1f;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Main element */
main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Removed old header styles - now inside carousel */

/* Carousel Section */
.carousel-section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

/* Slogan */
.slogan-container {
    text-align: center;
    padding: 0.5rem 2rem 1.5rem;
    margin-bottom: 0;
}

.slogan {
    font-size: 2rem;
    font-weight: 700;
    color: #59CBE8;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.carousel-container {
    position: relative;
    background: #fbfbfd;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    overflow: visible;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

/* Carousel Header matching bottom bar style */
.carousel-header {
    background: #fbfbfd;
    border-bottom: none;
    padding: 1rem 2rem;
    margin: 0 2rem 1.5rem;
    border-radius: 0;
    position: relative;
}

.carousel-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #d2d2d7, transparent);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-header .logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.carousel-header .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.carousel-header .nav-links a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 400;
    font-size: 17px;
    transition: color 0.2s ease;
}

.carousel-header .nav-links a:hover {
    color: #007aff;
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: rgba(0,0,0,0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
    left: 20px;
}

.carousel-arrow-right {
    right: 20px;
}

/* Main Video Container - Horizontal Layout */
.main-video-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Left Thumbnail */
.thumbnail-left {
    flex: 0 0 250px;
    order: 1;
    display: flex;
    align-items: center;
}

/* Center Video */
.video-center {
    flex: 1;
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    justify-content: flex-start;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/9;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.1),
        0 2px 6px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.1);
    background: linear-gradient(135deg, #fbfbfd 0%, #f8f9fa 100%);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Video info removed for compact design */

/* Right Thumbnail */
.thumbnail-right {
    flex: 0 0 250px;
    order: 3;
    display: flex;
    align-items: center;
}

/* Thumbnail Navigation - Now individual */
.thumbnail-container {
    display: contents;
}

.thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 220px;
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.06),
        0 1px 3px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.1);
    background: linear-gradient(135deg, #fbfbfd 0%, #f8f9fa 100%);
}

.thumbnail:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 
        0 4px 16px rgba(0,0,0,0.12),
        0 2px 8px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.2);
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8ed 100%);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail img[src=""] {
    background: #f0f0f0;
    min-height: 100px;
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1rem 0.5rem 0.5rem;
}

.thumbnail-title {
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Video Indicators */
.video-indicators {
    padding: 0.5rem 2rem 1rem;
    display: flex;
    justify-content: center;
}

/* Delicate Separator Bar */
.separator-bar {
    height: 1px;
    background: linear-gradient(to right, transparent, #d2d2d7, transparent);
    margin: 0 2rem 1.5rem;
}

.indicators-container {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #667eea;
}

.indicator:hover {
    background: #999;
}

/* Use Cases Section - Now inside carousel */
.use-cases-container {
    padding: 0 2rem 2rem;
    text-align: center;
    margin: 0 15%;
}

.use-cases-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: visible;
}

.use-case-button {
    background: linear-gradient(135deg, #fbfbfd 0%, #f8f9fa 100%);
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    font-weight: 500;
    color: #1d1d1f;
    text-decoration: none;
    display: inline-block;
    position: relative;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    user-select: none;
    overflow: hidden;
}

.use-case-button:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8ed 100%);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.use-case-button:active {
    background: linear-gradient(135deg, #e8e8ed 0%, #dcdce0 100%);
    transform: translateY(-1px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.use-case-button::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1d1d1f;
    color: #fbfbfd;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1001;
    margin-bottom: 5px;
    pointer-events: none;
}

.use-case-button::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #1d1d1f;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1001;
    margin-bottom: 1px;
    pointer-events: none;
}

.use-case-button:hover::before,
.use-case-button:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Mobile Carousel */
.mobile-carousel {
    display: none;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #f5f5f7;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Mobile Slogan */
.mobile-slogan-container {
    text-align: center;
    padding: 0.5rem 1.5rem 1.5rem;
    margin-bottom: 0;
}

.mobile-slogan {
    font-size: 1.75rem;
    font-weight: 700;
    color: #59CBE8;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.mobile-carousel-container {
    background: #fbfbfd;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

/* Mobile Header */
.mobile-header {
    background: #fbfbfd;
    border-bottom: none;
    padding: 1rem 1.5rem;
    position: relative;
}

.mobile-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #d2d2d7, transparent);
}

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

.mobile-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.mobile-nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.2s ease;
}

.mobile-nav-links a:hover {
    color: #007aff;
}

/* Mobile Video Indicators */
.mobile-video-indicators {
    padding: 1rem 1.5rem 0.5rem;
    text-align: center;
}

.mobile-indicators-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d2d2d7;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mobile-indicator.active {
    background: #007aff;
}

/* Mobile Separator Bar */
.mobile-separator-bar {
    height: 1px;
    background: linear-gradient(to right, transparent, #d2d2d7, transparent);
    margin: 1rem 1.5rem;
}

/* Mobile Use Cases */
.mobile-use-cases-container {
    padding: 1.5rem;
}

.mobile-use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.mobile-use-case-button {
    background: linear-gradient(135deg, #fbfbfd 0%, #f8f9fa 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0.75rem !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: #1d1d1f !important;
    text-align: center !important;
    position: relative !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: ellipsis !important;
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-use-case-button:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8ed 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.mobile-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.mobile-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.mobile-video-info {
    padding: 1.5rem;
    text-align: center;
}

.mobile-video-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
    font-weight: 500;
}

.mobile-video-info p {
    color: #666;
    line-height: 1.5;
    font-size: 1rem;
}

.mobile-navigation {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    gap: 1rem;
}

.mobile-nav-btn {
    flex: 1;
    padding: 0.5rem 0.8rem;
    background: linear-gradient(135deg, #fbfbfd 0%, #f8f9fa 100%);
    color: #1d1d1f;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-nav-btn:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8ed 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .carousel-header nav {
        padding: 1rem;
    }
    
    .carousel-header .nav-links {
        gap: 1rem;
    }
    
    .slogan {
        font-size: 1.75rem;
        font-weight: 700;
        color: #59CBE8;
    }
    
    /* Hide desktop carousel on mobile */
    .carousel-section {
        display: none;
    }
    
    /* Show mobile carousel */
    .mobile-carousel {
        display: block !important;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-case-button {
        padding: 1.5rem;
    }
    
    /* Adjust main centering for mobile */
    main {
        min-height: 100vh;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .mobile-carousel {
        padding: 1rem;
    }
    
    .mobile-video-info {
        padding: 1rem;
    }
    
    .mobile-navigation {
        padding: 1rem;
    }
    
    .use-case-button {
        padding: 1rem;
    }
    
    .mobile-nav-btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .mobile-slogan {
        font-size: 1.5rem;
        font-weight: 700;
        color: #59CBE8;
    }
    
    .use-case-icon {
        font-size: 2.5rem;
    }
}

/* Mobile Responsive for Subpages */
@media (max-width: 768px) {
    .page-section {
        padding: 2rem 0 4rem;
    }
    
    .page-container {
        margin: 0 1rem;
        border-radius: 12px;
    }
    
    .page-header {
        padding: 1rem 1.5rem;
    }
    
    .page-content {
        padding: 2rem 1.5rem;
    }
    
    .page-content h1 {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    
    .page-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .highlight-text {
        font-size: 1.25rem;
        padding: 2rem 1.5rem;
    }
    
    .contact-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .cta-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .cta-button {
        display: block;
        width: 100%;
        margin: 0.75rem 0;
        text-align: center;
    }
    
    .posts-container {
        gap: 2rem;
    }
    
    .post {
        padding: 1.5rem;
    }
    
    .post h2 {
        font-size: 1.25rem;
    }
}

/* Subpage Styles */
.page-section {
    min-height: 100vh;
    background-color: #f5f5f7;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 0 6rem;
}

.page-container {
    background: #fbfbfd;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    margin: 0 2rem;
    position: relative;
}

.page-header {
    background: #fbfbfd;
    border-bottom: none;
    padding: 1rem 2rem;
    margin: 0 2rem 1.5rem;
    border-radius: 0;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #d2d2d7, transparent);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.page-header .logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.page-header .nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.page-header .nav-links a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 400;
    font-size: 17px;
    transition: color 0.2s ease;
    padding: 0.5rem 0;
}

.page-header .nav-links a:hover {
    color: #007aff;
}

.page-header .nav-links a.active {
    color: #1d1d1f;
    position: relative;
}

.page-header .nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 1px;
    background: #d2d2d7;
    border-radius: 1px;
}

.page-content {
    padding: 4rem 3rem;
    color: #1d1d1f;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1d1d1f;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.page-intro {
    font-size: 1.25rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 400;
    line-height: 1.5;
}

.content-section {
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.content-section:nth-child(1) { animation-delay: 0.1s; }
.content-section:nth-child(2) { animation-delay: 0.2s; }
.content-section:nth-child(3) { animation-delay: 0.3s; }
.content-section:nth-child(4) { animation-delay: 0.4s; }
.content-section:nth-child(5) { animation-delay: 0.5s; }

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

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 400;
}

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

.feature-card {
    background: linear-gradient(135deg, #fbfbfd 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-card:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8ed 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #d2d2d7, transparent);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1d1d1f;
    text-align: center;
    background: linear-gradient(135deg, #fbfbfd 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: none;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.highlight-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #d2d2d7, transparent);
}

.contact-section {
    background: linear-gradient(135deg, #fbfbfd 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    border: none;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #d2d2d7, transparent);
}

.contact-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.contact-info {
    margin-top: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #333;
}

.contact-link {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #333;
    text-decoration: underline;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e5e5;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #fbfbfd 0%, #f8f9fa 100%);
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    padding: 14px 20px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    margin: 0.5rem;
    border: none;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cta-button:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8ed 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: #1d1d1f;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1d1d1f;
    border: none;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #e8e8ed 0%, #dcdce0 100%);
    color: #1d1d1f;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cta-link {
    color: #007aff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cta-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Posts Styles */
.posts-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.post {
    background: linear-gradient(135deg, #fbfbfd 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 2rem;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.post:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8ed 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #d2d2d7, transparent);
}

.post h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.post-intro {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.post p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.post-cta {
    font-weight: 500;
    color: #1d1d1f;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #d2d2d7;
}