ents /* Main stylesheet moved from css/style.css */
/* (content copied from previous stylesheet) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    overflow-x: hidden;
    padding-top: 60px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

:root {
    --bg: #f8fafc;
    --text: #0f172a;
    --muted: #64748b;
    --brand-1: #667eea;
    --brand-2: #764ba2;
    --accent-1: #ff6b6b;
    --success: #10b981;
    --content-max: 980px;
    --measure: 58ch;
}

/* Fluid type scale */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    overflow-x: hidden;
}

:root {
    --fs-xs: clamp(0.75rem, 0.9vw, 0.85rem);
    --fs-sm: clamp(0.875rem, 1.2vw, 0.95rem);
    --fs-md: clamp(1rem, 1.6vw, 1.0625rem);
    --fs-lg: clamp(1.125rem, 2.2vw, 1.25rem);
    --fs-xl: clamp(1.75rem, 4.6vw, 2.5rem);
    --lead: 1.6;
}

/* Color tweaks for accessibility */
:root {
    --text-strong: #071033;
    --muted-2: #526075;
    --btn-contrast: #ffffff;
}

/* Header / Nav */
/* header/nav moved to assets/css/header.css */

/* Hero grid layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: center;
}
.hero-grid { max-width: var(--content-max); margin: 0 auto; }
.hero-content h1 { color: white; }
.hero-visual { display:flex; justify-content:center; align-items:center; }
.hero-visual svg { max-width: 100%; height: auto; display: block; }
.hero-ctas { margin-top: 1.5rem; display:flex; gap:1rem; flex-wrap:wrap; }
.hero-ctas .btn-primary, .hero-ctas .btn-secondary { flex: 0 1 auto; min-width: 140px; }

.hero-content { max-width: 56ch; }

/* Skip link for accessibility */
/* skip-link moved to header.css */

/* Hero */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: left;
}

.hero h1 {
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 0.6rem;
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: var(--fs-md);
    max-width: var(--measure);
    margin: 0 0 1.25rem 0;
    color: rgba(255,255,255,0.95);
    line-height: var(--lead);
}

.hero-content { text-align: left; }
.hero-content .features-row { justify-content: flex-start; }
.hero-content .hero-ctas { justify-content: flex-start; }

.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-badge {
    background: white;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--success);
}

/* Tools */
/* tools styles moved to assets/css/tools.css */

