:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #c9a227;
    --color-light: #f8f6f2;
    --color-text: #2d2d2d;
    --color-muted: #6b6b6b;
    --color-white: #ffffff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-strong: 0 8px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-light);
    overflow-x: hidden;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.nav-wrapper.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--color-white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

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

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

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--color-white);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 100px 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 550px;
}

.hero-tag {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 8px 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-visual {
    position: relative;
    width: 45%;
}

.hero-image-container {
    position: relative;
    transform: translateX(50px);
}

.hero-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, var(--color-accent), #d4af37);
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid var(--color-white);
    opacity: 0.3;
}

.hero-image-overlay {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: var(--color-secondary);
    z-index: -1;
}

.hero-stats {
    position: absolute;
    bottom: -40px;
    left: -80px;
    background: var(--color-white);
    padding: 30px 40px;
    box-shadow: var(--shadow-strong);
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn-primary:hover {
    background: #d4af37;
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

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

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-dark {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-dark:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--color-primary);
    color: var(--color-white);
}

.section-accent {
    background: var(--color-accent);
}

.section-light {
    background: var(--color-white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 600px;
}

/* Asymmetric Layout */
.asym-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.asym-grid-reverse {
    flex-direction: row-reverse;
}

.asym-content {
    flex: 1;
}

.asym-visual {
    flex: 1;
    position: relative;
}

.asym-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e8e4dd 0%, #d4d0c9 100%);
    position: relative;
}

.asym-image-offset {
    position: absolute;
    width: 60%;
    height: 250px;
    background: var(--color-accent);
    bottom: -40px;
    right: -40px;
    z-index: -1;
}

/* Intro Section */
.intro-section {
    position: relative;
    overflow: hidden;
}

.intro-wrapper {
    display: flex;
    gap: 80px;
}

.intro-left {
    flex: 1.2;
}

.intro-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text);
}

.intro-highlight {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 40px;
    position: relative;
}

.intro-highlight::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 8rem;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.1;
    color: var(--color-accent);
}

.intro-highlight p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.intro-feature {
    background: var(--color-light);
    padding: 30px;
    border-left: 4px solid var(--color-accent);
}

.intro-feature-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Services Section */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--color-white);
    padding: 0;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.service-card:nth-child(2) {
    margin-top: 40px;
}

.service-card:nth-child(3) {
    margin-top: 80px;
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    position: relative;
    overflow: hidden;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(26,26,46,0.8), transparent);
}

.service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.5;
    font-weight: 700;
}

.service-content {
    padding: 35px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.service-desc {
    color: var(--color-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.service-price-amount {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
}

.service-price-suffix {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-top: 20px;
}

.service-link:hover {
    gap: 15px;
}

/* Process Section */
.process-section {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.process-bg-text {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 20rem;
    color: rgba(255,255,255,0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header .section-title {
    color: var(--color-white);
}

.process-header .section-subtitle {
    color: rgba(255,255,255,0.7);
    margin: 0 auto;
}

.process-steps {
    display: flex;
    gap: 40px;
    position: relative;
}

.process-step {
    flex: 1;
    position: relative;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.process-step:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--color-accent);
}

.process-step:nth-child(2) {
    margin-top: 60px;
}

.process-step:nth-child(3) {
    margin-top: 30px;
}

.process-step:nth-child(4) {
    margin-top: 90px;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.process-title {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 15px;
    font-weight: 600;
}

.process-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
    background: var(--color-light);
    position: relative;
}

.testimonials-wrapper {
    display: flex;
    gap: 40px;
}

.testimonial-main {
    flex: 1.5;
    background: var(--color-white);
    padding: 60px;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.testimonial-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--color-accent);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--color-primary);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-info span {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.testimonial-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-small {
    background: var(--color-white);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.testimonial-small p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-small span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-primary);
}

/* Stats Section */
.stats-section {
    background: var(--color-accent);
    padding: 80px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    padding: 20px 40px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: var(--color-secondary);
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-text {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.cta-visual {
    flex: 0.8;
    position: relative;
}

.cta-shape {
    width: 300px;
    height: 300px;
    background: var(--color-accent);
    position: relative;
}

.cta-shape::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-white);
    opacity: 0.3;
}

/* Contact Section */
.contact-section {
    background: var(--color-light);
}

.contact-wrapper {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info-item {
    margin-bottom: 40px;
}

.contact-info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.contact-info-value {
    font-size: 1.2rem;
    color: var(--color-primary);
}

.contact-form-wrapper {
    flex: 1.5;
    background: var(--color-white);
    padding: 50px;
    box-shadow: var(--shadow-soft);
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e8e8e8;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a2e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-links {
    flex: 1;
}

.footer-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--color-accent);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

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

.footer-list a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 25px 40px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 25px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.cookie-accept {
    background: var(--color-accent);
    color: var(--color-primary);
}

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-white);
}

.cookie-reject:hover {
    border-color: var(--color-white);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 15px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    box-shadow: var(--shadow-strong);
    cursor: pointer;
    border: none;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--color-accent);
    opacity: 0.1;
    transform: skewX(-15deg) translateX(50%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 15px;
}

.page-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 500px;
}

.breadcrumb {
    margin-top: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--color-accent);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
    margin: 0 10px;
}

/* About Page */
.about-intro {
    padding: 100px 0;
}

.about-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-visual {
    flex: 1;
    position: relative;
}

.about-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    position: relative;
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 60%;
    height: 200px;
    background: var(--color-accent);
    z-index: -1;
}

.about-values {
    background: var(--color-primary);
    padding: 100px 0;
}

.values-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    flex: 1;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--color-accent);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-title {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Services Page */
.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 100px 0;
}

.service-row {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 40px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
    background: var(--color-light);
}

.service-row-visual {
    flex: 0.8;
    height: 300px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    position: relative;
}

.service-row-content {
    flex: 1.2;
}

.service-row-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}

.service-row-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-row-desc {
    color: var(--color-muted);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-row-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
}

.service-row-amount {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
}

.service-row-suffix {
    color: var(--color-muted);
}

/* Contact Page */
.contact-page-wrapper {
    display: flex;
    gap: 80px;
    padding: 100px 0;
}

.contact-page-info {
    flex: 1;
}

.contact-page-form {
    flex: 1.5;
}

.contact-card {
    background: var(--color-white);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
}

.contact-card-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.contact-card-value {
    font-size: 1.1rem;
    color: var(--color-primary);
    line-height: 1.6;
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.thanks-content {
    max-width: 600px;
    padding: 40px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--color-accent);
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--color-primary);
    stroke-width: 3;
    fill: none;
}

.thanks-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 20px;
}

.thanks-text {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-primary);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin: 30px 0 15px;
}

.legal-content p {
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: var(--color-text);
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 150px 30px 80px;
    }

    .hero-visual {
        width: 80%;
        margin-top: 60px;
    }

    .hero-image-container {
        transform: none;
    }

    .hero-stats {
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .intro-wrapper,
    .asym-grid,
    .cta-wrapper,
    .contact-wrapper,
    .about-grid,
    .contact-page-wrapper {
        flex-direction: column;
    }

    .asym-grid-reverse {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        margin-top: 0;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-step:nth-child(2),
    .process-step:nth-child(3),
    .process-step:nth-child(4) {
        margin-top: 0;
    }

    .testimonials-wrapper {
        flex-direction: column;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-brand {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }

    .values-grid {
        flex-direction: column;
    }

    .service-row,
    .service-row:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .nav-inner {
        padding: 15px 20px;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .hero-stats {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .service-content {
        padding: 25px;
    }

    .testimonial-main {
        padding: 30px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }
}
