:root {
    --lime: #C6FF00;
    --orange: #FF6B35;
    --tomato: #E53935;
    --sun: #FFD600;
    --forest: #1B5E20;
    --forest-light: #2E7D32;
    --cream: #FFF8E1;
    --dark: #1A1A1A;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, .brand {
    font-family: 'Archivo Black', sans-serif;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 248, 225, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--dark);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: #fea215;
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 3px solid var(--dark);
    transition: all 0.3s;
    box-shadow: 4px 4px 0 var(--dark);
}

.nav-cta:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--dark);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: var(--cream);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    border-left: 3px solid var(--dark);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-section {
    margin-bottom: 2rem;
}

.mobile-menu-section h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--forest);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lime);
}

.mobile-menu-links {
    list-style: none;
}

.mobile-menu-links li {
    margin-bottom: 0.8rem;
}

.mobile-menu-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-menu-links a:hover {
    color: var(--orange);
}

.mobile-menu-cta {
    display: block;
    background: var(--forest);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    border: 3px solid var(--dark);
    box-shadow: 4px 4px 0 var(--dark);
    transition: all 0.3s;
    margin-top: 1rem;
}

.mobile-menu-cta:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--dark);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    padding: 8rem 6rem 4rem;
    background: var(--lime);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: var(--sun);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

.hero-text h1 span {
    display: block;
    color: var(--tomato);
}

.hero-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 3px solid var(--dark);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--tomato);
    color: var(--white);
    box-shadow: 5px 5px 0 var(--dark);
}

.btn-primary:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    box-shadow: 5px 5px 0 var(--dark);
}

.btn-secondary:hover {
    background: var(--sun);
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--dark);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-card {
    position: absolute;
    border-radius: 20px;
    border: 4px solid var(--dark);
    overflow: hidden;
    box-shadow: 8px 8px 0 var(--dark);
    transition: transform 0.4s ease;
}

.hero-card:hover {
    transform: scale(1.05) rotate(-2deg);
}

.hero-card-1 {
    width: 280px;
    height: 320px;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--tomato), var(--orange));
}

.hero-card-2 {
    width: 220px;
    height: 260px;
    top: 50px;
    right: 20px;
    background: linear-gradient(135deg, var(--forest-light), var(--forest));
}

.hero-card-3 {
    width: 200px;
    height: 200px;
    bottom: 20px;
    left: 60px;
    background: linear-gradient(135deg, var(--sun), var(--orange));
}

.card-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    color: var(--white);
    text-align: center;
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.card-label {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* STATS BAR */
.stats-bar-wrapper {
    background: var(--dark);
}

.stats-bar {
    padding: 2rem 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    color: var(--lime);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

@media (max-width: 600px) {
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* MISSION */
.mission {
    padding: 6rem 2rem;
    background: var(--white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--lime);
    color: var(--forest);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 2px solid var(--dark);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--forest);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.mission-card {
    flex: 1 1 280px;
    max-width: 350px;
    background: var(--cream);
    border-radius: 20px;
    padding: 2rem;
    border: 3px solid var(--dark);
    box-shadow: 6px 6px 0 var(--dark);
    transition: all 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-card:nth-child(1) { border-color: var(--tomato); box-shadow: 6px 6px 0 var(--tomato); }
.mission-card:nth-child(2) { border-color: var(--orange); box-shadow: 6px 6px 0 var(--orange); }
.mission-card:nth-child(3) { border-color: var(--forest); box-shadow: 6px 6px 0 var(--forest); }

.mission-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mission-card:nth-child(1) .mission-icon { background: var(--tomato); }
.mission-card:nth-child(2) .mission-icon { background: var(--orange); }
.mission-card:nth-child(3) .mission-icon { background: var(--forest); }

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.mission-card p {
    line-height: 1.7;
    opacity: 0.8;
}

/* PROCESS */
.process {
    padding: 6rem 2rem;
    background: var(--forest);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.process .section-tag {
    background: var(--lime);
    color: var(--forest);
}

.process .section-title {
    color: var(--white);
}

.process .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.process-step {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    position: relative;
}

.process-step:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    border-color: var(--lime);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--lime);
    color: var(--forest);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    border: 3px solid var(--white);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--lime);
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* PRODUCTS */
.products {
    padding: 6rem 2rem;
    background: var(--sun);
}

.products .section-tag {
    background: var(--tomato);
    color: var(--white);
}

.products .section-title {
    color: var(--dark);
}

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

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--dark);
    box-shadow: 8px 8px 0 var(--dark);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px) rotate(-1deg);
}

