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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* Consistent CTA Button - Bright Blue */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    background: #1d4ed8;
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #334155;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-brand h2 {
    color: #2563eb;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.tagline {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 0.2rem;
    line-height: 1;
}

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

.nav-link {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    font-weight: 700;
    line-height: 1.1;
    color: #f8fafc;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
    font-weight: 400;
    line-height: 1.5;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
}

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

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: #f8fafc;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #cbd5e1;
}

/* Gap Analysis Section */
.gap-analysis {
    background: #1e293b;
    padding: 5rem 0;
}

.gap-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.gap-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gap-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gap-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #0f172a;
    border-radius: 10px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.gap-item:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
}

.gap-item i {
    color: #2563eb;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.gap-item span {
    color: #cbd5e1;
    font-size: 1.1rem;
    font-weight: 400;
}

.gap-item strong {
    color: #f8fafc;
    font-weight: 600;
}

.case-example {
    background: #0f172a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    border-left: 4px solid #10b981;
}

.case-example h4 {
    color: #10b981;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-example p {
    color: #cbd5e1;
    margin: 0;
    font-style: italic;
}

.flexible-approach {
    background: #0f172a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    border-left: 4px solid #2563eb;
}

.flexible-approach h4 {
    color: #2563eb;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flexible-approach p {
    color: #cbd5e1;
    margin: 0;
}

/* Calendly Container */
.calendly-container {
    background: #0f172a;
    border-radius: 20px;
    border: 1px solid #334155;
    overflow: hidden;
}

.calendly-widget {
    padding: 2rem;
}

.calendly-widget h3 {
    color: #2563eb;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.4rem;
}

.calendly-inline-widget {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.calendly-fallback {
    text-align: center;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.calendly-fallback p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
}

.calendly-fallback a {
    color: #2563eb;
    text-decoration: none;
}

.call-details {
    display: flex;
    justify-content: space-around;
    padding: 1rem;
    background: #1e293b;
    border-radius: 10px;
    border: 1px solid #334155;
}

.detail-item {
    text-align: center;
}

.detail-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.3rem;
}

.detail-label {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Services Section - Simple Cards */
.opportunities {
    background: #0f172a;
    padding: 4rem 0;
}

.opportunities-simple {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.opportunity-card-simple {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #1e293b;
    border-radius: 15px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.opportunity-card-simple:hover {
    border-color: #2563eb;
    transform: translateY(-3px);
}

.opportunity-icon-simple {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.opportunity-icon-simple i {
    font-size: 1.5rem;
    color: white;
}

.opportunity-content h4 {
    margin-bottom: 0.5rem;
    color: #f8fafc;
    font-weight: 600;
}

.opportunity-content p {
    color: #cbd5e1;
    margin: 0;
    font-size: 1rem;
}

/* About Section - Simple */
.about {
    background: #1e293b;
    padding: 4rem 0;
}

.about-simple {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #0f172a;
    border-radius: 15px;
    border: 1px solid #334155;
}

.credential-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credential-icon i {
    font-size: 1.5rem;
    color: white;
}

.credential-content h4 {
    margin-bottom: 0.5rem;
    color: #f8fafc;
    font-weight: 600;
}

.credential-content p {
    color: #cbd5e1;
    margin: 0;
    font-size: 1rem;
}

.savings-realistic {
    background: #0f172a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #334155;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.savings-realistic h4 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.savings-realistic p {
    color: #cbd5e1;
    margin: 0;
    font-size: 1.1rem;
}

/* Final CTA Section */
.final-cta {
    background: #0f172a;
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: #f8fafc;
}

.cta-content p {
    margin-bottom: 2rem;
    color: #cbd5e1;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 3rem 0 1rem;
    border-top: 1px solid #334155;
}

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

.footer-section h3 {
    margin-bottom: 0.5rem;
    color: #2563eb;
    font-weight: 700;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem !important;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #f8fafc;
    font-weight: 600;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(15, 23, 42, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #334155;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-brand {
        align-items: center;
        text-align: center;
    }

    .tagline {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .gap-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .opportunity-card-simple,
    .credential-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .call-details {
        flex-direction: column;
        gap: 1rem;
    }

    .calendly-inline-widget {
        height: 500px !important;
    }
}

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

    section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .calendly-widget {
        padding: 1rem;
    }

    .calendly-inline-widget {
        height: 450px !important;
    }

    .nav-brand h2 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.65rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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