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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #c9a961;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --overlay-dark: rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 17px;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 0.8em;
}

h3 {
    font-size: 1.6em;
    margin-bottom: 0.6em;
}

h4 {
    font-size: 1.3em;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1.2em;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: var(--text-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95em;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 50px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 0.95em;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 169, 97, 0.5);
    color: var(--white);
}

.hero-immersive {
    position: relative;
    height: 85vh;
    margin-top: 80px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    z-index: 2;
}

.hero-title {
    color: var(--white);
    font-size: 3.5em;
    max-width: 900px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4em;
    font-family: 'Georgia', serif;
    font-style: italic;
    max-width: 600px;
}

.story-intro {
    padding: 100px 5%;
    background: var(--light-bg);
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.5em;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 1.5em;
}

.problem-section {
    padding: 120px 5%;
    background: var(--white);
}

.split-layout {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.highlight-text {
    font-size: 1.15em;
    color: var(--accent-color);
    font-weight: 600;
    font-family: 'Helvetica Neue', sans-serif;
}

.insight-block {
    padding: 100px 5%;
    background: var(--primary-color);
    color: var(--white);
}

.centered-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.centered-card h3 {
    color: var(--white);
    font-size: 2.2em;
    margin-bottom: 30px;
}

.centered-card p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    font-size: 1.4em;
    padding: 15px 0;
    color: var(--accent-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
}

.small-note {
    font-size: 0.9em;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-inline {
    padding: 80px 5%;
    background: var(--light-bg);
}

.quote-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border-left: 4px solid var(--accent-color);
    padding-left: 40px;
}

.quote-block p {
    font-size: 1.6em;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
}

.quote-block cite {
    font-size: 1em;
    color: var(--secondary-color);
    font-style: normal;
}

.trust-builder {
    padding: 120px 5%;
    background: var(--white);
}

.wide-layout {
    max-width: 1300px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.trust-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.trust-card {
    flex: 1;
    text-align: center;
    max-width: 350px;
}

.trust-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.trust-card h4 {
    margin-bottom: 15px;
    font-size: 1.4em;
}

.visual-reveal {
    padding: 100px 5%;
    background: var(--light-bg);
}

.image-stack {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.stack-img {
    flex: 1.2;
    border-radius: 8px;
}

.stack-text {
    flex: 1;
}

.stack-text p {
    font-size: 1.2em;
    line-height: 1.7;
}

.cta-mid {
    padding: 80px 5%;
    background: var(--accent-color);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h3 {
    color: var(--white);
    font-size: 2.4em;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 1.05em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 16px 40px;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 1.05em;
    transition: background 0.3s ease, color 0.3s ease;
}

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

.services-preview {
    padding: 120px 5%;
    background: var(--white);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-title {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.services-intro {
    text-align: center;
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--secondary-color);
}

.service-row {
    display: flex;
    gap: 35px;
    margin-bottom: 35px;
}

.service-card {
    flex: 1;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
    background: var(--primary-color);
    color: var(--white);
}

.service-card.featured h3,
.service-card.featured .price-tag {
    color: var(--white);
}

.service-card.featured .service-desc,
.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 1.6em;
}

.price-tag {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.4em;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
}

.service-desc {
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.95em;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-card.featured .service-features li:before {
    color: var(--accent-color);
}

.social-proof {
    padding: 100px 5%;
    background: var(--light-bg);
}

.social-proof h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5em;
}

.testimonials-slider {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-item p {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-item cite {
    font-size: 0.95em;
    color: var(--secondary-color);
    font-style: normal;
}

.urgency-section {
    padding: 80px 5%;
    background: var(--white);
}

.urgency-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    border: 3px solid var(--accent-color);
    padding: 50px;
    border-radius: 8px;
}

.urgency-box h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.urgency-note {
    font-size: 1.3em;
    color: var(--accent-color);
    font-weight: 600;
    font-family: 'Helvetica Neue', sans-serif;
    margin-top: 20px;
}

.order-section {
    padding: 120px 5%;
    background: var(--light-bg);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.4em;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

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

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

.form-group label {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 0.95em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Georgia', serif;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

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

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9em;
    line-height: 1.5;
}

.btn-submit {
    background: var(--accent-color);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
    background: #b89850;
    transform: translateY(-2px);
}

.final-cta {
    padding: 120px 5%;
    background: var(--primary-color);
}

.final-message {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-message h2 {
    color: var(--white);
    font-size: 3em;
    margin-bottom: 25px;
}

.final-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3em;
    margin-bottom: 40px;
}

.site-footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-col p {
    font-size: 0.95em;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px 5%;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95em;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

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

.page-header {
    margin-top: 80px;
    padding: 80px 5%;
    background: var(--light-bg);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2em;
    color: var(--secondary-color);
}

.services-detailed {
    padding: 80px 5%;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
}

.service-info {
    flex: 1;
}

.price-display {
    font-size: 2em;
    color: var(--accent-color);
    font-weight: 700;
    font-family: 'Helvetica Neue', sans-serif;
    margin-bottom: 20px;
}

.service-description {
    font-size: 1.15em;
    line-height: 1.7;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5em;
    line-height: 1;
}

.btn-service {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #b89850;
    color: var(--white);
}

.cta-section {
    padding: 80px 5%;
    background: var(--light-bg);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.about-story {
    padding: 80px 5%;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
}

.story-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-img {
    flex: 1;
    border-radius: 8px;
}

.story-text {
    flex: 1;
}

.values-section {
    padding: 100px 5%;
    background: var(--light-bg);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5em;
}

.values-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.team-section {
    padding: 100px 5%;
    background: var(--white);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1em;
}

.team-members {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.member-card {
    flex: 1;
    text-align: center;
}

.member-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.member-card h3 {
    margin-bottom: 8px;
}

.member-role {
    color: var(--accent-color);
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.contact-section {
    padding: 80px 5%;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

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

.info-item h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

.info-item .note {
    font-size: 0.9em;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 10px;
}

.contact-map {
    flex: 1;
}

.map-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.map-note {
    font-size: 0.95em;
    color: var(--secondary-color);
    line-height: 1.6;
}

.contact-cta {
    padding: 80px 5%;
    background: var(--light-bg);
}

.legal-page {
    padding: 40px 5% 80px;
    margin-top: 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.legal-container h1 {
    margin-bottom: 10px;
}

.update-date {
    font-size: 0.9em;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.legal-container h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.legal-container h3 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.legal-container ul {
    margin: 20px 0 20px 30px;
}

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

.thanks-hero {
    padding: 100px 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    margin-top: 80px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 3em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-container h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

.thanks-message {
    font-size: 1.2em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.thanks-detail {
    font-size: 1.1em;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.thanks-info {
    font-size: 1.05em;
    margin-bottom: 30px;
}

.thanks-next {
    font-weight: 600;
    margin-bottom: 15px;
}

.thanks-list {
    text-align: left;
    margin: 0 0 40px 30px;
}

.thanks-list li {
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 5%;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .split-layout,
    .service-row,
    .trust-grid,
    .image-stack,
    .testimonials-slider,
    .footer-content,
    .service-detail,
    .story-block,
    .values-grid,
    .team-members,
    .contact-wrapper {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-immersive {
        height: 60vh;
    }

    .hero-title {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .form-container {
        padding: 40px 30px;
    }

    .legal-container {
        padding: 40px 30px;
    }

    .thanks-container {
        padding: 40px 30px;
    }

    body {
        font-size: 16px;
    }
}