:root {
    --orange: #F07030;
    --orange-dark: #C85A18;
    --orange-vlight: #FFF0E5;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --soft-white: #F5F5F5;
    --text-dark: #1A1A1A;
    --text-mid: #555555;
    --text-light: #888888;
    --border: #E5E5E5;
    --border-light: #F0F0F0;
  }

  /* ===== Common ===== */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
  section { padding: 100px 0; }
  .section-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
    display: block;
  }
  .section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
  }
  .section-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 2;
    max-width: 720px;
  }
  .fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible { opacity: 1; transform: none; }

  /* ===== Page Header (white-orange) ===== */
  .page-header {
    background: linear-gradient(135deg, var(--white) 0%, var(--orange-vlight) 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
  }
  .page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(240,112,48,0.10) 0%, transparent 70%);
  }
  .page-header .container { position: relative; z-index: 1; }
  .page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 28px;
  }
  .page-header .breadcrumb a { color: var(--text-mid); transition: color 0.2s; }
  .page-header .breadcrumb a:hover { color: var(--orange); }
  .page-header .breadcrumb .sep { color: var(--text-light); }
  .page-header .page-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .page-header .page-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 2;
    max-width: 720px;
  }

  /* ===== Photo Frame ===== */
  .photo-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 280px;
    background: var(--orange-vlight);
    border: 1px dashed rgba(240,112,48,0.4);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .photo-frame::after {
    content: attr(data-label);
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    color: var(--orange-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid var(--border);
  }
  .photo-frame-inner {
    text-align: center;
    color: var(--orange);
  }
  .photo-frame-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    color: var(--orange);
  }
  .photo-frame-text {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--orange-dark);
    margin-bottom: 6px;
  }
  .photo-frame-hint {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
  }
  .photo-frame.small { aspect-ratio: 16 / 10; min-height: 180px; }

  /* ===== Pricing Cards ===== */
  .pricing-section { background: var(--white); }
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto;
  }
  .pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px 40px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
  }
  .pricing-card:hover {
    box-shadow: 0 16px 56px rgba(240,112,48,0.10);
    transform: translateY(-4px);
    border-color: rgba(240,112,48,0.3);
  }
  .pricing-card.featured {
    background: linear-gradient(180deg, var(--orange-vlight) 0%, var(--white) 100%);
    border: 2px solid var(--orange);
    box-shadow: 0 16px 56px rgba(240,112,48,0.18);
  }
  .pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    letter-spacing: 0.08em;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(240,112,48,0.3);
  }
  .pricing-plan-name {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
  }
  .pricing-plan-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
  }
  .pricing-price {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 6px;
  }
  .pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-mid);
  }
  .pricing-period {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 28px;
  }
  .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
  }
  .pricing-features li {
    font-size: 0.9rem;
    padding: 12px 0 12px 30px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
  }
  .pricing-features li:last-child { border-bottom: none; }
  .pricing-features li svg {
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    color: var(--orange);
  }
  .pricing-cta {
    display: block;
    text-align: center;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.04em;
  }
  .pricing-cta-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(240,112,48,0.25);
  }
  .pricing-cta-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(200,90,24,0.32);
  }
  .pricing-cta-outline {
    border: 2px solid var(--orange);
    color: var(--orange);
    background: var(--white);
  }
  .pricing-cta-outline:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
  }

  /* ===== Benefits ===== */
  .benefits-section { background: var(--off-white); }
  .benefits-intro { text-align: center; margin-bottom: 64px; }
  .benefits-intro .section-desc { margin: 0 auto; }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .benefit-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(240,112,48,0.08);
  }
  .benefit-card .photo-frame {
    aspect-ratio: 4 / 3;
    min-height: 160px;
    margin-bottom: 20px;
  }
  .benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-vlight);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--orange);
  }
  .benefit-icon svg { width: 24px; height: 24px; }
  .benefit-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
  }
  .benefit-text {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.9;
  }

  /* ===== Past Themes ===== */
  .themes-section { background: var(--white); }
  .themes-intro { text-align: center; margin-bottom: 56px; }
  .themes-intro .section-desc { margin: 0 auto; }
  .themes-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
  }
  .theme-row {
    background: var(--orange-vlight);
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid var(--orange);
  }
  .theme-num {
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--orange);
    min-width: 48px;
  }
  .theme-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
  }

  /* ===== Flow ===== */
  .flow-section { background: var(--off-white); }
  .flow-intro { text-align: center; margin-bottom: 56px; }
  .flow-intro .section-desc { margin: 0 auto; }
  .flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
  }
  .flow-step {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    position: relative;
  }
  .flow-step-num {
    width: 56px;
    height: 56px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 18px;
    box-shadow: 0 6px 20px rgba(240,112,48,0.25);
  }
  .flow-step-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
  .flow-step-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.8; }

  /* ===== FAQ Mini ===== */
  .faq-mini-section { background: var(--white); }
  .faq-mini-intro { text-align: center; margin-bottom: 48px; }
  .faq-mini-list { max-width: 800px; margin: 0 auto; }
  .faq-mini-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .faq-mini-item:hover { border-color: rgba(240,112,48,0.4); }
  .faq-mini-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
  }
  .faq-mini-question:hover { color: var(--orange); }
  .faq-mini-toggle {
    width: 24px;
    height: 24px;
    color: var(--orange);
    flex-shrink: 0;
    transition: transform 0.3s;
  }
  .faq-mini-item.open .faq-mini-toggle { transform: rotate(45deg); }
  .faq-mini-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq-mini-item.open .faq-mini-answer { max-height: 320px; }
  .faq-mini-answer p {
    padding: 0 24px 20px;
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 2;
  }

  /* ===== CTA ===== */
  .plan-cta-section {
    background: linear-gradient(135deg, var(--orange-vlight) 0%, var(--white) 100%);
    text-align: center;
    padding: 96px 0;
  }
  .plan-cta-section .section-title { color: var(--text-dark); }
  .plan-cta-section .section-desc { color: var(--text-mid); margin: 0 auto 40px; }
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 18px 48px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(240,112,48,0.25);
  }
  .cta-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(200,90,24,0.32);
  }
  .cta-btn svg { width: 18px; height: 18px; }

  /* ===== Responsive ===== */
  @media (max-width: 960px) {
    section { padding: 72px 0; }
    .container { padding: 0 24px; }
    .page-header { padding: 130px 0 60px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .flow-steps { grid-template-columns: 1fr 1fr; }
    .theme-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  }
  @media (max-width: 560px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .flow-steps { grid-template-columns: 1fr; }
  }
