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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.65;
    color: #1a1a1a;
    background: #fafafa;
}

.ad-disclosure {
    background: #2a2a2a;
    color: #e0e0e0;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 28px;
}

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #6366f1;
}

.hero-asymmetric {
    min-height: 90vh;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf2 100%);
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text-block {
    flex: 1;
    padding-right: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #6366f1;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-text-block h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text-block p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, background 0.3s;
}

.cta-primary:hover {
    background: #333;
    transform: translateY(-2px);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background: #e0e0e0;
}

.intro-asymmetric {
    padding: 100px 20px;
}

.offset-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.intro-col-wide {
    flex: 2;
}

.intro-col-wide h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 22px;
    color: #2a2a2a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.intro-col-wide p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.intro-col-narrow {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: #6366f1;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.visual-block {
    padding: 80px 20px;
    background: #1a1a1a;
}

.visual-overlay-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.visual-overlay-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    background: #2a2a2a;
}

.overlay-text-box {
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    padding: 32px;
    border-radius: 12px;
}

.overlay-text-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.overlay-text-box p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.problem-stacked {
    padding: 100px 20px;
    background: #f5f7fa;
}

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

.problem-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.problem-grid-offset {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.problem-item {
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.problem-item.left-align {
    margin-right: 120px;
}

.problem-item.right-align {
    margin-left: 120px;
}

.problem-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.problem-item p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.insight-overlap {
    padding: 100px 20px;
}

.overlap-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.insight-image-large {
    flex: 1;
}

.insight-image-large img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background: #e0e0e0;
}

.insight-card-float {
    flex: 1;
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-top: -60px;
}

.insight-card-float h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.insight-card-float p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonials-inline {
    padding: 80px 20px;
    background: #6366f1;
}

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

.quote-block {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 36px;
    border-radius: 12px;
    color: #fff;
}

.quote-block p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.quote-block cite {
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.benefits-diagonal {
    padding: 100px 20px;
}

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

.diagonal-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
}

.benefits-offset-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefit-card {
    display: flex;
    gap: 40px;
    align-items: center;
}

.benefit-card.offset-left {
    margin-right: 80px;
}

.benefit-card.offset-right {
    margin-left: 80px;
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1;
}

.benefit-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background: #e0e0e0;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.benefit-content p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.services-cards {
    padding: 100px 20px;
    background: #f5f7fa;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

.service-grid-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1 1 calc(50% - 12px);
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card.large-card {
    flex: 1 1 100%;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: #e0e0e0;
}

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 14px 28px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.service-select:hover {
    background: #333;
}

.form-section-offset {
    padding: 100px 20px;
    display: none;
}

.form-section-offset.active {
    display: block;
}

.form-container-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 60px;
    display: flex;
    gap: 60px;
}

.form-side-text {
    flex: 1;
}

.form-side-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-side-text p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.6;
}

.form-side-form {
    flex: 1;
}

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

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.form-field textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #4f46e5;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 20px 40px;
}

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

.footer-main {
    flex: 1;
}

.footer-main h4 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-main p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 60px;
}

.footer-col h5 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    color: #aaa;
    font-size: 14px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer-text {
    margin-top: 16px;
    font-size: 13px;
}

