/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

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

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 0 5%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: var(--space-md);
    color: var(--color-black);
    letter-spacing: 0.02em;
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    color: var(--color-gray-dark);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

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

.fade-up-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-up-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Checklist Section */
.checklist-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 3px solid var(--color-accent);
    overflow: hidden;
}

.checklist-items {
    padding: 3rem;
}

.checklist-items li {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-black);
}

.checklist-items li:last-child {
    margin-bottom: 0;
}

.checklist-items li svg {
    color: var(--color-accent);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.checklist-bottom {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 2rem;
    text-align: left;
}

.checklist-bottom p {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
}

.checklist-bottom p.mb-1 {
    margin-bottom: 0.5rem;
}

.checklist-bottom strong {
    font-size: 1.4rem;
    font-weight: 900;
    display: block;
    margin-top: 0.5rem;
    color: var(--color-white);
}

/* Problem Section */
.problem-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: var(--space-lg);
}

.problem-items, .problem-result {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    flex: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.problem-items ul, .problem-result ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.problem-items li, .problem-result li {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5rem;
}

.problem-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.problem-result {
    background: var(--color-black);
    color: var(--color-white);
}

.problem-result li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.result-label {
    font-size: 0.95rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.problem-arrow {
    color: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon-mobile {
    display: none;
}

.conclusion-equation {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    color: var(--color-black);
}

.conclusion-equation .eq-equals {
    color: var(--color-accent);
    margin: 0 0.5rem;
}

.conclusion-text {
    font-size: 1.1rem;
    color: var(--color-gray-dark);
    line-height: 1.8;
    font-weight: 500;
}

.problem-conclusion {
    text-align: left;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8;
    margin-top: var(--space-lg);
    padding: 3rem;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-left: 5px solid var(--color-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.problem-conclusion strong {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-black);
}

/* Marquee Section */
.marquee-section {
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
}

.marquee-inner {
    display: inline-flex;
    align-items: center;
    animation: marquee 20s linear infinite;
}

.marquee-inner span {
    font-family: var(--font-en);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
}

.marquee-inner svg {
    width: 24px;
    height: 24px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Concept Section */
.concept-split {
    display: flex;
    align-items: center;
    gap: 0;
}

.concept-image {
    flex: 1;
    height: 500px;
    position: relative;
}

.concept-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.concept-accent-block {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--color-accent);
    z-index: -1;
    border-radius: var(--radius-md);
}

.concept-text {
    flex: 1;
    padding: 5% 8%;
}

.concept-catch {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.concept-text p {
    font-size: 1.05rem;
    color: var(--color-gray-dark);
    font-weight: 500;
}

/* Change Section */
.change-cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
}

.change-card {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    background-color: var(--color-white);
}

.change-card.before {
    background-color: var(--color-gray-light);
    border: 1px solid rgba(0,0,0,0.05);
}

.change-card.after {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: var(--color-white);
    border: none;
    position: relative;
    box-shadow: 0 15px 35px rgba(255, 90, 0, 0.2);
}

.change-card.after .card-header {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.change-card.after .badge-accent {
    background-color: var(--color-white);
    color: var(--color-accent);
}

.change-card.border-accent::after {
    display: none;
}

.card-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.change-card.after .card-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.badge {
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-family: var(--font-en);
}

.badge-dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

.badge-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.card-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
}

.check-list {
    padding: 3rem 2rem;
}

.check-list li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
    font-weight: 600;
}

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

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.check-list.dark li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    opacity: 0.5;
}

.check-list.light li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.change-arrow {
    display: flex;
    align-items: center;
    color: var(--color-accent);
}

/* Benefits Section */
.bg-gray-pattern {
    background-color: var(--color-gray-light);
    background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.section-lead {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

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

.merit-item {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.merit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.merit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    transform: rotate(-5deg);
    box-shadow: 0 5px 15px rgba(255, 90, 0, 0.2);
}

.merit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.merit-item p {
    color: var(--color-gray-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Results Section */
.result-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.stat-num {
    font-family: var(--font-en);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-unit {
    font-size: 2rem;
    margin-left: 0.2rem;
}

.stat-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.5;
}

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

.voice-card {
    flex: 1;
    background: var(--color-gray-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
    position: relative;
}

.voice-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: var(--font-en);
    font-size: 5rem;
    color: rgba(255, 90, 0, 0.1);
    line-height: 1;
}

.voice-company {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.company-type {
    display: inline-block;
    background: var(--color-black);
    color: var(--color-white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.voice-text {
    font-size: 1rem;
    color: var(--color-gray-dark);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Services */
.service-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: var(--space-xl);
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-num {
    font-family: var(--font-en);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.service-content p {
    color: var(--color-gray-dark);
    font-size: 1rem;
    font-weight: 500;
}

.service-content .note {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-gray);
}

.service-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
}

.dynamic-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    opacity: 0.1;
    z-index: 1;
    mix-blend-mode: overlay;
}

.service-image img {
    transition: transform 0.7s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-others-wrapper {
    margin-top: 5rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(255, 90, 0, 0.05) 0%, rgba(255, 90, 0, 0.1) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 90, 0, 0.2);
}

.others-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 3rem;
    font-weight: 900;
}

.others-title span {
    color: var(--color-accent);
    display: inline-block;
}

.service-others {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.other-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.other-item:hover {
    transform: translateY(-5px);
    background: var(--color-white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.other-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.other-item h4 {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.other-item p {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    text-align: left;
}

/* Strengths */
.strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.strength-item {
    border-top: 3px solid var(--color-accent);
    padding-top: 2rem;
}

.strength-num {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.strength-item h4 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.strength-item p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

/* Pricing */
.pricing-cards.monthly-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cards.spot-plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-sub-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 900;
    color: var(--color-black);
}

.concept-note {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.pricing-aim {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(0,0,0,0.1);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}

.pricing-aim strong {
    color: var(--color-accent);
}

.plan-plus {
    text-align: center;
    background: var(--color-gray-light);
    padding: 0.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

span.small {
    font-size: 0.8rem;
    color: var(--color-gray-dark);
}

/* Pricing Details Accordion */
.pricing-details {
    margin-top: 1rem;
    text-align: left;
}

.pricing-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #fff0e6; /* light accent background */
    color: var(--color-accent-dark);
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    transition: var(--transition);
}

.pricing-details summary::-webkit-details-marker {
    display: none;
}

.pricing-details summary:hover {
    background: #ffe3d1;
}

.pricing-details[open] summary svg {
    transform: rotate(180deg);
}

.pricing-details summary svg {
    transition: transform 0.3s;
    width: 20px;
    height: 20px;
}

.pricing-details .details-content {
    padding: 1.5rem 0.5rem 0.5rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.pricing-card {
    flex: 1;
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pricing-card.recommended {
    border: 3px solid var(--color-accent);
}

.pricing-card.trial-card {
    border: 4px solid var(--color-accent);
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 90, 0, 0.05) 100%);
    box-shadow: 0 15px 35px rgba(255, 90, 0, 0.15);
}

.pricing-card.trial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 90, 0, 0.2);
}

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

.recommend-badge.pop-badge {
    background: var(--color-black);
    font-size: 0.95rem;
    padding: 0.6rem 2rem;
    width: max-content;
    animation: badgeFloat 3s ease-in-out infinite;
}

.trial-highlight {
    background: rgba(255, 90, 0, 0.1);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-black);
    line-height: 1.6;
}

.trial-highlight strong {
    color: var(--color-accent);
}

.recommend-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.card-head {
    text-align: center;
    margin-bottom: 2rem;
}

.card-head h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.card-head .time {
    color: var(--color-gray-dark);
    font-size: 0.9rem;
}

.price {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1;
    font-family: var(--font-en);
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 0.2rem;
}

.price .tax {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray);
    font-family: var(--font-sans);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FF5A00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
}

/* Flow */
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    align-items: center;
    gap: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--color-accent);
}

.step-num {
    font-family: var(--font-en);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--color-black);
    white-space: nowrap;
    letter-spacing: 0.1em;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--color-gray-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Closing */
.closing {
    position: relative;
    color: var(--color-white);
    text-align: left;
    padding: 8rem 0;
    overflow: hidden;
}

.closing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.closing-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(20,20,20,0.85) 100%);
}

.closing-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.closing h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.closing p {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.closing-cta {
    margin-top: 3rem;
}

.cta-note {
    font-size: 0.85rem !important;
    margin-top: 1rem !important;
    color: rgba(255,255,255,0.6) !important;
    margin-bottom: 0 !important;
}

/* Pricing Trial Note */
.trial-note {
    font-size: 0.9rem;
    color: var(--color-accent-dark);
    background: rgba(255, 90, 0, 0.05);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Contact Form */
.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-top: 5px solid var(--color-accent);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.required {
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-gray-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-group label {
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--color-accent);
}

.form-submit {
    margin-top: 3rem;
}


/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .concept-split { flex-direction: column; }
    .concept-image { width: 100%; height: 400px; }
    .concept-image img { border-radius: 0; }
    .concept-accent-block { display: none; }
    .service-others { grid-template-columns: repeat(2, 1fr); }
    .strength-grid { grid-template-columns: repeat(2, 1fr); }
    .result-voices { grid-template-columns: repeat(2, 1fr); }
    .pricing-cards.monthly-plans { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Adjust Section Padding for Mobile */
    .section { padding: 4rem 0; }
    .section-title { font-size: 2rem; margin-bottom: 2rem; }
    
    /* Typography for Mobile */
    .hero { min-height: 500px; padding-top: 80px; }
    .hero-title { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; line-height: 1.6; }
    
    /* Grid Adjustments */
    .checklist-items { padding: 1.5rem; }
    .checklist-items li { font-size: 1rem; align-items: flex-start; }
    .checklist-bottom p { font-size: 1rem; }
    .checklist-bottom strong { font-size: 1.15rem; }
    
    .problem-grid { flex-direction: column; gap: 1rem; align-items: stretch; }
    .problem-items, .problem-result { padding: 1.5rem; }
    .problem-arrow { padding: 0.5rem 0; display: flex; justify-content: center; width: 100%; }
    .arrow-icon { display: none; }
    .arrow-icon-mobile { display: block; width: 40px; height: 40px; }
    
    .problem-conclusion { padding: 1.5rem; border-top: none; border-left: 5px solid var(--color-accent); border-radius: var(--radius-md); }
    .conclusion-equation { font-size: 1.3rem; }
    .conclusion-text { font-size: 1rem; }
    
    .concept-text { padding: 2rem 5%; }
    .concept-catch { font-size: 1.6rem; }
    
    .change-cards { flex-direction: column; gap: 1rem; align-items: stretch; }
    .change-arrow { padding: 0.5rem 0; transform: none; display: flex; justify-content: center; width: 100%; }
    .change-arrow i { transform: rotate(90deg); width: 40px; height: 40px; }
    .card-header { padding: 1.5rem; }
    .check-list { padding: 1.5rem; }
    
    .merit-grid { grid-template-columns: 1fr; }
    
    .result-stats { flex-direction: column; gap: 2rem; margin-bottom: 3rem; }
    .result-voices { grid-template-columns: 1fr; gap: 1.5rem; }
    .stat-num { font-size: 4rem; }
    .merit-item { padding: 2rem; }
    
    .service-row, .service-row.reverse { flex-direction: column; gap: 2rem; }
    .service-num { font-size: 3rem; }
    .service-content h3 { font-size: 1.3rem; }
    
    .service-others-wrapper { padding: 2.5rem 1.5rem; margin-top: 3rem; }
    .others-title { font-size: 1.3rem; margin-bottom: 2rem; line-height: 1.5; }
    .others-title span { display: block; margin-top: 0.5rem; }
    
    .pricing-cards.monthly-plans { 
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 2rem;
        margin-right: -5vw;
        margin-left: -5vw;
        padding-left: 5vw;
        padding-right: 5vw;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 3rem;
    }
    .pricing-cards.monthly-plans .pricing-card {
        min-width: 80vw;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    .pricing-cards.spot-plans { grid-template-columns: 1fr; }
    .pricing-sub-title { font-size: 1.5rem; }
    .pricing-card { padding: 2rem; }
    .price { font-size: 2.8rem; }
    
    .step { flex-direction: column; gap: 1rem; text-align: left; padding: 1.5rem; border-top: none; border-left: 4px solid var(--color-accent); }
    
    .closing { padding: 5rem 0; }
    .closing h2 { font-size: 1.6rem; }
    .closing p { font-size: 0.95rem; }
    .form-wrapper { padding: 2rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .service-others { grid-template-columns: 1fr; }
    .strength-grid { grid-template-columns: 1fr; }
    .marquee-inner span { font-size: 1.2rem; }
}


