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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c7956d;
    --accent-color: #8b4513;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

.main-nav {
    background: var(--bg-white);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
}

.hero-text {
    max-width: 600px;
    color: var(--bg-white);
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-visual {
    flex: 1;
    min-height: 400px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-secondary {
    display: inline-block;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.9rem 2.3rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.3rem 3rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.philosophy-split,
.showcase-split,
.trust-split,
.materials-split,
.final-cta-split,
.story-split,
.team-split,
.milestone-split,
.contact-split,
.faq-split {
    display: flex;
    flex-direction: column;
}

.split-visual,
.split-content,
.showcase-visual,
.showcase-content,
.trust-visual,
.trust-content,
.materials-visual,
.materials-content,
.cta-visual,
.cta-content,
.story-visual,
.story-content,
.team-visual,
.team-content,
.milestone-visual,
.milestone-content,
.contact-visual,
.contact-info,
.faq-visual,
.faq-content {
    flex: 1;
}

.split-visual img,
.showcase-visual img,
.trust-visual img,
.materials-visual img,
.cta-visual img,
.story-visual img,
.team-visual img,
.milestone-visual img,
.contact-visual img,
.faq-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.split-content,
.showcase-content,
.trust-content,
.materials-content,
.cta-content,
.story-content,
.team-content,
.milestone-content,
.contact-info,
.faq-content {
    padding: 3rem 2rem;
}

.split-content h2,
.showcase-content h2,
.trust-content h2,
.materials-content h2,
.cta-content h2,
.story-content h2,
.team-content h2,
.milestone-content h2,
.contact-info h2,
.faq-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content p,
.showcase-content p,
.trust-content p,
.materials-content p,
.team-content p,
.milestone-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.approach-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.approach-header {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.approach-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.approach-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 2rem;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.select-service {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.select-service.selected {
    background: var(--success-color);
}

.form-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.project-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group select:disabled {
    background: var(--bg-light);
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 1.2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-submit:disabled {
    background: var(--border-color);
    cursor: not-allowed;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonial {
    color: var(--bg-white);
    padding: 2rem;
}

.testimonial p {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    opacity: 0.8;
    font-size: 1rem;
}

.timeline-section {
    padding: 5rem 2rem;
}

.timeline-header {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.timeline-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-step {
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    background: var(--bg-light);
}

.timeline-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.timeline-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.main-footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: var(--bg-white);
    opacity: 0.8;
    margin-bottom: 0.6rem;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.95rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta a {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: var(--accent-color);
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--success-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
    padding: 5rem 2rem;
    text-align: center;
}

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

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--bg-white);
    opacity: 0.9;
}

.services-detailed {
    padding: 3rem 0;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.service-detail-content {
    padding: 3rem 2rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
}

.service-detail-content li {
    padding: 0.6rem 0 0.6rem 2rem;
    color: var(--text-light);
    position: relative;
}

.service-detail-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-detail-visual {
    min-height: 400px;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.approach-content-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.approach-text {
    flex: 1;
    padding: 2rem;
}

.approach-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.milestone-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.commitment-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.commitment-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.commitment-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-detail p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-detail a {
    color: var(--secondary-color);
}

.process-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.ready-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.ready-content {
    max-width: 700px;
    margin: 0 auto;
}

.ready-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.ready-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.thanks-hero {
    background: linear-gradient(135deg, var(--success-color) 0%, #229954 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--bg-white);
    opacity: 0.95;
}

.thanks-details {
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
}

.thanks-info {
    flex: 1;
    padding: 2rem;
}

.thanks-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.next-step {
    margin-bottom: 2.5rem;
}

.next-step h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.next-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-confirmation h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.service-confirmation .service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.thanks-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 2rem;
}

.meanwhile-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.meanwhile-content {
    max-width: 1000px;
    margin: 0 auto;
}

.meanwhile-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.meanwhile-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.meanwhile-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.meanwhile-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.meanwhile-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    color: var(--text-light);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-split,
    .philosophy-split,
    .showcase-split,
    .trust-split,
    .materials-split,
    .final-cta-split,
    .story-split,
    .team-split,
    .milestone-split,
    .contact-split,
    .faq-split,
    .service-detail-split,
    .thanks-details {
        flex-direction: row;
    }

    .service-detail-split.reverse {
        flex-direction: row-reverse;
    }

    .approach-cards {
        flex-direction: row;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .form-row {
        flex-direction: row;
    }

    .trust-points {
        flex-direction: row;
    }

    .testimonial-container {
        flex-direction: row;
    }

    .timeline-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .timeline-step {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .approach-content-split {
        flex-direction: row;
    }

    .milestone-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 1rem);
    }

    .meanwhile-links {
        flex-direction: row;
    }
}