:root {
    --primary: #4A5D4E;
    --secondary: #A89F91;
    --accent: #D4C5B3;
    --bg-main: #F9F8F6;
    --bg-surface: #FFFFFF;
    --bg-muted: #F1EFEA;
    --text-primary: #2C332D;
    --text-secondary: #5C635E;
    --border: #E2DFD8;
    --shadow: rgba(74, 93, 78, 0.05);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.text-muted {
    color: #5C635E !important;
}

.bg-main {
    background-color: var(--bg-main);
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.text-primary-light {
    color: var(--text-primary);
}

.smooth-transition {
    transition: all 0.3s ease;
}

.organic-card {
    background: var(--bg-surface);
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
}

.btn-organic {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: opacity 0.3s ease;
}

.btn-organic:hover {
    opacity: 0.9;
}

/* ===== header ===== */
.drogaiauto-header {
    font-family: 'Inter', sans-serif;
}

.drogaiauto-header .js-dropdown-menu.is-active {
    display: block;
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.drogaiauto-header .js-mobile-menu.is-open {
    display: flex !important;
}

.drogaiauto-header .js-dropdown-trigger[aria-expanded='true'] i {
    transform: rotate(180deg);
}

.drogaiauto-header .js-dropdown-trigger i {
    transition: transform 0.2s ease;
}

/* ===== hero ===== */
.hero-glass-block {
    position: relative;
    overflow: hidden;
}

.hero-glass-block .hero-glass-image-wrapper {
    position: relative;
    z-index: 5;
    border: 1px solid #E2DFD8;
}

.hero-glass-block .hero-glass-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(74, 93, 78, 0.1));
    pointer-events: none;
}

.hero-glass-block .container {
    position: relative;
    z-index: 10;
}

@media (max-width: 767px) {
    .hero-glass-block .hero-glass-image-wrapper {
        border-radius: 1.5rem;
    }
}

/* ===== services_preview ===== */
.services-preview .service-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-preview .service-card:hover {
    transform: translateY(-5px);
}

.services-preview .service-card img {
    transition: transform 0.5s ease;
}

.services-preview .service-card:hover img {
    transform: scale(1.05);
}

.services-preview .container {
    max-width: 1280px;
}

/* ===== tech_preview ===== */
.tech-preview-section .tech-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-preview-section .tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 93, 78, 0.08);
}

.tech-preview-section .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== newsletter_form ===== */
.newsletter-block .newsletter-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 197, 179, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.newsletter-block .newsletter-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(168, 159, 145, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.newsletter-block .newsletter-input::placeholder {
    color: #A89F91;
    opacity: 1;
}

/* ===== footer ===== */
.drogaiauto-footer .container {
    max-width: 1200px;
}

.drogaiauto-footer a {
    text-decoration: none;
}

.drogaiauto-footer .footer-nav-col h3 {
    position: relative;
}

.drogaiauto-footer .footer-nav-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 20px;
    height: 1px;
    background-color: #D4C5B3;
}

