/* 
 * pricing.css
 * CSS for Safiri by Citrus Pricing Page
 */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35; /* Orange */
    --secondary-color: #2EC4B6; /* Teal */
    --accent-color: #FDCA40; /* Yellow */
    --dark-color: #011627; /* Dark Blue */
    --light-color: #F6F7F8; /* Off White */
    --text-color: #333333;
    --success-color: #27AE60;
    --warning-color: #E67E22;
    --danger-color: #E74C3C;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-tertiary: 'Poppins', sans-serif;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* ===== HEADER STYLES ===== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container img {
    height: 50px;
    width: auto;
}

.main-nav .nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav .nav-list li a {
    color: var(--text-color);
    font-weight: 500;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.main-nav .nav-list li a:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8e3c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ===== PRICING NAVIGATION ===== */
.pricing-navigation {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 81px;
    z-index: 900;
}

.pricing-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pricing-nav-item {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    border-radius: var(--border-radius);
    color: var(--text-color);
    background-color: var(--gray-100);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pricing-nav-item:hover {
    background-color: var(--gray-200);
    transform: translateY(-3px);
}

.pricing-nav-item.active {
    background-color: var(--primary-color);
    color: white;
}

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

.pricing-title {
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: white;
}

.section:nth-child(odd) {
    background-color: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-600);
}

/* ===== PRICING OVERVIEW ===== */
.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.overview-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.overview-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.overview-card p {
    color: var(--gray-700);
    line-height: 1.8;
}

/* ===== PRICING MODEL ===== */
.model-content {
    max-width: 1000px;
    margin: 0 auto;
}

.model-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    overflow: hidden;
}

.card-header {
    background-color: var(--light-color);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header .card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    font-size: 1.3rem;
}

.card-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 0;
}

.payment-models {
    padding: 30px;
}

.payment-model {
    margin-bottom: 30px;
}

.payment-model:last-child {
    margin-bottom: 0;
}

.payment-model h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-model h4 i {
    color: var(--primary-color);
}

.payment-model p {
    color: var(--gray-700);
    margin-bottom: 20px;
}

.model-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.diagram-step {
    text-align: center;
    position: relative;
}

.diagram-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.diagram-text {
    font-weight: 500;
    margin-bottom: 5px;
}

.diagram-note {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.diagram-arrow {
    color: var(--gray-500);
    font-size: 1.5rem;
}

.diagram-arrow.double-arrow {
    transform: rotate(90deg);
}

.sms-costs {
    margin-top: 40px;
}

.sms-content {
    padding: 30px;
}

.sms-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.sms-feature {
    background-color: var(--light-color);
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.sms-feature i {
    color: var(--success-color);
}

/* ===== PAYMENT OPTIONS ===== */
.options-tabs,
.plans-tabs,
.invoicing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 12px 24px;
    background-color: var(--gray-200);
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background-color: var(--gray-300);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.option-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.option-header {
    background-color: var(--light-color);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.option-header h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin: 0;
}

.option-methods {
    padding: 20px;
}

.option-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.option-method:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.method-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.method-content h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.method-content p {
    color: var(--gray-700);
    font-size: 0.95rem;
}

.option-content {
    padding: 20px;
}

.option-features {
    margin-top: 15px;
}

.option-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-features li i {
    color: var(--success-color);
}

/* ===== SUBSCRIPTION PLANS ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.plan-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.plan-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray-300);
}

.plan-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--dark-color);
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.plan-features ul li i {
    color: var(--success-color);
    margin-top: 3px;
}

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

.plans-note {
    text-align: center;
    margin-top: 20px;
    color: var(--gray-600);
    font-style: italic;
}

.plans-note i {
    color: var(--primary-color);
}

.school-tiers {
    padding: 20px;
}

.school-tiers h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    text-align: center;
}

.school-tiers p {
    text-align: center;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tier-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.tier-card.recommended {
    border: 2px solid var(--primary-color);
}

.tier-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 10px;
}

.tier-header {
    text-align: center;
    margin-bottom: 20px;
}

.tier-header h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.tier-subtitle {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.tier-specs {
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: var(--gray-700);
}

.spec-value {
    color: var(--dark-color);
    font-weight: 600;
}

.tier-features ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tier-features ul li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.tier-card.custom .tier-content {
    text-align: center;
}

.tier-card.custom p {
    margin-bottom: 20px;
}

.tier-cta {
    margin-top: 20px;
}

/* ===== INVOICING SYSTEM ===== */
.invoicing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    transition: var(--transition);
}

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

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

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-700);
}

.invoice-preview, 
.dashboard-preview {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    text-align: center;
}

.invoice-preview h3,
.dashboard-preview h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.preview-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.preview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 22, 39, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.preview-image:hover .preview-overlay {
    opacity: 1;
}

.preview-image:hover img {
    transform: scale(1.05);
}

.financial-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.tool-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    transition: var(--transition);
}

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

.tool-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.tool-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.tool-card p {
    color: var(--gray-700);
    margin-bottom: 20px;
}

.tool-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tool-feature i {
    color: var(--secondary-color);
}

/* ===== CUSTOM PRICING ===== */
.custom-pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

.custom-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.option-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.option-item .option-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.option-text h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.option-text p {
    color: var(--gray-700);
    margin-bottom: 20px;
}

/* ===== FAQ SECTION ===== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: var(--light-color);
}

.accordion-header h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--dark-color);
}

.accordion-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.accordion-item.active .accordion-icon i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 25px 20px;
    color: var(--gray-700);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #40E0D0 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-tagline {
    font-size: 1.1rem;
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.website-link a {
    color: var(--gray-400);
    transition: var(--transition);
}

.website-link a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .pricing-nav-container {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .pricing-nav-item {
        min-width: 150px;
    }
    
    .payment-models {
        flex-direction: column;
    }
    
    .model-diagram {
        gap: 10px;
    }
    
    .options-tabs,
    .plans-tabs,
    .invoicing-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .tab-btn {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .option-item {
        flex-direction: column;
    }
    
    .option-item .option-icon {
        margin-bottom: 15px;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .plans-grid,
    .invoicing-features,
    .financial-tools {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}