/*
=================================================================
    *   Template: BizProduce - 1on1 Coaching Program LP
    *   Version: 1.0
    *   Author: Gemini
=================================================================
*/

/* ===================================
    Table of Contents
======================================
    01. General & Variables
    02. Typography
    03. Layout & Container
    04. Components (Buttons, Cards)
    05. Header & Navigation
    06. Hero Section
    07. Empathy Section
    08. Solution Section
    09. Service Section
    10. Strengths Section
    11. Roadmap Section
    12. Price Section
    13. Voice Section
    14. FAQ Section
    15. Profile Section
    16. Scope Section
    17. CTA Section & Form
    18. Footer
    19. Animations & Effects
    20. Responsive Design
======================================*/

/* ===================================
    01. General & Variables
======================================*/
:root {
    /* Primary Colors */
    --primary-blue: #2E86AB;
    --primary-dark: #1E5A7A;
    --primary-light: #4A9BC4;

    /* Secondary Colors */
    --secondary-purple: #A23B72;

    /* Accent Colors */
    --accent-orange: #F18F01;
    --accent-hover: #D67E00;

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-800: #343A40;
    --gray-900: #212529;

    /* Fonts */
    --font-japanese: 'Noto Sans JP', sans-serif;
    --font-english: 'Montserrat', sans-serif;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-9: 4rem;
    --space-11: 6rem;

    /* Shadows */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-japanese);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
    02. Typography
======================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-japanese);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: 2.25rem;
    /* 36px */
    margin-bottom: var(--space-5);
}

.section-subtitle {
    font-size: 1.125rem;
    /* 18px */
    color: var(--gray-600);
    margin-bottom: var(--space-8);
}

p {
    margin-bottom: var(--space-4);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* ===================================
    03. Layout & Container
======================================*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

section {
    padding: var(--space-11) 0;
}

.section-bg {
    background-color: var(--gray-100);
}

.sp-only {
    display: none;
}

/* ===================================
    04. Components (Buttons, Cards)
======================================*/
.btn {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-english);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FFB833 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(var(--accent-orange), 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-orange) 100%);
    box-shadow: 0 6px 25px rgba(var(--accent-orange), 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(var(--primary-blue), 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-ghost:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-sm {
    font-size: 0.875rem;
    padding: var(--space-2) var(--space-4);
}

.btn-lg {
    font-size: 1.125rem;
    padding: var(--space-4) var(--space-8);
}

.card {
    background: var(--white);
    border-radius: 16px;
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

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

/* ===================================
    05. Header & Navigation
======================================*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-4) 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.95);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-english);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo:hover {
    color: var(--gray-900);
}

.logo i {
    color: var(--accent-orange);
    margin-right: var(--space-2);
}

.header-nav ul {
    display: flex;
    list-style: none;
}

.header-nav li {
    margin-left: var(--space-6);
}

.header-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-800);
    position: relative;
    padding: var(--space-1) 0;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-900);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    /* header height */
    left: 0;
    width: 100%;
    background: var(--white);
    padding: var(--space-5);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: var(--space-5);
}

.mobile-menu a {
    display: block;
    font-size: 1.2rem;
    color: var(--gray-800);
    text-align: center;
}

/* ===================================
    06. Hero Section
======================================*/
.hero-section {
    padding-top: 180px;
    padding-bottom: 200px;
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.05) 0%, rgba(162, 59, 114, 0.05) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--secondary-purple), var(--accent-orange));
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: var(--space-5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: var(--space-4);
}

.hero-subcopy {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: var(--space-8);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-5);
    align-items: center;
}

.hero-cta .btn i {
    margin-left: var(--space-2);
    transition: transform 0.3s ease;
}

.hero-cta .btn:hover i {
    transform: translateX(5px);
}

.shape-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.shape-divider path {
    fill: var(--white);
}

/* ===================================
    07. Empathy Section
======================================*/
.empathy-list {
    max-width: 800px;
    margin: 0 auto var(--space-8);
    background: var(--gray-100);
    padding: var(--space-6);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.empathy-list ul {
    list-style: none;
}

.empathy-list li {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
}

.empathy-list li:last-child {
    margin-bottom: 0;
}

.empathy-list i {
    color: var(--primary-blue);
    margin-right: var(--space-4);
    font-size: 1.5rem;
}

.empathy-closing {
    font-size: 1.25rem;
    font-weight: 500;
}

/* ===================================
    08. Solution Section
======================================*/
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-9);
    align-items: center;
}

.solution-text .section-title {
    text-align: left;
}

.solution-text p {
    font-size: 1.125rem;
}

.solution-highlight {
    display: block;
    margin-top: var(--space-6);
    padding: var(--space-5);
    background: var(--gray-100);
    border-radius: 12px;
    font-weight: 500;
    border-left: 5px solid var(--primary-blue);
}

.price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.solution-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* ===================================
    09. Service Section
======================================*/
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.service-cards .card {
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-5);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
}

.card-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-4);
}

