/* Reset and Base Styles */

header .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 500;
    padding: 1rem;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

.text-muted {
    color: var(--muted-foreground);
}

/* Layout */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-x-6 > * + * {
    margin-left: 1.5rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Components */


.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border: 1px solid var(--primary);
}


.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.card {
    background-color: var(--background);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 1.5rem 1.5rem 0.75rem;
}
.card-header h3{text-align: center; line-height: 2; font-size: 2rem;}
.card-header p{text-align: center; line-height: 2;}
.card-header .imgWrap{width: 70%; margin: 20px auto 0;}

.card-content {
    padding: 0.75rem 1.5rem;
}

.card-footer {
    padding: 0.75rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
    width: 70%; margin: 0 auto;
}

.tab-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tab-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: var(--radius);
    background-color: var(--muted);
    padding: 0.25rem;
    margin-bottom: 1rem;
}

.tab {
    padding: 0.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: calc(var(--radius) - 0.25rem);
    font-weight: 500;
}

.tab.active {
    background-color: var(--background);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.header-container {
    display: flex;
    height: 5rem;
    align-items: center;
}

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

.nav {
    display: none; gap: 4rem; margin-left: auto;
}

.nav-link {
    transition: color 0.2s;
    font-size: 1.5rem;
}

.nav-link:hover {
    color: var(--muted-foreground);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

@media (min-width: 480px) {
    .nav {
        display: flex;
    }
}

/* Sections */
.section {
    width: 100%;
    padding: 3rem 0;
}

@media (min-width: 480px) {
    .section {
        padding: 10rem 0;
    }
}

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

.section-description {
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 30px; font-size: 1.2rem;
    color: var(--muted-foreground);
}

.hero {
    background: #e8f2fc;
    padding: 0;
}

.hero-content {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-image {
    border-radius: var(--radius);
    overflow: hidden;
}
.hero-image img{width: 100%; height: 100%;}
.hero-title {
    font-size: 2.25rem;
    line-height: 2;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 400px) {
    .hero-actions {
        flex-direction: row;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.product-feature {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.step-card {
    position: relative;
    padding-top: 2rem;
}

.step-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background-color: var(--primary);
    color: var(--primary-foreground);
    font-weight: 700;
}

.trust-card {
    text-align: center;
}

.trust-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: var(--primary);
}

/* Footer */
.footer {
    width: 100%;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.footer-heading {
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.footer-info {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Icons */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    vertical-align: middle;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.icon-lg {
    width: 3rem;
    height: 3rem;
}

