:root {
    --navy-dark: #0a193a;
    --navy-light: #152c5b;
    --gold: #c5a059;
    --gold-light: #f5e6c4;
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #e6c885 50%, #c5a059 100%);
    --blue-accent: #00d4ff;
    --blue-grad: linear-gradient(180deg, #0099ff 0%, #0056b3 100%);
    --white: #ffffff;
    --gray-bg: #f8f9fa;
    --text-main: #333333;
    --line-color: #06C755;
    --font-base: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-en: 'Montserrat', sans-serif;
}

html, body { overflow-x: hidden; width: 100%; }

body {
    font-family: var(--font-base);
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
    background-color: var(--navy-dark);
}

.no-break { white-space: nowrap; display: inline-block; }
.mt-40 { margin-top: 40px; }

/* 共通 */
h1, h2, h3, h4 { font-family: var(--font-serif); margin: 0; line-height: 1.4; letter-spacing: 0.05em; }
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
ul { list-style: none; padding: 0; margin: 0; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; position: relative; z-index: 2; }
.text-center { text-align: center; }

/* 配色ユーティリティ */
.text-gold { color: var(--gold); }
.text-blue { color: var(--blue-accent); }
.text-navy { color: var(--navy-dark); }
.text-freee { color: #2589d0; }
.text-white { color: white; }
.text-white-op { color: rgba(255,255,255,0.8); }
.text-dark-op { color: rgba(51,51,51,0.8); }

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

/* 背景エフェクト */
.ambient-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 0; overflow: hidden; pointer-events: none;
    background: radial-gradient(circle at center, #1a3a6c 0%, #0a193a 100%);
}
.orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}
.orb-1 { width: 60vw; height: 60vw; background: #152c5b; top: -10%; left: -10%; animation-delay: 0s; }
.orb-2 { width: 50vw; height: 50vw; background: #003366; bottom: -10%; right: -10%; animation-delay: -5s; }
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* ヘッダー */
.header {
    position: fixed; top: 0; width: 100%; 
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.header__inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 20px; max-width: 1200px; margin: 0 auto;
}
.header__logo { 
    font-size: 1.1rem; color: var(--navy-dark); display: flex; align-items: center; gap: 10px; 
    font-family: var(--font-en); font-weight: 700; letter-spacing: 0.05em;
}
.header__icon { width: 32px; height: 32px; }

/* ボタン */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px 32px; border-radius: 50px;
    font-weight: bold; position: relative; overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); border: none;
}
.btn--header {
    background: var(--line-color); color: white; padding: 10px 20px; font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
}
.btn--primary {
    background: var(--gold-gradient); color: white; width: 100%; max-width: 320px; letter-spacing: 0.05em;
}
.btn--shine::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-25deg); animation: shine-btn 3s infinite;
}
@keyframes shine-btn { 0%, 50% { left: -100%; } 100% { left: 200%; } }
.btn:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); cursor: pointer;}
.btn--line {
    background: #06C755; color: white; width: 100%; max-width: 400px;
    box-shadow: 0 5px 15px rgba(6, 199, 85, 0.4); font-size: 1.2rem;
}
.btn--apply {
    background: var(--gold-gradient); color: white; width: 100%; max-width: 400px; padding: 20px 40px; font-size: 1.3rem; letter-spacing: 0.05em; box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
}
.btn--apply:hover { box-shadow: 0 15px 40px rgba(197, 160, 89, 0.6); }

/* Hero Section */
.hero { position: relative; padding-top: 120px; padding-bottom: 80px; overflow: hidden; }
.hero__container { display: flex; flex-direction: column; align-items: center; gap: 40px; position: relative; z-index: 2; }
.hero__content { text-align: center; color: white; width: 100%; order: 1; }
.hero__image-wrapper { width: 100%; display: flex; justify-content: center; order: 2; }

