/* =================================
   カイタクエージェント LP スタイル
   デザインコンセプト: グリーン基調・明るいビジネス感
   参考: KAITAKU AGENT トンマナ
   ================================= */

/* カラー変数定義 */
:root {
    --primary-green: #2C5F4F;
    --secondary-green: #3A7562;
    --light-green: #A8D5BA;
    --pale-green: #E8F5F0;
    --accent-green: #5FA88A;
    --dark-text: #1A1A1A;
    --medium-text: #4A4A4A;
    --light-text: #6B6B6B;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --border-color: #DEE2E6;
}

/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Zen Maru Gothic', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* タイポグラフィ */
h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 28px;
    color: var(--dark-text);
    letter-spacing: 0.02em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: var(--dark-text);
    letter-spacing: 0.01em;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 18px;
    color: var(--dark-text);
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--medium-text);
    margin-bottom: 16px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--medium-text);
}

.highlight-green {
    color: var(--primary-green);
    font-weight: 700;
}

.highlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    color: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95em;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(44, 95, 79, 0.2);
}

.large-number {
    font-size: 72px;
    font-weight: 900;
    color: var(--accent-green);
    line-height: 1;
}

/* 背景装飾用の図形 */
.bg-decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.08;
}

.bg-circle {
    border-radius: 50%;
    background: var(--primary-green);
}

.bg-circle-large {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.bg-circle-medium {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
}

.bg-circle-small {
    width: 200px;
    height: 200px;
}

.bg-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--pale-green));
    opacity: 0.3;
    clip-path: ellipse(100% 100% at 50% 100%);
}

.bg-diagonal {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--light-green) 0%, transparent 70%);
    opacity: 0.15;
}

/* コンテナ */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.container-narrow {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ボタン */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 48px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(44, 95, 79, 0.2);
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 79, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

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

/* ヘッダー */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    max-width: 100%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    border-radius: 4px;
}

.logo img {
    height: 48px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: 0.05em;
}

.logo-text .highlight {
    color: var(--primary-green);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--medium-text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-text);
    cursor: pointer;
}

/* ファーストビュー */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 40%,
        rgba(255, 255, 255, 0.3) 70%,
        transparent 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 60px;
}

.hero-text {
    max-width: 950px;
}

.hero-text h1 {
    color: var(--dark-text);
    margin-bottom: 40px;
    font-size: 42px;
    white-space: normal;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    letter-spacing: -0.02em;
}

.hero-text h1 .large-number {
    font-size: 58px;
    font-weight: 900;
    color: var(--accent-green);
    line-height: 1;
    white-space: nowrap;
}

.hero-text h1 .no-break-line {
    display: inline-block;
    white-space: nowrap;
}

.hero-text .subtitle {
    font-size: 20px;
    color: var(--medium-text);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 44px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.9);
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stat-item {
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 17px;
    color: var(--medium-text);
    font-weight: 600;
    line-height: 1.4;
}

/* 以前の.hero-imageスタイルを削除 */

/* セクション共通 */
section {
    padding: 100px 0;
    position: relative;
}

.section-white {
    background: var(--white);
}

.section-light {
    background: var(--off-white);
}

.section-pale-green {
    background: var(--pale-green);
}

.section-green {
    background: var(--primary-green);
    color: var(--white);
}

.section-green h2,
.section-green h3 {
    color: var(--white);
}

.section-green p {
    color: rgba(255, 255, 255, 0.9);
}

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--medium-text);
    max-width: 700px;
    margin: 0 auto;
}

/* 斜めストライプ装飾 */
.diagonal-stripe {
    position: relative;
    padding-left: 60px;
}

.diagonal-stripe::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 120%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

/* コンセプトセクション */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.concept-item {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

.concept-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44, 95, 79, 0.1);
}

.concept-item h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--primary-green);
}

.concept-item h3 i {
    color: var(--accent-green);
    font-size: 20px;
}

.concept-item p {
    font-size: 17px;
    line-height: 1.9;
    text-align: left;
    color: var(--medium-text);
}

/* 特徴セクション */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(44, 95, 79, 0.12);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--pale-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-green);
}

.feature-card h3 {
    color: var(--dark-text);
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-card p {
    font-size: 15px;
    color: var(--medium-text);
}

/* 構造説明セクション */
.structure-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 60px;
}

.structure-box {
    background: var(--white);
    padding: 36px;
    border-radius: 12px;
    border: 2px solid var(--light-gray);
    position: relative;
}

.structure-box.traditional {
    opacity: 0.85;
}

.structure-box.kaitaku {
    border-color: var(--accent-green);
    box-shadow: 0 4px 20px rgba(168, 213, 186, 0.2);
}

.structure-box.kaitaku::before {
    content: 'NEW';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.structure-box h3 {
    text-align: center;
    margin-bottom: 32px;
    color: var(--primary-green);
    font-size: 28px;
}

.flow-step {
    background: var(--off-white);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    border-left: 4px solid var(--light-gray);
    min-height: 80px;
}

.structure-box.kaitaku .flow-step {
    background: var(--pale-green);
    border-left-color: var(--accent-green);
}

.flow-step::after {
    content: '↓';
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--light-text);
}

