:root {
    --primary-orange: #F47C2C;
    --dark-graphite: #1F1F1F;
    --light-grey-bg: #EDEDED;
    --white: #FFFFFF;
    --form-gradient: linear-gradient(135deg, #1F1F1F 0%, #333333 100%);
    --text-dark: #1F1F1F;
    --text-light: #EDEDED;
    --secondary-light: #4B5563;
    --secondary-dark: #9CA3AF;
    --border-radius: 12px;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    transition: transform 0.2s ease, opacity 0.3s ease;
}

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

ul,
ol {
    list-style: none;
}

input,
select,
textarea {
    font-family: inherit;
    border-radius: var(--border-radius);
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(1.875rem, 8vw, 2.5rem);
    }

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

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

    .mobile-text-small {
        font-size: 0.875rem;
        word-break: break-all;
    }
}

/* ===== header ===== */
header {
    background-color: var(--white);
}

.js-mobile-overlay {
    overflow-y: auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-mobile-overlay.open {
    transform: translateX(0);
}

.js-mobile-link {
    padding: 10px 20px;
    display: block;
    hyphens: auto;
    line-height: 1.2;
}

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

.hyphens-auto {
    hyphens: auto;
}

/* ===== about_us ===== */
section#about {
    background-color: var(--light-grey-bg);
    overflow-x: hidden;
}

h2,
h3 {
    hyphens: auto;
    word-break: break-word;
    line-height: 1.2;
}

/* ===== our_services ===== */
#services {
    scroll-margin-top: 80px;
}

.js-service-card {
    hyphens: auto;
}

/* ===== price_list ===== */
#pricing {
    overflow-x: hidden;
}

.js-order-btn {
    transition: all 0.3s ease;
}

h2,
h3 {
    hyphens: auto;
    line-height: 1.2;
}

/* ===== work_process ===== */
#steps {
    overflow-x: hidden;
}

#steps .container {
    width: 100%;
}

.hyphens-auto {
    hyphens: auto;
}

/* ===== company_values ===== */
#values {
    overflow-x: hidden;
}

.bx {
    line-height: 1;
}

/* ===== our_portfolio ===== */
.js-load-more {
    cursor: pointer;
    transition: all 0.3s ease;
}

h1,
h2,
h3 {
    hyphens: auto;
}

/* ===== testimonials ===== */
.js-reviews-container {
    display: grid;
}

.js-reviews-container>div {
    transition: transform 0.3s ease;
}

.js-reviews-container>div:hover {
    transform: translateY(-5px);
}

.bx {
    font-size: 20px;
}

/* ===== order_form ===== */
#contact-form {
    overflow-x: hidden;
}

.max-width-\[900px\] {
    max-width: 900px;
}

input::placeholder,
textarea::placeholder {
    color: rgba(237, 237, 237, 0.7);
}

select option {
    background-color: #ffffff;
    color: #1F1F1F;
}

/* ===== footer ===== */
.container {
    max-width: 1200px;
    margin: 0 auto
}

#footer a {
    display: inline-block
}

#footer i {
    line-height: 1;
    margin-top: 2px
}