/* ====================================================
   CAREER ASSETIZATION LP — style.css
   Theme: Deep Navy × Warm Gold — Premium & Trustworthy
   ==================================================== */

/* ── Variables ── */
:root {
    --primary: #0f2d4e;
    /* Deep Navy */
    --primary-light: #1a4a7a;
    /* Mid Navy */
    --theme-green: #3b5e48;
    /* Deep Green */
    --accent: #c89d3f;
    /* Warm Gold */
    --accent-light: #f0c96a;
    /* Light Gold */
    --accent-pale: #fdf6e3;
    /* Cream */
    --text-main: #1e2d3d;
    --text-muted: #5a6a7a;
    --text-white: #ffffff;
    --bg-base: #f8f9fb;
    --bg-navy: #0d2137;
    --card-bg: #ffffff;

    --font-heading: 'Shippori Mincho', serif;
    --font-body: 'Noto Sans JP', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
}

a {
    text-decoration: none;
    color: inherit;
}

strong {
    color: inherit;
    font-weight: 700;
}

em {
    font-style: normal;
    color: var(--accent);
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

/* ── Section Labels & Titles ── */
.section-label {
    display: block;
    text-align: center;
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title {
    font-size: 1.9rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 36px;
    }
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all .3s ease;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    color: var(--primary);
    box-shadow: 0 6px 24px rgba(200, 157, 63, .45);
    font-size: 1.05rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 157, 63, .6);
}

.btn-cta {
    width: 100%;
    max-width: 500px;
}

.btn-arrow {
    margin-left: 8px;
}

/* ── Form ── */
.cta-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.input-email {
    width: 100%;
    max-width: 500px;
    padding: 16px 20px;
    border: 2px solid #d0dce8;
    border-radius: 50px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-main);
    background: white;
    outline: none;
    transition: border .3s;
}

.input-email:focus {
    border-color: var(--accent);
}

.cta-recommend {
    font-size: .75rem;
    color: var(--text-muted);
    text-align: center;
}

.cta-micro-copy {
    font-size: .75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: -6px;
}

/* ======================================
   HERO
   ====================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    padding-top: 160px;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 130px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(13, 33, 55, .5) 0%,
            rgba(13, 33, 55, .75) 60%,
            rgba(13, 33, 55, .9) 100%);
}

.hero-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    background: var(--theme-green);
    text-align: center;
    z-index: 10;
}

.hero-ribbon::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 20px 30px 0;
    border-style: solid;
    border-color: var(--theme-green) transparent transparent transparent;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero-ribbon {
        padding: 30px 20px;
    }
    .hero-ribbon::after {
        border-width: 15px 20px 0;
        bottom: -15px;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-super-title {
    font-size: .85rem;
    letter-spacing: .18em;
    color: var(--accent-light);
    margin-bottom: 18px;
    font-weight: 700;
    background: rgba(200, 157, 63, .15);
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid rgba(200, 157, 63, .4);
}

.hero-title {
    font-size: 3.2rem;
    color: var(--text-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, .5);
    margin-bottom: 28px;
    letter-spacing: .05em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

.hero-title.hero-title-long {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {
    .hero-title.hero-title-long {
        font-size: 1.3rem;
    }
}

.hero-hook {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .88);
    line-height: 2;
    margin-bottom: 36px;
    max-width: 600px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

@media (max-width: 768px) {
    .hero-hook {
        font-size: .95rem;
    }
}

/* Badge */
.hero-badge-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-bottom: 10px;
}

.hero-badge {
    position: absolute;
    right: -10px;
    top: -30px;
    width: 88px;
    height: 88px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    box-shadow: 0 4px 16px rgba(200, 157, 63, .6);
    z-index: 10;
    animation: badgePulse 2.4s ease-in-out infinite;
}

@keyframes badgePulse {

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

    50% {
        transform: scale(1.06);
    }
}

.hero-form-wrapper {
    width: 100%;
}

.hero-form-label {
    color: var(--accent-light);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: .05em;
}

/* Fade-in animations */
.fade-in {
    opacity: 0;
    animation: fadeInUp .8s forwards ease-out;
}

