:root {
  /* 未来の履歴書 カラーパレット */
  --color-base-white: #FFFFFF;
  --color-base-dark: #1C1C1E;
  --color-text-light: #262626;
  --color-text-dark: #FFFFFF;
  --color-accent-orange: #FF5C00;
  --color-accent-red: #FF4D4F;
  --color-sub-light: #F5F5F5;
  --color-sub-gray: #8C8C8C;
  --color-brand-blue: #0066CC;
  
  /* フォント設定 */
  --font-family-base: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --font-hand: 'Playfair Display', serif;
  
  /* シャドウシステム - 階層的な深度表現 */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-float: 0 20px 40px rgba(0, 0, 0, 0.08); /* SmartCard Hover */
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  
  /* 色温度調整 - 前景暖かめ、背景冷ため */
  --color-warm-white: #FFFCF8;
  --color-cool-gray: #F7F8FA;
  
  /* 微細なノイズテクスチャ */
  --texture-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  
  /* フォントサイズ・ウェイト */
  --font-size: 16px;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-black: 900;
}

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

html { scroll-behavior: smooth; font-size: var(--font-size); }

body { background-color: var(--color-cool-gray); color: var(--color-text-light); font-family: var(--font-family-base); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; height: auto; }

/* Background Textures */
.fixed-bg-texture { position: fixed; top: 0; left: 0; right: 0; bottom: 0; opacity: 0.025; pointer-events: none; z-index: 0; background-image: var(--texture-noise); }

/* Layout Utilities */
.main-content { background-color: var(--color-base-white); position: relative; width: 100%; margin: 0; box-shadow: none; }
.container { width: 100%; padding: 0 1.5rem; max-width: 1200px; margin: 0 auto; position: relative; z-index: 10; }
.container-fw { width: 100%; padding: 0 1.5rem; max-width: 1440px; margin: 0 auto; }
.section { padding: 4rem 0; position: relative; overflow: hidden; }

/* Grid / Flex */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-align { display: flex; align-items: center; }

@media (min-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
    .section { padding: 8rem 0; }
    .container, .container-fw { padding: 0 4rem; }
}

/* Theme Utilities */
.dark-bg { background-color: var(--color-base-dark); color: var(--color-text-dark); }
.white-bg { background-color: var(--color-base-white); color: var(--color-text-light); }
.bg-light-gray { background-color: var(--color-sub-light); }
.text-center { text-align: center; }

/* ====== Components ====== */

/* 1. Typography */
.section-title { font-size: 2rem; font-weight: var(--font-weight-black); line-height: 1.3; letter-spacing: -0.01em; position: relative; }
@media (min-width: 768px) { .section-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3.5rem; } }

.border-orange { padding-left: 2rem; }
.border-orange::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; border-radius: 4px; background-color: var(--color-accent-orange); }

.border-blue.text-right-border { padding-right: 2rem; text-align: right; }
.border-blue.text-right-border::after { content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 4px; border-radius: 4px; background-color: var(--color-brand-blue); }

.section-subtitle { font-size: 1.125rem; color: var(--color-sub-gray); margin-top: 1rem; }

/* 2. Badge */
.badge { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: var(--font-weight-bold); border: 1px solid transparent; }
.badge-orange { background-color: rgba(255, 92, 0, 0.1); color: var(--color-accent-orange); border-color: rgba(255, 92, 0, 0.2); font-size: 0.875rem; padding: 0.5rem 1.25rem; }
.badge-blue { background-color: rgba(0, 102, 204, 0.1); color: var(--color-brand-blue); border-color: rgba(0, 102, 204, 0.2); font-size: 0.875rem; padding: 0.5rem 1.25rem; }
.badge-gray { background-color: var(--color-sub-light); color: var(--color-sub-gray); border-color: rgba(140, 140, 140, 0.2); }
.badge-solid-orange { background-color: var(--color-accent-orange); color: var(--color-base-white); }

/* 3. SmartButton (Refined) */
.smart-btn {
    position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    font-weight: var(--font-weight-bold); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; text-align: center; width: 100%; border-radius: 9999px; z-index: 1;
}
@media (min-width: 768px) { .smart-btn { width: auto; } }

.btn-lg { padding: 1.25rem 2.5rem; font-size: 1.125rem; } .btn-xl { padding: 1.25rem 3rem; font-size: 1.25rem; }
.btn-px-16 { padding-left: 4rem; padding-right: 4rem; }

