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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #3a3a3a;
    --accent-color: #c9a86a;
    --text-color: #2c2c2c;
    --text-light: #6b6b6b;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

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

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

ul {
    list-style: none;
}

.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color);
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

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

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

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 30px;
}

.hero-overlay h1 {
    font-size: 62px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.95;
}

.intro-story {
    padding: 120px 0;
    background: var(--bg-white);
}

.intro-story h2 {
    font-size: 38px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--primary-color);
    letter-spacing: -0.8px;
}

.intro-story p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: var(--text-color);
}

.problem-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

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

.split-text h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.6px;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-color);
}

.cta-inline {
    text-align: center;
    padding: 50px 0;
}

.btn-cta {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: white;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn-cta:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: transparent;
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

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

.insight-reveal {
    padding: 120px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.insight-reveal h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.8px;
}

.insight-reveal p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.craft-story {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-flow {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial-text {
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.uniqueness-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.uniqueness-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -0.7px;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 50px;
}

.feature-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 250px;
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
}

.visual-showcase {
    padding: 80px 0;
    background: var(--bg-light);
}

.showcase-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.showcase-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

.showcase-item img {
    width: 100%;
    border-radius: 8px;
}

.trust-building {
    padding: 100px 0;
    background: var(--bg-white);
}

.trust-building h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.trust-building p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.trust-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.trust-point {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    text-align: center;
}

.trust-point strong {
    display: block;
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-point p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.collections-preview {
    padding: 100px 0;
    background: var(--bg-light);
}

.collections-preview h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: var(--text-light);
}

.collection-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.collection-item {
    display: flex;
    gap: 40px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px;
    align-items: center;
}

.collection-item:nth-child(even) {
    flex-direction: row-reverse;
}

.collection-item img {
    flex: 0 0 350px;
    width: 350px;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
}

.collection-content {
    flex: 1;
}

.collection-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.collection-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--text-color);
}

.collection-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
    margin-top: 20px;
}

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

.urgency-box {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.urgency-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.urgency-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.form-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.form-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    color: var(--text-light);
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 8px;
    max-width: 650px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-privacy {
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.form-privacy input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-privacy label {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-light);
}

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-sticky {
    display: block;
    padding: 16px 35px;
    background: var(--accent-color);
    color: white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.btn-sticky:hover {
    background: #b89555;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.page-hero {
    margin-top: 80px;
    padding: 80px 0 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-story,
.about-mission,
.about-values,
.about-process,
.about-team {
    padding: 80px 0;
}

.about-story h2,
.about-mission h2,
.about-values h2,
.about-process h2,
.about-team h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-story p,
.about-mission p,
.about-team p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-image-section {
    padding: 60px 0;
    background: var(--bg-light);
}

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 250px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.about-cta {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-box {
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-intro {
    padding: 60px 0;
    background: var(--bg-white);
}

.services-intro p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: center;
}

.services-list {
    padding: 80px 0;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
}

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

.service-item:nth-child(odd) {
    background: var(--bg-light);
}

.service-image {
    flex: 0 0 45%;
}

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

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-features {
    margin: 25px 0;
    padding-left: 20px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
    list-style: none;
}

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

.services-custom {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.services-custom h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-custom p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.services-guarantee {
    padding: 80px 0;
    background: var(--bg-white);
}

.services-guarantee h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

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

.guarantee-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.guarantee-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.guarantee-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-info {
    padding: 60px 0;
}

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

.contact-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-item p,
.contact-item a {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-note {
    padding: 40px 0;
    text-align: center;
}

.contact-note p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-faq h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.faq-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.contact-cta {
    padding: 60px 0;
}

.thanks-hero {
    margin-top: 80px;
    padding: 100px 0 60px;
    background: var(--bg-light);
    text-align: center;
}

.thanks-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.thanks-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.thanks-content {
    padding: 80px 0;
}

.thanks-box,
.thanks-next,
.thanks-contact {
    margin-bottom: 60px;
}

.thanks-box h2,
.thanks-next h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.thanks-box p,
.thanks-next p,
.thanks-contact p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-box ul {
    padding-left: 25px;
    margin-top: 20px;
}

.thanks-box li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    list-style: disc;
}

.thanks-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.thanks-contact {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.thanks-contact a {
    color: var(--accent-color);
    font-weight: 600;
}

.legal-page {
    margin-top: 80px;
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.legal-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-page ul {
    padding-left: 25px;
    margin: 20px 0;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    list-style: disc;
}

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

.legal-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

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

.legal-table th {
    background: var(--bg-light);
    font-weight: 700;
}

.legal-table td {
    font-size: 15px;
}

@media (max-width: 1024px) {
    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

    .collection-item,
    .collection-item:nth-child(even) {
        flex-direction: column;
    }

    .collection-item img {
        flex: 1;
        width: 100%;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .service-image {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-overlay h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-story h2,
    .split-text h2 {
        font-size: 28px;
    }

    .intro-story p,
    .split-text p {
        font-size: 17px;
    }

    .feature-grid,
    .trust-points,
    .values-grid {
        flex-direction: column;
    }

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

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

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

    .page-hero h1 {
        font-size: 36px;
    }

    .thanks-hero h1 {
        font-size: 36px;
    }

    .legal-page h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .nav-brand {
        font-size: 18px;
    }

    .nav-links {
        gap: 15px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}