.delay-1 {
    animation-delay: .4s;
}

.delay-2 {
    animation-delay: .8s;
}

.delay-3 {
    animation-delay: 1.2s;
}

.delay-4 {
    animation-delay: 1.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ======================================
   EMPATHY SECTION
   ====================================== */
.empathy-section {
    background: white;
    padding-top: 0;
}

.empathy-header-full {
    background: var(--primary);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

.empathy-header-full::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 20px 30px 0;
    border-style: solid;
    border-color: var(--primary) transparent transparent transparent;
    z-index: 10;
}

.empathy-header-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: .05em;
    font-family: var(--font-heading);
}

@media (max-width: 768px) {
    .empathy-header-title {
        font-size: 1.6rem;
    }

    .empathy-header-full {
        padding: 40px 20px;
    }

    .empathy-header-full::after {
        border-width: 15px 20px 0;
        bottom: -15px;
    }
}

.container-empathy {
    max-width: 1100px;
}

.empathy-lead {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-main);
    font-weight: 500;
}

.empathy-lead-first {
    font-size: 1.7rem;
    font-family: var(--font-heading);
    line-height: 1;
}

.empathy-list-box {
    border: 1px solid #5a6a7a;
    padding: 40px 60px;
    background: white;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .empathy-list-box {
        padding: 25px 20px;
    }
}

.empathy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.empathy-list li {
    padding: 24px 0;
    border-bottom: 1px dashed #d0dce8;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.7;
}

.empathy-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.empathy-list li:first-child {
    padding-top: 0;
}

.empathy-list-icon {
    color: #3b82f6;
    /* Blue check/cross */
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2px;
}

.empathy-message-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    line-height: 1.8;
    box-shadow: var(--shadow-lg);
}

.text-highlight {
    color: var(--accent-light);
    font-weight: 700;
    border-bottom: 2px solid var(--accent-light);
}

/* ======================================
   PROFILE SECTION
   ====================================== */
.profile {
    background: var(--bg-base);
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .profile-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.profile-image-box {
    flex-shrink: 0;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent);
    box-shadow: 0 8px 24px rgba(200, 157, 63, .3);
}

@media (min-width: 768px) {
    .profile-image {
        width: 240px;
        height: 240px;
    }
}

.profile-text {
    flex: 1;
    width: 100%;
}

.profile-label {
    font-size: .8rem;
    letter-spacing: .2em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.profile-name-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.profile-name-main {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    position: relative;
    z-index: 2;
}

.profile-name-en {
    position: absolute;
    top: 4px;
    left: 24px;
    font-size: 4rem;
    font-weight: 700;
    color: #e8edf2;
    z-index: 1;
    line-height: 1;
    white-space: nowrap;
}

.profile-checklist {
    list-style: none;
}

.profile-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px dashed #dde3ea;
    font-size: .95rem;
    color: var(--text-main);
    line-height: 1.7;
}

.profile-item:first-child {
    border-top: 1px dashed #dde3ea;
}

.check-mark {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ======================================
   ACHIEVEMENTS CAROUSEL
   ====================================== */
.achievements-section {
    background: white;
    padding: 0 0 60px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) #eee;
    padding: 10px;
    gap: 0;
}

.carousel-track::-webkit-scrollbar {
    height: 6px;
}

.carousel-track::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

.carousel-img {
    width: 100%;
    flex-shrink: 0;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition: transform .3s;
}

.carousel-img:hover {
    transform: scale(1.01);
}

/* ======================================
   STORY SECTION
   ====================================== */
.story-section {
    background: var(--bg-base);
}

.story-body {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-main);
}

.story-body p {
    margin-bottom: 20px;
}

.story-lead {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px !important;
}

.story-quote {
    border-left: 5px solid var(--accent);
    padding: 16px 24px;
    margin: 28px 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary);
    background: var(--accent-pale);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