.btn-primary { background: linear-gradient(135deg, #FF5C00 0%, #E04F00 100%); color: var(--color-base-white); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 8px 20px rgba(255, 92, 0, 0.4), 0 2px 6px rgba(255, 92, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.btn-secondary { background: linear-gradient(135deg, #0066CC 0%, #0055B8 100%); color: var(--color-base-white); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4), 0 2px 6px rgba(0, 102, 204, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
.btn-outline { background-color: transparent; border: 2px solid currentColor; color: var(--color-base-white); border-radius: 9999px; backdrop-filter: blur(4px); }
.btn-outline:hover { background-color: rgba(255,255,255,0.1); color: var(--color-base-white); }
.smart-btn:not(.btn-outline):hover { transform: scale(1.03) translateY(-3px); }
.smart-btn:active { transform: scale(0.97); }

/* Button effects */
.btn-text { position: relative; z-index: 10; }
.btn-gloss { position: absolute; top: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent); pointer-events: none; border-radius: 9999px; }
.btn-hover-effect { position: absolute; inset: 0; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); transform: translateX(-100%); transition: transform 0.6s ease; z-index: 0; }
.smart-btn:hover .btn-hover-effect { transform: translateX(100%); }

/* 4. SmartCard (Refined) */
.smart-card { border-radius: 1rem; padding: 2rem; transition: all 0.3s ease; }
.smart-card.light { background-color: var(--color-base-white); border: 1px solid var(--color-sub-light); color: var(--color-text-light); }
.smart-card.glass { background-color: rgba(255,255,255,0.8); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.2); color: var(--color-text-light); }
/* smart-card:hover を削除 */

/* 5. StatCard */
.stat-card { background-color: var(--color-base-white); border-radius: 0.75rem; padding: 1.5rem; border: 1px solid var(--color-sub-light); transition: none; }
/* stat-card:hover を削除 */
.stat-label { font-size: 0.875rem; color: var(--color-sub-gray); font-weight: var(--font-weight-medium); }
.stat-val { font-size: 3rem; font-weight: var(--font-weight-black); line-height: 1; }
.stat-unit { font-size: 1.25rem; font-weight: var(--font-weight-medium); color: var(--color-sub-gray); }

/* ====== Layout Details ====== */

/* Background Texts */
.bg-text-reality { position: absolute; top: 10rem; left: 50%; transform: translateX(-50%); font-family: var(--font-family-base); font-size: 15vw; font-weight: var(--font-weight-black); line-height: 1; color: var(--color-base-dark); opacity: 0.015; pointer-events: none; user-select: none; white-space: nowrap; }
.bg-text-proof { position: absolute; top: 5rem; left: 5%; font-family: var(--font-family-base); font-size: 12vw; font-weight: var(--font-weight-black); color: var(--color-base-white); opacity: 0.05; pointer-events: none; user-select: none; }
.bg-text-how { position: absolute; top: 8rem; right: 5%; font-family: var(--font-family-base); font-size: 15vw; font-weight: var(--font-weight-black); color: var(--color-brand-blue); opacity: 0.03; pointer-events: none; user-select: none; }
.bg-text-start { position: absolute; bottom: 5rem; right: 5%; font-family: var(--font-family-base); font-size: 15vw; font-weight: var(--font-weight-black); color: var(--color-base-white); opacity: 0.05; pointer-events: none; user-select: none; }
@media (min-width: 1440px) {
    .bg-text-reality { font-size: 20rem; } .bg-text-proof { font-size: 12.5rem; } .bg-text-how { font-size: 17.5rem; top: 5rem; } .bg-text-start { font-size: 15rem; }
}

/* Glows */
.hero-glow, .reality-glow, .turning-glow, .mechanism-glow, .cta-glow { position: absolute; filter: blur(120px); pointer-events: none; border-radius: 50%; }
.hero-glow { top: 0; left: 50%; transform: translateX(-50%); width: 1000px; height: 1000px; background: radial-gradient(circle, rgba(255, 92, 0, 0.3) 0%, rgba(255, 77, 79, 0.2) 40%, transparent 70%); opacity: 0.2; }
.reality-glow { top: 0; right: 0; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0, 102, 204, 0.3) 0%, transparent 70%); opacity: 0.05; }
.turning-glow { bottom: 0; right: 0; width: 800px; height: 800px; background: radial-gradient(circle, rgba(255, 77, 79, 0.3) 0%, rgba(255, 92, 0, 0.2) 40%, transparent 70%); opacity: 0.15; }
.mechanism-glow { top: 5rem; left: 0; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255, 92, 0, 0.2) 0%, transparent 70%); opacity: 0.05; filter: blur(100px); }
.cta-glow { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(255, 92, 0, 0.3) 0%, rgba(255, 77, 79, 0.2) 40%, transparent 70%); opacity: 0.15; }

