/* =========================================
   KANMO Landing Page Styles
   Inspired by payme.tokyo design
   ========================================= */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - KANMO Brand (v5.0 - New Warm Color Scheme) */
    --primary-color: #ed9455;
    /* Main warm orange */
    --primary-light: #FFBB70;
    /* Light peachy orange */
    --primary-lighter: #FFEC9E;
    /* Lighter  yellow-orange */
    --primary-lightest: #FFFBDA;
    /* Lightest cream */
    --secondary-blue: #4A99DE;
    /* Blue accent */
    --secondary-light-blue: #8BBDEA;
    /* Light blue */

    /* Legacy color mappings for compatibility */
    --primary-orange: #ED9455;
    --blue-1: #4A99DE;
    --blue-2: #8BBDEA;
    --blue-3: #123D63;
    --accent-orange: #ED9455;
    --border-gray: #E0E0E0;
    --text-gray: #666;

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-color: #333333;

    /* Gradients changed to solid colors per user feedback */
    --gradient-hero: #FFBB70;
    /* Solid peachy orange for hero */
    --gradient-cta: #ED9455;
    /* Solid main orange for CTA */

    /* Typography */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px);
    --container-padding: clamp(20px, 5vw, 40px);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section Base */
.section {
    padding: var(--section-padding) 0;
}

.section:nth-child(even) {
    background-color: var(--light-gray);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    /* Changed to black */
    line-height: 1.3;
    font-weight: 700;
}

.section__title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
    color: var(--text-color);
}

.section__title--white {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: var(--font-primary);
}

.btn-primary {
    background: #4A99DE;
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: 2px solid #4A99DE;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
    color: #4A99DE;
}


.btn-secondary {
    background: var(--white);
    color: var(--blue-1);
    border: 2px solid var(--primary-blue);
}

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

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
}

/* =========================================
   HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px var(--container-padding);
}

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

.header__logo a {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-secondary);
}

.header__company {
    font-size: 13px;
    color: var(--dark-gray);
    font-weight: 400;
}

.header__company a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.header__company a:hover {
    text-decoration: underline;
}

.header__nav {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav__link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--blue-1);
}

.header__cta {
    padding: 10px 24px;
}

.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.header__menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ed9455;
    border-radius: 2px;
    transition: var(--transition);
}

/* Hide mobile menu CTA button on desktop */
.header__nav .btn-primary {
    display: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header__logo a {
        font-size: 22px;
    }

    .header__menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .header__menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header__menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .header__menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .header__nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav__item {
        width: 100%;
        border-bottom: 1px solid var(--medium-gray);
    }

    .nav__link {
        display: block;
        padding: 16px 0;
        width: 100%;
    }

    .header__cta {
        display: none;
    }

    /* CTA button inside mobile menu */
    .header__nav .btn-primary {
        display: inline-block;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
}

/* Mobile overlay */
@media (max-width: 768px) {
    .mobile-overlay {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        pointer-events: none;
    }

    .mobile-overlay.active {
        display: block !important;
        pointer-events: auto;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    background: var(--gradient-hero);
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    color: var(--white);
}

.hero__title {
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #333333;
}

.hero__subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #333333;
}

.hero__cta {
    margin-bottom: 40px;
}

.hero__cta-note {
    font-size: 14px;
    margin-top: 12px;
    opacity: 0.9;
}

.hero__trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.trust-icon {
    font-size: 20px;
}

.trust-text {
    font-size: 14px;
}

.hero__image-placeholder {
    width: 100%;
    overflow: hidden;
    background-color: var(--gradient-hero);
    line-height: 0;
    border-radius: var(--radius-md);
    position: relative;
    /* Ensure absolute positioning works for ::after */
}

/* Create a border overlay that sits ON TOP of the video to mask black edge lines */
.hero__image-placeholder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gradient-hero);
    /* Matches background to mask edges */
    border-radius: var(--radius-md);
    /* Matches container shape */
    box-sizing: border-box;
    z-index: 5;
    /* Ensure it sits above the video */
    pointer-events: none;
    /* Let clicks pass through */
}

.hero__image-placeholder video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: none;
    /* Removed scaling */
    background-color: transparent;
}


.hero__image-placeholder svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Ensure hero images fit within placeholder */
.hero__image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem {
    background: var(--light-gray);
}

