/* Landing Page Styles - MegaSearch */

/* CSS Variables */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-bg-solid: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-text: linear-gradient(135deg, #fff 0%, #a5b4fc 50%, #818cf8 100%);
    --gradient-dark: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-dark);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated Gradient Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    top: 50%;
    right: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    bottom: -100px;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.95);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

/* Glass Effects */
.glass-nav {
    background: rgba(15, 12, 41, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

.glass-footer {
    background: rgba(15, 12, 41, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    min-height: 64px;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-brand-home {
	    display: inline-flex;
	    align-items: center;
	    gap: 0.75rem;
	    text-decoration: none;
	    color: #fff;
	    font-size: 1.5rem;
	    font-weight: 700;
	    min-height: 44px; /* Better touch target */
}

.nav-brand-by {
	    text-decoration: none;
	    font-size: 0.85rem;
	    font-weight: 600;
	    letter-spacing: 0.01em;
	    color: rgba(255, 255, 255, 0.7);
	    padding: 0.25rem 0.6rem;
	    border: 1px solid rgba(255, 255, 255, 0.12);
	    border-radius: 999px;
	    background: rgba(255, 255, 255, 0.06);
}

.nav-brand-by:hover {
	    color: rgba(255, 255, 255, 0.95);
	    border-color: rgba(255, 255, 255, 0.18);
	    background: rgba(255, 255, 255, 0.09);
}

.brand-prodevs {
	    color: rgba(255, 255, 255, 0.95);
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
}

.brand-icon svg {
    color: white;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px; /* Better touch target */
    justify-content: center;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-block {
    width: 100%;
    justify-content: center;
    min-height: 48px; /* Better touch target for mobile */
    word-break: keep-all; /* Prevent breaking words */
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-login {
    padding: 0.6rem 1.25rem;
    min-height: 40px;
}

.btn-login svg {
    width: 18px;
    height: 18px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-demo {
    width: 100%;
    max-width: 500px;
    padding: 0;
    overflow: hidden;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--glass-border);
}

.demo-dots {
    display: flex;
    gap: 6px;
}

.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.demo-dots span:first-child { background: #ef4444; }
.demo-dots span:nth-child(2) { background: #f59e0b; }
.demo-dots span:last-child { background: #22c55e; }

.demo-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.demo-content {
    padding: 1.5rem;
}

.demo-query {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.query-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.query-text {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.demo-providers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.provider-tag {
    padding: 0.35rem 0.75rem;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #a5b4fc;
}

.demo-result {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
}

.result-indicator {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    border-radius: 50%;
}

.result-indicator svg {
    width: 14px;
    height: 14px;
    color: white;
}

.demo-result span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.gradient-icon {
    background: var(--gradient-primary);
}

.gradient-icon svg {
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.workflow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
}

.step-content {
    padding: 1.5rem;
    text-align: center;
    width: 200px;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.step-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.workflow-arrow {
    color: rgba(255, 255, 255, 0.3);
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch; /* Ensure all cards have equal height */
}

.pricing-loading {
    padding: 2.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card {
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 0; /* Prevent grid overflow */
    min-height: 100%; /* Ensure equal height cards */
}

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

.pricing-card.featured {
    border: 2px solid #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.35rem 1rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 1;
}

.plan-header {
    margin-bottom: 1.5rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    flex-wrap: nowrap; /* Prevent price from wrapping */
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    white-space: nowrap;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    word-wrap: break-word;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features svg {
    color: #22c55e;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-brand p {
	    font-size: 0.9rem;
	    color: rgba(255, 255, 255, 0.5);
}

.brand-byline {
	    margin-top: 0.35rem;
}

.brand-byline a {
	    color: rgba(255, 255, 255, 0.85);
	    text-decoration: none;
	    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.brand-byline a:hover {
	    color: #fff;
	    border-bottom-color: rgba(255, 255, 255, 0.45);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.35rem 0;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
	    font-size: 0.85rem;
	    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
	    color: rgba(255, 255, 255, 0.75);
	    text-decoration: none;
}

.footer-bottom a:hover {
	    color: #fff;
}

/* Responsive */
@media (max-width: 1400px) {
    .pricing {
        max-width: 95%;
    }

    .pricing-grid {
        gap: 1.25rem; /* Slightly reduce gap on large screens */
    }
}

/* Ensure button text doesn't wrap on desktop */
@media (min-width: 1025px) {
    .btn-block {
        white-space: nowrap;
    }
}

/* Large tablets and small desktops - 3 columns */
@media (max-width: 1200px) {
    .pricing {
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .pricing-card {
        padding: 1.75rem;
        min-width: 200px; /* Ensure minimum card width */
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .btn-block {
        white-space: nowrap; /* Prevent button text wrapping on tablets */
    }
}

/* Tablets - 2 columns */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 7rem;
    }

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

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

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

    .hero-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-container {
        flex-direction: column;
    }

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

    .pricing {
        padding: 4rem 1.5rem;
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-card {
        padding: 2rem 1.75rem;
        min-width: 220px; /* Ensure minimum card width for 2-column layout */
    }

    .btn-block {
        white-space: nowrap; /* Prevent button text wrapping */
    }
}

/* Tablet portrait - 2 columns with tighter spacing */
@media (max-width: 900px) {
    .pricing-grid {
        gap: 1.25rem;
    }

    .pricing-card {
        padding: 1.75rem 1.5rem;
    }

    .price-amount {
        font-size: 2.25rem;
    }

    .plan-price {
        flex-wrap: wrap; /* Allow wrapping on smaller tablets if needed */
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-brand-home {
        font-size: 1.25rem;
    }

    .brand-name {
        display: none;
    }

    .nav-brand-by {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }

    .stat-divider {
        display: none;
    }

    .features {
        padding: 4rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .how-it-works {
        padding: 4rem 1.5rem;
    }

    .workflow-step {
        width: 100%;
    }

    .step-content {
        width: 100%;
        max-width: 100%;
    }

    .pricing {
        padding: 4rem 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px; /* Limit card width on mobile for better readability */
        margin: 0 auto;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        width: 100%;
    }

    .price-amount {
        font-size: 2.25rem;
    }

    .plan-name {
        font-size: 1.25rem;
    }

    .plan-features {
        margin-bottom: 1.5rem;
    }

    .plan-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .btn-block {
        font-size: 0.95rem; /* Slightly smaller font to prevent wrapping */
        white-space: normal; /* Allow wrapping on mobile if needed */
        line-height: 1.4; /* Better line height for wrapped text */
    }

    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .nav-container {
        gap: 0.5rem;
        width: 100%;
        justify-content: space-between;
    }

    .nav-brand {
        gap: 0.5rem;
    }

    .brand-icon {
        width: 32px;
        height: 32px;
    }

    .brand-icon svg {
        width: 20px;
        height: 20px;
    }

    .nav-brand-by {
        display: none;
    }

    .btn-login {
        padding: 0.5rem 0.75rem;
    }

    .btn-login span {
        display: none;
    }

    .btn-login svg {
        width: 20px;
        height: 20px;
    }

    .hero {
        padding: 6rem 1rem 2rem;
        min-height: auto;
    }

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

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

    .hero-cta {
        gap: 0.5rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .search-demo {
        max-width: 100%;
    }

    .features {
        padding: 3rem 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .how-it-works {
        padding: 3rem 1rem;
    }

    .workflow-arrow {
        margin: 0.5rem 0;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .step-content {
        padding: 1.25rem;
    }

    .pricing {
        padding: 3rem 1rem;
    }

    .pricing-grid {
        max-width: 100%; /* Full width on very small screens */
        gap: 1.25rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .price-period {
        font-size: 0.9rem;
    }

    .plan-name {
        font-size: 1.125rem;
    }

    .plan-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        gap: 0.5rem;
    }

    .plan-features svg {
        width: 14px;
        height: 14px;
    }

    .featured-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
        top: -10px;
    }

    .btn-block {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .footer {
        padding: 2.5rem 1rem 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-links {
        gap: 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .pricing {
        padding: 2.5rem 0.75rem;
    }

    .pricing-grid {
        gap: 1rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 1.25rem;
    }

    .plan-name {
        font-size: 1rem;
    }

    .plan-features li {
        font-size: 0.8rem;
    }

    .btn-block {
        font-size: 0.85rem;
        padding: 0.7rem 0.875rem;
    }
}
