@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-hover: #1e1e2a;
    --accent: #ff007b;
    --accent-hover: #e0006c;
    --accent-glow: rgba(255, 0, 123, 0.3);
    --text-primary: #f0f0ff;
    --text-secondary: #8b8ba7;
    --text-muted: #555570;
    --border: #2a2a3a;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-bubble: 28px;
    --radius-card: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.eyebrow::before {
    content: '';
    width: 18px;
    height: 3px;
    border-radius: 2px;
    background: var(--accent);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 48px;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

section {
    padding: 96px 0;
    position: relative;
}

section.alt {
    background: var(--bg-secondary);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 8px 24px var(--accent-glow); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--text-primary); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ── NAV ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.navbar-logo img { height: 44px; width: auto; }

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.navbar-links a:hover { color: var(--text-primary); }

.navbar-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--bg-primary);
    z-index: 199;
    padding: 32px 24px;
    overflow-y: auto;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
}

/* ── HERO ── */
.hero {
    padding: 180px 0 110px;
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
    z-index: 0;
}

.hero-blob.one { width: 420px; height: 420px; background: var(--accent); top: -120px; right: -100px; }
.hero-blob.two { width: 320px; height: 320px; background: var(--info); bottom: -100px; left: -80px; opacity: 0.15; }

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-title span { color: var(--accent); }

.hero-text {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 460px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hero-stat .num {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    color: var(--accent);
}

.hero-stat .label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-bubble);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 5s ease-in-out infinite;
}

.hero-visual-card img { width: 100%; max-width: 420px; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* ── BUBBLE CARD (signature element) ── */
.bubble-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-bubble);
    padding: 32px;
    transition: all 0.25s ease;
    position: relative;
}

.bubble-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.bubble-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 0, 123, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.bubble-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.bubble-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ── PONUDA (offer grid) ── */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ── OTKUP / SERVIS (split sections) ── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-visual {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-bubble);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.split-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 28px 0 32px;
}

.split-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.split-list .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── PRODUCT CARDS ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 0.2s ease;
}

.product-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.product-thumb {
    aspect-ratio: 1;
    background: var(--bg-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 999px;
}

.product-info { padding: 18px; }

.product-info .cat {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-price .now { font-size: 18px; font-weight: 700; color: var(--accent); }
.product-price .old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }

/* ── COMING SOON ── */
.coming-soon-card {
    background: var(--bg-card);
    border: 2px dashed var(--border);
    border-radius: var(--radius-bubble);
    padding: 56px 32px;
    text-align: center;
}

.coming-soon-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 16px;
    display: inline-block;
}

.coming-soon-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.coming-soon-card p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 420px;
    margin: 0 auto;
}

/* ── REVIEWS ── */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* ── REVIEW CAROUSEL (3 slike po slajdu) ── */
.review-carousel {
    position: relative;
    margin-top: 32px;
}

.review-carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius-bubble);
}

.review-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.review-carousel-slide {
    flex: 0 0 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: center;
}

.review-screenshot-item {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    padding: 0;
    width: 100%;
    transition: all 0.2s ease;
    display: block;
}

.review-screenshot-item:hover {
    border-color: var(--accent);
}

.review-screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 2;
    transition: all 0.2s ease;
}

.carousel-arrow:hover { border-color: var(--accent); color: var(--accent); }
.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }

.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 20px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    transition: all 0.2s ease;
}

.carousel-dot.active { background: var(--accent); width: 22px; border-radius: 4px; }

/* ── LIGHTBOX ── */
.review-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.92);
    z-index: 300;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.review-lightbox.open { display: flex; }

.review-lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 40px;
    border: 2px solid var(--border);
}

.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--text-primary);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover { border-color: var(--accent); color: var(--accent); }

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--text-primary);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-arrow:hover { border-color: var(--accent); color: var(--accent); }
.lightbox-arrow.prev { left: 24px; }
.lightbox-arrow.next { right: 24px; }

@media (max-width: 768px) {
    .review-carousel-slide { gap: 10px; }
    .carousel-arrow { width: 36px; height: 36px; font-size: 15px; }
    .carousel-arrow.prev { left: 0; }
    .carousel-arrow.next { right: 0; }
    .lightbox-arrow { width: 38px; height: 38px; font-size: 16px; }
    .lightbox-arrow.prev { left: 10px; }
    .lightbox-arrow.next { right: 10px; }
    .lightbox-close { top: 14px; right: 14px; }
}

.review-summary-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-bubble);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.25s ease;
}

.review-summary-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

.review-summary-card .score {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
}

.stars { color: var(--warning); font-size: 16px; letter-spacing: 2px; margin-bottom: 4px; }

.review-summary-card .platform { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── INSTAGRAM ── */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.insta-item {
    aspect-ratio: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-muted);
    overflow: hidden;
    position: relative;
    transition: all 0.2s ease;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 123, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 24px;
    color: var(--accent);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover { border-color: var(--accent); }

.snapwidget-wrapper {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.snapwidget-wrapper iframe {
    width: 100%;
    max-width: 100%;
}

/* ── BLOG ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 0.2s ease;
}

.blog-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.blog-thumb {
    aspect-ratio: 16/9;
    background: var(--bg-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.blog-info { padding: 22px; }

.blog-info .date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-info h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.blog-info .read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 4px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
}

.faq-question .plus {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--accent);
    transition: transform 0.25s ease;
}

.faq-item.open .faq-question .plus { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
    padding: 0 4px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 640px;
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius-bubble);
    padding: 36px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-row:last-child { border-bottom: none; }

.contact-row .icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(255, 0, 123, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.contact-row .label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
}

.contact-row .value { font-size: 15px; font-weight: 500; }
.contact-row .value a:hover { color: var(--accent); }

.hours-table { width: 100%; margin-top: 4px; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 8px 0; font-size: 14px; }
.hours-table td:first-child { color: var(--text-secondary); }
.hours-table td:last-child { text-align: right; font-weight: 600; }

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.social-btn:hover { border-color: var(--accent); color: var(--accent); }

.contact-map {
    border-radius: var(--radius-bubble);
    overflow: hidden;
    border: 2px solid var(--accent);
    min-height: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
    filter: invert(92%) hue-rotate(295deg) saturate(1.4) brightness(0.92) contrast(1.05);
}

/* ── FOOTER ── */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo img { height: 48px; margin-bottom: 16px; }
.footer-grid p { font-size: 14px; color: var(--text-secondary); max-width: 320px; }

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-primary);
}

.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: var(--text-secondary); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
}

/* ── ANIMATIONS ── */
/* Content is visible by default — animation is a progressive enhancement only,
   never something that can hide content if JS fails to run. */
[data-aos] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
    [data-aos].aos-ready { opacity: 0; transition: opacity 0.5s ease, transform 0.5s ease; }
    [data-aos="fade-up"].aos-ready { transform: translateY(24px); }
    [data-aos].aos-animate { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .offer-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .navbar-links, .navbar-cta .btn-outline { display: none; }
    .hamburger { display: flex; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    section { padding: 64px 0; }
    .hero { padding: 140px 0 64px; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-info-card, .contact-map { margin-right: 0 !important; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-visual-card { animation: none; }
    [data-aos] { transition: none; opacity: 1; transform: none; }
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}