@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================
   AFIYETSE â€” MODERN MARKETPLACE HOME CSS
   Inspired by: Airbnb, Etsy, Deliveroo
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
    --color-primary: #f97316;
    --color-primary-dark: #ea580c;
    --color-primary-light: #fff7ed;
    --color-secondary: #1e293b;
    --color-text: #334155;
    --color-text-light: #64748b;
    --color-text-muted: #94a3b8;
    --color-bg: #ffffff;
    --color-bg-warm: #fafaf9;
    --color-bg-cream: #fef7f0;
    --color-border: #e2e8f0;
    --color-border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1280px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ---- UTILITIES ---- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 64px;
    }
}

/* ---- SECTION HEADER ---- */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 16px;
    flex-wrap: wrap;
}

.section-header.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 16px;
    color: var(--color-text-light);
    margin-top: 8px;
    max-width: 500px;
}

.see-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    transition: var(--transition);
    white-space: nowrap;
}

.see-all:hover {
    color: var(--color-primary-dark);
    gap: 10px;
}

.see-all svg {
    transition: var(--transition);
}



/* ── HERO ── */
.afi-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.afi-hero__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(249,115,22,.20) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(249,115,22,.08) 0%, transparent 70%);
    pointer-events: none;
}

.afi-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.afi-hero__inner {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 740px;
    padding: 72px 24px 60px;
    width: 100%;
}

.afi-hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    padding: 7px 16px; border-radius: 9999px;
    font-size: 13px; font-weight: 500; margin-bottom: 24px;
}

.afi-hero__dot {
    width: 7px; height: 7px; background: #22c55e;
    border-radius: 50%; flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34,197,94,.25);
    animation: afi-pulse 2s infinite;
}
@keyframes afi-pulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
    50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}

