﻿/* Hero Section */
.hero {
    padding: 3rem 1rem;
    background-color: var(--bg-light);
}

@media (min-width: 992px) {
    .hero {
        padding: 5rem 0;
    }
}

.hero__grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero__image-col {
    order: 2;
}

@media (min-width: 992px) {
    .hero__image-col {
        order: 1;
    }
}

.hero__image-wrapper {
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 0.5rem;
    border: 1px solid var(--border);
}

.hero__image-bg {
    position: absolute;
    inset: 0;
    background: #E0F7FA;
    transform: skewY(-3deg) scale(1.1) translateY(2rem);
    opacity: 0.5;
    z-index: -1;
    border-radius: 1rem;
    width:10%;
}
.how_container{
    padding:30px;
}
.hero__content {
    order: 1;
}

@media (min-width: 992px) {
    .hero__content {
        order: 2;
        padding-left: 1rem;
    }
}

.hero__eyebrow {
    display: block;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.hero__title {
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.hero__container{
    max-width:80rem;
    margin:0 auto;
}
@media (min-width: 768px) {
    .hero__title {
        font-size: 3rem;
    }
}

.hero__rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero__stars {
    display: flex;
    color: #facc15; /* Yellow */
}

.icon--star {
    fill: currentColor;
    color: inherit;
}

.hero__rating-val {
    font-weight: 600;
    color: var(--text-main);
}

.hero__rating-count {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero__pricing {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
}

.hero__pricing-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.hero__pricing-val {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero__price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero__period {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero__pricing-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.hero__benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    font-weight: 500;
}

.hero__benefits .icon {
    color: var(--success);
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hero__actions {
        flex-direction: row;
    }

        .hero__actions > button {
            flex: 1;
        }
}

.hero__trust {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

    .hero__trust span {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .hero__trust .icon {
        width: 1rem;
        height: 1rem;
        color: var(--success);
    }

/* Modules Section */
.modules {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.modules__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .modules__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modules__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .modules__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.module-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .module-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

.module-card__header {
    padding: 1.5rem;
    text-align: center;
}

.module-card__icon {
    background: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.module-card__header .icon {
    width: 2rem;
    height: 2rem;
}

.module-card--blue .module-card__header {
    background-color: #eff6ff;
    color: #2563eb;
}

.module-card--green .module-card__header {
    background-color: #f0fdf4;
    color: #16a34a;
}

.module-card--purple .module-card__header {
    background-color: #faf5ff;
    color: #9333ea;
}

.module-card--orange .module-card__header {
    background-color: #fff7ed;
    color: #ea580c;
}

.module-card--cyan .module-card__header {
    background-color: #ecfeff;
    color: #0e7490;
}

.module-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.module-card__focus {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.8;
    color: #475569;
}

.module-card__list {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .module-card__list li {
        font-size: 0.875rem;
        color: var(--text-main);
        display: flex;
        align-items: flex-start;
    }

        .module-card__list li::before {
            content: "✓";
            color: var(--success);
            margin-right: 0.5rem;
            font-weight: bold;
        }

/* Use Cases / Highlights */
.highlights__grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .highlights__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlights__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.highlight-item {
    background: white; /* Changed from default to white for contrast if needed */
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

    .highlight-item:hover {
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    }

.highlight-item__icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .highlight-item__icon .icon {
        width: 2rem;
        height: 2rem;
    }

.highlight-item__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.highlight-item p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}


/* Gallery / Features Section */
.features {
    padding: 5rem 0;
    background-color: white;
}

.features__layout {
    display: grid;
    gap: 3rem;
}

@media (min-width: 992px) {
    .features__layout {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* New Carousel Styles matching Features.tsx intent */
.features__carousel {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 992px) {
    .features__carousel {
        margin: 0;
    }
}

.carousel__wrapper {
    background: white;
    padding: 0.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    margin-bottom: 2rem;
    aspect-ratio: 16/10; /* Fixed aspect ratio to prevent jumping */
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel__img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or cover depending on image preference */
    transition: opacity 0.5s ease-in-out;
}

.carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.carousel__dot {
    height: 0.375rem;
    width: 1rem;
    background-color: #cbd5e1; /* slate-300 */
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .carousel__dot:hover {
        background-color: #94a3b8;
    }

.carousel__dot--active {
    width: 2rem;
    background-color: var(--secondary);
}

/* Feature List Interaction */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    padding: 0 0 0 1rem;
    border-left: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        border-color: #e2e8f0;
    }

.feature-item--active {
    border-color: var(--secondary);
    background-color: #ecfeff; /* Light cyan background */
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.feature-item__title {
    font-weight: 700;
    color: var(--primary); /* Defaults strictly to primary if not active? TSX says: activeSlide === idx ? "text-[#00B4D8]" : "text-[#003366]" */
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.feature-item--active .feature-item__title {
    color: var(--secondary);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}


/* Pain Point Resolution Grid */
.how-we-help {
    padding: 5rem 0;
}

.help-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .help-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.help-item__header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.help-item__icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: var(--lime);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.help-item__header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.help-item p {
    padding-left: 4rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    border-left: 2px solid var(--border);
}


/* Comparison Table */
.comparison {
    padding: 5rem 0;
    background: white;
}

.table-wrapper {
    overflow-x: auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: white;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

    .comparison-table th {
        background: var(--primary);
        color: white;
        padding: 1.5rem;
        text-align: left;
        font-weight: 700;
        font-size: 1.125rem;
    }

        .comparison-table th.highlight-col {
            background: #004488;
        }
    /* Slightly lighter blue for emphasize */

    .comparison-table td {
        padding: 1.5rem;
        vertical-align: top;
        border-bottom: 1px solid var(--border);
    }

    .comparison-table .feature-name {
        font-weight: 700;
        color: var(--primary);
        width: 25%;
    }

    .comparison-table .highlight-col {
        background-color: #ecfeff; /* cyan-50 equivalent */
        border-left: 1px solid #cffafe;
        border-right: 1px solid #cffafe;
    }

.check-item {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9375rem;
    display:flex;
}

    .check-item .icon {
        width: 24px;
        height: 24px;
        color: var(--success);
        margin-right: 0.5rem;
        vertical-align: text-bottom;
    }

.warn-item {
    color: var(--text-muted);
    font-size: 0.9375rem;
    display:flex;
}

    .warn-item .icon {
        width: 24px;
        height: 24px;
        color: #fb923c;
        margin-right: 0.5rem;
        vertical-align: text-bottom;
    }
/* Orange */

.bad-item {
    color: var(--text-muted);
    font-size: 0.9375rem;
    display:flex;
}

    .bad-item .icon {
        width:24px;
        height:24px;
        color: #f87171;
        margin-right: 0.5rem;
        vertical-align: text-bottom;
    }
/* Red */


/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-icon {
    color: var(--primary);
    margin-bottom: 0.5rem;
    transform: scale(1.5);
}

.stat-item__value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-item__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeating-fill(minmax(300px, 1fr));
    }
}
/* Fallback */
@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.quote-mark {
    font-size: 4rem;
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    color: #bae6fd;
    font-family: serif;
    line-height: 1;
}

.review-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.review-author {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
}

    .review-author strong {
        color: var(--primary);
    }

    .review-author span {
        color: var(--text-muted);
        font-size: 0.875rem;
    }


/* Pricing */
.pricing {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
    background: white;
}

.pricing__card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
    overflow: hidden;
    display: grid;
}

@media (min-width: 992px) {
    .pricing__card {
        grid-template-columns: 7fr 5fr;
    }
}

.pricing__features {
    padding: 3rem;
    border-right: 1px solid var(--border);
}

.pricing__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

.pricing__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

    .pricing__list li {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
    }

        .pricing__list li .icon {
            flex-shrink: 0;
            margin-top: 0.25rem;
        }

        .pricing__list li div strong {
            display: block;
            color: var(--primary);
        }

        .pricing__list li div span {
            color: var(--text-muted);
            font-size: 0.9375rem;
        }

.pricing__trust-row {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 2rem;
    justify-content: center;
}

    .pricing__trust-row div {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.75rem;
        color: var(--text-muted);
        text-align: center;
        gap: 0.5rem;
    }

.pricing__cta {
    background: #E0F7FA;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing__box {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.pricing__label-sm {
    font-size: 1rem;
    color: var(--text-muted);
    display: block;
}

.pricing__val-lg {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin: 0.5rem 0;
}

.pricing__val-sub {
    color: #94a3b8;
    font-size: 1.125rem;
}

.pricing__save {
    color: var(--success);
    font-weight: 700;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}

.pricing__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

    .contact-text a {
        color: var(--secondary);
        text-decoration: underline;
    }
/* =========================================
   Updates for Testimonials & Pricing Sections
   (Derived from TSX conversion)
   ========================================= */

/* Color Utilities */
.text-lime {
    color: var(--lime);
}

.text-yellow {
    color: #facc15;
}

.text-accent {
    color: var(--accent);
}

.text-slate-500 {
    color: var(--text-muted);
}

.text-slate-700 {
    color: #334155;
}

.text-blue-200 {
    color: #bfdbfe;
}

.bg-slate-50 {
    background-color: var(--bg-light);
}

.border-slate-100 {
    border-color: #f1f5f9;
}

.border-slate-200 {
    border-color: #e2e8f0;
}

.border-gray-100 {
    border-color: #f3f4f6;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.bg-cyan-light {
    background-color: #E0F7FA;
}

.bg-success {
    background-color: var(--success);
}

/* Grid Utilities (Simulating Tailwind style for specific layout needs) */
.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .md\:p-12 {
        padding: 3rem;
    }

    .md\:col-span-5 {
        grid-column: span 5 / span 5;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-12 {
        grid-template-columns: repeat(12, 1fr);
    }

    .lg\:col-span-7 {
        grid-column: span 7 / span 7;
    }

    .lg\:col-span-5 {
        grid-column: span 5 / span 5;
    }

    .lg\:border-r {
        border-right-width: 1px;
    }
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

/* Spacing Utilities */
.p-8 {
    padding: 2rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pb-12 {
    padding-bottom: 3rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

.mt-0\.5 {
    margin-top: 0.125rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-4 {
    margin-right: 1rem;
}

/* Typography */
.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-semibold {
    font-weight: 600;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.italic {
    font-style: italic;
}

.leading-none {
    line-height: 1;
}

.leading-relaxed {
    line-height: 1.625;
}

.hover\:underline:hover {
    text-decoration: underline;
}

/* Testimonials Section Specifics */
.testimonials .stat-item {
    padding: 1rem;
}

.stat-icon-wrapper {
    transition: transform 0.3s ease;
}

.scale-150 {
    transform: scale(1.5);
}

.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.75rem; /* rounded-xl */
}

    .review-card:hover {
        transform: translateY(-0.5rem);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Pricing Section Specifics */
.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.overflow-hidden {
    overflow: hidden;
}

.pricing-features-list .icon {
    min-width: 1.5rem;
}

/* Fallback for icon sizing */
.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.view-product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
}


/* =========================================
   Select Country / Global Workforce Section
   ========================================= */
.select-country {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.select-country__container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .select-country__container {
        padding: 0 1.5rem;
    }
}

.select-country__subtitle {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.625;
}

.text-accent-highlight {
    font-weight: 600;
    color: var(--secondary, #00B4D8);
}

.select-country__grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .select-country__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Region Card */
.region-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Region Card Headers */
.region-card__header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid transparent;
}

.region-card__header--blue {
    background-color: #eff6ff;
    color: #1d4ed8;
    border-bottom-color: #dbeafe;
}

.region-card__header--purple {
    background-color: #faf5ff;
    color: #7c3aed;
    border-bottom-color: #f3e8ff;
}

.region-card__header--teal {
    background-color: #f0fdfa;
    color: #0f766e;
    border-bottom-color: #ccfbf1;
}

.region-card__icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.region-card__title {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Region Card Body */
.region-card__body {
    padding: 2rem;
    flex-grow: 1;
}

.region-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.region-card__list--two-col {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .region-card__list--two-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

.region-card__link {
    display: flex;
    align-items: center;
    color: #334155;
    font-weight: 500;
    text-decoration: none;
    padding: 0.25rem;
    margin-left: -0.25rem;
    border-radius: 0.375rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.region-card__link:hover {
    color: var(--secondary, #00B4D8);
    background-color: var(--bg-light);
}

.region-card__link:hover .region-card__chevron {
    color: var(--secondary, #00B4D8);
}

.region-card__link:hover span {
    border-bottom: 1px solid var(--secondary, #00B4D8);
}

.region-card__link span {
    border-bottom: 1px solid transparent;
    line-height: 1.25;
    transition: border-color 0.2s ease;
}

.region-card__chevron {
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
    color: #cbd5e1;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

/* Footnote */
.select-country__footnote {
    text-align: center;
    margin-top: 3rem;
    justify-items: center;
}

.select-country__footnote p {
    color: #64748b;
    font-size: 0.875rem;
}

