:root {
    /* JR-Projects Brand Colors - matching jrprojects.de */
    --primary-color: #77BB3F;
    --primary-dark: #5a9a2e;
    --primary-light: #8fcc5a;
    --secondary-color: #5a9a2e;
    --accent-color: #a4d96c;
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-light: #6b7280;
    --text-muted: #6b7280;
    --text-dark: #111827;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --bg-dark: #1f2937;
    --bg-darker: #111827;
    --bg-card: #ffffff;
    
    /* Border & UI */
    --border-color: #e5e7eb;
    --border-dark: #d1d5db;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(119, 187, 63, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-white);
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo {
    height: clamp(28px, 4vw, 40px);
    width: auto;
    max-height: clamp(28px, 4vw, 40px);
    max-width: clamp(140px, 28vw, 240px);
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.lang-switch {
    padding-left: 1rem;
    border-left: 1px solid var(--border-color);
}

.lang-link {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #77BB3F 0%, #5a9a2e 100%);
    color: var(--text-white);
    margin-top: 73px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1.5rem;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    border-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    margin-top: 1rem;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--bg-light);
}

.section-dark {
    background: linear-gradient(135deg, #5a9a2e 0%, #77BB3F 100%);
    color: var(--text-white);
}

.section-centered {
    text-align: center;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-primary);
}

.centered-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.content-image {
    display: flex;
    align-self: stretch;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.image-placeholder {
    background: linear-gradient(135deg, #77BB3F 0%, #5a9a2e 100%);
    border-radius: 1rem;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.image-placeholder svg {
    width: 120px;
    height: 120px;
    color: rgba(255, 255, 255, 0.8);
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    min-height: clamp(280px, 32vw, 520px);
    max-height: clamp(420px, 50vh, 720px);
}

@media (min-width: 769px) {
    .content-grid .section-image {
        height: 100%;
        max-height: none;
    }
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.tech-logos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.tech-logo {
    height: clamp(26px, 4vw, 40px);
    width: auto;
    max-height: clamp(26px, 4vw, 40px);
    max-width: clamp(40px, 12vw, 72px);
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tech-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

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

.product-card {
    display: block;
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

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

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-info {
    padding: 1.25rem;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.product-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

.product-card:hover .product-link {
    color: var(--primary-dark);
}

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

.review-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-author {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.process-step {
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    padding: 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.process-icon {
    width: 42px;
    height: 42px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.process-step h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.process-step p {
    margin: 0;
    color: var(--text-secondary);
}

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

.info-card {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    background-color: var(--bg-white);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.info-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}

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

.shop-card {
    background: var(--bg-card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.shop-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.shop-card-content {
    padding: 1.25rem;
}

.shop-card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.shop-card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.shop-card-more {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.shop-card-more .shop-card-content {
    text-align: center;
}

.shop-card-more h3 {
    color: white;
}

.shop-card-more p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.shop-card-more .btn-outline {
    border-color: white;
    color: white;
}

.shop-card-more .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.resource-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.resource-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.resource-card h3 {
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.resource-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.resource-link:hover {
    text-decoration: underline;
}

.pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background-color: var(--bg-gray);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pill-success {
    background-color: rgba(119, 187, 63, 0.15);
    color: var(--primary-dark);
}

.pill-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.page-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #77BB3F 0%, #5a9a2e 100%);
    color: var(--text-white);
    margin-top: 73px;
}

.page-hero .hero-content {
    text-align: left;
    max-width: 780px;
}

.page-hero .hero-cta {
    justify-content: flex-start;
}

.page-hero .section-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.contact-card span {
    display: block;
    font-weight: 600;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-copy {
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 1.5rem 0;
        max-height: calc(100vh - 73px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .section h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .lang-switch {
        padding-left: 0;
        border-left: none;
        margin-top: 0.5rem;
    }

    .tech-logos {
        gap: 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .centered-text {
        font-size: 1rem;
    }

    .section-image {
        min-height: 240px;
        max-height: 520px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .navbar .container {
        padding: 0.75rem 1rem;
    }

    .nav-brand a {
        font-size: 1.25rem;
    }

    .nav-logo {
        height: clamp(24px, 3vw, 32px);
        max-width: clamp(100px, 20vw, 180px);
    }

    .nav-menu {
        padding: 1rem 0;
    }

    .hero {
        padding: 5rem 0 3rem;
        margin-top: 60px;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-card {
        padding: 1rem;
    }

    .info-card h3 {
        font-size: 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 200px;
    }

    .image-gallery {
        gap: 1rem;
    }

    .review-card {
        padding: 1rem;
        border-left-width: 3px;
    }

    .review-text {
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    .contact-card svg {
        width: 40px;
        height: 40px;
        margin-bottom: 0.75rem;
    }

    .contact-card span {
        font-size: 1rem;
    }

    .footer {
        padding: 1.5rem 0;
    }

    .footer-copy {
        font-size: 0.8rem;
    }

    .centered-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-group .btn {
        width: 100%;
    }
}

/* === Utility Classes === */
.mt-3 {
    margin-top: 3rem;
}

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

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1-5 {
    margin-top: 1.5rem;
}

/* === Download Auth Section === */
.resource-card-wide {
    grid-column: 1 / -1;
}

.download-form .form-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.download-form input {
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    flex: 1;
    min-width: 140px;
    background: var(--bg-white);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.download-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(119, 187, 63, 0.15);
}

.download-form input::placeholder {
    color: var(--text-light);
}

.download-error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1.2em;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.download-file-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.download-item .pill {
    flex-shrink: 0;
}

.download-item div {
    flex: 1;
}

.download-item h3 {
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}

.download-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.download-item .btn {
    flex-shrink: 0;
}

.download-hint {
    text-align: right;
    margin-top: 0.75rem;
    font-size: 0.85rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: underline;
    padding: 0;
    font-family: inherit;
}

.btn-link:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .download-form .form-row {
        flex-direction: column;
    }

    .download-form input,
    .download-form .btn {
        width: 100%;
    }

    .download-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .download-item .btn {
        width: 100%;
    }
}
