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

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f9fafb;
    color: #171717;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
.header {
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.header-icon {
    color: #374151;
}

.header h1 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #111827;
}

.header-subtitle {
    font-size: 1rem;
    color: #4b5563;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

/* Grid Layout */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .grid-layout {
        grid-template-columns: 2fr 1fr;
    }
}

/* Card */
.card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .card {
        padding: 1.5rem;
    }
}

/* Section */
.section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.section-subtitle {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Plan Card */
.plan-card {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: #93c5fd;
}

.plan-card.selected {
    border-color: #3b82f6;
    background-color: #eff6ff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.plan-card.monthly {
    opacity: 0.75;
    transform: scale(0.95);
}

.plan-card.monthly:not(.selected) {
    border-color: #d1d5db;
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: linear-gradient(to right, #f97316, #ec4899);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.plan-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.plan-info {
    flex: 1;
}

.plan-name {
    font-size: 1rem;
    font-weight: bold;
    color: #111827;
}

.plan-description {
    font-size: 0.75rem;
    color: #4b5563;
    margin-top: 0.125rem;
}

.plan-subtitle {
    font-size: 0.75rem;
    color: #2563eb;
    font-weight: 500;
    margin-top: 0.25rem;
    font-style: italic;
}

.trust-badge {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    margin-bottom: 0.5rem;
}

.trust-badge-text {
    font-size: 0.75rem;
    color: #1d4ed8;
    font-weight: 600;
}

.plan-price-container {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
}

.plan-duration-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.plan-monthly-price {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.savings-badge {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.25rem;
    padding: 0.375rem 0.5rem;
    margin-top: 0.5rem;
}

.savings-text {
    font-size: 0.75rem;
    color: #15803d;
    font-weight: bold;
}

.warning-badge {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.25rem;
    padding: 0.375rem 0.5rem;
    margin-top: 0.5rem;
}

.warning-text {
    font-size: 0.75rem;
    color: #dc2626;
    font-weight: 500;
}

.bonus-badge {
    background-color: #fefce8;
    border: 1px solid #fde047;
    border-radius: 0.25rem;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.bonus-title {
    font-size: 0.75rem;
    font-weight: bold;
    color: #854d0e;
    margin-bottom: 0.25rem;
}

.bonus-list {
    font-size: 0.75rem;
    color: #a16207;
    list-style: none;
    padding: 0;
}

.bonus-list li {
    margin-bottom: 0.125rem;
}

.bonus-note {
    font-size: 0.75rem;
    color: #dc2626;
    font-weight: 600;
    margin-top: 0.25rem;
}

.plan-radio {
    margin-top: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-card.selected .plan-radio {
    border-color: #3b82f6;
    background-color: #3b82f6;
}

.radio-check {
    width: 0.75rem;
    height: 0.75rem;
    color: white;
    display: none;
}

.plan-card.selected .radio-check {
    display: block;
}

/* Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #111827;
    background-color: white;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    ring: 2px;
    ring-color: #3b82f6;
    border-color: transparent;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Order Summary */
.order-summary-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.summary-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
}

.summary-row.border-bottom {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.75rem;
}

.summary-product {
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
}

.summary-plan {
    font-size: 0.875rem;
    color: #111827;
}

.summary-price-group {
    text-align: right;
}

.summary-price {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.summary-duration {
    font-size: 0.75rem;
    color: #6b7280;
}

.summary-total {
    font-size: 0.875rem;
    font-weight: 600;
    color: #059669;
}

.summary-total-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: #059669;
}

/* Founders Section */
.founders-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

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

.founders-text {
    flex: 1;
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .founders-text {
        font-size: 1rem;
    }
}

.founders-para {
    margin-bottom: 1rem;
}

.founders-image {
    width: 100%;
    margin-top: 1.5rem;
}

@media (min-width: 1024px) {
    .founders-image {
        max-width: 48rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.image-wrapper {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid #fbcfe8;
}

.main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.founders-gallery {
    width: 100%;
    margin-top: 1rem;
}

@media (min-width: 1024px) {
    .founders-gallery {
        max-width: 48rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

/* Plan Details */
.plan-details-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.details-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.details-content {
    color: #374151;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.details-list {
    list-style: disc;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.details-section-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.details-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f3f4f6;
}

/* Testimonials */
.testimonials-card {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.testimonials-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
}

.testimonial:last-child {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    overflow: hidden;
    border: 2px solid;
}

.testimonial-avatar.pink {
    border-color: #fbcfe8;
}

.testimonial-avatar.purple {
    border-color: #e9d5ff;
}

.testimonial-avatar.blue {
    border-color: #bfdbfe;
}

.testimonial-avatar.green {
    border-color: #bbf7d0;
}

.testimonial-avatar.orange {
    border-color: #fed7aa;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 500;
    color: #111827;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.125rem;
}

.star {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 0.875rem;
    color: #4b5563;
    font-style: italic;
}

/* Buttons */
.btn-primary {
    width: 100%;
    background-color: #2563eb;
    color: white;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

.btn-primary:disabled {
    background-color: #93c5fd;
    cursor: not-allowed;
}

.btn-large {
    font-size: 1.25rem;
    padding: 1rem 1.5rem;
}

.btn-shadow {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    margin-left: 0.25rem;
}

/* Payment Badges */
.payment-badges {
    text-align: center;
    padding-top: 0.5rem;
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.badge-img {
    height: 2rem;
}

.payment-secure {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}

/* Terms Text */
.terms-text {
    font-size: 0.875rem;
    color: #374151;
    text-align: left;
    margin-bottom: 1rem;
}

.terms-text-small {
    font-size: 0.75rem;
    color: #4b5563;
    text-align: center;
    margin-top: 0.5rem;
}

.terms-link {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Responsive Utilities */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 1024px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}

/* Animations */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}