/* 0. Announce */
.announcement-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background-color: var(--color-base-dark); color: var(--color-base-white); padding: 0.75rem 0; font-size: 0.875rem; }
.announcement-bar .announcement-text { font-weight: var(--font-weight-medium); }
.announcement-bar .announcement-link { color: var(--color-accent-orange); font-weight: var(--font-weight-bold); display: inline-flex; align-items: center; gap: 0.25rem; }
.announcement-bar .announcement-link:hover { text-decoration: underline; }
@media (max-width: 640px) { .announcement-bar .flex-between { flex-direction: column; gap: 0.5rem; text-align: center; } }

/* 1. Hero */
.hero-section { min-height: 100vh; padding-top: 6rem; display: flex; align-items: center; }
.hero-bg-text { position: absolute; top: 5rem; right: -2rem; font-family: var(--font-family-base); font-weight: var(--font-weight-black); font-size: 8rem; line-height: 1; color: var(--color-base-white); opacity: 0.05; pointer-events: none; user-select: none; }
@media (min-width: 1024px) { .hero-bg-text { font-size: 17.5rem; right: 5rem; top: 8rem; } }

.trust-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 9999px; padding: 0.5rem 1.25rem; margin-bottom: 1.5rem; color: rgba(255,255,255,0.9); font-size: 0.8125rem; font-weight: var(--font-weight-medium); }
@media (min-width: 768px) { .trust-badge { font-size: 0.875rem; margin-bottom: 2rem; } }
.icon-orange { color: var(--color-accent-orange); }
.hero-title { font-size: 2.25rem; font-weight: var(--font-weight-black); line-height: 1.25; letter-spacing: 0.02em; margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; margin-bottom: 2rem; } }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.8; max-width: 36rem; margin-bottom: 2rem; font-weight: var(--font-weight-medium); }
@media (min-width: 1024px) { .hero-desc { font-size: 1.25rem; margin-bottom: 2.5rem; } }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-cta-group { display: flex; flex-direction: column; gap: 1rem; max-width: 400px; }
@media (min-width: 640px) { .hero-cta-group { flex-direction: row; max-width: none; } }

/* Hero Mockup */
.mockup-frame { 
    width: 280px; 
    max-width: 90vw;
    height: auto; 
    margin: 0 auto; 
    display: block;
    position: relative;
}
@media (min-width: 1024px) { 
    .mockup-frame { width: 320px; } 
}
.mockup-screen {
    position: relative;
    background-color: var(--color-base-white);
    overflow: hidden;
    height: 100%;
}
.mockup-img {
    display: block;
    width: 100%;
    height: auto;
}
.mockup-notch { display: none; } /* 画像自体にノッチが含まれているため非表示 */
.mockup-glow { background: radial-gradient(circle, rgba(255,92,0,0.3) 0%, transparent 70%); filter: blur(60px); }

/* Scroll Hint */
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
.scroll-mouse { width: 1.75rem; height: 3rem; border: 2px solid rgba(255,255,255,0.3); border-radius: 9999px; display: flex; justify-content: center; padding-top: 0.5rem; }
.scroll-mouse::before { content:''; width: 0.375rem; height: 0.75rem; background-color: var(--color-base-white); border-radius: 9999px; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); } 40% { transform: translate(-50%, -10px); } 60% { transform: translate(-50%, -5px); } }

/* 2. Reality */
.reality-section .smart-card h3 { font-size: 1.75rem; font-weight: var(--font-weight-bold); margin-bottom: 1.5rem; color: var(--color-base-dark); line-height: 1.4; }
@media (min-width: 1024px) { .reality-section .smart-card h3 { font-size: 2.25rem; } }
.reality-section .smart-card p { color: var(--color-sub-gray); font-size: 1rem; line-height: 1.8; }
.reality-conclusion { font-size: 1.25rem; font-weight: var(--font-weight-bold); color: var(--color-base-dark); background: linear-gradient(135deg, rgba(255,92,0,0.1) 0%, rgba(255,92,0,0) 100%); padding: 1.5rem 2rem; border-radius: 1rem; display: inline-block; }

