/* ============================================
   LaLa GLOBAL LANGUAGE - トルコ語LP
   Design: Turkish cultural motifs + PASBECONA
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Turkish Flag & Culture Colors */
    --turkish-red: #E30A17;
    --turkish-red-dark: #C50813;
    --turkish-red-light: #FF1A28;
    --turquoise: #00897B;
    --turquoise-dark: #00695C;
    --turquoise-light: #4DB6AC;
    /* Gold (Ottoman) */
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #A17D1A;
    /* Neutrals */
    --cream: #FFF8F0;
    --cream-dark: #F5EDE0;
    --white: #FFFFFF;
    --dark: #1A1A2E;
    --dark-red: #2E1A1A;
    --text-dark: #2C2C2C;
    --text-mid: #555;
    --text-light: #888;
    /* Fonts */
    --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

/* ---------- Section Titles ---------- */
.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle-tr {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--turquoise);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.section-subtitle-tr.light {
    color: var(--gold-light);
}

.text-red {
    color: var(--turkish-red);
}

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

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-red) 100%);
    border-bottom: 3px solid var(--gold);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-area {
    flex-shrink: 0;
}

.logo {
    height: 40px;
    width: auto;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

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

.header-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--turkish-red) 0%, var(--turkish-red-dark) 100%);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 10, 23, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--dark);
    padding: 20px;
    border-bottom: 3px solid var(--gold);
}

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

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

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a {
    display: block;
    color: var(--white);
    padding: 15px 10px;
    font-size: 1rem;
}

.mobile-cta {
    display: inline-block;
    background: var(--turkish-red);
    color: var(--white) !important;
    border-radius: 50px;
    text-align: center;
    margin-top: 10px;
    padding: 12px 20px !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    background:
        linear-gradient(135deg,
            rgba(227, 10, 23, 0.85) 0%,
            rgba(26, 26, 46, 0.9) 50%,
            rgba(0, 137, 123, 0.8) 100%
        ),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231A1A2E" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(227, 10, 23, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 137, 123, 0.15) 0%, transparent 60%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0L48 16L64 16L52 28L56 44L40 36L24 44L28 28L16 16L32 16Z' fill='none' stroke='rgba(201,168,76,0.08)' stroke-width='1'/%3E%3C/svg%3E");
    animation: scroll-ornament 30s linear infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle-tr {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-accent {
    color: var(--gold-light);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.badge {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.85rem;
}

.badge-icon {
    font-size: 1.1rem;
}

.badge strong {
    color: var(--gold-light);
    font-size: 1.1rem;
}

/* CTA Button (Global) */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--turkish-red) 0%, var(--turkish-red-dark) 100%);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 60px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(227, 10, 23, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(227, 10, 23, 0.5);
}

.cta-main {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.cta-sub {
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.9;
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

/* Hero Tulip Decorations */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tulip {
    position: absolute;
    font-size: 2rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.tulip-1 { top: 15%; left: 8%; animation-delay: 0s; }
.tulip-2 { top: 60%; right: 10%; animation-delay: 2s; }
.tulip-3 { bottom: 15%; left: 15%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ============================================
   PROBLEM
   ============================================ */
.problem {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.section-ornament {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='8' fill='none' stroke='rgba(227,10,23,0.04)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='16' fill='none' stroke='rgba(0,137,123,0.03)' stroke-width='1'/%3E%3C/svg%3E");
    animation: scroll-ornament 40s linear infinite;
    pointer-events: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.problem-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 24px;
    border-left: 4px solid var(--turkish-red);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.problem-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.problem-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--text-dark);
}

.problem-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ============================================
   AFFINITY
   ============================================ */
.affinity {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-red) 50%, var(--turquoise-dark) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.affinity-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M50 10L58 30H42Z' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3Cpath d='M50 90L58 70H42Z' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}

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

.affinity-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 2;
}

.affinity-content strong {
    color: var(--gold-light);
}

.affinity-highlight {
    font-size: 1.15rem !important;
    margin-top: 30px !important;
    padding: 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

/* ============================================
   SOLUTION
   ============================================ */
.solution {
    padding: 100px 0;
    background: var(--white);
}

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

.solution-card {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-red) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.solution-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--turkish-red) 0%, var(--gold) 50%, var(--turquoise) 100%);
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.solution-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--turkish-red);
    opacity: 0.3;
    margin-bottom: 5px;
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.solution-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.5;
}

.solution-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   BENEFIT
   ============================================ */