.story-turning-point {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    padding: 32px 40px;
    margin: 36px 0;
    color: white;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.turning-point-label {
    display: inline-block;
    background: var(--accent-light);
    color: var(--primary);
    font-size: .85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: .15em;
}

.story-turning-point p {
    font-size: clamp(0.85rem, 2vw, 1.15rem);
    font-weight: 700;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

@media (max-width: 768px) {
    .story-turning-point {
        padding: 24px 16px;
    }
}

/* Result Cards */
.result-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.result-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px 32px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--accent);
    transition: box-shadow .3s, transform .3s;
}

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

.result-icon {
    font-size: 3.5rem;
    display: block;
    flex-shrink: 0;
}

.result-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
}

@media (max-width: 640px) {
    .result-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
        border-left: none;
        border-top: 5px solid var(--accent);
    }

    .result-icon {
        font-size: 2.6rem;
    }
}

/* ======================================
   COMPARISON TABLE
   ====================================== */
.what-changes-section {
    background: white;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

@media (max-width: 600px) {
    .comparison-table {
        grid-template-columns: 1fr;
    }
}

.comparison-col {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-header {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: .05em;
    text-align: center;
}

.comparison-col ul {
    list-style: none;
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-col ul li {
    font-size: 1.05rem;
    line-height: 1.8;
}

.comparison-bad .comparison-header {
    background: #f0f0f0;
    color: #666;
}

.comparison-bad {
    border: 2px solid #e0e0e0;
}

.comparison-bad ul li::before {
    content: "✗ ";
    color: #c0392b;
}

.comparison-good .comparison-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.comparison-good {
    border: 2px solid var(--accent);
}

.comparison-good ul li::before {
    content: "✓ ";
    color: var(--accent);
    font-weight: 700;
}

.comparison-note {
    text-align: center;
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto;
}

/* ======================================
   CONTENTS SECTION
   ====================================== */
.content-section {
    background: var(--bg-base);
}

.content-box {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.chapter-list {
    list-style: none;
}

.chapter-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto;
    gap: 2px 16px;
    padding: 24px 28px;
    border-bottom: 1px solid #edf0f4;
    transition: background .2s;
    align-items: start;
}

.chapter-item:last-child {
    border-bottom: none;
}

.chapter-item:hover {
    background: var(--bg-base);
}

.chapter-item-final {
    background: var(--accent-pale);
}

.chapter-item-final:hover {
    background: var(--accent-pale);
}

.chapter-label {
    grid-row: 1;
    font-size: .75rem;
    font-weight: 700;
    color: white;
    background: var(--primary);
    padding: 4px 10px;
    border-radius: 50px;
    text-align: center;
    align-self: center;
    white-space: nowrap;
}

.chapter-item-final .chapter-label {
    background: var(--accent);
    color: var(--primary);
}

.chapter-title {
    grid-column: 2;
    grid-row: 1;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    align-self: center;
    line-height: 1.5;
}

.chapter-desc {
    grid-column: 2;
    grid-row: 2;
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 500px) {
    .chapter-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .chapter-label {
        grid-row: 1;
        width: fit-content;
    }

    .chapter-title {
        grid-column: 1;
        grid-row: 2;
    }

    .chapter-desc {
        grid-column: 1;
        grid-row: 3;
    }
}

/* ======================================
   FOR WHOM SECTION
   ====================================== */
.for-whom-section {
    background: white;
}

.for-whom-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.for-whom-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-base);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    transition: box-shadow .3s;
}

.for-whom-item:hover {
    box-shadow: var(--shadow-md);
}

.for-whom-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
    line-height: 1;
    min-width: 36px;
}

.for-whom-item p {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--text-main);
}

/* ======================================
   FAQ SECTION
   ====================================== */
.faq-section {
    background: var(--bg-base);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eaeef3;
}

.faq-q {
    padding: 20px 24px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .95rem;
    user-select: none;
    transition: background .2s;
}

.faq-q::before {
    content: "Q";
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.faq-q::after {
    content: "＋";
    font-size: 1.2rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform .3s;
}

.faq-q:hover {
    background: var(--bg-base);
}

.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    font-size: .93rem;
    line-height: 1.85;
    color: var(--text-muted);
    background: var(--accent-pale);
    padding: 0 24px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 18px 24px;
}

