:root {
    --primary: #2e7d32;
    --primary-light: #66bb6a;
    --primary-dark: #1b5e20;
    --secondary: #e53935;
    --secondary-light: #ff6f61;
    --accent: #ff9800;
    --accent-dark: #e68900;
    --bg-light: #f9fdf9;
    --bg-dark: #1a2e1a;
    --bg-accent: #fff3e0;
    --bg-deep: #0d1f0d;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --text-muted: #6b7b6b;
    --gradient-watermelon: linear-gradient(135deg, #e53935 0%, #ff6f61 50%, #2e7d32 100%);
    --gradient-africa: linear-gradient(135deg, #ff9800, #ff5722);
    --gradient-green: linear-gradient(135deg, #2e7d32, #66bb6a);
    --gradient-hero: linear-gradient(160deg, #0d1f0d 0%, #1b5e20 40%, #1a2e1a 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.15);
    --shadow-green: 0 8px 30px rgba(46, 125, 50, 0.25);
    --shadow-red: 0 8px 30px rgba(229, 57, 53, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Rubik', 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-xl);
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: var(--gradient-africa);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.5);
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(229, 57, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

.pulse-btn {
    animation: pulse-shadow 2s infinite;
}

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

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 31, 13, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(102, 187, 106, 0.1);
}

.header.scrolled {
    background: rgba(13, 31, 13, 0.97);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-link.active {
    color: var(--accent);
    background: rgba(255, 152, 0, 0.15);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

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

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 70px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: hero-glow 6s ease-in-out infinite;
}

@keyframes hero-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-svg-slice,
.hero-svg-leaf,
.hero-svg-seed {
    position: absolute;
}

.hero-svg-1 {
    top: 10%;
    right: 8%;
    animation: hero-float-1 8s ease-in-out infinite;
}

.hero-svg-2 {
    bottom: 20%;
    left: 5%;
    animation: hero-float-2 10s ease-in-out infinite;
}

.hero-svg-3 {
    top: 60%;
    right: 15%;
    animation: hero-float-3 7s ease-in-out infinite;
}

.hero-svg-4 {
    top: 15%;
    left: 12%;
    animation: hero-float-2 9s ease-in-out infinite;
}

.hero-svg-5 {
    top: 40%;
    left: 30%;
    animation: hero-float-1 6s ease-in-out infinite;
}

.hero-svg-6 {
    bottom: 30%;
    right: 25%;
    animation: hero-float-3 8s ease-in-out infinite;
}

@keyframes hero-float-1 {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes hero-float-2 {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.15); }
}

@keyframes hero-float-3 {
    0%, 100% { opacity: 0.4; transform: scale(1.05); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-btn {
    font-size: 1.15rem;
    padding: 18px 45px;
}

.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    pointer-events: none;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.stats-section {
    background: var(--bg-light);
    padding: 60px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 15px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.stat-number {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
    min-width: 120px;
    display: inline-block;
    text-align: center;
    text-shadow: 0 2px 10px rgba(255, 152, 0, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 5px;
    font-weight: 500;
}

.watermelons-section {
    background: var(--bg-light);
    padding: 80px 0 120px;
    position: relative;
}

.watermelons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.watermelon-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.watermelon-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(229, 57, 53, 0.08);
    border-radius: var(--radius-lg);
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.watermelon-card:hover::before {
    height: 100%;
}

.watermelon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.3);
}

.watermelon-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    aspect-ratio: 4/3;
}

.watermelon-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.watermelon-card:hover .watermelon-image-wrap img {
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    color: #fff;
}

.badge-hit {
    background: var(--secondary);
}

.badge-new {
    background: var(--primary);
}

.badge-discount {
    background: var(--accent);
}

.watermelon-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.watermelon-title {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
    min-height: 36px;
    display: flex;
    align-items: center;
}

.watermelon-weight {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.watermelon-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
    min-height: 70px;
    margin-bottom: 15px;
}

.watermelon-price {
    font-family: 'Rubik', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: auto;
    margin-bottom: 12px;
}

.watermelon-content .btn {
    width: 100%;
}

.journey-section {
    background: var(--bg-dark);
    padding: 80px 0 120px;
    position: relative;
}

.journey-section .section-title {
    color: var(--text-light);
}

.journey-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    padding-top: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 3px;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-dark);
    border: 3px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.timeline-connector {
    display: none;
}

.timeline-title {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

.advantages-section {
    background: var(--bg-light);
    padding: 80px 0 120px;
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(46, 125, 50, 0.08);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-green);
    border-color: rgba(46, 125, 50, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 18px;
    display: block;
}

.advantage-title {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.advantage-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.calculator-section {
    background: var(--bg-accent);
    padding: 80px 0 120px;
    position: relative;
}

.calculator-wrap {
    max-width: 550px;
    margin: 0 auto;
}

.calculator-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
}

.calc-row {
    margin-bottom: 25px;
}

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

.calc-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    background: #fff;
    color: var(--text-dark);
    transition: var(--transition-fast);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.calc-select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15);
}

.calc-input-group {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.calc-input-group:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15);
}

.calc-btn-minus,
.calc-btn-plus {
    width: 50px;
    height: 50px;
    border: none;
    background: var(--bg-light);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calc-btn-minus:hover,
.calc-btn-plus:hover {
    background: var(--primary);
    color: #fff;
}

.calc-input {
    flex: 1;
    border: none;
    text-align: center;
    font-family: 'Rubik', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 12px;
    outline: none;
    -moz-appearance: textfield;
}

.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calc-result {
    background: linear-gradient(135deg, #f1f8e9, #e8f5e9);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    margin-bottom: 25px;
    border: 2px solid rgba(46, 125, 50, 0.15);
}

.calc-result-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.calc-result-value {
    font-family: 'Rubik', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.calc-order-btn {
    width: 100%;
}

.timer-section {
    background: var(--primary-dark);
    padding: 60px 0;
    position: relative;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(46, 125, 50, 0.3) 0px,
        rgba(46, 125, 50, 0.3) 20px,
        rgba(37, 109, 41, 0.3) 20px,
        rgba(37, 109, 41, 0.3) 40px
    );
}

.timer-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.timer-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: #fff;
    margin-bottom: 10px;
}

.timer-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

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

.countdown-number {
    display: block;
    font-family: 'Rubik', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    min-width: 80px;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 2px 15px rgba(229, 57, 53, 0.4);
}

.countdown-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    padding-bottom: 20px;
}

.timer-btn {
    font-size: 1.05rem;
}

.team-section {
    background: var(--bg-light);
    padding: 80px 0 120px;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

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

.team-image-wrap {
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    aspect-ratio: 3/4;
}

.team-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image-wrap img {
    transform: scale(1.08);
}

.team-info {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.team-name {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.testimonials-section {
    background: var(--bg-dark);
    padding: 80px 0 120px;
    position: relative;
}

.testimonials-section .section-title {
    color: var(--text-light);
}

.testimonials-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 152, 0, 0.3);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px;
    opacity: 0.6;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-info strong {
    color: #fff;
    font-size: 0.95rem;
}

.testimonial-author-info span {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

.faq-section {
    background: var(--bg-light);
    padding: 80px 0 120px;
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(46, 125, 50, 0.08);
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(46, 125, 50, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition-fast);
    gap: 15px;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent);
    transition: var(--transition);
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.contact-section {
    background: var(--bg-dark);
    padding: 80px 0;
    position: relative;
}

.contact-section .section-title {
    color: var(--text-light);
}

.contact-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item strong {
    color: var(--accent);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 3px;
}

.contact-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.contact-item a {
    color: rgba(255,255,255,0.8);
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
    border-color: var(--accent);
}

.contact-form-wrap {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 35px;
    backdrop-filter: blur(5px);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.required {
    color: var(--secondary);
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: none;
    border-bottom: 2px solid rgba(255, 152, 0, 0.3);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--accent);
    background: rgba(255,255,255,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    width: 100%;
    font-size: 1.1rem;
}

.footer {
    background: var(--bg-deep);
    padding: 60px 0 0;
    border-top: 1px solid rgba(102, 187, 106, 0.1);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text {
    font-size: 1.2rem;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 15px;
    max-width: 350px;
}

.footer-links h4,
.footer-contacts h4 {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contacts p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-contacts a {
    color: rgba(255,255,255,0.6);
}

.footer-contacts a:hover {
    color: var(--accent);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 1000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.5);
}

.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.exit-popup-overlay.show {
    display: flex;
}

.exit-popup {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 45px 40px;
    max-width: 450px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: popup-appear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 5px solid var(--secondary);
}

@keyframes popup-appear {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.exit-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.exit-popup-close:hover {
    background: #f5f5f5;
    color: var(--secondary);
}

.exit-popup-emoji {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.exit-popup-title {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.exit-popup-text {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.exit-popup-code {
    background: linear-gradient(135deg, #e8f5e9, #fff3e0);
    border: 2px dashed var(--accent);
    border-radius: var(--radius-md);
    padding: 14px 25px;
    font-family: 'Rubik', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: inline-block;
}

.exit-popup-btn {
    width: 100%;
}

.toast-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    color: white;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    max-width: 300px;
    transition: right 0.3s ease-out;
}

.toast-notification.show {
    right: 20px;
}

.toast-notification.success {
    background: #28a745;
}

.toast-notification.error {
    background: #dc3545;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.no-js .animate-on-scroll {
    opacity: 1;
    transform: none;
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    cursor: ew-resize;
    user-select: none;
}

.comparison-images {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comparison-before {
    z-index: 1;
}

.comparison-after {
    z-index: 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    transition: clip-path 0.05s ease;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    z-index: 10;
    pointer-events: none;
    font-size: 0.85rem;
}

.comparison-before .comparison-label {
    left: 20px;
}

.comparison-after .comparison-label {
    right: 20px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: none;
}

.comparison-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    pointer-events: auto;
}

.comparison-divider::before,
.comparison-divider::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.comparison-divider::before {
    border-width: 8px 12px 8px 0;
    border-color: transparent #333 transparent transparent;
    left: 10px;
}

.comparison-divider::after {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #333;
    right: 10px;
}

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

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

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

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

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

    .timeline {
        flex-wrap: wrap;
        justify-content: center;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        flex: 0 0 45%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(13, 31, 13, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 30px;
    }

    .nav-link.active,
    .nav-link:hover {
        color: var(--accent);
        background: rgba(255, 152, 0, 0.1);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .watermelons-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
    }

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

    .contact-socials {
        justify-content: flex-start;
    }

    .timeline-item {
        flex: 0 0 100%;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .calculator-card {
        padding: 30px 20px;
    }

    .contact-form-wrap {
        padding: 25px 20px;
    }

    .exit-popup {
        padding: 35px 25px;
    }

    .comparison-slider {
        max-width: 100%;
        border-radius: var(--radius-sm);
    }

    .comparison-divider {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 1.6rem;
        min-width: 90px;
    }

    .stat-emoji {
        font-size: 2rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .floating-whatsapp-btn {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .toast-notification {
        right: -100%;
        left: auto;
        max-width: calc(100% - 40px);
    }

    .toast-notification.show {
        right: 20px;
    }

    .watermelon-card:hover,
    .advantage-card:hover,
    .team-card:hover,
    .testimonial-card:hover {
        transform: translateY(-4px);
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .exit-popup-code {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
}

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

    .countdown {
        gap: 8px;
    }

    .countdown-number {
        font-size: 1.6rem;
        min-width: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }

    .pulse-btn {
        animation: none;
    }
}