.problem__checklist {
    max-width: 800px;
    margin: 0 auto 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.check-icon {
    font-size: 24px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.check-text {
    font-size: 16px;
    line-height: 1.6;
}

.problem__message {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.problem__message h3 {
    font-size: clamp(22px, 4vw, 28px);
    color: var(--blue-1);
    margin-bottom: 24px;
}

.problem__message p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
}

.message-highlight {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-1);
    margin-top: 32px;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features {
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.feature-card__icon {
    margin-bottom: 24px;
}

.feature-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-1);
    margin-bottom: 16px;
    line-height: 1.5;
}

.feature-card__description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

/* =========================================
   COMPARISON TABLE
   ========================================= */
.comparison {
    background: var(--light-gray);
}

.comparison__table-wrapper {
    overflow-x: auto;
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison__table th,
.comparison__table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.comparison__table th {
    background: #666;
    color: var(--white);
    font-weight: 700;
    text-align: center;
}

.comparison__table th.highlight {
    background: var(--primary-color);
}

.comparison__table td.highlight {
    background: rgba(222, 143, 74, 0.1);
    font-weight: 600;
    color: var(--blue-1);
}

.comparison__table tbody tr:last-child td {
    border-bottom: none;
}

/* Black text for non-KANMO columns */
.comparison__table td:not(.highlight) {
    color: #000 !important;
}

.comparison__note {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    padding: 0 20px;
}

/* =========================================
   SERVICE SECTION
   ========================================= */
.service {
    background: var(--white);
}

.journey {
    margin-bottom: 80px;
}

.journey__title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--blue-1);
    margin-bottom: 40px;
}

.journey__map {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.journey__step {
    background: var(--white);
    padding: 24px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 120px;
    transition: var(--transition);
}

.journey__step:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.journey__number {
    width: 40px;
    height: 40px;
    background: var(--gradient-cta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 12px;
}

.journey__label {
    font-size: 16px;
    font-weight: 700;
    color: var(--blue-1);
    margin-bottom: 8px;
}

.journey__description {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.6;
}

.journey__arrow {
    font-size: 24px;
    color: var(--secondary-light-blue);
    font-weight: 700;
}

.plans__title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--blue-1);
    margin-bottom: 16px;
}

.plans__description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.plan-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 2px solid var(--medium-gray);
    transition: var(--transition);
}

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

.plan-card--featured {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(222, 143, 74, 0.05) 0%, rgba(185, 105, 34, 0.05) 100%);
}

.plan-card__name {
    font-size: 22px;
    font-weight: 700;
    color: var(--blue-1);
    margin-bottom: 16px;
}

.plan-card__description {
    font-size: 15px;
    line-height: 1.8;
}

.plans__note {
    text-align: center;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.plans__cta {
    text-align: center;
}

/* =========================================
   CASE STUDIES
   ========================================= */
.case-studies {
    background: var(--light-gray);
}

.case-studies__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.case-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.case-card__header {
    background: var(--gradient-hero);
    padding: 24px;
    color: var(--white);
}

.case-card__title {
    font-size: 20px;
    font-weight: 700;
}

.case-card__body {
    padding: 30px;
}

.case-section {
    margin-bottom: 24px;
}

.case-section__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.case-section ul {
    list-style: none;
    padding-left: 0;
}

.case-section li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.case-section li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-light-blue);
    font-weight: 700;
}

.case-results {
    display: grid;
    gap: 16px;
}

.result-item {
    background: var(--light-gray);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.result-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-1);
    margin-bottom: 4px;
}

.result-label {
    font-size: 13px;
    color: var(--text-color);
}

.case-quote {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-orange);
    font-size: 14px;
    line-height: 1.8;
    margin-top: 20px;
}

.quote-author {
    display: block;
    margin-top: 8px;
    font-weight: 700;
    font-style: normal;
}

/* =========================================
   SERVICE FLOW
   ========================================= */
.flow {
    background: var(--white);
}