/* 3. Turning Point */
.turning-title { font-size: 2.5rem; font-weight: var(--font-weight-black); line-height: 1.2; letter-spacing: 0.02em; margin-bottom: 2rem; }
@media (min-width: 1024px) { .turning-title { font-size: 4rem; } }
.turning-desc { font-size: 1.125rem; color: rgba(255,255,255,0.7); line-height: 2; max-width: 48rem; margin: 0 auto 3rem auto; }
.turning-highlight { background: linear-gradient(135deg, rgba(255,92,0,0.2) 0%, rgba(255,77,79,0.2) 100%); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1); border-radius: 1.5rem; padding: 2rem; max-width: 50rem; margin: 0 auto; font-size: 1.25rem; font-weight: var(--font-weight-bold); line-height: 1.8; color: var(--color-base-white); }
@media (min-width: 1024px) { .turning-highlight { font-size: 1.5rem; padding: 2.5rem 3rem; } }

/* 4. Mechanism */
.mechanism-steps { display: flex; flex-direction: column; gap: 3rem; position: relative; }
.step-item { display: flex; gap: 1rem; position: relative; z-index: 10; }
@media (min-width: 768px) { .step-item { gap: 1.5rem; } }
.step-num { flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 50%; background-color: var(--color-brand-blue); color: var(--color-base-white); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: var(--font-weight-black); border: 4px solid var(--color-base-white); box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.2); }
@media (min-width: 768px) { .step-num { width: 3rem; height: 3rem; font-size: 1.25rem; } }
.step-content h3 { font-size: 1.125rem; font-weight: var(--font-weight-bold); margin-top: 0; margin-bottom: 0.5rem; color: var(--color-base-dark); }
@media (min-width: 768px) { .step-content h3 { font-size: 1.25rem; margin-top: 0.25rem; margin-bottom: 0.75rem; } }
.step-content p { color: var(--color-sub-gray); font-size: 0.9375rem; line-height: 1.7; }

