/*
Theme Name: OnlyFans Directory
Theme URI: https://example.com/onlyfans-directory
Author: Imonetizeit
Description: Premium adult model directory theme for OnlyFans affiliate pages. Dark design with hot pink accents, responsive grid layout, advanced SEO, and smartlink presentation.
Version: 2.0.0
Text Domain: onlyfans-directory
*/

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --accent: #ff2d6b;
    --accent-dark: #e01f57;
    --accent-glow: rgba(255, 45, 107, 0.35);
    --accent-soft: rgba(255, 45, 107, 0.12);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #777777;
    --border: #2a2a2a;
    --radius: 12px;
    --radius-pill: 50px;
    --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: 0.25s ease;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #ff5a8a;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--accent-glow), 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 35px var(--accent-glow), 0 0 50px rgba(255, 45, 107, 0.2), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ============================================
   18+ WARNING BAR
   ============================================ */

.age-warning {
    background: linear-gradient(90deg, #cc0033, #ff2d6b);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.site-logo span {
    color: var(--accent);
}

.site-nav {
    display: flex;
    gap: 28px;
    list-style: none;
}

.site-nav a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text-primary);
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.site-nav a:hover::after {
    width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* ============================================
   HOMEPAGE - HERO
   ============================================ */

.hero {
    text-align: center;
    padding: 64px 24px 32px;
    max-width: var(--max-width);
    margin: 0 auto;
    animation: fadeInUp 0.5s ease;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--accent), #ff7eb3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   CATEGORY FILTER BAR
   ============================================ */

.category-filter-bar {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 24px;
}

.category-filter-inner {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-card);
}

.category-filter-inner::-webkit-scrollbar {
    height: 4px;
}

.category-filter-inner::-webkit-scrollbar-track {
    background: var(--bg-card);
    border-radius: 4px;
}

.category-filter-inner::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.category-pill {
    flex-shrink: 0;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.category-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
}

.category-pill.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 2px 12px var(--accent-glow);
}

/* ============================================
   SEO INTRO SECTION
   ============================================ */

.seo-intro {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 32px;
    text-align: center;
}

.seo-intro h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.seo-intro p {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   MODEL GRID (HOMEPAGE)
   ============================================ */

.model-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.model-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.4s ease backwards;
    content-visibility: auto;
}

.model-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.model-card-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: #222;
}

.model-card-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-card-image-placeholder::after {
    content: '';
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #333;
    border: 3px solid #444;
}

.model-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.model-card-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-badge {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.model-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.model-card-stat {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.model-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}

.model-card-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px var(--accent-glow);
    color: #fff;
}

/* ============================================
   ★ SMARTLINK CTA — Model Page
   ============================================ */

.smartlink-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--accent), #ff5a8a, var(--accent-dark));
    background-size: 200% 100%;
    color: #fff;
    border-radius: var(--radius);
    margin-bottom: 28px;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: pulseGlow 2.5s ease-in-out infinite;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.smartlink-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.smartlink-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 40px var(--accent-glow);
    color: #fff;
}

.smartlink-cta-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.smartlink-cta-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.smartlink-cta-text strong {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.smartlink-cta-text small {
    font-size: 13px;
    opacity: 0.85;
    font-weight: 400;
}

.smartlink-cta-arrow {
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.smartlink-cta:hover .smartlink-cta-arrow {
    transform: translateX(4px);
}

/* Alt variant (mid-page) */
.smartlink-cta-alt {
    background: linear-gradient(135deg, #333, #444);
    border: 1px solid var(--accent);
    animation: none;
}

.smartlink-cta-alt:hover {
    background: linear-gradient(135deg, var(--accent), #ff5a8a);
    border-color: transparent;
}

/* Final variant (bottom) */
.smartlink-cta-final {
    background: linear-gradient(135deg, #1a0a12, #2a0f1c, var(--accent-dark));
    border: 2px solid var(--accent);
}

/* Card inline smartlink button */
.card-smartlink-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: pulseGlow 3s ease-in-out infinite;
}

.card-smartlink-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 30px var(--accent-glow);
    color: #fff;
}

/* ============================================
   STICKY BOTTOM CTA BAR
   ============================================ */

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--accent);
    padding: 12px 24px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent), #ff5a8a);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-pill);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.sticky-cta-link:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px var(--accent-glow);
    color: #fff;
}