.flow__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.flow-step {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.flow-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.flow-step__number {
    display: flex;
    background: var(--gradient-cta);
    color: var(--white);
    width: 70px;
    height: 42px;
    border-radius: 21px;
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto 16px;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.flow-step__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.flow-step__description {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-color);
}

.flow-step__arrow {
    display: none;
}

@media (max-width: 1024px) {
    .flow__steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .flow__steps {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* =========================================
   CTA MID SECTION - Banner Style
   ========================================= */
.cta-mid {
    background: linear-gradient(135deg, #ED9455 0%, #FFBB70 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-mid::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-mid .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-mid__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: #333333;
    margin-bottom: 24px;
    line-height: 1.3;
    text-shadow: none;
}

.cta-mid__text {
    font-size: clamp(16px, 2vw, 20px);
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.8;
}

.cta-mid__button {
    margin-top: 32px;
}



/* =========================================
   FAQ SECTION
   ========================================= */
.faq {
    background: var(--light-gray);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    /* ← 追加 */
    flex-direction: column;
    /* ← 追加：縦並び */
}

.faq-item__question {
    width: 100%;
    display: flex;
    flex-direction: row;
    /* 既に追加済み */
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    transition: var(--transition);
    font-family: var(--font-primary);
    gap: 20px;
    /* 既に追加済み */
}

.faq-item__question>span:first-child {
    flex: 1;
    /* 既に追加済み */
    text-align: left;
}

/* 質問テキスト部分 - 追加 */
.faq-item__question>span:first-child {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.faq-item__question:hover {
    background: var(--light-gray);
}

.faq-item__icon {
    font-size: 24px;
    color: var(--accent-orange);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: auto;
    /* ← 追加：常に右端に配置 */
}

.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
    /* ← この行を追加（念のため） */
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: 0 30px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta {
    background: var(--gradient-cta);
    color: var(--white);
}

.cta__content {
    max-width: 800px;
    margin: 0 auto;
}

.cta__text {
    text-align: center;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 50px;
}

.cta__form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.cta__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 768px) {
    .form-row {
        gap: 24px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
}

.required {
    color: var(--accent-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.btn-submit {
    margin-top: 10px;
    width: 100%;
}

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

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

/* =========================================
   CTA SECTION
   ========================================= */
#cta {
    background-color: #ed9455;
    color: var(--white);
    padding: 80px 0;
}

#cta .section__title {
    color: var(--white);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer__main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer__brand {
    flex: 1;
}

.footer__logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.footer__links {
    display: flex;
    gap: 60px;
}

.footer__column {
    min-width: 150px;
}

.footer__heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__list a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer__list a:hover {
    opacity: 1;
    color: var(--primary-light);
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__bottom p {
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer__main {
        flex-direction: column;
        gap: 40px;
    }

    .footer__links {
        flex-direction: column;
        gap: 30px;
    }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Tablet */
@media (max-width: 1199px) {
    :root {
        --section-padding: clamp(50px, 8vw, 80px);
    }

    .features__grid,
    .case-studies__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --section-padding: 40px;
        --container-padding: 20px;
    }

    /* Header Mobile */
    .header__nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: var(--transition);
    }

    .header__nav.active {
        transform: translateY(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 16px;
    }

    .header__cta {
        display: none;
    }

    .header__menu-toggle {
        display: flex;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__title {
        font-size: 32px;
    }

    /* Journey Mobile */
    .journey__map {
        flex-direction: column;
        align-items: stretch;
    }

    .journey__arrow {
        transform: rotate(90deg);
    }

    /* Comparison Table Mobile */
    .comparison__table {
        font-size: 14px;
    }

    .comparison__table th,
    .comparison__table td {
        padding: 12px 8px;
    }

    /* Plans Mobile */
    .plans__grid {
        grid-template-columns: 1fr;
    }

    /* Form Mobile */
    .cta__form-wrapper {
        padding: 30px 20px;
    }

    /* Footer Mobile */
    .footer__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .comparison__table-wrapper {
        font-size: 12px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* =========================================
   SAMPLE LINKS SECTION - Simple Design
   ========================================= */
.sample-links {
    margin-top: 40px;
}

.sample-links__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.sample-links__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sample-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(237, 148, 85, 0.2);
    position: relative;
    overflow: hidden;
}

.sample-link-btn--disabled {
    padding: 14px 28px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .sample-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .sample-links__buttons {
        width: 100%;
        justify-content: flex-start;
    }
}

.sample-link-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}

.sample-link-btn:hover:not(.sample-link-btn--disabled)::before {
    width: 300px;
    height: 300px;
}

.sample-link-btn:hover:not(.sample-link-btn--disabled) {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(237, 148, 85, 0.35);
    border-color: var(--primary-light);
}

.sample-link-btn:active:not(.sample-link-btn--disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(237, 148, 85, 0.3);
}

.sample-link-btn--disabled {
    opacity: 0.6;
    cursor: not-allowed;
    border-color: var(--medium-gray);
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sample-link-btn--disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sample-link-icon {
    flex-shrink: 0;
    width: auto;
    height: 24px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.sample-link-btn:hover:not(.sample-link-btn--disabled) .sample-link-icon {
    transform: scale(1.1) rotate(5deg);
}

.sample-link-btn span {
    position: relative;
    z-index: 1;
}