:root {
    --brand-green: #2d5016;
    --dark-green: #1a3d0a;
    --white: #ffffff;
    --warm-brown: #8b7355;
    --olive: #6b7c59;
    --light-gray: #f5f5f5;
    --text-dark: #2c3e50;
    --accent-gold: #d4af37;
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #1a3d0a 0%, #2d5016 50%, #3d6b20 100%);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(26, 61, 10, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 5px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    color: var(--white);
    animation: whiteglow 3s ease-in-out infinite;
}

@keyframes whiteglow {

    0%,
    100% {
        text-shadow:
            0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(255, 255, 255, 0.2);
    }

    50% {
        text-shadow:
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(255, 255, 255, 0.6),
            0 0 60px rgba(255, 255, 255, 0.4);
    }
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--white);
    margin: 20px auto;
    opacity: 0.6;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--white);
    opacity: 0.95;
    position: relative;
    overflow: hidden;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes shine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 100%;
    }
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--white);
    color: var(--brand-green);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: bounceButton 4s ease-in-out infinite;
}

@keyframes bounceButton {

    0%,
    100% {
        transform: translateY(0);
    }

    5% {
        transform: translateY(-15px);
    }

    10% {
        transform: translateY(0);
    }

    15% {
        transform: translateY(-10px);
    }

    20% {
        transform: translateY(0);
    }

    20.1%,
    99.9% {
        transform: translateY(0);
    }
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background-color: #f8f8f8;
    animation: none;
}

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

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--brand-green);
    margin-bottom: 30px;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-dark);
    line-height: 1.8;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--olive);
    margin-bottom: 50px;
}

/* Who We Are Section */
.who-we-are {
    padding: 120px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--brand-green);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Specialization Section */
.specialization {
    padding: 120px 0;
    background-color: var(--light-gray);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.spec-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
}

.spec-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.spec-card h3 {
    font-size: 1.6rem;
    color: var(--brand-green);
    padding: 25px 25px 15px;
    font-weight: 600;
}

.spec-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 0 25px 25px;
    line-height: 1.7;
}

/* Supply Chain Section */
.supply-chain {
    padding: 120px 0;
    background-color: var(--white);
}

.chain-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
}

.chain-step {
    flex: 1;
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.chain-step:hover {
    background: var(--brand-green);
    color: var(--white);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brand-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.chain-step:hover .step-number {
    background: var(--white);
    color: var(--brand-green);
}

.chain-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--brand-green);
    transition: all 0.3s ease;
}

.chain-step:hover h3 {
    color: var(--white);
}

.chain-step p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.chain-arrow {
    font-size: 3rem;
    color: var(--brand-green);
    font-weight: 700;
}

/* Advantages Section */
.advantages {
    padding: 120px 0;
    background-color: var(--light-gray);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.advantage-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
}

.advantage-slider {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.advantage-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.advantage-slide.active {
    opacity: 1;
}

.advantage-item h3 {
    font-size: 1.5rem;
    color: var(--brand-green);
    padding: 25px 25px 15px;
    font-weight: 600;
}

.advantage-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 0 25px 25px;
    line-height: 1.7;
}

/* Segments Section */
.segments {
    padding: 120px 0;
    background-color: var(--white);
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.segment-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid var(--light-gray);
    cursor: pointer;
}

.segment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 80, 22, 0.15);
    border-color: var(--brand-green);
}

.segment-icon {
    width: 80px;
    height: 80px;
    color: var(--brand-green);
    margin: 0 auto 25px;
    display: block;
}

.segment-title {
    font-size: 1.8rem;
    color: var(--brand-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.segment-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.segment-btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--brand-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.segment-btn:hover {
    background-color: var(--dark-green);
    transform: scale(1.05);
}

/* Approach Section */
.approach {
    padding: 120px 0;
    background-color: var(--light-gray);
}

.approach-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.approach-column {
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.approach-others {
    background: #f0f0f0;
    border: 2px solid #ddd;
}

.approach-us {
    background: var(--brand-green);
    color: var(--white);
    border: 2px solid var(--dark-green);
}

.approach-column h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.approach-us h3 {
    color: var(--white);
}

.approach-column p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.approach-us ul {
    list-style: none;
    padding: 0;
}

.approach-us ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.approach-us ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--accent-gold);
}

.approach-result {
    text-align: center;
    font-size: 1.2rem;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    border-left: 5px solid var(--brand-green);
}

/* Partners Section */
.partners {
    padding: 120px 0;
    background-color: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.partner-benefit {
    padding: 35px 25px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.partner-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    background: var(--white);
    border: 2px solid var(--brand-green);
}

.partner-benefit h3 {
    font-size: 1.5rem;
    color: var(--brand-green);
    margin-bottom: 15px;
}

.partner-benefit p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Why Us Section */
.why-us {
    padding: 120px 0;
    background-color: var(--light-gray);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.15);
}

.why-icon {
    width: 60px;
    height: 60px;
    color: var(--brand-green);
    margin: 0 auto 20px;
    display: block;
}

.why-item h3 {
    font-size: 1.5rem;
    color: var(--brand-green);
    margin-bottom: 15px;
}

.why-item p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Contact Form Section */
/* Contact Form Section */
/* Contact Form Section */
.contact-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9, #a5d6a7, #81c784);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
    position: relative;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    25% {
        background-position: 50% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    75% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%232d5016" opacity="0.1"/></svg>') repeat;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%232d5016" opacity="0.1"/></svg>') repeat;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.form-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--brand-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.form-left p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: var(--brand-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.form-right {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 20px;
    font-size: 1.3rem;
    pointer-events: none;
    z-index: 1;
}

.form-group input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    font-size: 1.05rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: var(--white);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 4px rgba(45, 80, 22, 0.1);
    transform: translateY(-2px);
}

.form-hint {
    font-size: 0.85rem;
    color: var(--olive);
    padding-left: 10px;
}

.form-submit-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.4);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.form-message {
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    display: none;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #28a745;
    display: block;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #dc3545;
    display: block;
}

@media (max-width: 968px) {
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .form-benefits {
        align-items: center;
    }

    .form-right {
        padding: 35px 25px;
    }
}

/* Footer */
.footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-brand p,
.footer-contact p {
    opacity: 0.9;
    margin-bottom: 8px;
    line-height: 1.8;
}

.footer-contact h4,
.footer-social h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    opacity: 1;
    border-bottom: 1px solid var(--white);
}

.footer-social {
    display: flex;
    flex-direction: column;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #00aced);
    color: var(--white);
}

.social-link.telegram:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white);
}

.social-link.instagram:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(131, 58, 180, 0.4);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
    color: var(--white);
}

.social-link.facebook:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-link.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
    color: var(--white);
}

.social-link.tiktok:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-logo {
        width: 80px;
        height: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .section-intro {
        font-size: 1.05rem;
    }

    .segments-grid,
    .features-grid,
    .spec-grid,
    .advantages-grid,
    .partners-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .chain-steps {
        flex-direction: column;
    }

    .chain-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .approach-comparison {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

/* ==================== ПЕРЕМИКАЧ ТИПУ КЛІЄНТА ==================== */

.client-type-selector {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

.selector-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.selector-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.type-btn {
    flex: 1;
    min-width: 130px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    background: var(--white);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.type-btn:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    transform: translateY(-2px);
}

.type-btn.active {
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--dark-green) 100%);
    border-color: var(--brand-green);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

@media (max-width: 480px) {
    .selector-buttons {
        flex-direction: column;
    }
    
    .type-btn {
        min-width: 100%;
    }
}