/* Варіант 4: style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #27AE60;
  --secondary-color: #16A085;
  --accent-color: #F39C12;
  --light-color: #FEFAE0;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #27AE60 0%, #16A085 100%);
  --hover-color: #219653;
  --background-color: #F8F9FA;
  --text-color: #4A4A4A;
  --border-color: rgba(39, 174, 96, 0.2);
  --divider-color: rgba(44, 62, 80, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.08);
  --highlight-color: #F1C40F;
  --main-font: 'Merriweather', serif;
  --alt-font: 'Lato', sans-serif;
}

body {
    font-family: var(--alt-font);
    line-height: 1.8;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    margin: 0;
    font-weight: 700;
}

/* Minimalist Clean Cards (Neuromorphism alternative approach for light theme) */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.1);
}

.testimo-card:hover {
    border-color: var(--primary-color);
}

.faq-card {
    transition: background-color 0.3s ease;
}

.faq-card:hover {
    background-color: #ffffff;
}

/* Header & Menu */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-link {
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
    padding-bottom: 5px;
}

.nav-link:hover {
    color: var(--highlight-color) !important;
}

.hover-white:hover {
    color: #ffffff !important;
}

/* CTA Buttons */
.cta-btn {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    background-color: var(--hover-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Mobile Navigation Hack */
@media (max-width: 768px) {
    .navigation {
        display: none;
        width: 100%;
        position: absolute;
        top: 71px;
        left: 0;
        background-color: var(--dark-color);
        padding: 25px 0;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    .hamburger {
        display: block;
        cursor: pointer;
    }
    #nav-trigger:checked ~ .navigation {
        display: block;
    }
    .navigation ul {
        flex-direction: column;
        gap: 20px;
    }
}