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

:root {
    --primary-color: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #ef4444;
    --secondary-color: #1f2937;
    --accent-color: #f59e0b;
    --text-dark: #111827;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Noto Sans JP", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0;
    color: white;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1552519507-da3b142c6e3d?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.85) 0%, rgba(31, 41, 55, 0.9) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.feature-icon-wrapper svg {
    color: white;
    stroke-width: 3;
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Chat Container */
.hero-chat {
    display: flex;
    justify-content: center;
}

.chat-container {
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 520px;
    height: 650px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.chat-icon-wrapper {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-icon-wrapper svg {
    color: white;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.message {
    display: flex;
    animation: fadeInUp 0.4s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-content {
    max-width: 80%;
    padding: 1rem 1.35rem;
    border-radius: 16px;
    line-height: 1.6;
}

.bot-message .message-content {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.user-message .message-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow);
}

.chat-input-container {
    padding: 1.25rem 1.75rem;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.75rem;
}

.chat-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    font-family: inherit;
}

.chat-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.chat-send-btn {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    white-space: nowrap;
}

.chat-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.chat-send-btn:active {
    transform: translateY(0);
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chat-loading {
    padding: 0.75rem 1.75rem;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    letter-spacing: -1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

/* Unique Section Headers */
.section-header-unique {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title-unique {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -2px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.section-subtitle-unique {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* How It Works - Unique Timeline Design */
.how-it-works {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.timeline-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--primary-color) 10%, 
        var(--primary-color) 90%, 
        transparent 100%);
    transform: translateX(-50%);
    z-index: 0;
}

.steps-unique {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

.step-unique {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.step-unique.step-left .step-content-unique {
    order: 1;
}

.step-unique.step-left .step-visual-unique {
    order: 2;
}

.step-unique.step-right .step-content-unique {
    order: 2;
}

.step-unique.step-right .step-visual-unique {
    order: 1;
}

.step-content-unique {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number-unique {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.15;
    flex-shrink: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.step-info-unique h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.step-info-unique p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.step-visual-unique {
    position: relative;
}

.step-image-unique {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    aspect-ratio: 4/3;
}

.step-image-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.step-image-unique img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-unique:hover .step-image-unique img {
    transform: scale(1.05);
}

.step-unique::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1), var(--shadow-lg);
    z-index: 2;
}

/* Guide - Mosaic Grid Design */
.guide {
    background: var(--bg-white);
    padding: 8rem 0;
    position: relative;
}

.guide-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 200px);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.guide-card-mosaic {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
}

.guide-card-mosaic:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.guide-card-large {
    grid-column: 1 / 7;
    grid-row: 1 / 5;
}

.guide-card-medium {
    grid-column: 7 / 13;
}

.guide-card-medium:first-of-type {
    grid-row: 1 / 3;
}

.guide-card-medium:last-of-type {
    grid-row: 3 / 5;
}

.guide-card-small {
    grid-column: 7 / 13;
    grid-row: 2 / 4;
    z-index: 1;
}

.guide-card-image-mosaic {
    width: 100%;
    height: 100%;
    position: relative;
}

.guide-card-image-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-card-mosaic:hover .guide-card-image-mosaic img {
    transform: scale(1.1);
}

.guide-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.guide-card-large .guide-card-image-mosaic img {
    object-fit: cover;
    object-position: center;
}

.guide-card-large .guide-card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.guide-card-content-mosaic {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 2;
    color: white;
}

.guide-card-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.guide-card-content-mosaic h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.guide-card-content-mosaic p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.guide-card-small .guide-card-content-mosaic h3 {
    font-size: 1.5rem;
}

.guide-card-small .guide-card-content-mosaic p {
    display: none;
}

.guide-card-click-hint {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-card-click-hint::before {
    content: '👆';
    font-size: 1rem;
}

.guide-card-mosaic {
    cursor: pointer;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-white);
    border-radius: 32px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s;
    z-index: 10001;
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-content {
    padding: 3rem;
}

.modal-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.modal-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.modal-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1.2;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modal-image {
    width: 100%;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.modal-text {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.05rem;
}

.modal-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.modal-text ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.modal-text ul li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.modal-text ul li:last-child {
    border-bottom: none;
}

.modal-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.2rem;
}

.modal-text ul li strong {
    color: var(--text-dark);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.modal-documents-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.document-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.document-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.modal-note {
    padding: 1rem;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

.modal-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modal-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.modal-section p {
    color: var(--text-light);
    line-height: 1.9;
    margin: 0;
}

.modal-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
}

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

.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: transparent;
}

.modal-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
    }

    .modal-container {
        border-radius: 24px;
        max-height: 95vh;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.75rem;
    }

    .modal-image {
        height: 200px;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .guide-card-click-hint {
        font-size: 0.75rem;
    }
}

/* Compliance - Unique Card Design */
.compliance {
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    padding: 8rem 0;
}

.compliance-grid-unique {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.compliance-item-unique {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.compliance-item-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: width 0.4s;
}

.compliance-item-unique:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.compliance-item-unique:hover::before {
    width: 100%;
    opacity: 0.05;
}

.compliance-icon-unique {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s;
}

.compliance-item-unique:hover .compliance-icon-unique {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.compliance-item-unique h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.compliance-item-unique p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

.regions-unique {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.regions-unique::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.regions-content-unique {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.regions-content-unique svg {
    flex-shrink: 0;
}

/* About - Unique Asymmetric Design */
.about {
    background: var(--bg-white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-wrapper-unique {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content-unique {
    padding-right: 2rem;
}

.about-badge-unique {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.about-content-unique .section-title-unique {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 3.5rem;
}

.about-text-unique p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 2;
    font-size: 1.1rem;
}

.about-stats-unique {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

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

.stat-number-unique {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.stat-label-unique {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-image-unique {
    position: relative;
}

.about-image-wrapper-unique {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    aspect-ratio: 4/5;
}

.about-image-wrapper-unique img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-accent-unique {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 24px;
    opacity: 0.1;
    z-index: -1;
}

/* Lead Form - Premium Design */
.lead-form-section {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    padding: 8rem 0;
    position: relative;
}

.form-wrapper-unique {
    max-width: 900px;
    margin: 0 auto;
}

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

.form-subtitle-unique {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 400;
}

.lead-form-unique {
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.lead-form-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.form-grid-unique {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group-unique {
    margin-bottom: 0;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group-unique label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group-unique input,
.form-group-unique select {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group-unique input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group-unique input:focus,
.form-group-unique select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

.form-submit-btn-unique {
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.form-submit-btn-unique::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.form-submit-btn-unique:hover::before {
    left: 100%;
}

.form-submit-btn-unique:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.form-submit-btn-unique:active {
    transform: translateY(-2px);
}

.form-submit-btn-unique svg {
    transition: transform 0.3s;
}

.form-submit-btn-unique:hover svg {
    transform: translateX(4px);
}

.form-disclaimer-unique {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
}

/* Trust - Unique Design */
.trust {
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    padding: 8rem 0;
    position: relative;
}

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

.trust-content-unique {
    position: relative;
}

.trust-grid-unique {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.trust-item-unique {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.trust-item-unique::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, rgba(245, 158, 11, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.trust-item-unique:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.trust-item-unique:hover::after {
    opacity: 1;
}

.trust-icon-unique {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.trust-item-unique:hover .trust-icon-unique {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.trust-item-unique h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.trust-item-unique p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #111827 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.footer-section p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Timeline responsive */
    .timeline-line {
        display: none;
    }

    .step-unique {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-unique::before {
        display: none;
    }

    .step-unique.step-left .step-content-unique,
    .step-unique.step-right .step-content-unique {
        order: 1;
    }

    .step-unique.step-left .step-visual-unique,
    .step-unique.step-right .step-visual-unique {
        order: 2;
    }

    .step-number-unique {
        font-size: 3rem;
    }

    /* Mosaic responsive */
    .guide-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .guide-card-large,
    .guide-card-medium,
    .guide-card-small {
        grid-column: 1;
        grid-row: auto;
    }

    /* Compliance responsive */
    .compliance-grid-unique {
        grid-template-columns: 1fr;
    }

    /* About responsive */
    .about-wrapper-unique {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content-unique {
        padding-right: 0;
    }

    .about-content-unique .section-title-unique {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-stats-unique {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    /* Form responsive */
    .form-grid-unique {
        grid-template-columns: 1fr;
    }

    .lead-form-unique {
        padding: 2.5rem;
    }

    /* Trust responsive */
    .trust-grid-unique {
        grid-template-columns: 1fr;
    }

    .section-title-unique {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .chat-container {
        height: 550px;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    /* Additional responsive adjustments */
    .how-it-works,
    .guide,
    .compliance,
    .about,
    .lead-form-section,
    .trust {
        padding: 4rem 0;
    }

    .section-title-unique {
        font-size: 2rem;
    }

    .section-subtitle-unique {
        font-size: 1rem;
    }

    .step-info-unique h3 {
        font-size: 1.5rem;
    }

    .step-info-unique p {
        font-size: 1rem;
    }

    .about-stats-unique {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number-unique {
        font-size: 2rem;
    }

    .lead-form-unique {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .chat-container {
        height: 450px;
        border-radius: 20px;
    }

    .lead-form {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-title-unique {
        font-size: 1.75rem;
    }

    .how-it-works,
    .guide,
    .compliance,
    .about,
    .lead-form-section,
    .trust {
        padding: 3rem 0;
    }

    .step-content-unique {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number-unique {
        font-size: 2.5rem;
    }

    .guide-card-content-mosaic {
        padding: 1.5rem;
    }

    .guide-card-content-mosaic h3 {
        font-size: 1.25rem;
    }

    .compliance-item-unique,
    .trust-item-unique {
        padding: 2rem;
    }

    .about-content-unique .section-title-unique {
        font-size: 2rem;
    }

    .lead-form-unique {
        padding: 1.5rem;
        border-radius: 24px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.chat-loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Thanks Page */
.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.thanks-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
    animation: thanksIconPulse 2s ease-in-out infinite;
}

@keyframes thanksIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.thanks-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.thanks-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.thanks-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.thanks-info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.thanks-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.thanks-info-text {
    text-align: center;
}

.thanks-info-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.thanks-info-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

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

.thanks-btn {
    padding: 1rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}

.thanks-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.thanks-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.thanks-btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow);
}

.thanks-btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

/* Thanks Page Responsive */
@media (max-width: 768px) {
    .thanks-section {
        padding: 4rem 0;
        min-height: auto;
    }

    .thanks-title {
        font-size: 2rem;
    }

    .thanks-message {
        font-size: 1.1rem;
    }

    .thanks-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .thanks-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .thanks-icon {
        width: 100px;
        height: 100px;
    }

    .thanks-title {
        font-size: 1.75rem;
    }

    .thanks-message {
        font-size: 1rem;
    }
}

/* Form Preloader */
.form-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-preloader.active {
    opacity: 1;
    visibility: visible;
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: var(--accent-color);
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: rgba(220, 38, 38, 0.5);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.preloader-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}