/* ======================================
   CTA SECTION
   ====================================== */
.cta {
    background: var(--bg-navy);
}

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

.cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .02) 100%);
    border: 1px solid rgba(200, 157, 63, .3);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    backdrop-filter: blur(4px);
}

@media (max-width: 600px) {
    .cta-box {
        padding: 40px 24px;
    }
}

.cta-pre-label {
    font-size: .85rem;
    color: var(--accent-light);
    letter-spacing: .15em;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-title {
    font-size: 1.9rem;
    color: white;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.5rem;
    }
}

.cta-text {
    font-size: 1rem;
    line-height: 2;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 36px;
}

/* ======================================
   CLOSING SECTION
   ====================================== */
.closing-section {
    background: white;
    padding: 80px 0;
}

.closing-title {
    color: var(--primary);
    margin-bottom: 30px;
}

.closing-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 2.2;
    color: var(--text-muted);
    text-align: center;
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
    background: var(--primary);
    padding: 32px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-links a {
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    text-decoration: underline;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.copyright {
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    margin-top: 6px;
}

/* ======================================
   ADDED FOR RESTRUCTURING
   ====================================== */
.full-header {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.full-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 20px 30px 0;
    border-style: solid;
    z-index: 10;
}

.bg-navy {
    background: var(--theme-green);
}

.bg-navy::after {
    border-color: var(--theme-green) transparent transparent transparent;
}

.bg-yellow {
    background: var(--accent-light);
}

.bg-yellow::after {
    border-color: var(--accent-light) transparent transparent transparent;
}

.full-header-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: .05em;
    font-family: var(--font-heading);
    line-height: 1.4;
}

.text-white {
    color: white;
}

.text-navy {
    color: var(--primary);
}

@media (max-width: 768px) {
    .full-header-title {
        font-size: 1.6rem;
    }

    .full-header {
        padding: 40px 20px;
        margin-bottom: 40px;
    }

    .full-header::after {
        border-width: 15px 20px 0;
        bottom: -15px;
    }
}

.full-header+.container {
    padding-top: 10px;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.hero-image-col {
    flex: 1.6;
    display: flex;
    justify-content: center;
}

.mockup-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.hero-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-checklist li {
    margin-bottom: 12px;
    color: var(--accent-light);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-checklist li {
        white-space: normal;
        font-size: 0.95rem;
    }
    .hero-split {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-col {
        align-items: center;
    }

    .hero-checklist {
        text-align: left;
    }
}

.profile-container {
    padding: 60px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .profile-container {
        margin-top: -40px;
        padding: 40px 20px;
    }
}

.hero-bg .hero-image {
    opacity: 0.15;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(248, 249, 251, 1));
}

.hero-title {
    color: var(--primary);
    text-shadow: none;
}

.hero-hook {
    color: var(--text-main);
    text-shadow: none;
    font-weight: 500;
}

.bottom-cta-hero {
    min-height: auto;
    padding: 160px 0 80px;
}

.bottom-cta-hero .hero-bg {
    display: none;
}

.bottom-cta-hero {
    background: linear-gradient(to bottom, #f8f9fb, #e8edf2);
}

.cta {
    padding-top: 0;
}

.cta .full-header {
    margin-bottom: 60px;
}

.cta-box {
    margin-top: -30px;
}

/* ======================================
   INFO CONTENT BOX
   ====================================== */
.info-content-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
    margin: 0 auto;
}

.info-lead {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
}

.info-bullet-list {
    list-style: none;
    margin-bottom: 30px;
}

.info-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #dde3ea;
}

.info-bullet-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-bullet-list .check-mark {
    font-size: 1.4rem;
    margin-top: -2px;
    color: var(--accent);
}

.info-footer {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 700;
    text-align: center;
    background: var(--accent-pale);
    padding: 18px;
    border-radius: var(--radius-sm);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .info-content-box {
        padding: 30px 20px;
    }

    .info-bullet-list li {
        font-size: .95rem;
    }
}