:root {
    --primary: #0080FF; /* Lovable Blue */
    --primary-dark: #0066CC;
    --text-main: #1D2530; /* Lovable Dark Text */
    --text-muted: #667B99; /* Lovable Muted Text */
    --bg-light: #f8fafc;
    --white: #ffffff;
    --success: #10B981; /* Lovable Green */
    --danger: #ef4444;
    --border-color: #e2e8f0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%; /* Ensure container doesn't overflow */
}

/* Header */
header {
    background: transparent;
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.logo i {
    color: var(--primary);
    transform: rotate(-15deg);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
    gap: 0.25rem;
    transition: color 0.2s;
}

.nav-item i {
    font-size: 1.1rem;
    color: #4B5563;
    padding: 6px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.nav-item span {
    font-size: 0.75rem;
    font-weight: 600;
}

.nav-item:hover i {
    border-color: #E5E7EB;
    background: white;
    color: var(--primary);
}

.nav-item:hover span {
    color: var(--primary);
}

/* Main Layout */
.main-wrapper {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

/* Background Leaves Decoration */
.leaf-bg-left, .leaf-bg-right {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

.leaf-bg-left {
    top: 10%;
    left: -100px;
    width: 500px;
    height: 500px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%233B82F6' d='M44.7,-76.4C58.9,-69.2,71.8,-59.1,81.6,-46.6C91.4,-34.1,98.1,-19.2,95.8,-5.3C93.5,8.6,82.2,21.5,71.2,32.7C60.2,43.9,49.5,53.4,37.6,61.9C25.7,70.4,12.6,77.9,-1.1,79.8C-14.8,81.7,-29.9,78,-42.6,70.5C-55.3,63,-65.6,51.7,-73.4,38.8C-81.2,25.9,-86.5,11.4,-84.6,-2.3C-82.7,-16,-73.6,-28.9,-62.7,-38.5C-51.8,-48.1,-39.1,-54.4,-27.1,-63.1C-15.1,-71.8,-3.8,-82.9,9.4,-85.4C22.6,-87.9,30.5,-73.6,44.7,-76.4Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    transform: rotate(45deg);
}

.leaf-bg-right {
    top: 0;
    right: -150px;
    width: 600px;
    height: 600px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2360A5FA' d='M42.7,-72.8C54.8,-66.8,63.5,-52.7,71.2,-39.1C78.9,-25.5,85.6,-12.3,83.9,0.3C82.2,12.9,72.1,24.9,62.1,35.8C52.1,46.7,42.2,56.5,30.6,63.4C19,70.3,5.7,74.3,-8.3,76.5C-22.3,78.7,-37,79.1,-49,72.5C-61,65.9,-70.3,52.3,-76.6,37.6C-82.9,22.9,-86.2,7.1,-82.9,-7.1C-79.6,-21.3,-69.7,-33.9,-58.5,-42.8C-47.3,-51.7,-34.8,-56.9,-22.6,-62.7C-10.4,-68.5,1.5,-74.9,13.8,-75.4C26.1,-75.9,38.8,-70.5,42.7,-72.8Z' transform='translate(100 100)' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    opacity: 0.1;
}

.hero {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Fluid typography */
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #111827;
    letter-spacing: -0.03em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.1rem;
    color: #4B5563;
    max-width: 600px; /* Increased slightly for better flow */
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    padding: 0 1rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.875rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2), 0 2px 4px -1px rgba(16, 185, 129, 0.1);
    transition: all 0.2s;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(229, 231, 235, 1);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-box svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.icon-box-blue {
    background: rgba(0, 128, 255, 0.1);
    color: #0080FF;
}

.icon-box-sky {
    background: rgba(0, 153, 230, 0.1);
    color: #0099E6;
}

.icon-box-green {
    background: rgba(22, 162, 73, 0.1);
    color: #16A249;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #1d2530;
}

.feature-card p {
    color: #667b99;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Footer (4-Column Professional) */
footer {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    font-size: 0.95rem;
    color: #64748b;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #64748b;
    line-height: 1.6;
    max-width: 300px;
}

.footer-col h4 {
    color: #0f172a;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: #e2e8f0;
    color: #64748b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- Responsive Media Queries --- */

/* Tablet (max-width: 900px) */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Make the last odd item span 2 columns if 3 items */
    .features-grid .feature-card:last-child:nth-child(odd) {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav ul {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        margin-bottom: 2.5rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .features-grid .feature-card:last-child:nth-child(odd) {
        grid-column: span 1; /* Reset span */
        max-width: 100%;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .footer-links {
        gap: 1rem;
        flex-direction: column; /* Stack details links */
        align-items: center;
    }

    .leaf-bg-right, .leaf-bg-left {
        /* Hide or reduce background distractions on mobile */
        display: none; /* Completely hide to prevent overflow */
    }
}

/* Live Visa Slot Feed Styles */
.slot-feed-section {
    background-color: #f9fafb; /* Gray background */
    padding: 4rem 0;
    margin-bottom: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.section-header p {
    color: var(--text-muted);
}

/* Stats Section (Blueprint Style) */
.stats-section {
    position: relative;
    max-width: 900px;
    margin: 4rem auto; /* Standard spacing */
    z-index: 10;
    padding: 0 1rem;
    text-align: center;
}

.stats-section .section-header {
    margin-bottom: 2rem;
}

.stats-section .section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.stats-section .section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.stats-container {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px -10px rgba(0, 128, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Blueprint dot pattern background */
.stats-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
}

.stat-block {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-right: 1px solid #e2e8f0;
}

.stat-block:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.stat-number.green, .stat-number.available { color: #16a249; }
.stat-number.blue, .stat-number.monitoring { color: #0080ff; }
.stat-number.cyan, .stat-number.alert { color: #0099e6; }
.stat-number.yellow, .stat-number.success { color: #e7b008; }

.stat-label-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Filter Bar */
.feed-filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 240px;
}

.search-input-wrapper svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    width: 16px;
    height: 16px;
}

.search-input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.875rem;
    color: #1f2937;
    outline: none;
    height: 40px;
}

.filter-select-wrapper {
    position: relative;
}

.filter-select-wrapper svg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.filter-select {
    appearance: none;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-size: 0.875rem;
    color: #1f2937;
    height: 40px;
    cursor: pointer;
    outline: none;
}

/* Feed List */
.feed-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slot-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc); /* Gradient bg */
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* Soft base shadow */
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden; /* For glass effect containment */
}

/* Custom Shadow Variable Application */
.slot-card {
    --shadow-card: 0 4px 20px -4px hsl(210 100% 50% / .1);
    --shadow-elegant: 0 10px 30px -10px hsl(210 100% 50% / .2);
    box-shadow: var(--shadow-card), 0 1px 2px 0 rgba(0,0,0,0.05);
}

.slot-card:hover {
    box-shadow: var(--shadow-elegant), 0 1px 2px 0 rgba(0,0,0,0.05);
    transform: translateY(-2px);
    border-color: rgba(14, 165, 233, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.status-badge.available {
    background-color: #22c55e;
}

.status-badge.unavailable {
    background-color: #ef4444;
}

.update-time {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.update-time svg {
    width: 14px;
    height: 14px;
}

.route-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-arrow {
    color: #9ca3af;
}

.slot-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}



.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.detail-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.action-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.btn-book {
    flex: 1;
    background-color: #0080ff;
    color: white;
    font-weight: 500;
    padding: 0.625rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 30px -10px rgba(0, 128, 255, 0.4);
    transition: all 0.2s;
    font-size: 0.875rem;
}

.btn-book:hover {
    background-color: #0070e0;
    box-shadow: 0 15px 35px -5px rgba(0, 128, 255, 0.5);
    background-color: #0ea5e9; /* Sky Blue to match theme */
}

.btn-secondary {
    flex: 1;
    background-color: #ffffff;
    color: #374151;
    font-weight: 500;
    padding: 0.625rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.btn-notify {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Reference size */
    height: 40px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    color: #6b7280;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-notify:hover {
    background-color: #f3f4f6;
}

.btn-notify svg {
    width: 20px;
    height: 20px;
}



.btn-track {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-track:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Mobile adjustments for feed */
@media (max-width: 600px) {
    .action-row {
        flex-wrap: wrap;
        width: 100%;
    }
    
    .action-row > * {
        flex: 1;
        text-align: center;
        justify-content: center;
    }

    .btn-icon {
        flex: 0 0 40px; /* Keep icons square */
    }
    
    .feed-filters {
        flex-direction: column;
    }
    
    .filter-select {
        width: 100%;
    }
}

/* Why Choose Pro Section */
.pro-section {
    padding: 4rem 0;
    background-color: var(--white);
    margin-bottom: 4rem;
}

.pro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.pro-item {
    padding: 1rem;
}

.pro-icon {
    width: 64px;
    height: 64px;
    background-color: #f0f9ff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.pro-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.pro-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.guarantee-banner {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 2rem;
    color: #16a34a;
}

.guarantee-text h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #166534;
}

.guarantee-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #15803d;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background-color: #f8fafc;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: flex-start;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: all 0.2s;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 25px -5px rgba(14, 165, 233, 0.1), 0 10px 10px -5px rgba(14, 165, 233, 0.04);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.plan-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1; /* Pushes button to bottom */
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #334155;
}

.features-list li i {
    color: var(--primary);
    margin-top: 4px;
}

.btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.875rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-plan.primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.2);
}

.btn-plan.outline {
    background-color: var(--white);
    color: var(--text-main);
    border: 1px solid #e2e8f0;
}

.btn-plan:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1.5rem;
    position: relative;
    border: 1px solid #f1f5f9;
}

.review-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: #cbd5e1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #475569;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.cta-container {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.cta-container p {
    font-size: 1.25rem;
    color: #334155;
    max-width: 600px;
    margin: 0;
}

.btn-trustpilot {
    background-color: #00b67a; /* Trustpilot Green */
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 182, 122, 0.2);
}

.btn-trustpilot:hover {
    background-color: #00a36d;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 182, 122, 0.3);
}

/* Mobile Responsive Updates */
@media (max-width: 900px) {
    .pricing-grid, .reviews-grid, .pro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: none; /* Disable scaling on smaller screens */
        order: -1; /* Ensure featured plan is first or prominent if needed */
        grid-column: span 2; /* Make featured plan full width? Optional */
    }
}

@media (max-width: 600px) {
    .pricing-grid, .reviews-grid, .pro-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        grid-column: span 1;
        transform: scale(1.02); /* Slight scale to pop */
        margin: 1rem 0;
    }

    .cta-container {
        padding: 3rem 1.5rem;
    }

    .cta-container h2 {
        font-size: 2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
}
