:root {
    --color-primary: #2d3436;
    --color-secondary: #6c5ce7;
    --color-accent: #e17055;
    --color-light: #f8f9fa;
    --color-dark: #1e272e;
    --color-muted: #636e72;
    --color-white: #ffffff;
    --color-cream: #faf3e8;
    --color-sage: #a8b5a0;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 40px rgba(0,0,0,0.12);
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 16px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-primary);
    background-color: var(--color-white);
}

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

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

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

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

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

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

.container-narrow {
    max-width: 900px;
}

.container-wide {
    max-width: 1400px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-medium);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #5a4bd1;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

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

.btn-accent:hover {
    background-color: #d35a3f;
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--color-secondary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-desktop a {
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

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

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    padding: 24px;
    box-shadow: var(--shadow-medium);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile a {
    display: block;
    padding: 12px 0;
    color: var(--color-primary);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--color-light);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.hero-text {
    flex: 1;
}

.hero-label {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-muted);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background-color: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-medium);
}

.hero-badge-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: var(--font-heading);
}

.hero-badge-text {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.section {
    padding: 100px 0;
}

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

.section-dark h2,
.section-dark h3 {
    color: var(--color-white);
}

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

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--color-muted);
    margin-top: 16px;
    font-size: 1.1rem;
}

.section-header-left {
    text-align: left;
    margin: 0 0 50px 0;
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-content {
    flex: 1;
}

.intro-content p {
    margin-bottom: 20px;
    color: var(--color-muted);
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: var(--radius-large);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

.feature-text h4 {
    margin-bottom: 4px;
}

.feature-text p {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin: 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--color-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: var(--font-heading);
}

.price-unit {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
}

.section-dark .stat-number {
    color: var(--color-accent);
}

.stat-label {
    font-size: 1rem;
    color: var(--color-muted);
}

.section-dark .stat-label {
    color: rgba(255,255,255,0.7);
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    counter-reset: process-counter;
}

.process-step {
    flex: 1 1 calc(25% - 23px);
    min-width: 250px;
    position: relative;
    padding: 40px 30px;
    background-color: var(--color-white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
    counter-increment: process-counter;
}

.process-step::before {
    content: counter(process-counter);
    position: absolute;
    top: -20px;
    left: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-step h4 {
    margin-bottom: 12px;
    margin-top: 10px;
}

.process-step p {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-card {
    flex: 0 0 400px;
    scroll-snap-align: start;
    background-color: var(--color-white);
    padding: 36px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
}

.section-dark .testimonial-card {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.section-dark .testimonial-text {
    color: rgba(255,255,255,0.9);
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-white);
    font-size: 1.2rem;
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

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

.section-dark .author-info span {
    color: rgba(255,255,255,0.6);
}

.cta-banner {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #8b7cf5 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--color-white);
}

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

.cta-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

.cta-banner .btn:hover {
    background-color: var(--color-cream);
    transform: translateY(-2px);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 280px;
    height: 300px;
    border-radius: var(--radius-large);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--color-white);
    font-weight: 500;
}

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

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--color-muted);
}

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

.about-image img {
    border-radius: var(--radius-large);
}

.about-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-large);
    opacity: 0.1;
    z-index: -1;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo svg {
    width: 80px;
    height: 80px;
    fill: var(--color-white);
    opacity: 0.5;
}

.team-member h4 {
    margin-bottom: 4px;
}

.team-member .role {
    color: var(--color-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.team-member p {
    color: var(--color-muted);
    font-size: 0.9rem;
}

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

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 24px;
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--color-white);
}

.contact-item h5 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-item p {
    color: var(--color-muted);
    margin: 0;
}

.contact-form {
    flex: 1.2;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-light);
    border-radius: var(--radius-medium);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background-color: var(--color-white);
}

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

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-submit {
    width: 100%;
}

.footer {
    background-color: var(--color-dark);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 30px;
}

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

.footer-brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--color-secondary);
}

.footer-brand p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-column {
    flex: 1;
    min-width: 160px;
}

.footer-column h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta .btn {
    box-shadow: var(--shadow-medium);
    padding: 16px 28px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--color-secondary);
}

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

.cookie-buttons .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
}

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

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
    color: var(--color-white);
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--color-white);
}

.thanks-content h1 {
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--color-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.policy-page {
    padding-top: 120px;
    padding-bottom: 80px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h1 {
    margin-bottom: 30px;
}

.policy-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.policy-content p {
    margin-bottom: 16px;
    color: var(--color-muted);
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.policy-content li {
    margin-bottom: 8px;
    color: var(--color-muted);
}

.policy-meta {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-light);
}

.services-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-light) 100%);
    text-align: center;
}

.services-hero h1 {
    margin-bottom: 16px;
}

.services-hero p {
    color: var(--color-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-light);
    padding: 24px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-question span {
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-top: 16px;
    color: var(--color-muted);
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.inline-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
    background-color: var(--color-light);
    border-radius: var(--radius-large);
    margin: 40px 0;
}

.inline-cta p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-content,
    .intro-grid,
    .about-split,
    .contact-wrapper {
        flex-direction: column;
    }

    .hero-image {
        order: -1;
    }

    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .section {
        padding: 70px 0;
    }

    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .service-card,
    .process-step,
    .gallery-item {
        flex: 1 1 100%;
    }

    .testimonial-card {
        flex: 0 0 320px;
    }

    .stats-grid {
        gap: 30px;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

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

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

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

    .inline-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-badge {
        position: static;
        margin-top: 20px;
    }
}