.afi-hero__title {
    font-size: 48px; font-weight: 800; color: #fff;
    line-height: 1.08; letter-spacing: -2px; margin-bottom: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.afi-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.afi-hero__sub {
    font-size: 16px; color: rgba(255,255,255,.65);
    line-height: 1.65; max-width: 480px;
    margin: 0 auto 32px;
}

/* Search */
.afi-hero__form { margin-bottom: 14px; }

.afi-hero__search {
    max-width: 560px; margin: 0 auto;
    display: flex; align-items: center;
    background: #fff; border-radius: 9999px;
    padding: 6px 6px 6px 22px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 20px 40px rgba(0,0,0,.3);
    transition: box-shadow .3s;
}
.afi-hero__search:focus-within {
    box-shadow: 0 0 0 3px rgba(249,115,22,.35), 0 20px 40px rgba(0,0,0,.3);
}
.afi-hero__search svg { flex-shrink: 0; margin-right: 12px; }

.afi-hero__input {
    flex: 1; border: none; outline: none;
    font-size: 15px; color: #334155;
    background: transparent; padding: 10px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.afi-hero__input::placeholder { color: #94a3b8; }

.afi-hero__btn {
    background: #f97316; color: #fff; border: none;
    font-size: 14px; font-weight: 700;
    padding: 0 26px; height: 46px; border-radius: 9999px;
    cursor: pointer; flex-shrink: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: background .2s;
}
.afi-hero__btn:hover { background: #ea580c; }

/* Location */
.afi-hero__loc {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    color: rgba(255,255,255,.5); font-size: 13px; margin-bottom: 36px;
}
.afi-hero__loc strong { color: rgba(255,255,255,.85); }
.afi-hero__loc a {
    color: #f97316; font-weight: 500;
    text-decoration: underline; text-underline-offset: 2px;
}

/* Stats */
.afi-hero__stats {
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 22px 0; max-width: 420px;
    margin: 0 auto;
}
.afi-hero__stat {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; gap: 3px; padding: 0 24px;
}
.afi-hero__stat-num {
    font-size: 30px; font-weight: 800; color: #fff; line-height: 1;
}
.afi-hero__stat-lbl {
    font-size: 11px; color: rgba(255,255,255,.45);
    text-transform: uppercase; letter-spacing: 1.2px; font-weight: 500;
}
.afi-hero__stat-div { width: 1px; height: 44px; background: rgba(255,255,255,.10); }

/* Fade-up animasyon */
@keyframes afi-fadeup {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.afi-hero__inner > * { animation: afi-fadeup .6s ease both; }
.afi-hero__badge  { animation-delay: .05s; }
.afi-hero__title  { animation-delay: .15s; }
.afi-hero__sub    { animation-delay: .25s; }
.afi-hero__form   { animation-delay: .32s; }
.afi-hero__loc    { animation-delay: .38s; }
.afi-hero__stats  { animation-delay: .45s; }

@media (max-width: 640px) {
    .afi-hero { min-height: auto; }
    .afi-hero__inner { padding: 36px 20px 32px; }
    .afi-hero__title { font-size: 26px; letter-spacing: -1px; }
    .afi-hero__sub { font-size: 13px; margin-bottom: 20px; }
    .afi-hero__search { padding: 5px 5px 5px 14px; }
    .afi-hero__btn { padding: 0 16px; height: 38px; font-size: 13px; }
    .afi-hero__stat-num { font-size: 20px; }
    .afi-hero__stats { max-width: 100%; padding: 16px 0; }
    .afi-hero__badge { font-size: 11px; padding: 5px 12px; margin-bottom: 16px; }
    .afi-hero__loc { margin-bottom: 20px; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 1px 0 60px;
    background: var(--color-bg);
}

.hiw-header {
    margin-bottom: 48px;
}

.hiw-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-secondary);
    letter-spacing: -0.5px;
    margin: 10px 0 8px;
    line-height: 1.2;
}

.hiw-desc {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 400px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    position: relative;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    background: var(--color-bg-warm);
    border: 1.5px solid var(--color-border-light);
    transition: var(--transition);
    overflow: hidden;
}

.step-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(249,115,22,.12);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 56px;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.08;
    line-height: 1;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.65;
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .how-it-works { padding: 0px 0 40px; }
    .hiw-title { font-size: 24px; }
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories-section {
    padding: 40px 0 10px;
    background: var(--color-bg-warm);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1.5px solid var(--color-border-light);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.category-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(249,115,22,.15);
}

.category-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff7ed, #fef3c7);
    transition: var(--transition);
}

.category-card:hover .category-image {
    background: linear-gradient(135deg, #ffedd5, #fed7aa);
}

.category-fallback {
    font-size: 42px;
    line-height: 1;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

.category-card:hover .category-fallback {
    transform: scale(1.18);
}

.category-info {
    padding: 14px 10px 16px;
    text-align: center;
    width: 100%;
}

.category-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 3px;
    line-height: 1.3;
}

.category-count {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .categories-section { padding: 24px 0 20px; }
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    .category-fallback { font-size: 26px; }
    .category-name { font-size: 10px; }
    .category-info { padding: 8px 4px 10px; }
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
    padding: 1px 0;
    background: var(--color-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    display: block;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border-light);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-bg-warm);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: var(--radius-full);
}

.product-info {
    padding: 16px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-category-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    display: inline-block;
    font-size: 15px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-seller {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-light);
}

.seller-avatar-sm {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.seller-dot {
    color: var(--color-border);
}

.seller-city {
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .products-section { padding: 16px 0 0px; }
    .product-badge { font-size: 9px; padding: 4px 8px; }
    .product-price { font-size: 14px; }
    .product-title { font-size: 14px; margin-bottom: 8px; }
    .product-info { padding: 10px 12px; }
    .section-title { font-size: 20px; }
}

/* ============================================
   SPOTLIGHT
   ============================================ */
.spotlight-section {
    padding: 100px 0;
    background: var(--color-bg-warm);
}

.spotlight-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
}

.spotlight-image {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    overflow: hidden;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.spotlight-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spotlight-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.spotlight-desc {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.spotlight-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.spotlight-stat {
    text-align: center;
}

.spotlight-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}

.spotlight-stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.spotlight-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    width: fit-content;
}

.spotlight-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

@media (max-width: 768px) {
    .spotlight-card {
        grid-template-columns: 1fr;
    }
    .spotlight-image {
        min-height: 250px;
    }
    .spotlight-content {
        padding: 32px 24px;
    }
    .spotlight-title {
        font-size: 28px;
    }
    .spotlight-section {
        padding: 60px 0;
    }
}

/* ============================================
   SELLERS
   ============================================ */
.sellers-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.sellers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.seller-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.seller-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border);
}

.seller-card-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.seller-card-info {
    flex: 1;
    min-width: 0;
}

.seller-card-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.seller-card-meta {
    font-size: 13px;
    color: var(--color-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.seller-card-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.seller-card-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-light);
}

.seller-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #f59e0b;
}

@media (max-width: 1024px) {
    .sellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sellers-grid {
        grid-template-columns: 1fr;
    }
    .sellers-section {
        padding: 60px 0;
    }
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 80px 0;
    background: var(--color-secondary);
    color: #ffffff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    margin-bottom: 16px;
}

.trust-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--color-bg-warm);
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-xl);
    padding: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 28px;
}

.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: var(--color-primary);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-decoration {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    z-index: 1;
}

@media (max-width: 768px) {
    .cta-card {
        padding: 40px 24px;
        text-align: center;
        flex-direction: column;
    }
    .cta-title {
        font-size: 24px;
    }
    .cta-decoration {
        display: none;
    }
    .cta-section {
        padding: 60px 0;
    }
}