.benefit {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 4px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.5;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ============================================
   EVIDENCE
   ============================================ */
.evidence {
    padding: 100px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--turkish-red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stat-sub {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

.testimonial-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--turkish-red);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.author-info {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   CONTENTS
   ============================================ */
.contents {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--turquoise-dark) 0%, var(--dark) 100%);
    position: relative;
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.content-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 24px;
    text-align: center;
    color: var(--white);
    transition: transform 0.3s ease, background 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.content-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.content-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.content-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   OFFER (PRICING)
   ============================================ */
.offer {
    padding: 100px 0;
    background: var(--white);
}

.offer-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-mid);
    margin-top: -30px;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
    border: 2px solid var(--turkish-red);
    transform: scale(1.03);
    box-shadow: 0 8px 35px rgba(227, 10, 23, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 12px 45px rgba(227, 10, 23, 0.2);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--turkish-red);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-red) 100%);
    padding: 25px;
    text-align: center;
    color: var(--white);
}

.pricing-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

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

.pricing-body {
    padding: 30px 25px;
    text-align: center;
}

.price {
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-yen {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--turkish-red);
}

.price-num {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--turkish-red);
    line-height: 1;
}

.price-unit {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-left: 4px;
}

.price-per {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.price-per strong {
    color: var(--turkish-red);
    font-size: 1.05rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    padding: 0 10px;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 24px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: 700;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   CAMPAIGN
   ============================================ */
.campaign {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.campaign-box {
    background: var(--white);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.campaign-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--turkish-red) 0%, var(--gold) 50%, var(--turquoise) 100%);
}

.campaign-subtitle-tr {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold-dark);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.campaign-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.campaign-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

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

.campaign-offer-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.campaign-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.campaign-yen {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--turkish-red);
}

.campaign-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--turkish-red);
    line-height: 1;
}

.campaign-tax {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 5px;
}

.campaign-note {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-top: 5px;
}

.campaign-features {
    list-style: none;
    text-align: left;
}

.campaign-features li {
    padding: 6px 0;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.campaign-cta {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.campaign-cta:hover {
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

/* ============================================
   NARROW (Target)
   ============================================ */
.narrow {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--turquoise-dark) 100%);
}

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

.narrow-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.narrow-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.narrow-check {
    color: var(--gold-light);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    max-width: 230px;
    text-align: center;
    padding: 20px 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turkish-red) 0%, var(--turkish-red-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.process-arrow {
    color: var(--turkish-red);
    font-size: 1.5rem;
    font-weight: 700;
    padding-top: 30px;
    flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 100px 0;
    background: var(--cream);
}

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

.faq-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    font-family: var(--font-sans);
    transition: background 0.3s ease;
    gap: 15px;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--turkish-red);
    font-weight: 700;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* ============================================
   ACTION (Final CTA)
   ============================================ */
.action {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--turkish-red-dark) 50%, var(--dark-red) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.action-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 20C40 20 44 10 40 2C36 10 40 20 40 20Z' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3Cpath d='M40 20C40 20 50 16 56 22C50 20 40 20 40 20Z' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3Cpath d='M40 20C40 20 30 16 24 22C30 20 40 20 40 20Z' fill='none' stroke='rgba(201,168,76,0.06)' stroke-width='1'/%3E%3C/svg%3E");
    animation: scroll-ornament 25s linear infinite;
    pointer-events: none;
}

.action-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 2;
    position: relative;
    z-index: 2;
}

.action-cta-area {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.action-cta {
    font-size: 1.2rem;
    padding: 22px 50px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    box-shadow: 0 4px 25px rgba(201, 168, 76, 0.4);
}

.action-cta:hover {
    box-shadow: 0 8px 35px rgba(201, 168, 76, 0.6);
}

.action-cta .cta-main {
    font-size: 1.15rem;
}

.action-reassurance {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.action-reassurance span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

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

.footer-top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--turkish-red) 0%, var(--white) 50%, var(--turkish-red) 100%);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo .logo {
    height: 35px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: var(--gold-light);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: block;
    }

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

    .hero-subtitle-tr {
        font-size: 1rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

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

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: none;
    }

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

    .campaign-box {
        padding: 35px 20px;
    }

    .campaign-title {
        font-size: 1.4rem;
    }

    .campaign-num {
        font-size: 2.5rem;
    }

    .campaign-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .process-arrow {
        transform: rotate(90deg);
        padding: 0;
    }

    .process-step {
        max-width: 100%;
    }

    .narrow-grid {
        grid-template-columns: 1fr;
    }

    .action-reassurance {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .cta-button {
        padding: 16px 30px;
    }

    .cta-main {
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        padding: 120px 20px 60px;
    }

    .tulip {
        display: none;
    }
}

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

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

    .problem-grid,
    .benefit-grid,
    .contents-grid {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        gap: 8px;
    }

    .badge {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}
