@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

:root {
    /* Colors - V2 Vibrant Palette */
    --c-primary: #fff0f5;
    /* Lavender blush for base */
    --c-accent: #E1306C;
    /* Vibrant Magenta/Pink base */
    --c-accent-dark: #C13584;
    /* Deep vibrant pink */
    --c-text-main: #333333;
    /* Darker for better contrast against brights */
    --c-text-light: #666666;
    --c-white: #ffffff;
    --c-line: #00B900;
    --c-twitter: #000000;

    /* Additional Vibrant Accents */
    --c-gold: #FFD700;
    --c-gold-dark: #E6C200;
    --grad-vibrant: linear-gradient(135deg, #FD1D1D 0%, #E1306C 100%);
    --grad-vibrant-hover: linear-gradient(135deg, #FF3333 0%, #F5428F 100%);

    /* Fonts */
    --f-sans: 'Zen Kaku Gothic New', sans-serif;
    --f-serif: 'Noto Serif JP', serif;

    /* Layout */
    --max-width: 1000px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 100px;
}

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

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

body {
    font-family: var(--f-sans);
    color: var(--c-text-main);
    background-color: var(--c-primary);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul,
ol {
    list-style: none;
}

/* Typography Utilities */
.text-serif {
    font-family: var(--f-serif);
}

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

.text-bold {
    font-weight: 700;
}

.text-accent {
    color: var(--c-accent-dark);
}

h1,
h2,
h3,
h4 {
    line-height: 1.4;
    font-weight: 500;
}

/* Layout Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

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

/* Animation Utilities (Used by JS) */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in {
    opacity: 0;
    transition: opacity 1.2s ease-out;
    font-size: 0.85rem;
}

/* Character animation for section titles */
.char {
    opacity: 0;
    display: inline-block;
    transform: translateX(-15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.char.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 768px) {

    /* Mobile parallax fix */
    .parallax-bg {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: top center;
    }
}

/* Keyframes */
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.zoom-in-infinite {
    animation: slowZoom 30s linear infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(225, 48, 108, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(225, 48, 108, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(225, 48, 108, 0);
    }
}

@keyframes pulse-line {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 185, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 185, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 185, 0, 0);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-pulse-line {
    animation: pulse-line 2s infinite;
}

/* Parallax Utility */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    /* Soften the image so text is readable */
}

/* CTA Buttons Base */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    gap: 8px;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-line {
    background-color: var(--c-line);
    color: var(--c-white);
}

.btn-mail {
    background: var(--grad-vibrant);
    color: var(--c-white);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.btn-mail:hover {
    background: var(--grad-vibrant-hover);
}

.btn-x {
    background-color: var(--c-twitter);
    color: var(--c-white);
}

/* ------------------
   Header
   ------------------ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    padding: 12px 0;
    border-bottom: none;
}

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

.logo-area {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--c-accent-dark);
    letter-spacing: 0.05em;
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--c-text-light);
    margin-top: 4px;
}

.header-logo {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.header-nav ul {
    display: flex;
    gap: 24px;
}

.header-nav a {
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 500;
}

.header-nav a:hover {
    color: var(--c-accent-dark);
}

.header-contact {
    padding: 8px 24px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }
}

/* ------------------
   Hero Section
   ------------------ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Offset for header */
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: heroFade 15s ease-in-out infinite;
    /* Total cycle: 15s (3s per slide) */
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 3s;
}

.hero-slide:nth-child(3) {
    animation-delay: 6s;
}

.hero-slide:nth-child(4) {
    animation-delay: 9s;
}

.hero-slide:nth-child(5) {
    animation-delay: 12s;
}

.hero-slide .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.3) 100%);
}

@keyframes heroFade {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    /* Fade in */
    20% {
        opacity: 1;
    }

    /* Hold */
    25% {
        opacity: 0;
    }

    /* Fade out */
    100% {
        opacity: 0;
    }
}

@keyframes bounceText {

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

    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

.bounce-text {
    display: inline-block;
    animation: bounceText 2s infinite cubic-bezier(0.28, 0.84, 0.42, 1);
    color: var(--c-accent);
    font-weight: 900;
}

.hero-content {
    padding: 0 var(--spacing-sm);
}

.hero-catch.sub {
    font-size: 1.1rem;
    color: var(--c-text-light);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.hero-catch.main {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 32px;
    color: var(--c-text-main);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--c-text-main);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.9;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--c-text-light);
    padding-left: 20px;
    position: relative;
}

.cta-note::before {
    content: '※';
    position: absolute;
    left: 0;
    top: 0;
}

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

    .hero-desc {
        font-size: 1rem;
    }
}

