/* [SITESECTION:1:variables] */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #c2956b;
    --primary-dark: #a67c52;
    --primary-light: #dbb896;
    --primary-rgb: 194, 149, 107;
    --secondary-color: #2c1810;
    --secondary-light: #4a2e22;
    --accent-color: #e8c4a0;
    --accent-dark: #d4a574;
    --text-color: #3a2a1f;
    --text-light: #6b5648;
    --text-muted: #9a8578;
    --bg-color: #faf7f4;
    --bg-light: #fff8f2;
    --bg-dark: #2c1810;
    --bg-card: #ffffff;
    --white: #ffffff;
    --border-color: #e8ddd4;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.1);
    --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.15);
    --shadow-xl: 0 16px 60px rgba(44, 24, 16, 0.2);
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-heading: 'Cormorant', Georgia, serif;
    --font-body: 'Montserrat', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary-color);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}
/* [/SITESECTION:1] */

/* [SITESECTION:2:layout] */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 70px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-light));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--primary-rgb), 0.45);
    color: var(--white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

.required {
    color: #e74c3c;
    font-weight: 700;
    margin-left: 2px;
}
/* [/SITESECTION:2] */

/* [SITESECTION:3:header] */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition);
    text-decoration: none;
}

.site-header.scrolled .logo {
    color: var(--secondary-color);
}

.logo i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.site-header.scrolled .nav-list a {
    color: var(--text-color);
}

.site-header.scrolled .nav-list a:hover {
    color: var(--primary-color);
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition);
}

.header-cta-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.site-header.scrolled .hamburger-line {
    background: var(--secondary-color);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--secondary-color);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 100px 30px 40px;
    box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-list a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.mobile-nav-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}
/* [/SITESECTION:3] */

/* [SITESECTION:4:hero] */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('https://images.pexels.com/photos/291528/pexels-photo-291528.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.82) 0%, rgba(74, 46, 34, 0.65) 50%, rgba(44, 24, 16, 0.75) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
}

.hero-tagline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    padding-left: 50px;
}

.hero-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 2px;
    background: var(--primary-color);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.15;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
/* [/SITESECTION:4] */

/* [SITESECTION:5:sections] */
.about {
    padding: 80px 0 60px;
    background: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-text h2 {
    text-align: left;
    margin-bottom: 0.3rem;
}

.about-text h2::after {
    margin: 12px 0 0;
}

.about-text .section-subtitle {
    text-align: left;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: all var(--transition);
}

.about-feature:hover {
    border-color: var(--primary-color);
    background: rgba(var(--primary-rgb), 0.08);
}

.about-feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.stats {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    font-variant-numeric: tabular-nums;
    min-width: 100px;
    display: inline-block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 6px;
}

.services {
    padding: 70px 0 80px;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.service-image {
    overflow: hidden;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
    text-align: center;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--primary-rgb), 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -52px auto 16px;
    position: relative;
    z-index: 2;
    border: 3px solid var(--bg-card);
    box-shadow: var(--shadow-sm);
}

.service-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.service-content h3 {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.service-content p {
    flex-grow: 1;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: auto;
    margin-bottom: 14px;
}

.service-content .btn-outline {
    align-self: center;
    padding: 10px 28px;
    font-size: 0.85rem;
}

.advantages {
    padding: 70px 0;
    background: var(--bg-color);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.advantage-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), 0.25);
}

.advantage-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--primary-rgb), 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all var(--transition);
}

.advantage-card:hover .advantage-icon {
    background: var(--primary-color);
}

.advantage-icon i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: color var(--transition);
}

.advantage-card:hover .advantage-icon i {
    color: var(--white);
}

.advantage-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.advantage-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

.portfolio {
    padding: 70px 0 80px;
    background: var(--bg-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(0.8);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.85), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.process {
    padding: 70px 0;
    background: var(--bg-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.35);
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.process-step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content h2::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials {
    padding: 70px 0 80px;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(var(--primary-rgb), 0.15);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.testimonial-header img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(var(--primary-rgb), 0.2);
}

.testimonial-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: #f5a623;
    font-size: 0.85rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
    font-style: italic;
}
/* [/SITESECTION:5] */

/* [SITESECTION:6:contact] */
.contact {
    padding: 70px 0 80px;
    background: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--primary-rgb), 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item a,
.contact-item p {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--primary-rgb), 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.35);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-color);
    background: var(--bg-color);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0;
}

.captcha-group img {
    height: 50px;
    border-radius: var(--border-radius);
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.captcha-group input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-color);
    background: var(--bg-color);
    transition: all var(--transition);
    outline: none;
}

.captcha-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
    background: var(--white);
}

.captcha-refresh-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.3rem;
    padding: 10px 14px;
    border-radius: var(--border-radius);
    transition: all var(--transition);
    line-height: 1;
}

