@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B7355;
    --primary-dark: #6B5344;
    --secondary: #D4C4B0;
    --accent: #C9A86C;
    --dark: #2C2420;
    --light: #FAF7F4;
    --white: #FFFFFF;
    --text: #4A4037;
    --text-light: #7A7067;
    --border: #E8E2DC;
    --shadow: rgba(44, 36, 32, 0.08);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Quicksand', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 12px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    position: fixed;
    background: rgba(250, 247, 244, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(44, 36, 32, 0.15);
}

.hero-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    top: -30px;
    right: -30px;
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-title {
    margin-bottom: 12px;
}

.section-description {
    max-width: 550px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 14px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 6px;
    box-shadow: 0 15px 40px var(--shadow);
}

.about-image-badge {
    position: absolute;
    bottom: -15px;
    right: -8px;
    background: var(--accent);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 4px;
    text-align: center;
}

.about-image-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.about-image-badge .text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    color: var(--text-light);
    font-size: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--accent);
    font-size: 14px;
}

.about-feature span {
    font-size: 13px;
    font-weight: 500;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--light);
    padding: 30px 25px;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    color: var(--white);
    font-size: 18px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.products {
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.6;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
}

.product-content {
    padding: 20px;
}

.product-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.price-note {
    font-size: 11px;
    color: var(--text-light);
}

.process {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 20px 15px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--accent);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 12px;
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.testimonials {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonials .section-subtitle {
    color: var(--accent);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 16px;
}

.author-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.cta {
    background: var(--secondary);
    text-align: center;
}

.cta h2 {
    margin-bottom: 12px;
}

.cta p {
    max-width: 500px;
    margin: 0 auto 20px;
    color: var(--text-light);
    font-size: 14px;
}

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0 15px;
    font-size: 12px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
    display: inline-block;
}

.footer-brand p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 12px;
}

.footer-contact-item i {
    color: var(--accent);
    width: 14px;
}

.footer h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-legal {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    font-size: 11px;
}

.footer-legal a:hover {
    color: var(--accent);
}

.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
    padding: 120px 0 50px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-light);
}

.about-story {
    background: var(--white);
}

.about-values {
    background: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 6px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.value-icon i {
    color: var(--white);
    font-size: 18px;
}

.value-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.team-section {
    background: var(--white);
}

.team-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.team-intro p {
    font-size: 14px;
    color: var(--text-light);
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    color: var(--primary);
    font-size: 14px;
}

.contact-item-content h4 {
    font-size: 13px;
    margin-bottom: 3px;
}

.contact-item-content p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.contact-form-wrapper {
    background: var(--light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--text-light);
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.map-section {
    background: var(--light);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.corporate-intro {
    background: var(--white);
}

.corporate-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.corporate-intro-content h2 {
    margin-bottom: 15px;
}

.corporate-intro-content p {
    color: var(--text-light);
    font-size: 14px;
}

.corporate-benefits {
    background: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-card {
    background: var(--white);
    padding: 25px;
    border-radius: 6px;
    display: flex;
    gap: 15px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--shadow);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: var(--white);
    font-size: 16px;
}

.benefit-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.benefit-content p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.corporate-packages {
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.package-card {
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.package-card.featured {
    border-color: var(--accent);
    position: relative;
}

.package-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 15px;
    right: -25px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 30px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.package-header {
    background: var(--white);
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.package-header h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.package-price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

.package-features {
    padding: 20px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid var(--border);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--accent);
    font-size: 12px;
}

.package-footer {
    padding: 0 20px 20px;
}

.package-footer .btn {
    width: 100%;
    text-align: center;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light);
    padding: 40px 20px;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.error-content h2 {
    margin-bottom: 12px;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
    padding: 40px 20px;
}

.thankyou-content {
    max-width: 500px;
    margin: 0 auto;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.thankyou-icon i {
    color: var(--white);
    font-size: 2.5rem;
}

.thankyou-content h1 {
    margin-bottom: 12px;
}

.thankyou-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.policy-page {
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.3rem;
    margin: 25px 0 12px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.policy-content h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.policy-content p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.policy-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-content li {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 6px;
    list-style: disc;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    color: var(--white);
    padding: 15px 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 18px;
    font-size: 11px;
}

@media (max-width: 992px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-description {
        margin: 0 auto 25px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .products-grid,
    .packages-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:nth-child(2)::after {
        display: none;
    }
    
    .about-grid,
    .contact-grid,
    .corporate-intro-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 30px;
        box-shadow: -5px 0 30px var(--shadow);
        transition: right 0.3s ease;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 15px;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 45px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    
    .container {
        padding: 0 12px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 9px 18px;
        font-size: 11px;
    }
    
    .section {
        padding: 35px 0;
    }
    
    .service-card,
    .value-card {
        padding: 20px 15px;
    }
    
    .error-content h1 {
        font-size: 4rem;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 320px) {
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 8px 14px;
        font-size: 10px;
    }
}
