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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-horizontal {
    height: 28px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #0d1666;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    z-index: 1001;
    padding: 1rem;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 0;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dropdown-content a:hover {
    color: #0d1666;
}

.dropdown-section {
    margin-bottom: 1rem;
}

.dropdown-section h4 {
    color: #0d1666;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dropdown-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-section li {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0d1666 0%, #1e40af 100%);
    color: #ffffff;
    padding: 12rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(13, 22, 102, 0.2);
    min-height: 80vh;
}

.hero.compact-hero {
    padding: 6rem 0;
    min-height: 50vh;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    letter-spacing: 0.025em;
}

/* YCombinator Badge */
.yc-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.yc-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.yc-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.025em;
}

.yc-logo-img {
    height: 16px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.yc-badge:hover .yc-logo-img {
    opacity: 1;
}

.yc-logo {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.025em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dynamic Logo Design */
.hero-logo-design {
    position: absolute;
    bottom: -100px;
    right: -50px;
    z-index: 10;
    opacity: 1;
    transition: all 0.5s ease;
    /* Start visible immediately */
    display: block;
}

.logo-line {
    background-color: #ffffff;
    height: 25px;
    margin: 5px 0;
    border-radius: 15px;
    transform-origin: left center;
    transition: all 0.5s ease;
    position: relative;
}

.logo-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, #ffffff 20%, #ffffff 80%, transparent 100%);
    border-radius: 15px;
}

.line-1 {
    width: 600px;
    transform: rotate(-45deg);
    margin-left: -300px;
    height: 20px;
    background-color: #ffffff;
}

.line-2 {
    width: 500px;
    transform: rotate(-45deg);
    margin-left: -200px;
    height: 20px;
    background-color: #ffffff;
}

.line-3 {
    width: 400px;
    transform: rotate(-45deg);
    margin-left: -100px;
    height: 20px;
    background-color: #ffffff;
}

/* Scroll-triggered animations */
.hero-logo-design.scroll-animate {
    opacity: 1;
    right: 5%;
    top: 40%;
}

.hero-logo-design.scroll-animate .logo-line {
    height: 8px;
    margin: 16px 0;
}

.hero-logo-design.scroll-animate .line-1 {
    width: 120px;
    transform: rotate(-30deg);
}

.hero-logo-design.scroll-animate .line-2 {
    width: 140px;
    transform: rotate(-30deg);
}

.hero-logo-design.scroll-animate .line-3 {
    width: 160px;
    transform: rotate(-30deg);
}

.hero-logo-design.horizontal {
    opacity: 1;
    right: 0%;
    top: 30%;
    transform: translateY(-50%) scale(1.2);
}

.hero-logo-design.horizontal .logo-line {
    height: 10px;
    margin: 20px 0;
}

.hero-logo-design.horizontal .line-1 {
    width: 150px;
    transform: rotate(0deg);
}

.hero-logo-design.horizontal .line-2 {
    width: 180px;
    transform: rotate(0deg);
}

.hero-logo-design.horizontal .line-3 {
    width: 210px;
    transform: rotate(0deg);
}

.hero-logo-design.transition-to-sections {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
    transition: all 0.8s ease;
}

/* Move logo down as scroll continues */
.hero-logo-design.move-down {
    top: 70%;
    right: 5%;
}

.hero-logo-design.move-down .logo-line {
    background-color: #0d1666;
}

/* Transform into section bars */
.hero-logo-design.transform-to-bars {
    opacity: 1;
    top: 0;
    right: 0;
    transform: none;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-logo-design.transform-to-bars .logo-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    margin: 0;
    transform: rotate(0deg);
    background-color: #0d1666;
}

.hero-logo-design.transform-to-bars .line-1 {
    top: 20%;
}

.hero-logo-design.transform-to-bars .line-2 {
    top: 45%;
}

.hero-logo-design.transform-to-bars .line-3 {
    top: 70%;
}

/* Button Styles */
.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #0d1666 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(13, 22, 102, 0.2);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(13, 22, 102, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #0d1666;
    transform: translateY(-1px);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: #ffffff;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.18rem;
    color: #374151;
    text-align: center;
    margin-top: -0.3rem;
    margin-bottom: 2.2rem;
    font-weight: 400;
    opacity: 0.85;
}

.features-sections {
    width: 100%;
    display: flex;
    justify-content: center;
}

.features-grid {
    display: flex;
    gap: 1.2rem;
    align-items: stretch;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    /* no fixed height */
}

.feature-section {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(13, 22, 102, 0.10), 0 1.5px 8px rgba(0,0,0,0.04);
    border: none;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    padding: 0 0 0.7rem 0;
}

.feature-section:hover {
    box-shadow: 0 16px 48px rgba(13, 22, 102, 0.18), 0 2px 12px rgba(0,0,0,0.07);
    transform: translateY(-8px) scale(1.025);
}

.btn-coming-soon {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #0d1666;
    font-style: italic;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 1.1rem 2.5rem;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    opacity: 0.8;
    cursor: not-allowed;
    box-shadow: 0 4px 16px rgba(13, 22, 102, 0.08);
    transition: all 0.2s;
}

.btn-coming-soon:disabled {
    pointer-events: none;
}

.feature-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-section:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: #0d1666;
}

/* Recommended Plan Styling */
.feature-section.recommended {
    transform: scale(1.05);
    border: 2px solid #0d1666;
    box-shadow: 0 15px 50px rgba(13, 22, 102, 0.15);
    position: relative;
    margin-top: 15px; /* Add space for the badge */
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
}

.feature-section.recommended::before {
    background: #0d1666;
    height: 6px;
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #0d1666 0%, #1e40af 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(13, 22, 102, 0.3);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.feature-section.recommended:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 40px rgba(13, 22, 102, 0.3);
}

