:root {
    --primary-background: #FFFFFF;
    --secondary-background: #F5F2EE;
    --text-main: #36454F;
    --text-secondary: #5F6368;
    --accent-turquoise: #40E0D0;
    --accent-blue: #007BFF;
    --accent-brown: #D2B48C;
    --border-radius: 8px;
    --spacing-unit: 1.5rem;
    --shadow-main: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --font-family: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--primary-background);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: color 0.4s ease, opacity 0.4s ease;
}

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

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    transition: all 0.4s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    color: inherit;
}

/* Typography Scale */
p {
    font-size: 1rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        word-break: break-word;
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }

    h3 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .mobile-text-sm {
        font-size: 0.875rem;
    }
}

@media (min-width: 769px) {
    h1 {
        font-size: 3.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

/* Interactive elements reset */
:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.fade-in-up {
    animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ===== header ===== */
#header {
    position: relative;
    z-index: 40;
}

.js-mobile-menu {
    height: 100vh;
    width: 100vw;
    overflow-y: auto;
    hyphens: auto;
}

.js-mobile-menu a {
    display: block;
    text-align: center;
    width: 100%;
    min-height: 44px;
    line-height: 44px;
}

/* ===== hero_section ===== */
#hero {
    position: relative;
    overflow: hidden;
}

.floating-tag {
    position: absolute;
    padding: 8px 20px;
    background-color: var(--accent-turquoise);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

@media (max-width: 767px) {
    .floating-tag {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .tag-1 {
        top: 5% !important;
        left: 5% !important;
    }

    .tag-2 {
        top: 8% !important;
        right: 5% !important;
    }

    .tag-3 {
        bottom: 10% !important;
        left: 10% !important;
    }

    .tag-4 {
        bottom: 5% !important;
        right: 5% !important;
    }
}

#hero h1,
#hero p {
    hyphens: auto;
}

#hero .js-scroll-link {
    text-decoration: none;
    display: inline-block;
}

/* ===== about_sodra ===== */
#intro {
    overflow: hidden;
}

.hyphens-auto {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

#intro img {
    transition: transform 0.5s ease;
}

#intro img:hover {
    transform: scale(1.03);
}

/* ===== tax_list ===== */
#taxes {
    hyphens: auto;
}

#taxes .container {
    max-width: 1200px;
}

#taxes h2,
#taxes h3 {
    color: var(--text-main);
}

#taxes p {
    color: var(--text-secondary);
}

/* ===== payment_instructions ===== */
#payments {
    color: var(--text-main);
    font-family: var(--font-family);
}

#payments h2,
#payments h3 {
    color: var(--text-main);
    line-height: 1.3;
    hyphens: auto;
}

#payments p {
    color: var(--text-secondary);
}

#payments .bg-accent-blue {
    background-color: var(--accent-blue);
}

@media (max-width: 767px) {
    #payments h2 {
        font-size: 16px;
    }

    #payments h3 {
        font-size: 14px;
    }

    #payments p {
        font-size: 14px;
    }
}

/* ===== individual_work ===== */
#individual_veikla {
    hyphens: auto;
}

#individual_veikla .container {
    max-width: 1200px;
}

#individual_veikla h2 {
    letter-spacing: -0.02em;
}

#individual_veikla img {
    transition: transform 0.3s ease;
}

#individual_veikla img:hover {
    transform: scale(1.02);
}

/* ===== business_sector ===== */
#business {
    overflow: hidden;
    font-family: var(--font-family);
}

.hyphens-auto {
    hyphens: auto;
    -webkit-hyphens: auto;
}

/* ===== faq_section ===== */
#faq {
    font-family: var(--font-family);
}

#faq .hyphens-auto {
    hyphens: auto;
    -webkit-hyphens: auto;
}

#faq .js-faq-item {
    border-color: var(--accent-brown);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

#faq .js-faq-item:hover {
    border-color: var(--accent-turquoise);
}

#faq .js-faq-toggle {
    cursor: pointer;
}

#faq .js-faq-icon {
    color: var(--accent-blue);
}

#faq h2 {
    line-height: 1.2;
}

/* ===== useful_articles ===== */
#blog {
    hyphens: auto;
}

#blog article {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#blog img {
    transition: transform 0.5s ease;
}

#blog article:hover img {
    transform: scale(1.05);
}

/* ===== footer ===== */
#footer {
    hyphens: auto;
}

#footer a {
    text-decoration: none;
}

#footer h3 {
    line-height: 1.2;
}

#footer .container {
    overflow: visible;
}