.structure-box.kaitaku .flow-step::after {
    color: var(--accent-green);
}

.flow-step:last-child::after {
    display: none;
}

.flow-step .step-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--light-gray);
    color: var(--medium-text);
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.structure-box.kaitaku .flow-step .step-number {
    background: var(--accent-green);
    color: var(--white);
}

.flow-step strong {
    display: block;
    color: var(--dark-text);
    margin-bottom: 4px;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 600;
}

.flow-step p {
    color: var(--light-text);
    font-size: 13px;
    margin: 0;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-green);
    align-self: center;
}

/* 相談の流れセクション */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--accent-green);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(44, 95, 79, 0.12);
}

.step-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--pale-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--primary-green);
}

.process-step h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--primary-green);
}

.process-step p {
    font-size: 14px;
    color: var(--medium-text);
}

/* FAQセクション */
.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

/* キャリアアドバイザーセクション */
.advisors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.advisor-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.advisor-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(44, 95, 79, 0.12);
}

.advisor-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--pale-green);
}

.advisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.advisor-content {
    padding: 32px;
}

.advisor-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.advisor-specialty {
    font-size: 14px;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.advisor-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--medium-text);
    margin: 0;
}

/* FAQセクション */
.faq-list {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--white);
    padding: 28px 32px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-green);
    box-shadow: 0 4px 16px rgba(44, 95, 79, 0.08);
}

.faq-question {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-question::before {
    content: 'Q';
    display: inline-block;
    min-width: 28px;
    height: 28px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 6px;
    text-align: center;
    line-height: 28px;
    font-weight: 700;
    font-size: 14px;
}

.faq-answer {
    padding-left: 40px;
    color: var(--medium-text);
    line-height: 1.8;
    font-size: 15px;
}

/* フォームセクション */
.contact-section {
    background: var(--pale-green);
    padding: 100px 0;
}

.form-container {
    max-width: 700px;
    margin: 60px auto 0;
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    border: 2px solid var(--light-green);
    box-shadow: 0 8px 32px rgba(44, 95, 79, 0.1);
}

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

label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-text);
    margin-bottom: 8px;
}

label .required {
    color: var(--accent-green);
    margin-left: 4px;
}

input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    color: var(--dark-text);
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(168, 213, 186, 0.2);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234A4A4A' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: var(--off-white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.checkbox-label:hover {
    border-color: var(--accent-green);
    background: var(--pale-green);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

button[type="submit"] {
    width: 100%;
    padding: 18px;
    font-size: 17px;
    font-weight: 600;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

button[type="submit"]:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 95, 79, 0.3);
}

.form-note {
    font-size: 13px;
    color: var(--light-text);
    text-align: center;
    margin-top: 16px;
}

/* フッター */
footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 60px 0 32px;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-right {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* アニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* アニメーション定義 */
@keyframes sectionFadeIn {
    from {
        opacity: 0.95;
        transform: scale(0.99);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* 背景装飾要素のアニメーション */
.bg-decoration {
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.bg-wave {
    animation: floatUp 8s ease-in-out infinite;
}

/* レスポンシブ */
@media (max-width: 1024px) {
    h1 { font-size: 42px; }
    h2 { font-size: 36px; }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 60px 40px;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 48px;
    }
    
    .hero-text h1 .large-number {
        font-size: 68px;
    }
    
    .hero-text h1 .no-break-line {
        white-space: nowrap;
        overflow: visible;
    }
    
    .hero-overlay {
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.4) 100%
        );
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .structure-comparison {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .vs-divider {
        transform: rotate(90deg);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .advisors-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body { font-size: 15px; }
    
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }
    
    .container,
    .container-narrow {
        padding: 0 24px;
    }
    
    .header-container {
        padding: 16px 24px;
    }
    
    .header-right {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 22px;
        line-height: 1.6;
        text-align: left;
        letter-spacing: -0.04em;
    }
    
    .hero-text h1 br:first-of-type {
        display: none;
    }
    
    .hero-text h1 .large-number {
        font-size: 36px;
    }
    
    .hero-text h1 .no-break-line {
        white-space: normal;
        display: block;
        font-size: 22px;
    }
    
    .hero-text h1 .no-break-line .large-number {
        font-size: 36px;
    }
    
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.88) 40%,
            rgba(255, 255, 255, 0.85) 70%,
            rgba(255, 255, 255, 0.80) 100%
        );
    }
    
    .hero-text h1 {
        text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
        margin-left: auto;
        margin-right: auto;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
    }
    
    .stat-item {
        text-align: center;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 16px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .form-container {
        padding: 32px 20px;
    }
    
    .diagonal-stripe {
        padding-left: 40px;
    }
    
    .diagonal-stripe::before {
        width: 28px;
    }
    
    .footer-content {
        padding: 0 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