/* ===== PAGE: services ===== */
.services-booking .container { max-width: 1200px; }
.services-list-block .container { max-width: 1200px; }
.services-booking select { cursor: pointer; }
.services-list-block article { transition: all 0.3s ease; transform: translateY(0); }
.services-list-block article:hover { transform: translateY(-5px); border-color: #4A5D4E; }
.services-booking input:focus, .services-booking select:focus, .services-booking textarea:focus {
    box-shadow: 0 0 0 4px rgba(74, 93, 78, 0.05);
}

/* ===== PAGE: technologies ===== */
.tech-intro-section img { transition: transform 0.4s ease; }
.tech-card { transition: box-shadow 0.3s ease, transform 0.3s ease; }
.tech-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(74, 93, 78, 0.08); }
.newsletter-section input::placeholder { color: #A89F91; opacity: 1; }
.newsletter-section input:focus::placeholder { opacity: 0.5; }

/* ===== PAGE: tips ===== */
.tips-intro .container{max-width:1200px}.tips-list-block .container{max-width:1200px}.tips-list-block .js-tip-card{height:100%;transition:transform .3s ease,box-shadow .3s ease}.tips-list-block .js-tip-card:hover{transform:translateY(-8px)}.tips-list-block input::-webkit-input-placeholder{color:#A89F91}.tips-list-block input::-moz-placeholder{color:#A89F91}.tips-list-block input:-ms-input-placeholder{color:#A89F91}.tips-list-block input::placeholder{color:#A89F91}.tips-list-block .line-clamp-3{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}

/* ===== PAGE: about ===== */
.about-mission .container { position: relative; z-index: 1; }
.about-team .team-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.about-team .team-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(74, 93, 78, 0.08); }
.about-benefits ul li i { position: relative; }
.about-benefits .grid-cols-2 > div { border: 1px solid #E2DFD8; transition: background-color 0.2s ease; }
.about-benefits .grid-cols-2 > div:hover { background-color: #D4C5B3; }

/* ===== PAGE: privacy ===== */
.privacy-section .privacy-content p { line-height: 1.7; margin-bottom: 1.25rem; } .privacy-section .privacy-content ul li span { font-size: 16px; } .privacy-section .privacy-content h2 { border-left: 4px solid #D4C5B3; padding-left: 15px; }

/* ===== PAGE: terms ===== */
.terms-content { font-family: 'Inter', sans-serif; }
.terms-content .terms-card { position: relative; overflow: hidden; }
.terms-content .terms-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(90deg, #4A5D4E, #A89F91); }
.terms-content h2 { color: #2C332D; margin-top: 0; }
.terms-content i { font-size: 1.2rem; flex-shrink: 0; }

/* ===== PAGE: disclaimer ===== */
.disclaimer-section .disclaimer-card { transition: transform 0.3s ease; }.disclaimer-section .content-block h3 { color: #2C332D; }.disclaimer-section .content-block p { text-align: justify; hyphens: auto; }.disclaimer-section dt { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; }.disclaimer-section li i { flex-shrink: 0; }

.comment-avatar {
    width: 56px;
    height: 56px;
    object-fit: cover;
    display: block;
}

.main-comment-wrapper {
    transition: border-color 0.3s ease;
}

.main-comment-wrapper:hover {
    border-color: #D4C5B3;
}

.reply-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
    display: block;
}

.reply-comment-wrapper::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #E2DFD8;
}


/* ===== PAGE TEMPLATE: services-list ===== */
.drogaiauto-header .js-dropdown-menu.is-active {
    display: block;
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.drogaiauto-header .js-mobile-menu.is-open {
    display: flex !important;
}

.detail-content-section .content-body h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2C332D;
    margin: 40px 0 24px;
}

.detail-content-section .content-body h3 {
    font-size: 26px;
    font-weight: 600;
    color: #2C332D;
    margin: 32px 0 20px;
}

.detail-content-section .content-body p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.detail-content-section .content-body ul {
    list-style: none;
    padding-left: 0;
}

@media (max-width: 767px) {
    .detail-content-section .content-body h2 {
        font-size: 16px;
    }

    .detail-content-section .content-body h3 {
        font-size: 14px;
    }

    .detail-content-section .avatar-container img {
        width: 40px;
        height: 40px;
    }
}

.drogaiauto-footer .footer-nav-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 20px;
    height: 1px;
    background-color: #D4C5B3;
}

/* ===== PAGE TEMPLATE: technologies-list ===== */
.prose-custom p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #5C635E;
}

.prose-custom h2,
.prose-custom h3 {
    color: #2C332D;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose-custom ul {
    margin-bottom: 1.5rem;
}

.prose-custom li {
    margin-bottom: 0.5rem;
    color: #5C635E;
}

.drogaiauto-header .js-dropdown-menu.is-active {
    display: block;
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.drogaiauto-header .js-mobile-menu.is-open {
    display: flex !important;
}

.drogaiauto-header .js-dropdown-trigger[aria-expanded='true'] i {
    transform: rotate(180deg);
}

.drogaiauto-header .js-dropdown-trigger i {
    transition: transform 0.2s ease;
}

.drogaiauto-footer .footer-nav-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 20px;
    height: 1px;
    background-color: #D4C5B3;
}

/* ===== PAGE TEMPLATE: tips-list ===== */
.tip-detail-page .article-container h2 {
    font-size: 26px;
    color: #2C332D;
    font-weight: 600;
    margin: 40px 0 20px;
    line-height: 1.3;
}

.tip-detail-page .article-container h3 {
    font-size: 22px;
    color: #2C332D;
    font-weight: 600;
    margin: 30px 0 15px;
}

.tip-detail-page .article-container p {
    margin-bottom: 20px;
}

.tip-detail-page .article-container ul {
    margin-bottom: 25px;
    list-style: none;
}

.tip-detail-page .article-container ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.tip-detail-page .article-container ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #4A5D4E;
    font-weight: bold;
}

.tip-detail-page .article-container ul.custom-checks {
    list-style: none;
    padding-left: 0;
}

.tip-detail-page .article-container ul.custom-checks li {
    padding-left: 0;
}

.tip-detail-page .article-container ul.custom-checks li::before {
    content: none;
}

.tip-detail-page .article-container strong {
    color: #2C332D;
    font-weight: 600;
}

.drogaiauto-header {
    font-family: 'Inter', sans-serif;
}

.drogaiauto-header .js-dropdown-menu.is-active {
    display: block;
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.drogaiauto-header .js-mobile-menu.is-open {
    display: flex !important;
}

.drogaiauto-header .js-dropdown-trigger[aria-expanded='true'] i {
    transform: rotate(180deg);
}

.drogaiauto-header .js-dropdown-trigger i {
    transition: transform 0.2s ease;
}

.drogaiauto-footer .container {
    max-width: 1200px;
}

.drogaiauto-footer a {
    text-decoration: none;
}

.drogaiauto-footer .footer-nav-col h3 {
    position: relative;
}

.drogaiauto-footer .footer-nav-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 20px;
    height: 1px;
    background-color: #D4C5B3;
}

@media (max-width: 767px) {
    .tip-detail-page .article-container h2 {
        font-size: 16px;
    }

    .tip-detail-page .article-container h3 {
        font-size: 14px;
    }
}