.sticky-cta-price {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
}

/* ============================================
   SINGLE MODEL PAGE
   ============================================ */

.model-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 24px 100px;
}

/* Model Page H1 */
.model-page-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    line-height: 1.3;
    animation: fadeInUp 0.4s ease;
}

/* Profile Card */
.profile-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 32px;
    text-align: center;
    margin-bottom: 28px;
    animation: fadeInUp 0.5s ease;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.profile-avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border: 3px solid var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar-placeholder::after {
    content: '';
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #444;
}

.profile-name {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.profile-bio {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 16px;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 20px 24px;
    margin-bottom: 28px;
    animation: fadeInUp 0.5s ease 0.1s backwards;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Preview */
.content-section {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px;
    margin-bottom: 28px;
}

.content-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.content-list {
    list-style: none;
    padding: 0;
}

.content-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list li::before {
    content: '\2726';
    color: var(--accent);
    font-size: 12px;
    flex-shrink: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    margin-bottom: 32px;
}

.faq-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item[open] {
    border-color: var(--accent);
}

.faq-item summary {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--accent);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-item p {
    padding: 0 20px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.homepage-faq {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px 48px;
}

/* ============================================
   SEO CONTENT
   ============================================ */

.seo-content {
    margin-bottom: 28px;
}

.seo-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.seo-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.seo-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   CONTENT HIGHLIGHTS GRID
   ============================================ */

.content-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.content-highlight-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.content-highlight-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.content-highlight-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.content-highlight-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   POSTING SCHEDULE & SOCIALS
   ============================================ */

.schedule-section {
    margin-bottom: 28px;
}

.schedule-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.schedule-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.schedule-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.schedule-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RELATED MODELS
   ============================================ */

.related-models {
    margin-top: 40px;
    margin-bottom: 32px;
}

.related-models h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.related-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    box-shadow: 0 6px 20px var(--accent-glow);
    color: inherit;
}

.related-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: #222;
}

.related-card-img-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.related-card-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-card-name {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-card-cat {
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    padding: 0 0 20px;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .separator {
    margin: 0 8px;
}

/* ============================================
   GENERIC PAGE
   ============================================ */

.page-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.page-content h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
}

.page-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: #0d0d0d;
    border-top: 1px solid var(--border);
    padding: 40px 24px;
    text-align: center;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 13px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

/* ============================================
   NO RESULTS
   ============================================ */

.no-models {
    text-align: center;
    padding: 80px 24px;
    color: var(--text-muted);
    font-size: 16px;
    grid-column: 1 / -1;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .header-inner {
        padding: 12px 16px;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 16px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    .site-nav.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: 40px 16px 20px;
    }

    .category-filter-bar {
        padding: 0 16px 16px;
    }

    .seo-intro {
        padding: 0 16px 24px;
    }

    .model-grid {
        padding: 0 16px 40px;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }

    .model-page {
        padding: 16px 16px 100px;
    }

    .profile-card {
        padding: 24px 16px;
    }

    .stats-bar {
        gap: 20px;
        padding: 16px;
    }

    .smartlink-cta {
        padding: 16px 20px;
        gap: 12px;
    }

    .smartlink-cta-text strong {
        font-size: 15px;
    }

    .smartlink-cta-icon {
        font-size: 24px;
    }

    .sticky-cta-bar {
        padding: 10px 16px;
    }

    .sticky-cta-link {
        padding: 12px 20px;
        font-size: 14px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .homepage-faq {
        padding: 16px 16px 40px;
    }

    .content-highlights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .model-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        flex-direction: column;
        gap: 12px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .smartlink-cta-arrow {
        display: none;
    }
}