.service-cards .card ul {
    list-style: none;
    text-align: left;
    margin-top: var(--space-5);
    color: var(--gray-600);
}

.service-cards .card li {
    margin-bottom: var(--space-2);
    position: relative;
    padding-left: var(--space-5);
}

.service-cards .card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

/* ===================================
    10. Strengths Section
======================================*/
.strength-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-9);
    align-items: center;
    margin-bottom: var(--space-11);
}

.strength-item:last-child {
    margin-bottom: 0;
}

.strength-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.strength-item.reverse .strength-image {
    order: 2;
}

.strength-item.reverse .strength-text {
    order: 1;
}

.strength-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.strength-number {
    font-family: var(--font-english);
    font-weight: 700;
    color: var(--gray-200);
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
    display: block;
}

.strength-title {
    font-size: 2rem;
    margin-bottom: var(--space-5);
}

.strength-example {
    margin-top: var(--space-6);
    padding: var(--space-5);
    background: var(--gray-100);
    border-radius: 12px;
}

.strength-example p {
    margin-bottom: var(--space-3);
}

.strength-example p:last-child {
    margin-bottom: 0;
}

.label-you,
.label-coach {
    display: inline-block;
    padding: var(--space-1) var(--space-2);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: var(--space-2);
}

.label-you {
    background-color: var(--secondary-purple);
}

.label-coach {
    background-color: var(--primary-blue);
}

.strength-result {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--accent-orange);
    margin-top: var(--space-4) !important;
}

.strength-result i {
    margin-right: var(--space-2);
}

/* ===================================
    11. Roadmap Section
======================================*/
.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--gray-200);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: var(--space-4) var(--space-8);
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 60px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 60px;
    text-align: left;
}

/* PC Layout Adjustment for Roadmap */
@media (min-width: 768px) {
    .timeline-item {
        width: 55%;
        /* Increase width to prevent line breaks */
    }

    .timeline-item:nth-child(odd) {
        left: -5%;
        /* Adjust position to center relative to the line */
    }

    .timeline-item:nth-child(even) {
        left: 50%;
    }
}

.timeline-icon {
    position: absolute;
    top: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: 35px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: 35px;
}

.timeline-content {
    padding: var(--space-6);
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-phase {
    font-family: var(--font-english);
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.timeline-title {
    font-size: 1.25rem;
    margin-top: var(--space-2);
}

.timeline-deliverable {
    margin: var(--space-4) 0;
    padding: var(--space-3);
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 0.9rem;
}

.timeline-deliverable p {
    margin: 0;
}

/* ===================================
    12. Price Section
======================================*/
.price-cards {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-6);
    align-items: flex-start;
    margin-bottom: var(--space-9);
    /* Center single card */
    grid-template-columns: 1fr;
    justify-items: center;
}

.price-card {
    border-radius: 16px;
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.price-card.main-plan {
    background: var(--white);
    border-color: var(--primary-blue);
    transform: scale(1.05);
    max-width: 500px;
    /* Limit width for single display */
    width: 100%;
}

.price-card.option-plan {
    background: var(--gray-100);
}

.price-card-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-5);
}

.price-card-title span {
    display: block;
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

.price-tag {
    margin-bottom: var(--space-6);
}

.price-amount {
    font-family: var(--font-english);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-orange);
}

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

.price-features {
    list-style: none;
    margin-bottom: var(--space-6);
    text-align: left;
}

.price-features li {
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
}

.price-features i {
    margin-right: var(--space-3);
    color: var(--primary-blue);
}

.option-plan .price-features i {
    color: var(--accent-orange);
}

.price-flexibility {
    margin: var(--space-6) 0;
    padding: var(--space-4);
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 0.9rem;
}

.main-plan .price-flexibility {
    background: #eff8fc;
}

.benefits-section {
    background: linear-gradient(135deg, rgba(46, 134, 171, 0.1) 0%, rgba(162, 59, 114, 0.1) 100%);
    padding: var(--space-8);
    border-radius: 16px;
    text-align: center;
}

.benefits-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-6);
    color: var(--primary-dark);
}

.benefits-list {
    display: flex;
    justify-content: space-around;
    gap: var(--space-6);
}

.benefit-item {
    max-width: 300px;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: var(--space-4);
}

.benefit-item h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
}

.benefit-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-orange), #ffc567);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===================================
    13. Voice Section
======================================*/
.voice-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.voice-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.voice-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-5);
}

.voice-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: var(--space-5);
    object-fit: cover;
}

.voice-name {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: var(--space-1);
}

.voice-title {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.voice-body p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.voice-before,
.voice-after {
    position: relative;
    padding-left: var(--space-6);
}

.voice-before {
    margin-bottom: var(--space-4);
}

.voice-before strong,
.voice-after strong {
    position: absolute;
    left: 0;
    font-family: var(--font-english);
    color: var(--primary-blue);
}

.voice-after strong {
    color: var(--accent-orange);
}

/* ===================================
    14. FAQ Section
======================================*/
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: var(--space-4);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: var(--space-4) 0;
    cursor: pointer;
    position: relative;
}