.captcha-refresh-btn:hover {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: var(--primary-color);
}

.consent-group {
    display: flex;
    align-items: flex-start;
    margin: 4px 0;
    padding: 0;
}

.consent-group label {
    display: flex;
    gap: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-light);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.consent-group input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.contact-form .btn-primary {
    margin-top: 4px;
    padding: 16px;
    font-size: 1rem;
}
/* [/SITESECTION:6] */

/* [SITESECTION:7:footer] */
.site-footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    text-decoration: none;
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-logo:hover {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-nav h4,
.footer-contacts h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 18px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    transition: all var(--transition);
}

.footer-nav a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.footer-contacts p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contacts p i {
    color: var(--primary-color);
    width: 18px;
    text-align: center;
}

.footer-contacts a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contacts a:hover {
    color: var(--primary-color);
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}
/* [/SITESECTION:7] */

/* [SITESECTION:8:components] */
.toast-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    transition: right 0.3s ease-out;
    font-family: var(--font-body);
}

.toast-notification.show {
    right: 20px;
}

.toast-notification.success {
    background: #28a745;
}

.toast-notification.error {
    background: #dc3545;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.floating-phone-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 900;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    animation: phone-pulse 2s infinite;
}

.floating-phone-btn:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes phone-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
}

.site-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.site-modal .modal-content {
    background: var(--white);
    max-width: 700px;
    width: 90%;
    border-radius: var(--border-radius-lg);
    padding: 36px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    color: var(--text-color);
}

.site-modal .modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color var(--transition);
    line-height: 1;
}

.site-modal .modal-close:hover {
    color: var(--text-color);
}

.site-modal h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: left;
}

.site-modal h2::after {
    display: none;
}

.site-modal h3 {
    font-size: 1.15rem;
    margin: 20px 0 10px;
    color: var(--secondary-color);
}

.site-modal p {
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 0.92rem;
    color: var(--text-light);
}

.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    cursor: ew-resize;
    user-select: none;
}

.comparison-images {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.comparison-before {
    z-index: 1;
}

.comparison-after {
    z-index: 2;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
    transition: clip-path 0.05s ease;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    z-index: 10;
    pointer-events: none;
    font-size: 0.9rem;
}

.comparison-before .comparison-label {
    left: 20px;
}

.comparison-after .comparison-label {
    right: 20px;
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 5;
    transform: translateX(-50%);
    pointer-events: none;
}

.comparison-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    pointer-events: all;
    cursor: ew-resize;
}

.comparison-divider::before,
.comparison-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 3px solid #333;
    transform: translateY(-50%);
}

.comparison-divider::before {
    left: 12px;
    border-left: 3px solid #333;
    transform: translateY(-50%) rotate(-45deg);
}

.comparison-divider::after {
    right: 12px;
    border-right: 3px solid #333;
    transform: translateY(-50%) rotate(45deg);
}

.results-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.footer-privacy-link {
    text-align: center;
    padding: 10px 0;
}

.footer-privacy-link a {
    color: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity var(--transition);
}

.footer-privacy-link a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* [/SITESECTION:8] */

/* [SITESECTION:9:animations] */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.no-js .animate-on-scroll,
noscript ~ * .animate-on-scroll {
    opacity: 1;
    transform: none;
}
/* [/SITESECTION:9] */

/* [SITESECTION:10:responsive] */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 350px;
    }

    .about-image::after {
        display: none;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-text h2::after {
        margin: 12px auto 0;
    }

    .about-text .section-subtitle {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .process-grid::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav,
    .header-cta-btn {
        display: none;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-tagline {
        font-size: 1rem;
        padding-left: 40px;
    }

    .hero-tagline::before {
        width: 28px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contacts p {
        justify-content: center;
    }

    .comparison-slider {
        max-width: 100%;
        border-radius: 8px;
    }

    .comparison-divider {
        width: 40px;
        height: 40px;
    }

    .comparison-label {
        padding: 6px 12px;
        font-size: 13px;
    }

    .captcha-group {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-group img {
        align-self: center;
    }

    .site-modal .modal-content {
        width: 95%;
        padding: 20px;
        border-radius: var(--border-radius);
    }

    section {
        padding: 50px 0;
    }

    .stats {
        padding: 40px 0;
    }

    .cta-section {
        padding: 50px 0;
    }

    .floating-phone-btn {
        bottom: 80px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .scroll-top-btn {
        bottom: 24px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-image {
        height: 200px;
    }

    .toast-notification {
        right: -100%;
        left: auto;
        max-width: calc(100% - 40px);
    }

    .toast-notification.show {
        right: 20px;
    }

    .about-features {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2rem;
    }
}
/* [/SITESECTION:10] */