/* Hero Worries Bubbles */
.hero-worries {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-worries .bubble {
    display: inline-block;
    background: rgba(255, 182, 193, 0.3);
    /* Pink with 30% opacity */
    color: var(--c-text-main);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    max-width: 90%;
}

.hero-worries .bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: rgba(255, 182, 193, 0.3) transparent transparent transparent;
}

/* Hero Tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.hero-tags .tag {
    background-color: var(--c-accent);
    color: var(--c-white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ------------------
   Concept Section
   ------------------ */
.container-narrow {
    max-width: 800px;
}

.concept {
    background-color: var(--c-white);
    text-align: center;
}

.sec-en {
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 500;
}

.sec-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 24px;
}

.sec-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--c-accent);
}

.concept-text {
    font-size: 1.1rem;
    line-height: 2.2;
    color: var(--c-text-main);
}

.concept-text p {
    margin-bottom: 24px;
}

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

    .concept-text {
        font-size: 1rem;
        text-align: left;
    }
}

/* ------------------
   Merits Section
   ------------------ */
.mb-10 {
    margin-bottom: 40px;
}

.merits {
    background-color: var(--c-primary);
}

.merits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.merit-card {
    background-color: var(--c-white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.merit-num {
    font-family: var(--f-serif);
    font-size: 3rem;
    color: var(--c-accent);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 15px;
    line-height: 1;
}

.merit-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--c-text-main);
    position: relative;
    z-index: 1;
}

.merit-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--c-accent);
    margin-top: 12px;
}

.merit-desc {
    font-size: 0.95rem;
    color: var(--c-text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .merits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .merit-card {
        padding: 32px 24px;
    }
}

/* ------------------
   Earnings Simulation
   ------------------ */
.z-10 {
    position: relative;
    z-index: 10;
}

.simulation {
    border-top: 1px solid rgba(229, 195, 198, 0.3);
}

.sim-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.sim-card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.sim-header {
    background: rgba(255, 240, 245, 0.8);
    /* Transparent --c-primary */
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed rgba(225, 48, 108, 0.2);
}

.sim-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--c-white);
}

.bg-accent {
    background-color: var(--c-accent);
}

.bg-gold {
    background-color: var(--c-gold-dark);
}

.sim-pace {
    font-size: 0.9rem;
    color: var(--c-text-light);
    font-weight: 500;
}

.sim-body {
    padding: 40px 32px;
    text-align: center;
}

.sim-total {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.sim-amount {
    font-size: 4.5rem;
    line-height: 1;
}

.sim-detail {
    font-size: 0.95rem;
    color: var(--c-text-light);
    line-height: 1.8;
}

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

/* ------------------
   Schedule Timeline
   ------------------ */
.schedule {
    background-color: var(--c-primary);
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 40px auto 0;
    text-align: left;
}

.timeline::before {
    display: none;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 60px;
    bottom: -40px;
    left: 29px;
    width: 2px;
    background-color: rgba(225, 48, 108, 0.2);
}

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

.timeline-item:last-child::before {
    display: none;
}

.timeline-time {
    position: absolute;
    left: 0;
    top: 0;
    background: var(--c-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(225, 48, 108, 0.1);
    border: 2px solid var(--c-accent);
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--c-text-main);
    padding-top: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--c-text-light);
}

/* ------------------
   Worries (Banner)
   ------------------ */
.worries {
    background-color: var(--c-white);
    border-top: 1px solid rgba(229, 195, 198, 0.3);
    border-bottom: 1px solid rgba(229, 195, 198, 0.3);
}

.worries-title {
    font-size: 2rem;
    margin-bottom: 40px;
}

.worries-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

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

.stat-label {
    font-size: 1rem;
    color: var(--c-text-light);
    margin-bottom: 8px;
}

.stat-num {
    font-family: var(--f-serif);
    font-size: 4rem;
    line-height: 1;
    font-weight: 500;
}

.stat-unit {
    font-size: 1.5rem;
    font-family: var(--f-sans);
}

.worries-desc {
    font-size: 1.1rem;
    line-height: 2;
}

@media (max-width: 600px) {
    .worries-stats {
        flex-direction: column;
        gap: 30px;
    }

    .worries-title {
        font-size: 1.5rem;
    }

    .worries-desc {
        font-size: 0.95rem;
        text-align: left;
    }
}

/* ------------------
   Testimonial Section
   ------------------ */
.testimonial {
    border-top: 1px solid rgba(229, 195, 198, 0.3);
}

.testimo-list {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimo-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.testimo-img {
    flex: 0 0 35%;
}

.testimo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimo-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimo-name {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.testimo-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--c-white);
    margin-bottom: 20px;
    align-self: flex-start;
}

.testimo-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--c-text-main);
    font-weight: 500;
}

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

    .testimo-card {
        flex-direction: column;
    }

    .testimo-img {
        flex: 0 0 250px;
    }

    .testimo-content {
        padding: 32px 24px;
    }
}

