/* Варіант 2: style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #0F1021;
  --secondary-color: #D01257;
  --accent-color: #FB90B7;
  --light-color: #FFCEE4;
  --dark-color: #080811;
  --gradient-primary: linear-gradient(135deg, #D01257 0%, #0F1021 100%);
  --hover-color: #E01171;
  --background-color: #FFFFFF;
  --text-color: #4B5563;
  --border-color: rgba(208, 18, 87, 0.15);
  --divider-color: rgba(15, 16, 33, 0.1);
  --shadow-color: rgba(208, 18, 87, 0.1);
  --highlight-color: #E01171;
  --main-font: 'Lora', serif;
  --alt-font: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
}

.content-section, .features-section, .divider-section, .cta-section, .testimonials-section, .form-promo-section, .contact-section, .faq-section {
    padding-top: 10dvh;
    padding-bottom: 10dvh;
}

.hover-underline:hover {
    color: var(--hover-color) !important;
}

#mobile-menu:checked ~ .navigation {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 15px 0;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

#mobile-menu:checked ~ .navigation ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
}

#mobile-menu:checked ~ .navigation ul li {
    margin: 12px 0 !important;
}

@media (max-width: 768px) {
    .navigation {
        display: none;
    }
}

.feature-item, .testimonial-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-item:hover, .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(208, 18, 87, 0.15) !important;
}

.faq-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    transform: scale(1.01);
    box-shadow: 0 5px 15px rgba(251, 144, 183, 0.3) !important;
}

summary::-webkit-details-marker {
    display: none;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3px rgba(208, 18, 87, 0.2);
}

button[type="submit"]:hover, a.inline-block:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}