:root {
    --bg-neutral: #F7F8FA;
    --bg-navy: #092336;
    --primary: #113F61;
    --accent: #C7AE6A;
    --accent-hover: #B99A45;
    --text-dark: #092336;
    --text-gray: #4B5563;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-max: 1200px;
    --radius-xl: 40px;
    --radius-l: 24px;
    --shadow-premium: 0 20px 50px rgba(9, 35, 54, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--white); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; color: var(--text-dark); }
h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
p { font-family: var(--font-body); color: var(--text-gray); font-size: 1.1rem; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }
.text-coral { color: var(--accent); }
.text-navy { color: var(--primary); }
.text-accent { color: var(--accent); }

/* SITE HEADER */
.site-header { 
    background: linear-gradient(135deg, #0f2f44 0%, #1c4d6b 100%); 
    height: 140px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.header-container { width: 100%; display: flex; justify-content: center; padding: 0 20px; }
.site-logo { 
    max-height: 70px; 
    width: auto; 
    display: block; 
    transition: all 0.3s ease; 
}

@media (max-width: 768px) {
    .site-header { height: 90px; }
    .site-logo { max-height: 45px; }
}

/* HERO */
.hero { background-color: var(--bg-neutral); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 40px 0; }
.bloom { position: absolute; width: 600px; height: 600px; background-color: var(--accent); filter: blur(150px); opacity: 0.1; border-radius: 50%; z-index: 1; pointer-events: none; }
.bloom-1 { top: -10%; left: -10%; }
.bloom-2 { bottom: -10%; right: -10%; }
.hero-container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; position: relative; z-index: 10; }

.hero-title { font-size: clamp(42px, 5vw, 56px); line-height: 1.1; margin-bottom: 24px; }
.hero-subtitle { font-size: clamp(24px, 3vw, 32px); line-height: 1.25; margin-bottom: 16px; font-family: var(--font-serif); font-weight: 700; }
.hero-description { font-size: clamp(17px, 2vw, 19px); line-height: 1.6; color: var(--text-dark); font-weight: 600; margin-bottom: 24px; }

.hero-content .lead { font-size: 1.1rem; color: var(--text-gray); max-width: 580px; margin-bottom: 32px; }

.cta-group { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.guarantee-hero { font-size: 0.9rem; color: var(--text-gray); font-weight: 600; }
.hero-content .link-accent { margin-top: 8px; }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-visual img { 
    width: 100%; 
    max-width: 520px; 
    height: auto; 
    border-radius: 20px; 
    box-shadow: 0 30px 60px rgba(9, 35, 54, 0.15);
    border: 1px solid rgba(199, 174, 106, 0.2);
    object-fit: cover; 
}

@media (max-width: 768px) {
    .hero { padding: 40px 0; min-height: auto; }
    .hero-h1, .hero-title { font-size: 38px; line-height: 1.1; margin-bottom: 16px; }
    .hero-h2, .hero-subtitle { font-size: 24px; line-height: 1.2; margin-bottom: 12px; }
    .hero-p, .hero-description { font-size: 16px; line-height: 1.4; margin-bottom: 12px; }
    .hero-content .lead { font-size: 1rem; margin-bottom: 24px; }
    .cta-group { align-items: center; text-align: center; }
}

.btn-primary { background-color: var(--primary); color: var(--white); padding: 22px 48px; border-radius: 4px; font-weight: 600; font-size: 1.1rem; text-decoration: none; display: inline-flex; align-items: center; gap: 12px; width: fit-content; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(9, 35, 54, 0.2); border: none; cursor: pointer; letter-spacing: 0.02em; }
.btn-primary:hover { background-color: var(--bg-navy); transform: translateY(-2px); box-shadow: 0 15px 40px rgba(9, 35, 54, 0.3); }
.btn-primary::after { content: ''; width: 20px; height: 2px; background: var(--accent); display: block; margin-left: -5px; transition: width 0.3s ease; }
.btn-primary:hover::after { width: 30px; }
.link-accent { color: var(--accent); text-decoration: underline; font-weight: 600; font-size: 1rem; cursor: pointer; }



/* PROBLEMS (DIAGNOZA) */
.problems { padding: 120px 0; background-color: var(--bg-navy); color: var(--white); }
.problems-container { display: flex; flex-direction: column; gap: 80px; }
.problems-top { text-align: center; max-width: 700px; margin: 0 auto; }
.problems-top .subheading { text-transform: uppercase; color: var(--accent); font-weight: 700; font-size: 14px; letter-spacing: 0.2em; margin-bottom: 20px; display: block; }
.problems-top h2 { font-size: 42px; line-height: 1.1; margin-bottom: 24px; color: var(--white); }
.problems-top .lead { color: rgba(255,255,255,0.7); font-size: 1.25rem; font-weight: 500; }

.problems-middle { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.problem-box-dark { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 40px; }
.problem-box-dark h4 { color: var(--accent); margin-bottom: 24px; font-size: 1.25rem; font-family: var(--font-body); }
.problem-list-new { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.problem-list-new li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.9); font-weight: 500; }
.icon-x { color: #EF4444; font-weight: bold; }

.problem-highlight-box { display: flex; align-items: center; justify-content: center; padding: 40px; background: rgba(199, 174, 106, 0.05); border-radius: 20px; border-left: 4px solid var(--accent); }
.highlight-text { font-family: var(--font-serif); font-size: 2rem; line-height: 1.2; color: var(--white); font-weight: 700; }

.problems-bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.system-card { background: var(--white); border-radius: 20px; padding: 40px 30px; text-align: center; transition: transform 0.3s ease; }
.system-card:hover { transform: translateY(-5px); }
.system-card .step-num { font-size: 14px; color: var(--accent); font-weight: 800; display: block; margin-bottom: 12px; letter-spacing: 0.1em; }
.system-card h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 8px; font-family: var(--font-body); }
.system-card p { font-size: 0.95rem; color: var(--text-gray); margin: 0; }

@media (max-width: 768px) {
    .problems-middle, .problems-bottom { grid-template-columns: 1fr; }
    .highlight-text { font-size: 1.5rem; }
}

/* PROCESS */
.process { padding: 120px 0; background-color: #F9F7F5; }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; color: #1A1A1A; margin-bottom: 0; }
.process-header .subtitle { font-size: 18px; color: #6B7280; margin-top: 16px; display: block; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.process-item { background: #FFFFFF; border-radius: 32px; padding: 48px 40px; text-align: center; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02); display: flex; flex-direction: column; flex-grow: 1; }
.process-item .number { font-family: var(--font-serif); font-size: 72px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 20px; display: block; opacity: 0.5; }
.process-item h3 { font-size: 20px; font-weight: 800; color: #1A1A1A; margin-bottom: 20px; line-height: 1.2; }
.process-item p { font-size: 15px; line-height: 1.6; color: #4B5563; }
.process-cta-btn { display: inline-block; margin: 64px auto 0; padding: 18px 40px; background-color: var(--primary); color: white; border-radius: 4px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
.process-cta-btn:hover { background-color: var(--bg-navy); transform: translateY(-2px); }

/* INVENTORY LIST */
.inventory-section { padding: 100px 0; background-color: #FFFFFF; border-bottom: 1px solid #eee; }
.inventory-container { max-width: 900px; margin: 0 auto; }
.inventory-header { text-align: center; margin-bottom: 60px; }
.inventory-header h2 { font-size: 36px; margin-bottom: 16px; }
.inventory-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.inventory-item { background: var(--bg-neutral); border-radius: 16px; padding: 32px 24px; text-align: center; border: 1px solid #eee; }
.inv-icon { font-size: 3rem; margin-bottom: 16px; display: block; }
.inv-title { font-size: 1.25rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; display: block; }
.inv-desc { font-size: 0.95rem; color: var(--text-gray); line-height: 1.5; }
.inv-highlight { color: var(--primary); font-weight: 700; display: block; margin-top: 8px; font-size: 0.9rem; }

/* MINI CASE STUDIES */
.mini-cases { padding: 100px 0; background-color: var(--bg-neutral); }
.mini-cases-container { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card { background: var(--white); padding: 24px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border-left: 4px solid var(--accent); }
.case-role { font-size: 0.85rem; text-transform: uppercase; color: var(--text-gray); letter-spacing: 0.05em; font-weight: 700; margin-bottom: 8px; display: block; }
.case-result { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; }
.case-detail { font-size: 0.9rem; color: var(--text-gray); margin-top: 8px; font-style: italic; }

/* PRODUCT VALUE */
.product-value { padding: 120px 0; background-color: #F9F7F5; }
.value-container { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.value-content h2 { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 24px; }
.value-content .body-text { font-size: 18px; color: #4B5563; line-height: 1.6; margin-bottom: 24px; }
.value-list { display: flex; flex-direction: column; gap: 12px; }
.value-card { background: #FFFFFF; border-radius: 12px; padding: 16px 24px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03); border: 1px solid #F3F4F6; display: flex; align-items: center; gap: 16px; }
.value-card .v-icon { font-size: 1.25rem; flex-shrink: 0; }
.value-card span { font-weight: 600; color: var(--text-dark); font-size: 1rem; }

/* BEFORE AFTER */
.before-after { padding: 100px 0; background-color: #F9F7F5; }
.ba-container { max-width: 1000px; margin: 0 auto; padding: 0 40px; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ba-card { border-radius: 24px; padding: 48px; display: flex; flex-direction: column; }
.ba-card.zanim { background: transparent; border: 1px solid #E5E7EB; }
.ba-card.po { background: var(--primary); color: var(--white); border: 1px solid var(--accent); }
.ba-card.po h3, .ba-card.po .ba-item { color: var(--white); }
.ba-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; letter-spacing: 0.05em; color: #1A1A1A; margin-bottom: 32px; text-align: center; }
.ba-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.ba-item { display: flex; align-items: flex-start; gap: 12px; font-family: var(--font-body); color: #4B5563; font-size: 16px; line-height: 1.6; }
.ba-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 12px; font-weight: bold; }
.zanim .ba-icon { color: var(--primary); border: 1.5px solid var(--primary); }
.po .ba-icon { background-color: var(--accent); color: var(--primary); }
.ba-cta-container { text-align: center; margin-top: 60px; }
.ba-cta-btn { display: inline-block; background-color: var(--primary); color: white; border-radius: 4px; padding: 18px 40px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
.ba-cta-btn:hover { background-color: var(--bg-navy); transform: translateY(-2px); }

/* CASE STUDY */
.case-study { padding: 100px 0; background-color: #F9F7F5; }
.cs-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.cs-header { text-align: center; margin-bottom: 60px; }
.cs-header h2 { font-size: 38px; font-weight: 800; line-height: 1.1; letter-spacing: -0.04em; color: #1A1A1A; }
.cs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: stretch; }
.cs-card { border-radius: 24px; padding: 40px; position: relative; display: flex; flex-direction: column; justify-content: center; }
.cs-card.testimonial { background-color: var(--bg-neutral); border: 1px solid #eee; box-shadow: var(--shadow-premium); overflow: hidden; }
.cs-card.results { background-color: #FFFFFF; border: 1px dashed #E5E7EB; text-align: center; }
.cs-quote-bg { position: absolute; top: 20px; left: 20px; opacity: 0.05; color: var(--primary); z-index: 0; }
.cs-card h4 { font-size: 22px; font-weight: 800; color: #1A1A1A; margin-bottom: 4px; position: relative; z-index: 10; }
.cs-card .subtitle { font-size: 14px; color: #6B7280; margin-bottom: 12px; position: relative; z-index: 10; }
.cs-card .highlight { color: var(--accent); font-weight: 700; }
.cs-card blockquote { font-size: 17px; line-height: 1.6; color: #4B5563; font-style: italic; position: relative; z-index: 10; }
.cs-results-info { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cs-chart-icon { width: 64px; height: 64px; color: var(--primary); }
.cs-results-text { font-weight: 700; color: #1A1A1A; font-size: 18px; }
.cs-results-caption { display: block; text-align: center; margin-top: 16px; font-size: 12px; color: #6B7280; }
.cs-cta-container { text-align: center; margin-top: 60px; }
.btn-pill-coral { display: inline-block; background-color: var(--primary); color: white; padding: 22px 48px; border-radius: 4px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; }
.btn-pill-coral:hover { background-color: var(--bg-navy); transform: translateY(-2px); }

/* GRAPHICS SYSTEM */
.graphics-system { padding: 140px 80px; background-color: #FFFFFF; }
.gs-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 96px; align-items: center; }
.gs-content h2 { font-size: 40px; font-weight: 800; line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 24px; }
.gs-content .description { font-size: 18px; color: #4B5563; margin-top: 32px; margin-bottom: 40px; line-height: 1.6; }
.gs-checklist { background: #FFFFFF; border-radius: 20px; padding: 32px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); max-width: 480px; min-width: 420px; border: 1px solid #F3F4F6; }
.gs-checklist ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.gs-check-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: #1A1A1A; font-size: 16px; }
.gs-check-item svg { color: var(--primary); width: 20px; height: 20px; flex-shrink: 0; }
.gs-visual-card { background: transparent; border-radius: 24px; padding: 0; box-shadow: var(--shadow-premium); text-align: center; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.gs-visual-card img { width: 100%; height: auto; display: block; border-radius: 24px; background-color: #F3F4F6; min-height: 300px; object-fit: cover; }

/* DECISION MAKING */
.decision-making { padding: 100px 0; }
.dm-bottom-pink { background: rgba(199, 174, 106, 0.1); border-radius: 16px; padding: 32px; text-align: left; width: 100%; }

/* AD COPY SYSTEM */
.ad-copy-system { padding: 120px 80px; background-color: #FFFFFF; }
.ac-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 96px; align-items: flex-start; }
.ac-content h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; color: #1A1A1A; }
.ac-content .ac-description { font-family: var(--font-body); font-size: 17px; color: #4B5563; line-height: 1.6; margin-top: 24px; }
.ac-info-box { margin-top: 40px; width: 100%; max-width: 400px; background: #F3F4F6; border-radius: 18px; padding: 24px; }
.ac-info-box h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.ac-info-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ac-info-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #1A1A1A; font-weight: 600; }
.ac-info-item::before { content: ''; width: 8px; height: 8px; background-color: var(--primary); flex-shrink: 0; border-radius: 2px; }
.ac-mockup-card { background: #FFFFFF; border-radius: 24px; padding: 32px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); width: 100%; max-width: 560px; border: 1px solid #F3F4F6; }
.ac-mock-block { margin-bottom: 32px; }
.ac-mock-block:last-of-type { margin-bottom: 0; }
.ac-mock-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: #1A1A1A; }
.ac-mock-lines { display: flex; flex-direction: column; gap: 12px; }
.ac-mock-line { height: 8px; background: #E5E7EB; border-radius: 4px; }
.ac-mock-caption { display: block; text-align: center; font-size: 12px; color: #9CA3AF; margin-top: 24px; }

/* AI TOOL */
.ai-tool { padding: 120px 80px; background-color: var(--bg-neutral); }
.ai-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.ai-mockup-card { background: #FFFFFF; border-radius: 24px; padding: 40px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03); width: 100%; max-width: 500px; justify-self: center; border: 1px solid var(--accent); }
.ai-card-header { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #1A1A1A; }
.ai-spark { color: var(--primary); font-size: 18px; }
.ai-form-box { background: #F9FAFB; border-radius: 16px; padding: 24px; margin-top: 24px; }
.ai-field { margin-bottom: 20px; }
.ai-field label { display: block; font-size: 12px; font-weight: 700; color: #4B5563; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.ai-pill-input { display: inline-block; background: rgba(199, 174, 106, 0.1); color: var(--accent-hover); border-radius: 4px; padding: 6px 16px; font-size: 14px; font-weight: 600; }
.ai-btn-gen { width: 100%; background-color: var(--primary); color: white; border: none; padding: 14px; border-radius: 12px; font-weight: 700; font-size: 14px; cursor: pointer; transition: opacity 0.3s; margin-top: 8px; }
.ai-btn-gen:hover { opacity: 0.9; }
.ai-content h2 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; line-height: 1.1; color: #1A1A1A; }
.ai-content .description { font-size: 17px; color: #4B5563; line-height: 1.6; margin-top: 24px; }
.ai-feature-boxes { margin-top: 32px; }
.ai-box { background: #F3F4F6; border-radius: 20px; padding: 24px; margin-top: 16px; }
.ai-box:first-of-type { margin-top: 0; }
.ai-box h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.ai-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ai-list-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #4B5563; }
.ai-list-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.ai-list-item.check svg { color: var(--primary); }
.ai-list-item.cross svg { color: #EF4444; }
.ai-benefits-mini { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.ai-benefit { font-weight: 600; color: #1A1A1A; font-size: 15px; }

/* TARGET AUDIENCE */
.target-audience { padding: 120px 80px; background-color: #F9F7F5; }
.ta-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 100px; align-items: center; }
.ta-content h2 { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; line-height: 1.1; color: #1A1A1A; margin-bottom: 40px; }
.ta-list { list-style: none; padding: 0; margin: 0; }
.ta-item { display: flex; gap: 16px; margin-bottom: 24px; font-family: var(--font-body); color: #374151; line-height: 1.6; font-size: 1.15rem; font-weight: 500; }
.ta-marker { color: var(--primary); font-weight: 800; flex-shrink: 0; font-size: 1.4rem; }
.ta-mockup-wrapper { position: relative; justify-self: center; }
.ta-mockup-wrapper::before { content: ''; position: absolute; bottom: -15px; right: 0; width: 80%; height: 40px; background: rgba(0, 0, 0, 0.1); filter: blur(20px); transform: skew(-10deg) rotate(2deg); z-index: 1; }
.ta-card { background: #FFFFFF; border-radius: 24px; padding: 32px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05); width: 100%; max-width: 440px; position: relative; z-index: 2; }
.ta-inner-box { background: var(--bg-neutral); border-radius: 20px; display: flex; flex-direction: column; justify-content: center; align-items: center; aspect-ratio: 1/1; padding: 40px; text-align: center; border: 1px solid #eee; }
.ta-circle { width: 80px; height: 80px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; margin-bottom: 24px; box-shadow: var(--shadow-premium); }
.ta-inner-box span { font-family: var(--font-body); font-weight: 700; font-size: 20px; color: var(--text-dark); }

/* FINAL MOTIVATION */
.final-motivation { padding: 130px 40px; background-color: #F9F7F5; text-align: center; }
.fm-container { max-width: 1150px; margin: 0 auto; }
.fm-badge { display: inline-block; background: rgba(17, 63, 97, 0.05); border: 1px solid var(--accent); border-radius: 4px; padding: 8px 18px; font-size: 14px; color: var(--primary); font-weight: 600; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 0.1em; }
.final-motivation h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; line-height: 1.15; max-width: 800px; margin: 0 auto 60px; color: #1A1A1A; }
.fm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: stretch; }
.fm-card { background: #FFFFFF; border-radius: 24px; padding: 32px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.fm-icon { color: var(--primary); font-size: 24px; }
.fm-card p { font-family: var(--font-body); color: #4B5563; font-size: 17px; line-height: 1.5; margin-top: 16px; }
.fm-cta { display: inline-block; background: var(--primary); color: #FFFFFF; border-radius: 99px; padding: 18px 40px; font-weight: 700; font-size: 18px; margin-top: 60px; text-decoration: none; transition: transform 0.3s ease; }
.fm-cta:hover { transform: scale(1.05); }

/* FAQ */
.faq-section { padding: 120px 24px; background-color: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-section h2 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; line-height: 1.2; text-align: center; color: #1A1A1A; margin-bottom: 50px; }

.faq-item-new {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #F3F4F6;
    overflow: hidden;
}

.faq-item-new:hover { border-color: var(--accent); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    color: #1A1A1A;
    width: 100%;
    pointer-events: none;
}

.faq-arrow {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item-new.active { border-color: var(--primary); background-color: #FAFAFA; }
.faq-item-new.active .faq-arrow { transform: rotate(180deg); }

.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-family: var(--font-body);
    color: #4B5563;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;
}

.faq-item-new.active .faq-answer-new {
    margin-top: 16px;
    opacity: 1;
    transform: translateY(0);
}

/* PRICING */
.pricing { padding: 120px 0; position: relative; background-color: var(--bg-neutral); }
.price-card { max-width: 700px; margin: 0 auto; background: var(--white); padding: 80px 60px; border-radius: 12px; border: 1px solid var(--accent); box-shadow: var(--shadow-premium); position: relative; z-index: 10; }
.price-badge { background: var(--primary); color: white; padding: 8px 20px; border-radius: 99px; font-weight: 800; font-size: 0.875rem; display: inline-block; margin-bottom: 24px; }
.main-price { font-size: 5rem; margin: 24px 0; font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.main-price span { font-size: 1.5rem; text-decoration: line-through; opacity: 0.3; margin-right: 16px; vertical-align: middle; }
.btn-full { width: 100%; justify-content: center; margin-top: 32px; }

/* FOOTER */
.footer { padding: 80px 0; background-color: var(--bg-navy); text-align: center; color: rgba(255, 255, 255, 0.6); font-size: 14px; position: relative; z-index: 10; }

/* STICKY CTA MOBILE */
.sticky-cta-mobile { display: none !important; position: fixed; bottom: 0; left: 0; width: 100%; background-color: var(--white); padding: 16px; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); z-index: 9999; box-sizing: border-box; }
@media (max-width: 768px) {
    .sticky-cta-mobile { display: none; } /* JS will toggle this */
}
.sticky-cta-mobile a { display: block; width: 100%; text-align: center; background-color: var(--primary); color: var(--white); padding: 16px; border-radius: 4px; font-weight: 700; font-size: 1rem; text-decoration: none; box-shadow: 0 10px 30px rgba(9, 35, 54, 0.2); }

/* ANIMATIONS */
.process-item, .ba-card, .cs-card, .value-card, .problem-card, .fm-card, .price-card, .gs-visual-card, .ai-mockup-card, .ta-card, .inventory-item, .case-card { opacity: 0; transform: translateY(40px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.process-item.is-visible, .ba-card.is-visible, .cs-card.is-visible, .value-card.is-visible, .problem-card.is-visible, .fm-card.is-visible, .price-card.is-visible, .gs-visual-card.is-visible, .ai-mockup-card.is-visible, .ta-card.is-visible, .inventory-item.is-visible, .case-card.is-visible { opacity: 1; transform: translateY(0); }
.ba-card:nth-child(2) { transition-delay: 0.15s; }
.process-item:nth-child(2) { transition-delay: 0.15s; }
.process-item:nth-child(3) { transition-delay: 0.3s; }

/* MEDIA QUERIES */
@media (max-width: 768px) {
    h1, h2, h3 { line-height: 1.15; }
    .container { padding: 0 24px; }
    .hero { padding: 60px 0; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .hero-content .support { margin: 16px auto 0; }
    .cta-group { align-items: center; }
    .btn-primary { width: 100%; max-width: 400px; justify-content: center; }
    .hero-visual { justify-content: center; }
    .bloom { display: none; }
    .problems { padding: 64px 24px; }
    .problems-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .problems-content h2 { font-size: 32px; }
    .problems-list { align-items: center; }
    .problem-card { width: 100%; text-align: left; }
    .process { padding: 60px 20px; }
    .process-header h2 { font-size: 28px; }
    .process-grid { grid-template-columns: 1fr; gap: 24px; }
    .process-item { padding: 40px 30px; }
    .inventory-list { grid-template-columns: 1fr; }
    .mini-cases-container { grid-template-columns: 1fr; }
    .product-value { padding: 60px 24px; }
    .value-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .value-content h2 { font-size: 30px; }
    .value-list { text-align: left; }
    .before-after { padding: 48px 0; }
    .ba-container { padding: 0 20px; }
    .ba-grid { grid-template-columns: 1fr; gap: 20px; }
    .ba-card { padding: 40px 24px; }
    .ba-cta-btn { width: 100%; box-sizing: border-box; text-align: center; }
    .case-study { padding: 60px 0; }
    .cs-header h2 { font-size: 28px; }
    .cs-grid { grid-template-columns: 1fr; }
    .cs-card { padding: 32px 24px; }
    .graphics-system { padding: 80px 24px; }
    .gs-container { grid-template-columns: 1fr; gap: 60px; }
    .gs-checklist { max-width: 100%; min-width: 0; }
    .gs-content h2 { font-size: 32px; }
    .decision-making { padding: 80px 24px; }
    .ad-copy-system { padding: 80px 24px; }
    .ac-container { grid-template-columns: 1fr; gap: 60px; }
    .ac-info-box { width: 100%; }
    .ac-content h2 { font-size: 30px; }
    .ai-tool { padding: 80px 24px; }
    .ai-container { grid-template-columns: 1fr; gap: 60px; }
    .ai-mockup-card { max-width: 100%; order: 2; }
    .ai-content { order: 1; }
    .ai-content h2 { font-size: 32px; }
    .target-audience { padding: 80px 24px; }
    .ta-container { grid-template-columns: 1fr; gap: 60px; }
    .ta-mockup-wrapper { order: 2; }
    .ta-content { order: 1; }
    .ta-content h2 { font-size: 32px; margin-bottom: 30px; }
    .final-motivation { padding: 80px 24px; }
    .final-motivation h2 { font-size: 30px; }
    .fm-grid { grid-template-columns: 1fr; }
    .fm-cta { width: 100%; box-sizing: border-box; }
    .faq-section { padding: 80px 20px; }
    .faq-section h2 { font-size: 28px; }
    .pricing { padding: 60px 0; }
    .price-card { padding: 60px 24px; }
    .main-price { font-size: 3.5rem; }
    .sticky-cta-mobile { display: block; }
    .footer { padding-bottom: 100px; }
}

/* FAQ & CONTACT */
.faq-section { padding: 120px 24px; background-color: var(--white); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item-new { background: #FFFFFF; border-radius: 20px; padding: 24px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); margin-bottom: 20px; cursor: pointer; transition: all 0.3s ease; border: 1px solid #F3F4F6; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); font-weight: 700; font-size: 18px; color: #1A1A1A; width: 100%; pointer-events: none; }
.faq-arrow { width: 24px; height: 24px; color: var(--accent); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 16px; }
.faq-answer-new { max-height: 0; overflow: hidden; transition: all 0.3s ease; font-family: var(--font-body); color: var(--text-gray); font-size: 16px; line-height: 1.6; padding-right: 20px; }
.faq-item-new.active .faq-answer-new { margin-top: 16px; padding-bottom: 8px; }

.contact-section { padding: 120px 0; background-color: var(--bg-neutral); }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-visual img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-premium); border: 1px solid rgba(199, 174, 106, 0.2); }
.contact-form-wrapper { background: var(--white); padding: 48px; border-radius: 24px; box-shadow: var(--shadow-premium); border: 1px solid #EEE; }
.contact-header { margin-bottom: 32px; }
.contact-header h2 { font-size: 32px; margin-bottom: 12px; }
.contact-header p { color: var(--text-gray); font-size: 1.1rem; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-weight: 700; font-size: 0.9rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group textarea { padding: 16px; border-radius: 8px; border: 1px solid #E5E7EB; font-family: var(--font-body); font-size: 1rem; transition: all 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(199, 174, 106, 0.1); }

@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; gap: 48px; }
    .contact-visual { order: 2; }
    .contact-form-wrapper { order: 1; padding: 32px 24px; }
}