/* Stats */
.stats-section {
    padding: 56px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.stat-number {
    font-size: clamp(1.5rem, 3.4vw, 2.5rem);
    font-weight: 800;
    color: var(--brand-1);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Categories */
.categories-section {
    padding: 80px 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.category-card-link:hover .category-card {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(118, 75, 162, 0.2);
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid var(--brand-2);
    box-shadow: 0 6px 20px rgba(118, 75, 162, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(118, 75, 162, 0.2);
}

.category-card h3 {
    color: var(--text-strong);
    margin-bottom: 0.6rem;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
}

/* Features */
.features-section {
    padding: 80px 0;
}

.features-carousel {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 5rem;
}

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

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 14px;
    color: #1f2937;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev:hover, .carousel-next:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-50%) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

.feature-card {
    text-align: center;
    padding: 3rem 1.5rem 5rem;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 95% 100%, 90% 100%, 85% 100%, 80% 100%, 75% 100%, 70% 100%, 65% 100%, 60% 100%, 55% 100%, 50% 100%, 45% 100%, 40% 100%, 35% 100%, 30% 100%, 25% 100%, 20% 100%, 15% 100%, 10% 100%, 5% 100%, 0% 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 350px;
    max-height: 390px;
    backdrop-filter: blur(10px);
    border-radius: 16px 16px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.feature-card:nth-child(1) {
    background: linear-gradient(135deg, var(--accent-1), #ee5a24);
    color: white;
}

.feature-card:nth-child(1) h3 {
    color: white;
}

.feature-card:nth-child(1) .card-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.feature-card:nth-child(1) .card-bullets li {
    color: rgba(255, 255, 255, 0.9);
}

.feature-card:nth-child(1) .card-footer {
    color: rgba(255, 255, 255, 0.7);
}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe); /* Blue gradient */
    color: #1e40af;
}

.feature-card:nth-child(2) h3 {
    color: #1e40af;
}

.feature-card:nth-child(2) .card-subtitle {
    color: #1d4ed8;
}

.feature-card:nth-child(2) .card-bullets li {
    color: #1d4ed8;
}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0); /* Green gradient */
    color: #166534;
}

.feature-card:nth-child(3) h3 {
    color: #166534;
}

.feature-card:nth-child(3) .card-subtitle {
    color: #15803d;
}

.feature-card:nth-child(3) .card-bullets li {
    color: #15803d;
}

.feature-card:nth-child(4) {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8); /* Pink gradient */
    color: #be185d;
}

.feature-card:nth-child(4) h3 {
    color: #be185d;
}

.feature-card:nth-child(4) .card-subtitle {
    color: #db2777;
}

.feature-card:nth-child(4) .card-bullets li {
    color: #db2777;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Desktop tilting for feature cards */
@media (min-width: 769px) {
    .feature-card {
        transform: rotate(-1deg);
    }

    .feature-card:nth-child(even) {
        transform: rotate(1deg);
    }

    .feature-card:nth-child(3n) {
        transform: rotate(-0.5deg);
    }

    .feature-card:hover {
        transform: rotate(0deg) translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
}

.card-icon {
    margin-bottom: 1rem;
    color: #1f2937;
}

.card-icon svg {
    width: 48px;
    height: 48px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 500;
}

.card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.card-bullets li {
    font-size: 0.85rem;
    color: #374151;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    text-align: left;
}

.check {
    color: #10b981;
    margin-right: 0.5rem;
    font-weight: bold;
    display: inline-block;
    vertical-align: baseline;
}

.card-divider {
    border: none;
    border-top: 1px solid white;
    margin: 1rem 0;
}

.card-footer {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 500;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cert-badges span {
    background: #10b981;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonial */
.testimonial-section {
    padding: 80px 0 120px;
    background: #f8fafc;
    color: var(--text);
    text-align: center;
    position: relative;
}

.testimonial-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,60 Q200,90 400,30 T700,80 1000,40 T1200,60 V0 H0 Z" fill="%23ffffff"/></path></svg>') no-repeat;
    background-size: cover;
    z-index: 1;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.testimonial-card {
    background: white;
    width: 100%;
    max-width: 280px;
    min-height: 350px;
    margin: 0 auto;
    border-radius: 26px;
    border: 1px solid #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
    filter: grayscale(100%) contrast(200%);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonial-card:nth-child(3) { transition-delay: 0.4s; }
.testimonial-card:nth-child(4) { transition-delay: 0.6s; }

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card svg {
    filter: none !important;
}

.ticket-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.ticket-header svg {
    margin-bottom: 0.5rem;
    filter: none !important;
}

.ticket-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-strong);
    margin-bottom: 0.25rem;
}

.ticket-header p {
    font-size: 0.875rem;
    color: var(--muted);
}

.dashed-divider {
    border: none;
    border-top: 1px dashed #e2e8f0;
    margin: 1rem 0;
}

.ticket-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.detail-left, .detail-right {
    flex: 1;
}

.detail-left {
    text-align: left;
}

.detail-right {
    text-align: right;
}

.detail-left label, .detail-right label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-strong);
}

.ticket-quote p {
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--muted-2);
    margin: 0 0 1.5rem 0;
}

.ticket-bottom {
    margin-top: auto;
}

.ticket-bottom hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.barcode {
    display: block;
    margin: 0 auto;
    width: 180px;
    height: auto;
}

.carousel-prev, .carousel-next, .carousel-dots {
    display: none;
}

@media (max-width: 768px) {
    .testimonials-carousel {
        position: relative;
        max-width: 1200px;
        margin: 3rem auto 0;
    }

    .testimonials-carousel .carousel-prev, .testimonials-carousel .carousel-next {
        display: block;
    }

    .testimonials-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 2rem;
        width: 100%;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        margin: 0 auto;
        max-width: 100%;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonials-grid {
        scrollbar-width: none;
    }

    .testimonial-card {
        flex-shrink: 0;
        width: calc(100vw - 6rem);
        max-width: 220px;
        min-height: 350px;
        transform: rotate(0deg);
        scroll-snap-align: start;
        margin: 0 auto;
    }

    .carousel-dots {
        display: none;
    }

    .ticket-header svg {
        width: 40px;
        height: 40px;
    }

    .ticket-header h3 {
        font-size: 1.1rem;
    }

    .ticket-header p {
        font-size: 0.8rem;
    }

    .detail-value {
        font-size: 0.8rem;
    }

    .ticket-quote p {
        font-size: 0.85rem;
    }

    .barcode {
        width: 150px;
        height: auto;
    }
}

/* CTA */
.cta-section {
    padding: 100px 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100" preserveAspectRatio="none"><path d="M0,100 Q200,40 400,30 T600,20 800,10 1000,0 1200,-10 V100 H0 Z" fill="%23667eea" opacity="0.4"/><path d="M0,100 Q250,35 500,25 T750,15 1000,5 1200,-5 V100 H0 Z" fill="%23764ba2" opacity="0.3"/><path d="M0,100 Q300,30 600,20 T900,10 1200,0 V100 H0 Z" fill="%23667eea" opacity="0.2"/></svg>') no-repeat center bottom;
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100" preserveAspectRatio="none"><path d="M0,100 Q300,0 600,100 T1200,100 V0 H0 Z" fill="%23f8fafc"/></path></svg>') no-repeat;
    background-size: cover;
    z-index: 2;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100" preserveAspectRatio="none"><path d="M0,100 Q200,50 400,40 T600,30 800,20 1000,10 1200,0 V100 H0 Z" fill="%234a90e2" opacity="0.4"/><path d="M0,100 Q250,45 500,35 T750,25 1000,15 1200,5 V100 H0 Z" fill="%235ba0f2" opacity="0.3"/><path d="M0,100 Q300,40 600,30 T900,20 1200,10 V100 H0 Z" fill="%236bb3f5" opacity="0.2"/></svg>') no-repeat;
    background-size: cover;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.18s ease;
    font-size: var(--fs-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), #ee5a24);
    color: var(--btn-contrast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,107,107,0.4);
}

.btn-secondary {
    background: black;
    color: white;
    border: 2px solid black;
}

.btn-secondary:hover {
    background: white;
    color: #1e293b;
}

.btn-primary.large, .btn-secondary.large {
    padding: 14px 36px;
    font-size: clamp(0.98rem, 1.8vw, 1.12rem);
}

section h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.25rem);
    text-align: center;
    margin-bottom: 0.9rem;
    color: var(--text);
    letter-spacing: -0.02em;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.cta-section h2::after {
    display: block;
}