/* ------------------
   Flow Section
   ------------------ */
.flow {
    background-color: var(--c-white);
}

.flow-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-step {
    background: var(--c-primary);
    width: 100%;
    padding: 32px 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(229, 195, 198, 0.3);
}

.flow-num {
    font-size: 3.5rem;
    line-height: 1;
    opacity: 0.8;
}

.text-gold {
    color: var(--c-gold-dark);
}

.flow-info h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--c-text-main);
}

.flow-info p {
    font-size: 0.95rem;
    color: var(--c-text-light);
}

.flow-arrow {
    font-size: 2rem;
    margin: 16px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

@media (max-width: 600px) {
    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 32px 24px;
    }
}

/* ------------------
   FAQ Section
   ------------------ */
.faq {
    background-color: var(--c-primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--c-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 24px 24px 60px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--c-text-main);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--f-serif);
    color: var(--c-accent-dark);
    font-size: 1.4rem;
    font-weight: bold;
}

.faq-text {
    padding-right: 24px;
    line-height: 1.5;
}

.faq-toggle {
    color: var(--c-accent-dark);
    transition: transform 0.3s;
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: rgba(248, 244, 241, 0.4);
}

.faq-a p {
    padding: 0 24px 24px 60px;
    color: var(--c-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-item.active .faq-a {
    max-height: 300px;
    /* Arbitrary high value to allow animation */
}

@media (max-width: 600px) {
    .faq-q {
        padding: 20px 20px 20px 50px;
        font-size: 0.95rem;
    }

    .faq-icon {
        left: 20px;
        font-size: 1.2rem;
    }

    .faq-a p {
        padding: 0 20px 20px 50px;
    }
}

/* ------------------
   Studio Section
   ------------------ */
.studio {
    background-color: var(--c-primary);
    border-top: 1px solid rgba(229, 195, 198, 0.3);
}

.studio-content {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.studio-desc {
    font-size: 1.05rem;
    font-weight: bold;
    color: var(--c-text-main);
}

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

.studio-card {
    background-color: var(--c-white);
    border-radius: 12px;
    padding: 32px;
    border-left: 6px solid var(--c-accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.studio-card.sub-studio {
    border-left-color: var(--c-text-light);
}

.studio-card h4 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.studio-card p {
    font-size: 1.05rem;
    color: var(--c-text-main);
    line-height: 1.8;
}

@media (max-width: 600px) {
    .studio-content {
        padding: 24px 16px;
    }

    .studio-card {
        padding: 24px 20px;
    }
}


/* ------------------
   Contact Section
   ------------------ */
.contact-inner {
    background-color: var(--c-white);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-desc {
    margin-bottom: 40px;
}

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

.contact-card {
    border: 1px solid rgba(229, 195, 198, 0.4);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.contact-type {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--c-text-light);
    margin-bottom: 20px;
}

.btn-full {
    width: 100%;
    max-width: 300px;
}

.contact-link {
    font-size: 1.2rem;
    color: var(--c-accent-dark);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s;
}

.contact-link:hover {
    text-decoration-color: var(--c-accent-dark);
}

@media (max-width: 600px) {
    .contact-inner {
        padding: 40px 20px;
    }

    .contact-card {
        padding: 24px 16px;
    }
}

/* ------------------
   Footer
   ------------------ */
.footer {
    background-color: var(--c-accent-dark);
    padding: 60px 0;
    margin-bottom: 70px;
    /* Space for fixed sticky cta on mobile */
}

.text-white {
    color: var(--c-white);
}

.footer .logo {
    color: var(--c-white);
}

.footer-logo {
    width: 15%;
    border-radius: 20px;
    margin: 0 auto;
}

.mt-10 {
    margin-top: 40px;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ------------------
   Fixed CTA
   ------------------ */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    z-index: 100;
    display: flex;
    justify-content: center;
}

.btn-fixed {
    width: 100%;
    max-width: 400px;
    padding: 14px 24px;
    box-shadow: 0 4px 10px rgba(0, 185, 0, 0.3);
    /* Line green shadow */
}

@media (min-width: 769px) {
    .fixed-cta {
        display: none;
        /* Hide sticky on desktop, keep it clean */
    }

    .footer {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {

    /* Mobile parallax fix - V11 Appended */
    .parallax-bg {
        background-attachment: scroll !important;
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
    }

    #simulation {
        background-image: url('images/model-1_mobile.png') !important;
    }

    #testimonial {
        background-image: url('images/model-2_mobile.png') !important;
    }

    #studio {
        background-image: url('images/hero_bg_elegant_mobile.png') !important;
    }

    .sim-card,
    .testimo-card {
        background: rgba(255, 255, 255, 0.7);
    }
}