/* Score Card Mockup */
.score-card-mockup { background-color: var(--color-base-dark); border: 1px solid rgba(255,255,255,0.1); border-radius: 1.5rem; padding: 2rem; color: var(--color-base-white); box-shadow: var(--shadow-2xl); position: relative; overflow: hidden; }
.score-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.user-info { display: flex; align-items: center; gap: 1rem; }
.avatar { width: 3rem; height: 3rem; border-radius: 50%; background: linear-gradient(135deg, var(--color-brand-blue) 0%, #60A5FA 100%); }
.user-info .name { font-weight: var(--font-weight-bold); font-size: 1.125rem; }
.user-info .title { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.score-overall { font-size: 3.5rem; font-weight: var(--font-weight-black); color: var(--color-brand-blue); line-height: 1; font-family: 'Inter', sans-serif; text-shadow: 0 0 30px rgba(0, 102, 204, 0.6); }
.score-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.score-item { display: flex; flex-direction: column; gap: 0.25rem; }
.score-item .label { font-size: 0.875rem; color: rgba(255,255,255,0.5); font-weight: var(--font-weight-medium); }
.score-item .value { font-size: 2rem; font-weight: var(--font-weight-bold); font-family: 'Inter', sans-serif; }
.score-item .unit { font-size: 1rem; margin-left: 0.25rem; color: rgba(255,255,255,0.5); }

/* 5. Internships */
.company-name { font-size: 0.875rem; color: var(--color-sub-gray); margin-bottom: 0.5rem; }
.job-title { font-size: 1.25rem; font-weight: var(--font-weight-bold); color: var(--color-text-light); margin-bottom: 1.5rem; }
.job-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.meta-item { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; color: var(--color-sub-gray); font-weight: var(--font-weight-medium); }
.job-rate { font-size: 1.125rem; font-weight: var(--font-weight-bold); color: var(--color-text-light); margin-bottom: 1.5rem; }
.job-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* 6. Testimonials */
.testimonial-bg-image { position: absolute; inset: 0; opacity: 0.05; background-image: url('https://images.unsplash.com/photo-1741119245420-1b6f80a49c42?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w3Nzg4Nzd8MHwxfHNlYXJjaHwxfHx5b3VuZyUyMHByb2Zlc3Npb25hbCUyMHdvcmtpbmclMjBsYXB0b3AlMjBuYXR1cmFsJTIwbGlnaHR8ZW58MXx8fHwxNzczMTE0MDE2fDA&ixlib=rb-4.1.0&q=80&w=1080'); background-size: cover; background-position: center; mix-blend-mode: multiply; filter: grayscale(100%); pointer-events: none; }
.testimo-card { z-index: 10; position: relative; }
.testimo-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.testimo-avatar { width: 3rem; height: 3rem; border-radius: 50%; background-color: var(--color-sub-light); border: 1px solid #E5E5E5; display: flex; align-items: center; justify-content: center; font-weight: var(--font-weight-black); color: var(--color-sub-gray); font-size: 0.875rem; flex-shrink: 0; }
.testimo-name { font-weight: var(--font-weight-bold); font-size: 1.125rem; color: var(--color-text-light); }
.testimo-uni { font-size: 0.875rem; color: var(--color-sub-gray); }
.ml-auto { margin-left: auto; }
.testimo-score { text-align: right; }
.score-val { font-size: 1.5rem; font-weight: var(--font-weight-black); color: var(--color-accent-orange); display: block; line-height: 1; }
.score-label { font-size: 0.75rem; color: var(--color-sub-gray); }
.testimo-comment { font-size: 1rem; color: var(--color-text-light); line-height: 1.8; margin-bottom: 1.5rem; font-weight: var(--font-weight-medium); }
.testimo-meta { font-size: 0.875rem; color: var(--color-brand-blue); font-weight: var(--font-weight-bold); }

.social-proof { background-color: var(--color-base-white); border-radius: 2rem; padding: 4rem 2rem; margin-top: 4rem; text-align: center; border: 1px solid var(--color-sub-light); box-shadow: var(--shadow-xl); }
.social-proof-title { font-size: 0.875rem; color: var(--color-sub-gray); font-weight: var(--font-weight-bold); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3rem; }

/* 7. FAQ */
.faq-q { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.faq-icon { color: var(--color-brand-blue); flex-shrink: 0; margin-top: 0.25rem; }
.faq-q h3 { font-size: 1.125rem; font-weight: var(--font-weight-bold); color: var(--color-text-light); }
.faq-a { font-size: 0.9375rem; color: var(--color-sub-gray); line-height: 1.8; padding-left: 2.5rem; }

/* 8. CTA Section */
.cta-icon-wrapper { width: 5rem; height: 5rem; border-radius: 50%; background: linear-gradient(135deg, var(--color-accent-orange) 0%, var(--color-accent-red) 100%); display: flex; align-items: center; justify-content: center; margin: 0 auto 2.5rem auto; box-shadow: 0 10px 20px rgba(255, 92, 0, 0.4); }
.cta-title { font-size: 3rem; font-weight: var(--font-weight-black); line-height: 1.2; letter-spacing: 0.02em; margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .cta-title { font-size: 4rem; } }
.cta-desc { font-size: 1.25rem; color: rgba(255,255,255,0.9); line-height: 2; margin-bottom: 1rem; font-weight: var(--font-weight-medium); }
.cta-italic { font-size: 1rem; color: rgba(255,255,255,0.6); font-style: italic; font-family: var(--font-hand); margin-bottom: 3rem; }
.cta-group-main { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; margin-bottom: 3rem; }
@media (min-width: 640px) { .cta-group-main { flex-direction: row; } }
.cta-guarantees { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .cta-guarantees { flex-direction: row; justify-content: center; gap: 2rem; } }
.guarantee-item { display: flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); font-weight: var(--font-weight-medium); }
.g-icon { width: 1.25rem; height: 1.25rem; border-radius: 50%; background-color: var(--color-accent-orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Footer */
.footer { background-color: var(--color-base-dark); color: rgba(255,255,255,0.6); padding: 5rem 0 3rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-logo { font-size: 2rem; font-weight: var(--font-weight-bold); color: var(--color-base-white); font-family: var(--font-serif); margin-bottom: 1.5rem; }
.footer-desc { font-size: 0.875rem; margin-bottom: 3rem; line-height: 1.8; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; justify-content: center; gap: 2rem; font-size: 0.875rem; margin-bottom: 2rem; }
.footer-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--color-base-white); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* Animations - Intersection Observer classes */
.fade-in-section { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); will-change: opacity, transform; }
.fade-in-section.is-visible { opacity: 1; transform: none; }
.stagger-item { opacity: 0; transform: translateY(30px); transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.is-visible .stagger-item { opacity: 1; transform: none; }
.is-visible .stagger-item:nth-child(1) { transition-delay: 0.1s; }
.is-visible .stagger-item:nth-child(2) { transition-delay: 0.2s; }
.is-visible .stagger-item:nth-child(3) { transition-delay: 0.3s; }
.is-visible .stagger-item:nth-child(4) { transition-delay: 0.4s; }
.is-visible .stagger-item:nth-child(5) { transition-delay: 0.5s; }
