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

:root {
    --primary-color: #ff4d4d;
    --primary-dark: #cc0000;
    --text-dark: #1a1a1a;
    --text-light: #4d4d4d;
    --bg-light: #f5f5f5;
    --bg-dark: #121212;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

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

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    max-width: 300px;
    background: var(--white);
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    font-size: 1.1rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    color: var(--white);
    max-width: 900px;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.story-narrow h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-narrow h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: var(--text-dark);
}

.story-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.inline-cta {
    margin: 2.5rem 0;
}

.cta-link {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-link:hover {
    gap: 0.8rem;
}

.story-intro {
    background: var(--bg-light);
}

.problem-amplify {
    padding: 5rem 0;
}

.split-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.split-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
}

.split-visual {
    width: 100%;
}

.visual-card {
    border-radius: 12px;
    overflow: hidden;
}

.insight-reveal {
    background: var(--text-dark);
    color: var(--white);
    padding: 5rem 0;
}

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

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

.insight-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.insight-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.insight-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-icon {
    margin-bottom: 1.5rem;
}

.insight-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.insight-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.trust-builder {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.testimonial-inline blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

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

.scenario-section {
    padding: 5rem 0;
}

.scenario-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.scenario-container h3 {
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.scenario-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.scenario-block {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.scenario-block p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.scenario-block strong {
    color: var(--primary-color);
    font-weight: 600;
}

.benefits-reveal {
    padding: 5rem 0;
    background: var(--bg-dark);
    color: var(--white);
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.benefit-visual-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-image {
    width: 100%;
    border-radius: 12px 12px 0 0;
}

.card-content {
    padding: 2rem;
}

.card-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.card-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.feature-tag {
    display: inline-block;
    font-size: 0.85rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.cta-block-primary {
    background: var(--primary-color);
    padding: 5rem 0;
}

.cta-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-centered h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-centered p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.services-pricing {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 6px 30px rgba(255, 77, 77, 0.2);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-amount {
    margin: 1.5rem 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.5rem;
}

.pricing-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    font-size: 1rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

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

.btn-select-service {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-select-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.urgency-section {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 4rem 0;
}

.urgency-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.urgency-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.urgency-container h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.urgency-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.urgency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.urgency-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.urgency-label {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-urgency {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}

.social-proof {
    padding: 5rem 0;
}

.testimonial-block {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-block p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: normal;
}

.final-cta {
    background: var(--text-dark);
    padding: 5rem 0;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.final-cta-content h3 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.final-cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.btn-cta-final {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-final:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.order-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-group span {
    font-size: 0.95rem;
    font-weight: 400;
}

.btn-submit-form {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.3rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit-form:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    padding: 1.2rem;
    z-index: 999;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.sticky-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: var(--primary-dark);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    font-size: 0.95rem;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

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

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

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 1rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

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

.page-hero-small {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2d2d2d 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.hero-content-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-content-small h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero-content-small p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    background: var(--white);
}

.quote-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

.quote-block blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
}

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

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-card h3,
.value-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 5rem 0;
    background: var(--white);
}

.team-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-list li {
    font-size: 1.05rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.team-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.team-member {
    margin-bottom: 2rem;
}

.team-member h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 1rem;
    color: var(--text-light);
}

.cta-about,
.cta-services {
    background: var(--primary-color);
    padding: 4rem 0;
}

.services-intro {
    padding: 3rem 0;
    background: var(--bg-light);
}

.services-pricing-page {
    padding: 4rem 0;
    background: var(--bg-light);
}

.guarantee-section {
    padding: 5rem 0;
    background: var(--white);
}

.guarantee-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

.thanks-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 8rem 0 5rem;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

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

.thanks-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
}

.thanks-details {
    padding: 5rem 0;
    background: var(--white);
}

.next-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

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

.thanks-service-info {
    background: var(--bg-light);
    padding: 3rem 0;
}

.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.info-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.thanks-contact {
    padding: 4rem 0;
    background: var(--white);
}

.contact-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-box p {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.thanks-cta {
    background: var(--bg-light);
    padding: 4rem 0;
}

.legal-page {
    padding: 8rem 0 4rem;
    background: var(--white);
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    list-style: disc;
}

.legal-page ol li {
    list-style: decimal;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        padding: 0;
        max-width: none;
        width: auto;
        gap: 2rem;
    }

    .nav-menu a {
        border-bottom: none;
        padding: 0;
    }

    .hero-overlay h1 {
        font-size: 4.5rem;
    }

    .hero-tagline {
        font-size: 1.6rem;
    }

    .split-layout {
        flex-direction: row;
        align-items: center;
    }

    .split-text,
    .split-visual {
        flex: 1;
    }

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

    .insight-card {
        flex: 1;
        min-width: 280px;
    }

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

    .stat-item {
        flex: 1;
    }

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

    .benefit-visual-card {
        flex: 1;
        min-width: 300px;
    }

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

    .pricing-card {
        flex: 1;
        min-width: 300px;
    }

    .urgency-stats {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }

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

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

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

    .footer-col {
        flex: 1;
    }

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

    .value-card {
        flex: 1;
        min-width: 280px;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }

    .guarantee-stats {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .story-narrow {
        padding: 6rem 1.5rem;
    }

    .hero-overlay h1 {
        font-size: 5rem;
    }
}