/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 80%;
}

:root {
    /* カラーパレット - ブルー・グレー系 */
    --primary-color: #7b87c4;
    --primary-dark: #6a75b3;
    --secondary-color: #6c7b95;
    --success-color: #b19cd9;
    --accent-color: #ffd659;
    --text-dark: #4a4a4a;
    --text-gray: #6c757d;
    --text-light: #95a5a6;
    --bg-primary: #f8fafc;
    --bg-secondary: #f1f5f9;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #e2e8f0;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* タイポグラフィ */
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: 'Inter', sans-serif;
}

body {
    font-family: var(--font-jp);
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 30%, #e2e8f0 70%, #cbd5e1 100%);
    min-height: 100vh;
}

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

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ロゴスタイル */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-main {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
    font-family: var(--font-en);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo-accent {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-en);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.logo-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #7b87c4, #ff7b54);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    animation: float 3s ease-in-out infinite;
}

.logo-icon i {
    font-size: 1.1rem;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-cta {
    background: var(--primary-color) !important;
    color: var(--bg-white) !important;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

/* ヒーローセクション */
.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    text-align: center;
}

.hero-message-image {
    margin-bottom: 2rem;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.hero-message-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-achievements {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    font-weight: 500;
}

.achievement-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

/* セクション共通スタイル */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

/* なぜ伴走支援が必要なのか */
.why-support {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.6);
}

/* 導入メッセージ */
.intro-message {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.intro-message p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-style: italic;
}

.intro-message p:last-child {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
    font-style: normal;
}

/* 失敗要因・成功要因共通スタイル */
.failure-analysis, .success-analysis {
    margin-bottom: 2.5rem;
}

.failure-analysis h3, .success-analysis h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
}

.failure-grid, .success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.failure-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.failure-item:hover {
    transform: translateY(-5px);
}

.failure-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(79, 137, 220, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.failure-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

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

.failure-item p {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* 成功要因スタイル */
.success-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid rgba(177, 156, 217, 0.1);
}

.success-item:hover {
    transform: translateY(-5px);
    border-color: rgba(177, 156, 217, 0.3);
}

.success-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(177, 156, 217, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-icon i {
    font-size: 1.2rem;
    color: #b19cd9;
}

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

.success-item p {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* 料金プラン */
.plans {
    padding: 4rem 0;
    background-image: url('../images/intro-blue-sky.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.plan-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2rem;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.recommended {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

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

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-gray);
}

.plan-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plan-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-gray);
}

.plan-duration {
    color: var(--text-gray);
    font-weight: 500;
}

.plan-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-dark);
}

.plan-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.plan-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.plan-target {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 1.25rem;
    margin-bottom: 2rem;
}

.plan-target p {
    margin-bottom: 0.5rem;
}

.plan-target p:last-child {
    margin-bottom: 0;
    color: var(--text-gray);
}

.btn-plan {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    padding: 1rem;
    border-radius: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.recommended .btn-plan {
    background: var(--accent-color);
}

.recommended .btn-plan:hover {
    background: #e85a3f;
}

/* プロフィールセクション */
.profile {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.6);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-image {
    position: relative;
    text-align: center;
}

.profile-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
}

.profile-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #e60000;
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 120px;
}

.forbes-logo {
    width: 80px;
    height: auto;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}

.badge-text {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.profile-text {
    padding-left: 2rem;
}

.profile-name {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.profile-titles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.profile-title {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    width: fit-content;
}

.profile-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.profile-description p {
    margin-bottom: 1.5rem;
}

.profile-description strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* 実績セクション */
.achievements {
    padding: 4rem 0;
    background-image: url('../images/intro-blue-sky.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 2.5rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
}

.achievement-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(79, 137, 220, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.achievement-card.highlight .achievement-icon {
    background: rgba(255, 255, 255, 0.2);
}

.achievement-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.achievement-card.highlight .achievement-icon i {
    color: var(--bg-white);
}

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

.achievement-card.highlight h3 {
    color: var(--bg-white);
}

.achievement-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.achievement-card.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.achievement-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.achievement-link:hover {
    background: var(--primary-color);
    color: white;
}

.achievement-card.highlight .achievement-link {
    color: white;
    border-color: white;
}

.achievement-card.highlight .achievement-link:hover {
    background: rgba(255, 255, 255, 0.6);
    color: var(--primary-color);
}

/* 支援実績セクション */
.projects {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.projects-description {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.project-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image-photo {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.project-brand {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.project-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(79, 137, 220, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.project-status.success {
    background: var(--success-color);
    color: white;
}

.project-content {
    padding: 2rem;
}

.project-category {
    display: inline-block;
    background: rgba(79, 137, 220, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.project-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.project-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    justify-content: space-between;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 2rem;
    background: transparent;
}

.project-link:hover {
    background: var(--primary-color);
    color: white;
}

.projects-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2rem;
    box-shadow: var(--shadow-md);
}

.projects-cta p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* 申し込みフォーム */
.contact {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.6);
}

.contact-description {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.google-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-instruction {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.instruction-content i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.instruction-content p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.google-form-wrapper {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 2.5rem;
}



.contact-info {
    background: var(--bg-secondary);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.contact-method h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Google Forms埋め込み用スタイル */
.google-form-wrapper {
    position: relative;
    overflow: hidden;
}

.google-form-wrapper iframe {
    width: 100%;
    height: 1200px;
    border: none;
    border-radius: 1rem;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .google-form-wrapper iframe {
        height: 1300px; /* モバイルでは少し高めに設定 */
    }
}




/* レスポンシブデザイン */
@media (max-width: 768px) {
    /* モバイルでのロゴ調整 */
    .logo {
        gap: 0.5rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-accent {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .logo-icon i {
        font-size: 0.9rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-message-image {
        width: 100vw;
        margin-left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-achievements {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .achievement-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .achievement-item i {
        font-size: 0.9rem;
    }
    
    .achievement-item span {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .failure-grid, .success-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    .failure-item, .success-item {
        padding: 1rem 0.8rem;
    }
    
    .failure-item h4, .success-item h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .failure-item p, .success-item p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .failure-icon, .success-icon {
        width: 2.2rem;
        height: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .failure-icon i, .success-icon i {
        font-size: 1rem;
    }
    
    .intro-message {
        padding: 2rem 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .intro-message p {
        font-size: 1rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .plan-card.recommended {
        transform: none;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .instruction-content {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-achievements {
        gap: 0.5rem;
    }
    
    .achievement-item {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .achievement-item i {
        font-size: 0.8rem;
    }
    
    .achievement-item span {
        font-size: 0.7rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .failure-grid, .success-grid {
        gap: 0.5rem;
    }
    
    .failure-item, .success-item {
        padding: 0.8rem 0.5rem;
    }
    
    .failure-item h4, .success-item h4 {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .failure-item p, .success-item p {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .failure-icon, .success-icon {
        width: 1.8rem;
        height: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .failure-icon i, .success-icon i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    
    .failure-item {
        padding: 1.25rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .project-stats {
        gap: 0.75rem;
        flex-direction: column;
    }
    
    .stat-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .projects-cta {
        padding: 2rem 1.5rem;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .profile-text {
        padding-left: 0;
    }
    
    .profile-name {
        font-size: 2.5rem;
    }
    
    .profile-badge {
        position: static;
        margin: 2rem auto 0;
        display: inline-block;
    }
}