.highlight {
    font-weight: bold;
    color: var(--success);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 280px; }
}

@media (max-width: 768px) {

    .container { padding: 0 20px; }

    .hero { padding: 56px 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-visual { order: -1; opacity: 0.95; }

    .hero, .hero-content { text-align: center; }

    .features-row, .cta-buttons, .cta-features { flex-direction: column; align-items: center; }

    /* Center hero CTAs on small screens and give them breathing room */
    .hero-ctas { justify-content: center; gap: 0.75rem; width: 100%; flex-direction: column; align-items: center; }
    .hero-ctas .btn-primary, .hero-ctas .btn-secondary { min-width: auto; width: 100%; max-width: 280px; }

    .tools-grid, .categories-grid { grid-template-columns: 1fr; }

    .features-carousel .carousel-prev, .features-carousel .carousel-next {
        display: block;
    }

    .features-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 2rem;
        width: 100%;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        margin: 0 auto;
        max-width: 100%;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .features-grid {
        scrollbar-width: none;
    }

    .feature-card {
        flex-shrink: 0;
        width: calc(100vw - 6rem);
        max-width: 280px;
        transform: rotate(0deg);
        scroll-snap-align: start;
        margin: 0 auto;
    }


    /* Mobile nav behavior */
    /* header/nav responsive rules moved to header.css */

    section { padding: 60px 0; }
}

@media (max-width: 420px) {
    .btn-primary.large, .btn-secondary.large { padding: 12px 18px; font-size: 0.95rem; }
    .hero p { font-size: 1rem; }
    .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; }
}

@media (max-width: 480px) {
    .hero-ctas .btn-primary, .hero-ctas .btn-secondary { max-width: 240px; }
    .btn-primary.large, .btn-secondary.large { padding: 10px 16px; font-size: 0.9rem; }
}

/* Share Button */
.share-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.share-btn.show {
    opacity: 1;
    visibility: visible;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

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

@media (max-width: 768px) {
    .share-btn {
        bottom: 70px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

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

/* Move to Top Button */
.move-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.move-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.move-to-top-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.move-to-top-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .move-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .move-to-top-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Mobile-only elements */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}