.hero__badge {
    display: inline-block; background: rgba(255,255,255,0.1); 
    border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(5px);
    padding: 6px 18px; border-radius: 30px; font-size: 0.85rem; margin-bottom: 25px;
    letter-spacing: 0.1em; color: #fff;
}
.hero__title { font-size: 1.8rem; margin-bottom: 25px; text-shadow: 0 10px 30px rgba(0,0,0,0.3); font-weight: 700; line-height: 1.6; }
.text-gradient-gold {
    background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;
}
.hero__lead { font-size: 1rem; margin-bottom: 40px; opacity: 0.9; line-height: 2; }
.hero__image-frame {
    width: 220px; height: 180px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border-radius: 20px; padding: 8px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3); position: relative; overflow: hidden;
}
.hero__img-main { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 15px; }
.hero__card-shine {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.4) 0%, transparent 40%); pointer-events: none;
}

@media(min-width: 768px) {
    body { font-size: 16px; }
    .hero__container { flex-direction: row; text-align: left; justify-content: space-between; padding-top: 60px;}
    .hero__content { width: 55%; order: 1; align-items: flex-start; text-align: left;}
    .hero__image-wrapper { width: 40%; order: 2; justify-content: flex-end; }
    .hero__title { font-size: 2.8rem; line-height: 1.3; }
    .hero__badge { margin-left: 2px; }
    .btn--primary { margin: 0; }
    .hero__image-frame { 
        width: 380px; height: 380px; transform: perspective(1000px) rotateY(-10deg) rotateX(5deg); 
        transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .hero__image-frame:hover { transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.02); }
}

