/* OpenClawKit Website Styles */

/* General Styles */
:root {
    --blue-primary: #1E3A8A;
    --blue-light: #3B5CC9;
    --blue-dark: #172554;
    --coral-accent: #FB7C4A;
    --coral-light: #FFA183;
    --coral-dark: #E85E2D;
    --blue-light-bg: #BFD1FF;
    --navy-dark: #172554;
    --white: #FFFFFF;
    --light-gray: #F2F2F2;
    --medium-gray: #CCCCCC;
    --dark-gray: #4A4A4A;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--navy-dark);
}

a {
    color: var(--blue-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--blue-light);
}

.btn {
    border-radius: 6px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--coral-accent);
    border-color: var(--coral-accent);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--coral-dark);
    border-color: var(--coral-dark);
}

.btn-secondary {
    background-color: var(--blue-primary);
    border-color: var(--blue-primary);
    color: var(--white);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--blue-dark);
    border-color: var(--blue-dark);
}

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

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--blue-primary);
    font-size: 1.2rem;
}

section {
    padding: 5rem 0;
}

/* Navigation */
.navbar {
    background-color: var(--blue-primary);
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--blue-light-bg);
}

/* Hero Section */
.hero {
    background-color: var(--blue-primary);
    background-image: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 2.5rem;
}

.text-light-accent {
    color: var(--blue-light-bg);
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    background-color: var(--white);
}

.feature-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background-color: var(--blue-light-bg);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 35px;
    height: 35px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--blue-primary);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light-gray);
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    background-color: var(--coral-accent);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
    color: var(--blue-primary);
}

.steps {
    margin-bottom: 3rem;
}

/* Pricing Section */
.pricing {
    background-color: var(--white);
}

.pricing-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-header {
    background-color: var(--blue-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.price .currency {
    font-size: 2rem;
    vertical-align: top;
    position: relative;
    top: 0.5rem;
}

.price .period {
    font-size: 1.5rem;
    font-weight: 400;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

.pricing-features li:before {
    content: "✓";
    color: var(--blue-primary);
    font-weight: bold;
    margin-right: 0.75rem;
}

.pricing-cta {
    padding: 1.5rem 2rem 2rem;
}

/* Comparison Cards */
.comparison {
    margin-top: 5rem;
}

.comparison h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.comparison-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-card.highlighted {
    border: 2px solid var(--coral-accent);
}

.comparison-card h5 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.comparison-list li {
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.comparison-list li:before {
    margin-right: 0.75rem;
    font-weight: bold;
}

.comparison-list li.positive:before {
    content: "✓";
    color: #28a745;
}

.comparison-list li.negative:before {
    content: "✗";
    color: #dc3545;
}

/* FAQ Section */
.faq {
    background-color: var(--light-gray);
}

.accordion-item {
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--white);
    font-weight: 600;
    padding: 1.25rem;
    color: var(--teal-primary);
}

.accordion-button:not(.collapsed) {
    background-color: var(--seafoam-light);
    color: var(--teal-dark);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.25rem;
    background-color: var(--white);
}

/* Get Started Section */
.get-started {
    background-color: var(--white);
}

.get-started-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.get-started-card h2 {
    margin-bottom: 1rem;
    color: var(--teal-primary);
}

.get-started-card .lead {
    margin-bottom: 2rem;
}

.card-placeholder {
    color: var(--medium-gray);
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
}

.card-details {
    display: flex;
    gap: 1rem;
}

/* Free Guide Section */
.free-guide {
    background-color: var(--blue-light-bg);
    padding: 5rem 0;
}

.guide-image {
    text-align: center;
}

.guide-image img {
    max-width: 80%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.free-guide h2 {
    color: var(--blue-dark);
    margin-bottom: 1rem;
}

.free-guide .lead {
    color: var(--blue-primary);
    margin-bottom: 1.5rem;
}

.free-guide ul {
    margin-bottom: 1.5rem;
}

.free-guide li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer ul {
    margin-bottom: 2rem;
}

.footer li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: var(--blue-light-bg);
}

.footer a:hover {
    color: var(--coral-accent);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 1.5rem;
}

.footer .list-inline-item:not(:last-child) {
    margin-right: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .pricing-card, .get-started-card {
        padding: 2rem;
    }
    
    .guide-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .feature-card, .step, .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .footer {
        padding-top: 3rem;
    }
    
    .footer h5 {
        margin-top: 2rem;
    }
}