.section-bar {
    background: linear-gradient(135deg, #0d1666 0%, #1e40af 100%);
    color: #ffffff;
    padding: 0.7rem 1.6rem 0.05rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 18px 18px 0 0;
    position: relative;
    z-index: 2;
    box-shadow: none;
    min-height: 80px;
    height: 80px;
    text-align: center;
    margin-bottom: 1.2rem;
}

.section-icon {
    font-size: 1.5rem;
}

.section-bar h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin: 0 0 0.1rem 0;
    letter-spacing: -0.01em;
    width: 100%;
    text-align: center;
}

.section-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.3rem 1.6rem 0 1.6rem;
}

.btn-coming-soon, .section-content .btn {
    margin-top: auto;
    margin-bottom: 0.2rem;
}

.section-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.section-content li {
    color: #4b5563;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.section-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0d1666;
    font-weight: bold;
    font-size: 1.1rem;
}

.section-content p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-content > p {
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 400;
    color: #374151;
    line-height: 1.5;
}

.feature-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    margin: 1.5rem 0;
}

.feature-list h4 {
    color: #0d1666;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.feature-list ul {
    list-style: none;
    padding: 0;
    margin-top: 0.1rem;
    margin-bottom: 1.1rem;
}

.feature-list li {
    font-size: 1.15rem;
    color: #374151;
}

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

/* Coming Soon Styles */
.coming-soon {
    background-color: #f3f4f6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    margin: 1.5rem 0;
}

.coming-soon-content h4 {
    color: #0d1666;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 2rem;
    text-align: center;
}

.coming-soon-content p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
}

/* Pricing Styles */
.pricing-info {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border: 2px solid rgba(13, 22, 102, 0.1);
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d1666;
    margin-bottom: 0.2rem;
    text-align: center;
    letter-spacing: 0.01em;
    line-height: 1.5;
    margin-top: 0.7rem;
}

.pricing-info p {
    color: #4b5563;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Pricing Page Additional Styles */
.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    margin: 0 2rem 4rem 2rem;
}

.pricing-intro h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0d1666 0%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.pricing-intro p {
    font-size: 1.3rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
    padding: 0 1rem;
}

.highlight-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d1666 0%, #3b82f6 100%);
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #0d1666;
}

.highlight-item h4 {
    color: #0d1666;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.highlight-item p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
}

/* Pricing Comparison Table */
.pricing-comparison {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.pricing-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d1666;
    margin-bottom: 3rem;
}

.comparison-table {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background-color: #0d1666;
    color: #ffffff;
    font-weight: 600;
}

.comparison-header > div {
    padding: 1.5rem;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 1rem 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-name {
    font-weight: 500;
    color: #374151;
    text-align: left !important;
    justify-content: flex-start !important;
}

.starter-value,
.professional-value,
.enterprise-value {
    color: #6b7280;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d1666;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: #0d1666;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .comparison-header > div,
    .comparison-row > div {
        padding: 0.75rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Coming Soon Badge Styles */
.coming-soon-link {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coming-soon-badge {
    font-size: 0.75rem;
    color: #0d1666;
    font-weight: 500;
    font-style: italic;
    margin-left: 0.5rem;
    background-color: rgba(13, 22, 102, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(13, 22, 102, 0.2);
}

/* Planning Page Styles */
.feature-detail {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.feature-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d1666;
    margin: 0;
}

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

.feature-list-detailed li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
}

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

.feature-list-detailed li:before {
    content: "•";
    color: #0d1666;
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    margin-left: -1rem;
}

/* Aesthetic Feature Showcase Styles */
.feature-showcase {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 2rem 0;
}

/* JavaScript will handle the alternating layout */

.feature-content-left,
.feature-content-right {
    flex: 1;
}

.feature-video-left,
.feature-video-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-video-left {
    /* Removed background, border, and padding */
}

.feature-video-right {
    /* Removed background, border, and padding */
}

.feature-video-left video,
.feature-video-right video {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.feature-info {
    max-width: 500px;
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #0d1666;
    margin-bottom: 1rem;
}

.feature-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.5rem;
}

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

.feature-highlights li {
    padding: 0.5rem 0;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
}

.feature-highlights li:before {
    content: "✓";
    color: #0d1666;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.video-placeholder {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #d1d5db;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: #0d1666;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.video-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.video-placeholder p {
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-showcase {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .feature-showcase.reverse {
        flex-direction: column;
    }
    
    .feature-info {
        max-width: 100%;
    }
    
    .video-placeholder {
        height: 200px;
    }
}

/* CTA Section */
.cta {
    background-color: #0d1666;
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #f9fafb;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .logo-horizontal {
    height: 24px;
    width: auto;
}

.footer p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .dropdown-content {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
} 

@font-face {
    font-family: "Oilvare Base";
    src: url("https://db.onlinewebfonts.com/t/cd1ff12a61d0f65ad3079a7c7461b61f.eot");
    src: url("https://db.onlinewebfonts.com/t/cd1ff12a61d0f65ad3079a7c7461b61f.eot?#iefix") format("embedded-opentype"),
         url("https://db.onlinewebfonts.com/t/cd1ff12a61d0f65ad3079a7c7461b61f.woff2") format("woff2"),
         url("https://db.onlinewebfonts.com/t/cd1ff12a61d0f65ad3079a7c7461b61f.woff") format("woff"),
         url("https://db.onlinewebfonts.com/t/cd1ff12a61d0f65ad3079a7c7461b61f.ttf") format("truetype"),
         url("https://db.onlinewebfonts.com/t/cd1ff12a61d0f65ad3079a7c7461b61f.svg#Oilvare Base") format("svg");
}

.hero-title, .section-title {
    font-family: "Oilvare Base", 'Inter', Arial, sans-serif;
} 