/* Sections */
.section { padding: 80px 0; position: relative; z-index: 1; }
.section-title { font-size: 1.8rem; margin-bottom: 15px; letter-spacing: 0.05em; }
.section-sub { text-align: center; margin-bottom: 60px; font-size: 0.95rem; }
.section--dark { color: #fff; }
.section--light, .section--white, .section--gray { color: var(--text-main); }
.section--light { background: #fff; }
.section--white { background: #fff; }
.section--gray { background: var(--gray-bg); }

/* Glass Cards */
.card-grid, .card-grid-3, .three-col-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media(min-width: 768px) { 
    .card-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } 
    .card-grid-3, .three-col-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

.glass-card {
    background: rgba(255, 255, 255, 0.07); backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 20px; padding: 30px;
    color: white; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.card-img-wrapper { height: 100px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
.card-img-wrapper img { max-height: 100%; width: auto; filter: drop-shadow(0 5px 15px rgba(0,212,255,0.4)); }
.feature-box {
    text-align: center; background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 25px; color: white;
}
.feature-img { max-height: 120px; margin-bottom: 20px; }
.white-card {
    background: white; border-radius: 20px; padding: 35px 25px; text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f0f0f0; color: var(--text-main); transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hover-lift:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.white-card-img { height: 120px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; }
.white-card-img img { max-height: 100%; }

/* Merit Grid */
.merit-section { background: radial-gradient(circle at center, #1a3a6c 0%, #0a193a 100%); position: relative; }
.merit-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
@media(min-width: 768px) { .merit-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.merit-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.2); display: flex; flex-direction: column; color: var(--text-main); transition: transform 0.3s; }
.merit-card:hover { transform: translateY(-5px); }
.merit-card--premium { transform: scale(1.03); border: 3px solid var(--gold); box-shadow: 0 15px 50px rgba(197, 160, 89, 0.3); position: relative; z-index: 2; }
.merit-card--premium:hover { transform: scale(1.03) translateY(-5px); }
.merit-header { padding: 20px 15px; color: white; font-weight: bold; font-size: 1.1rem; text-align: center; letter-spacing: 0.05em; }
.bg-navy-head { background: linear-gradient(135deg, #152c5b 0%, #0a193a 100%); }
.bg-gold-head { background: var(--gold-gradient); color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.merit-body { padding: 25px; flex: 1; display: flex; flex-direction: column; gap: 25px; background: #fff; }
.merit-group { display: flex; flex-direction: column; gap: 10px; }
.merit-label { font-size: 0.9rem; font-weight: bold; margin-bottom: 5px; color: var(--line-color); }
.demerit-label { font-size: 0.9rem; font-weight: bold; margin-bottom: 5px; margin-top: 10px; color: #cc0000; }
.check-list li, .cross-list li { font-size: 0.95rem; margin-bottom: 8px; padding-left: 30px; position: relative; line-height: 1.5; }
.check-list li::before { content: "\f00c"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; left: 0; top: 0; color: white; background: #06C755; width: 20px; height: 20px; border-radius: 4px; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; }
.cross-list li::before { content: "\f00d"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; left: 0; top: 0; color: #cc0000; font-size: 1.2rem; width: 20px; text-align: center; }
.text-small-dark { font-size: 0.8rem; color: #666; display: block; margin-top: 5px; }
@media(max-width: 767px) { .merit-card--premium { transform: scale(1); margin: 10px 0; } }

/* Comparison Grid */
.comparison-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; color: var(--text-main); }
@media(min-width: 768px) { .comparison-grid { grid-template-columns: 1fr 1fr 1fr 1.3fr; gap: 0; background: white; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.08); overflow: visible; } }
.comp-col { display: flex; flex-direction: column; }
@media(max-width: 767px) {
    .comp-col { background: white; border-radius: 16px; box-shadow: 0 5px 20px rgba(0,0,0,0.06); padding: 0; overflow: hidden; border: 1px solid #eee; }
    .comp-our-plan { order: -1; margin: 10px 0 20px; border: 3px solid var(--gold); transform: scale(1.03); box-shadow: 0 15px 40px rgba(197, 160, 89, 0.25); position: relative; z-index: 5; }
}
.comp-header-cell { padding: 20px; background: #8da1c7; color: white; text-align: center; font-weight: bold; letter-spacing: 0.05em; }
.comp-header-cell.empty { background: #667ba6; border-top-left-radius: 20px; }
.comp-header-cell.our-header { background: var(--blue-grad); font-size: 1.25rem; padding: 25px 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); position: relative; }
@media(min-width: 768px) { .comp-header-cell.our-header { border-top-left-radius: 20px; border-top-right-radius: 20px; margin-top: -15px; padding-top: 40px; } }
.comp-cell { padding: 25px 20px; text-align: center; border-bottom: 1px solid #f0f0f0; font-size: 0.95rem; display: flex; flex-direction: column; justify-content: center; align-items: center; line-height: 1.6; }
.comp-cell.our-cell { background: linear-gradient(180deg, #2a85d6 0%, #1e60aa 100%); color: white; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-cell { font-weight: 700; font-size: 1.1rem; background: #fafafa; }
.footer-cell.our-footer { background: linear-gradient(180deg, #1e60aa 0%, #154a8a 100%); color: #ffeb3b; font-size: 1.6rem; font-family: var(--font-en); }
@media(min-width: 768px) { .footer-cell.our-footer { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; } }
.sp-label { display: block; font-size: 0.75rem; color: #999; margin-bottom: 8px; font-weight: normal; background: #f5f5f5; padding: 3px 10px; border-radius: 4px; }
.our-cell .sp-label { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); }
@media(min-width: 768px) {
    .sp-label { display: none; }
    .comp-col { border-right: 1px solid #f0f0f0; } .comp-col:last-child { border-right: none; }
    .comp-cell { height: 110px; }
    .comp-header-cell { height: 70px; display: flex; align-items: center; justify-content: center; }
}
.text-large { font-size: 1.6rem; font-weight: 700; font-family: var(--font-en); }
@media(min-width: 768px) { .text-large { font-size: 2rem; color: #ffeb3b; } }
.text-highlight { font-size: 1.4rem; font-weight: bold; color: #ffeb3b; }
.text-small { font-size: 0.8rem; display: block; margin-top: 5px; opacity: 0.8; }
.text-small-white { font-size: 0.8rem; color: rgba(255,255,255,0.8); display: block; margin-top: 5px; }
.unit { font-size: 0.9rem; font-weight: normal; }
.cfo-comment { margin-top: 40px; background: white; padding: 30px; border-radius: 12px; border-left: 6px solid var(--navy-dark); box-shadow: 0 10px 30px rgba(0,0,0,0.06); display: flex; align-items: center; gap: 20px; color: var(--text-main); }
.comment-icon-wrap { flex-shrink: 0; width: 60px; height: 60px; border-radius: 50%; overflow: hidden; border: 2px solid var(--navy-dark); }
.comment-avatar { width: 100%; height: 100%; object-fit: cover; }
.comment-text { font-weight: 500; color: var(--navy-dark); flex: 1; }
.comment-title { display: block; font-size: 0.8rem; color: #888; font-family: var(--font-en); font-weight: bold; margin-bottom: 5px; }

/* Chart */
.chart-wrapper { background: white; padding: 30px; border-radius: 20px; margin-bottom: 50px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border: 1px solid #f0f0f0; color: var(--text-main); }
.chart-container { display: flex; flex-direction: column; gap: 20px; }
.chart-bar-area { position: relative; height: 40px; background: #f0f0f0; border-radius: 20px; overflow: hidden; width: 100%; display: flex; align-items: center; }
.chart-bar { height: 100%; border-radius: 20px; width: 0; transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1); }
.bar-gray { background: #ccc; }
.bar-gold { background: var(--gold-gradient); box-shadow: 0 0 15px rgba(197, 160, 89, 0.5); }
.bar-glow { position: absolute; top:0; left:0; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent); animation: shine 2s infinite; }
.chart-value { margin-left: 15px; font-weight: bold; font-family: var(--font-en); z-index: 2; position: absolute; right: 15px; }

/* ★ プランセクション（デザイン修正） */
.plans-container { display: flex; flex-direction: column; gap: 30px; margin-top: 30px; }
@media(min-width: 768px) { .plans-container { flex-direction: row; justify-content: center; align-items: stretch; } }
.plan-card { background: white; border-radius: 12px; overflow: hidden; width: 100%; max-width: 350px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f0f0f0; display: flex; flex-direction: column; margin: 0 auto; transition: transform 0.3s; color: var(--text-main); }
.plan-card:hover { transform: translateY(-5px); }
.plan-card--premium { transform: scale(1.03); z-index: 2; box-shadow: 0 20px 50px rgba(197, 160, 89, 0.2); position: relative; border: none; }
.plan-card--premium::after { content: ''; position: absolute; inset: 0; border: 3px solid var(--gold); border-radius: 12px; pointer-events: none; }
.plan-card--premium:hover { transform: scale(1.03) translateY(-5px); }

/* ヘッダー部分の色帯の角丸設定（画像に合わせる） */
.plan-header { padding: 20px; text-align: center; color: white; font-weight: bold; font-size: 1.2rem; margin: 0; }
.plan-card--premium .plan-header { padding-top: 45px; } 

.bg-blue { background: #0088CC; }
.bg-gold { background: #D4B26F; }
.bg-light-blue { background: #55A8FF; }

.ribbon { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: #C5A059; color: white; padding: 6px 30px; font-size: 0.8rem; font-weight: bold; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; letter-spacing: 0.1em; z-index: 10; }
.plan-body { padding: 30px 20px; flex: 1; }
.plan-price { text-align: center; margin-bottom: 25px; border-bottom: 1px dashed #eee; padding-bottom: 15px; }
.plan-price .num { font-size: 2.5rem; font-weight: bold; font-family: var(--font-en); }
.bold-item { background: #fffcf0; font-weight: bold; padding: 8px; border-radius: 6px; color: var(--navy-dark); }


/* ★ 自計化セクション（シンプルなレイアウトへ修正） */
.ph-layout-new { display: flex; flex-direction: column; gap: 50px; }
.ph-row { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.ph-img { width: 100%; max-width: 320px; }
.ph-img img { width: 100%; height: auto; display: block; border-radius: 8px; }
.ph-text h4 { font-size: 1.4rem; color: var(--navy-dark); margin-bottom: 15px; line-height: 1.5; font-weight: bold; }
.ph-text p { color: var(--text-main); line-height: 1.8; font-size: 0.95rem; }

@media(min-width: 768px) {
    .ph-row { flex-direction: row; text-align: left; align-items: center; gap: 50px; }
    .ph-img { width: 40%; max-width: none; }
    .ph-text { width: 60%; }
    .ph-text h4 { font-size: 1.6rem; }
}

/* Strategy */
.strategy-diagram { display: flex; flex-direction: column; align-items: center; gap: 20px; max-width: 900px; margin: 0 auto; color: var(--text-main); }
@media(min-width: 768px) { .strategy-diagram { flex-direction: row; align-items: stretch; } }
.strategy-box { flex: 1; width: 100%; background: white; border-radius: 16px; padding: 0; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 2px solid; overflow: hidden; display: flex; flex-direction: column; }
.box-defense { border-color: #2a85d6; }
.box-offense { border-color: var(--navy-dark); }
.st-header { color: white; padding: 12px; text-align: center; font-weight: bold; font-size: 1.1rem; letter-spacing: 0.05em; }
.st-header-defense { background: #2a85d6; border-radius: 10px 10px 0 0; width: 70%; margin: 25px auto 0 auto; }
.st-header-offense { background: var(--navy-dark); border-radius: 10px 10px 0 0; width: 70%; margin: 25px auto 0 auto; }
.st-content { padding: 25px; display: flex; justify-content: space-between; align-items: center; flex: 1; }
.st-list li { margin-bottom: 12px; font-weight: bold; font-size: 0.95rem; display: flex; align-items: center; }
.st-list li::before { content: ""; display: block; width: 6px; height: 6px; background: #ccc; border-radius: 50%; margin-right: 10px; }
.st-icon { font-size: 3.5rem; opacity: 0.15; padding-right: 15px; }
.strategy-plus { font-size: 2.5rem; color: #ccc; display: flex; align-items: center; justify-content: center; }
.strategy-msg { text-align: center; margin-top: 30px; font-weight: bold; color: var(--navy-dark); }

/* CTA */
.cta-section { background: linear-gradient(135deg, #0a193a 0%, #152c5b 100%); color: white; text-align: center; position: relative; padding: 100px 0; overflow: hidden; }
.cta-title { font-size: 2.2rem; margin-bottom: 25px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 20px; margin: 40px 0; width: 100%; }
.profile-card { background: white; color: var(--text-main); max-width: 650px; margin: 60px auto 0; border-radius: 20px; padding: 40px; display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: left; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
@media(min-width: 768px) { .profile-card { flex-direction: row; } }
.profile-thumb { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid #f0f0f0; }
.role { font-size: 0.85rem; color: var(--gold); font-weight: bold; text-transform: uppercase; letter-spacing: 0.05em; }
.name { font-size: 1.5rem; font-weight: bold; margin-bottom: 15px; font-family: var(--font-serif); }

/* 無料相談フォーム */
.form-wrapper { max-width: 700px; margin: 0 auto; background: white; padding: 40px 30px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #f0f0f0; }
.form-group { margin-bottom: 25px; text-align: left; }
.form-group label { display: block; font-weight: bold; margin-bottom: 10px; color: var(--navy-dark); font-size: 0.95rem; }
.required { background: #e53e3e; color: white; font-size: 0.7rem; padding: 2px 8px; border-radius: 4px; margin-left: 10px; vertical-align: middle; font-weight: normal; }
.form-control { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; font-family: inherit; box-sizing: border-box; transition: 0.3s; background: #fafafa; }
.form-control:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 40px; text-align: center; }
.btn--submit { width: 100%; max-width: 300px; border: none; cursor: pointer; font-size: 1.1rem; padding: 18px 30px; }

.footer { background: #020b1c; color: #666; text-align: center; padding: 30px; font-size: 0.8rem; letter-spacing: 0.05em; }

/* Animations */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-img { transition-delay: 0.5s; }