@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --terracotta-primary: #C65D3B;
    --terracotta-dark: #9A4426;
    --terracotta-light: #E8A089;
    --forest-green: #2D5A3D;
    --forest-dark: #1E3D29;
    --forest-light: #4A7C59;
    --lime-accent: #84CC16;
    --lime-light: #A3E635;
    --earth-brown: #8B7355;
    --cream-bg: #FDF8F5;
    --off-white: #FAFBF9;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-strong: 0 15px 50px rgba(0,0,0,0.15);
    --glass-bg: rgba(255,255,255,0.85);
    --glass-border: rgba(255,255,255,0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--cream-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

strong, p {
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--terracotta-primary), var(--forest-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-lime {
    background: linear-gradient(135deg, var(--lime-accent), var(--forest-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--terracotta-primary), var(--terracotta-dark));
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(198, 93, 59, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(198, 93, 59, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: var(--forest-green);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--forest-green);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--forest-green);
    color: white;
    transform: translateY(-3px);
}

.btn-lime {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--lime-accent), var(--lime-light));
    color: var(--forest-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-lime:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(132, 204, 22, 0.4);
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(132, 204, 22, 0.15);
    color: var(--forest-green);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
}

.card-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
}

.card-glass:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.card-terracotta {
    background: white;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.card-terracotta:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--terracotta-light);
}

.card-green {
    background: var(--forest-green);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
}

.card-green:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.decorative-pattern {
    background-image: 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='%23C65D3B' 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");
}

.decorative-pattern-green {
    background-image: 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='%232D5A3D' 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");
}

.texture-soil {
    background-color: var(--earth-brown);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.micro-bounce {
    transition: transform 0.2s ease;
}

.micro-bounce:hover {
    transform: scale(1.05);
}

.hover-lift {
    transition: all 0.3s ease;
}

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

.glow-lime {
    box-shadow: 0 0 30px rgba(132, 204, 22, 0.3);
}

.glow-terracotta {
    box-shadow: 0 0 30px rgba(198, 93, 59, 0.3);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary, .btn-lime {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}