.product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.product-card:nth-child(1) .product-image { background: linear-gradient(135deg, #ff6b6b, var(--tomato)); }
.product-card:nth-child(2) .product-image { background: linear-gradient(135deg, var(--orange), #ff8c42); }
.product-card:nth-child(3) .product-image { background: linear-gradient(135deg, var(--forest-light), #4caf50); }
.product-card:nth-child(4) .product-image { background: linear-gradient(135deg, #8bc34a, var(--lime)); }

.product-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--dark);
    color: var(--lime);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
    flex: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-origin {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--forest);
    font-weight: 500;
}

.product-cta {
    background: var(--lime);
    color: var(--forest);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    border: 2px solid var(--dark);
    transition: all 0.3s;
}

.product-cta:hover {
    background: var(--forest);
    color: var(--white);
}

/* VALUES */
.values {
    padding: 6rem 2rem;
    background: var(--cream);
}

.values-flex {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.values-content {
    flex: 1;
}

.values-content .section-subtitle {
    margin: 0;
}

.values-visual {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-box {
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid var(--dark);
    text-align: center;
    transition: all 0.3s;
}

.value-box:hover {
    transform: scale(1.05);
}

.value-box:nth-child(1) { background: var(--lime); }
.value-box:nth-child(2) { background: var(--tomato); color: var(--white); }
.value-box:nth-child(3) { background: var(--orange); color: var(--white); }
.value-box:nth-child(4) { background: var(--forest); color: var(--white); }

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.value-box h4 {
    font-size: 1.1rem;
}

.values-list {
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.value-check {
    width: 30px;
    height: 30px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    color: var(--forest);
    border: 2px solid var(--dark);
}

.value-item p {
    line-height: 1.6;
}

.value-item strong {
    color: var(--forest);
}

/* CHANNELS */
.channels {
    padding: 6rem 2rem;
    background: var(--white);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.channel-card {
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--dark);
    background: var(--cream);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.channel-card:nth-child(1)::before { background: var(--tomato); }
.channel-card:nth-child(2)::before { background: var(--orange); }
.channel-card:nth-child(3)::before { background: var(--lime); }
.channel-card:nth-child(4)::before { background: var(--forest); }
.channel-card:nth-child(5)::before { background: var(--sun); }
.channel-card:nth-child(6)::before { background: var(--tomato); }

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0 var(--dark);
}

.channel-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.channel-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.channel-card p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

/* CTA SECTION */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--tomato) 0%, var(--orange) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '🍅🥕🫑🧅🍆';
    position: absolute;
    font-size: 8rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    letter-spacing: 2rem;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta {
    background: var(--white);
    color: var(--tomato);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 3px solid var(--dark);
    box-shadow: 5px 5px 0 var(--dark);
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--dark);
    background: var(--lime);
    color: var(--forest);
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 5px 5px 0 rgba(0,0,0,0.2);
}

.btn-cta-outline:hover {
    background: var(--white);
    color: var(--tomato);
}

/* FOOTER */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-brand p a {
    color: var(--white);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--white);
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.tiktok { background: #000; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.facebook { background: #1877f2; }

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

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

.footer-column a:hover {
    color: var(--lime);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 0.9rem;
}

.legal-embed {
    background: transparent;
    padding: 2rem 0;
    text-align: left;
    line-height: 1.8;
}

.legal-embed h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.legal-embed h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    color: var(--forest);
}

.legal-embed p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1rem;
}

.legal-embed a {
    color: var(--forest);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--lime);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s;
}

.legal-embed a:hover {
    text-decoration-color: var(--forest);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    opacity: 0.7;
    font-size: 0.9rem;
    color: var(--white);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-tagline {
    background: var(--lime);
    color: var(--forest);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* CONTACT PAGE */
.contact-hero {
    padding: 8rem 2rem 4rem;
    background: var(--cream);
    min-height: 100vh;
}

.contact-hero .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    border: 3px solid var(--dark);
    box-shadow: 6px 6px 0 var(--dark);
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card:nth-child(1) { border-color: var(--tomato); box-shadow: 6px 6px 0 var(--tomato); }
.contact-card:nth-child(2) { border-color: var(--orange); box-shadow: 6px 6px 0 var(--orange); }
.contact-card:nth-child(3) { border-color: var(--forest); box-shadow: 6px 6px 0 var(--forest); }

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-card p {
    font-size: 1.1rem;
}

.contact-card a {
    color: var(--forest);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--tomato);
}

.contact-info {
    background: var(--forest);
    color: var(--white);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 3px solid var(--dark);
    box-shadow: 6px 6px 0 var(--dark);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--lime);
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        max-width: none;
    }

    .hero-visual {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-flex {
        flex-direction: column;
    }

    .values-visual {
        width: 100%;
        max-width: 500px;
    }

    .value-box {
        padding: 3rem;
    }

    .value-icon {
        font-size: 3.5rem;
    }

    .value-box h4 {
        font-size: 1.4rem;
    }

    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .value-box {
        padding: 2rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .value-box h4 {
        font-size: 1.1rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

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

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

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-column {
        text-align: left;
    }

    .footer-bottom {
        align-items: flex-start;
        text-align: left;
    }
}

/* ANIMATIONS */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