.cookie-modal {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

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

.modal-content {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.modal-content p {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-content a {
    color: #6366f1;
    text-decoration: none;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn-accept,
.cookie-btn-reject {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.cookie-btn-accept {
    background: #10b981;
    color: #fff;
}

.cookie-btn-accept:hover {
    opacity: 0.9;
}

.cookie-btn-reject {
    background: #e0e0e0;
    color: #1a1a1a;
}

.cookie-btn-reject:hover {
    opacity: 0.8;
}

.page-hero-minimal {
    padding: 140px 20px 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ebf2 100%);
    text-align: center;
}

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

.page-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #6366f1;
    color: #fff;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hero-minimal-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.hero-minimal-content p {
    font-size: 18px;
    color: #4a4a4a;
}

.story-section-offset {
    padding: 100px 20px;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image-block {
    flex: 1;
}

.story-image-block img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    background: #e0e0e0;
}

.story-text-block {
    flex: 1;
}

.story-text-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-text-block p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.values-stacked {
    padding: 100px 20px;
    background: #f5f7fa;
}

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

.values-header-center h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.values-header-center p {
    font-size: 18px;
    color: #4a4a4a;
}

.values-blocks {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-block {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.value-block h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-block p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.philosophy-overlap {
    padding: 100px 20px;
}

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

.philosophy-text-wide {
    flex: 2;
}

.philosophy-text-wide h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.philosophy-text-wide p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.philosophy-image-small {
    flex: 1;
}

.philosophy-image-small img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
    background: #e0e0e0;
}

.promise-section {
    padding: 100px 20px;
    background: #6366f1;
    color: #fff;
}

.promise-box-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.promise-box-centered h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.promise-lead {
    font-size: 22px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.promise-box-centered p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.9;
}

.collection-detail {
    padding: 60px 20px 100px;
}

.collection-item-offset {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.collection-item-offset.reverse {
    flex-direction: row-reverse;
}

.collection-image {
    flex: 1;
}

.collection-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    background: #e0e0e0;
}

.collection-info {
    flex: 1;
}

.collection-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.collection-intro {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 24px;
}

.collection-features {
    margin-bottom: 24px;
}

.collection-features h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.collection-features ul {
    list-style: none;
}

.collection-features li {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.collection-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-size: 20px;
}

.collection-price {
    font-size: 32px;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 20px;
}

.guidance-section {
    padding: 80px 20px;
    background: #f5f7fa;
}

.guidance-box {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.guidance-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

.guidance-box > p {
    font-size: 17px;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 40px;
}

.guidance-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.guidance-item {
    flex: 1 1 calc(50% - 12px);
    background: #f5f7fa;
    padding: 24px;
    border-radius: 12px;
}

.guidance-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.guidance-item p {
    font-size: 18px;
    font-weight: 700;
    color: #6366f1;
}

.guidance-cta {
    text-align: center;
    font-size: 16px;
    color: #4a4a4a;
}

.guidance-cta a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.contact-split {
    padding: 100px 20px;
}

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

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

.contact-info-block h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.contact-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    background: #e0e0e0;
}

.faq-section {
    padding: 80px 20px;
    background: #f5f7fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: #fff;
    padding: 28px;
    border-radius: 12px;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.thanks-page {
    padding: 140px 20px 80px;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
}

.thanks-container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 20px;
    color: #2a2a2a;
    margin-bottom: 16px;
}

.thanks-container p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: #f5f7fa;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #e8ebf2;
}

.next-steps {
    padding: 80px 20px;
    background: #f5f7fa;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.steps-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 32px;
}

.step-item {
    flex: 1;
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: #6366f1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 20px 80px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 32px;
}

.legal-page li {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-page a {
    color: #6366f1;
    text-decoration: none;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f5f7fa;
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .floating-nav {
        position: static;
        transform: none;
        border-radius: 0;
        padding: 12px 20px;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .hero-split,
    .offset-container,
    .overlap-container,
    .story-container,
    .philosophy-container,
    .contact-container,
    .collection-item-offset {
        flex-direction: column;
    }

    .hero-text-block h1,
    .intro-col-wide h2,
    .diagonal-header h2,
    .services-intro h2 {
        font-size: 36px;
    }

    .problem-item.left-align,
    .problem-item.right-align {
        margin: 0;
    }

    .benefit-card.offset-left,
    .benefit-card.offset-right {
        margin: 0;
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .form-container-asymmetric {
        flex-direction: column;
        padding: 40px 24px;
    }

    .footer-content-split,
    .footer-links {
        flex-direction: column;
    }

    .testimonial-flow,
    .steps-grid {
        flex-direction: column;
    }
}