.faq-question p {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
}

.faq-q-icon,
.faq-a-icon {
    font-family: var(--font-english);
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: var(--space-5);
}

.faq-q-icon {
    color: var(--primary-blue);
}

.faq-a-icon {
    color: var(--accent-orange);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out, opacity 0.4s ease-out, visibility 0.4s;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    /* Added to hide content when closed */
}

.faq-answer>div {
    overflow: hidden;
    min-height: 0;
}

.faq-answer-content {
    display: flex;
    padding-bottom: var(--space-5);
}

.faq-answer p {
    margin: 0;
    color: var(--gray-600);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
}

/* ===================================
    15. Profile Section
======================================*/
.profile-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-9);
    align-items: center;
    background: var(--white);
    padding: var(--space-9);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.profile-image img {
    width: 100%;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
}

.profile-subtitle {
    font-weight: 700;
    color: var(--primary-blue);
}

.profile-name {
    font-size: 1.6rem;
    /* Reduced from 2rem (0.8x) */
}

.profile-title {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: var(--space-5);
}

.profile-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    font-size: 0.9rem;
}

.profile-achievements span {
    background: var(--gray-100);
    padding: var(--space-2) var(--space-3);
    border-radius: 8px;
}

.profile-achievements i {
    margin-right: var(--space-2);
    color: var(--primary-blue);
}

.profile-message {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-5);
}

/* ===================================
    16. Scope Section
======================================*/
.scope-section {
    background-color: #fff;
}

.scope-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.scope-card {
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    padding: var(--space-6);
    border-radius: 16px;
    text-align: center;
}

.scope-card-icon {
    font-size: 3rem;
    color: var(--secondary-purple);
    margin-bottom: var(--space-5);
}

.scope-card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-4);
}

.scope-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
}

.scope-closing {
    font-size: 1.125rem;
    font-weight: 500;
}

/* ===================================
    17. CTA Section & Form
======================================*/
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.cta-section .section-title,
.cta-section .section-subtitle {
    color: var(--white);
}

.cta-section .cta-note {
    color: rgba(255, 255, 255, 0.7);
}

.cta-button-area {
    text-align: center;
    margin: var(--space-8) 0;
}

.cta-final-message {
    max-width: 700px;
    margin: var(--space-8) auto 0;
    text-align: center;
    font-size: 1.1rem;
    /* Larger font size */
    font-weight: 500;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-6);
}

.cta-final-message p {
    margin-bottom: var(--space-5);
}

.cta-final-message p:last-child {
    margin-bottom: 0;
}


/* ===================================
    18. Footer
======================================*/
.footer {
    background: var(--gray-900);
    color: var(--gray-500);
    padding: var(--space-8) 0;
    text-align: center;
}

.footer-nav {
    margin-bottom: var(--space-5);
}

.footer-nav a {
    color: var(--gray-500);
    margin: 0 var(--space-4);
    font-size: 0.9rem;
}

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

.copyright {
    font-size: 0.8rem;
    margin: 0;
}

/* ===================================
    19. Animations & Effects
======================================*/
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(241, 143, 1, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(241, 143, 1, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(241, 143, 1, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    100% {
        transform: scale(100, 100);
        opacity: 0;
    }
}

.ripple:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}


/* ===================================
    20. Responsive Design
======================================*/
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .service-cards,
    .voice-cards {
        grid-template-columns: 1fr;
    }

    .price-cards {
        grid-template-columns: 1fr;
    }

    .price-card.main-plan {
        transform: scale(1);
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .solution-content,
    .strength-item,
    .strength-item.reverse {
        grid-template-columns: 1fr;
    }

    .strength-item.reverse .strength-image {
        order: 1;
    }

    .strength-item .strength-image {
        margin-bottom: var(--space-6);
    }

    .profile-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-image {
        max-width: 200px;
        margin: 0 auto var(--space-6);
    }

    .profile-image {
        max-width: 200px;
        margin: 0 auto var(--space-6);
    }

    /* .profile-achievements { justify-content: center; } Removed to allow block display */
    .benefits-list {
        flex-direction: column;
        gap: var(--space-6);
    }

    .scope-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }

    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }

    .header-nav,
    .header .btn-sm {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

    section {
        padding: var(--space-9) 0;
    }

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

    .hero-section {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-cta {
        flex-direction: column;
    }

    .roadmap-timeline::after {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        padding-left: 80px;
        padding-right: var(--space-4);
        text-align: left;
    }

    .timeline-item:nth-child(odd) {
        padding-right: var(--space-4);
        text-align: left;
    }

    .timeline-icon,
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 5px;
    }
}


.profile-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
}

/* Profile Achievements Styling */
.profile-achievements {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.profile-achievements span {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--gray-100);
    padding: var(--space-2) var(--space-4);
    border-radius: 8px;
    width: fit-content;
}

@media (max-width: 991px) {
    .profile-achievements {
        align-items: center;
    }
}