/* ===================================
   Growth Partner - Corporate Website
   Main Stylesheet
   =================================== */

/* ---- CSS Variables (Brand Colors) ---- */
:root {
  --primary: #1a3a6b;       /* Navy Blue - メインブランドカラー */
  --primary-light: #2a5298;
  --accent-orange: #f47920;  /* Orange - アクセントカラー */
  --accent-green: #2eaa5e;   /* Green - サブアクセント */
  --accent-blue: #1e88e5;    /* Blue - サブアクセント */
  --bg-light: #f8f9fc;
  --bg-white: #ffffff;
  --text-dark: #1a2340;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(26, 58, 107, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 58, 107, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 58, 107, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
  --font-main: 'Noto Sans JP', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Section Base ---- */
section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.8;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ---- Gradient Text ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-green) 50%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), #e85d04);
  color: #fff;
  box-shadow: 0 4px 16px rgba(244, 121, 32, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 121, 32, 0.5);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(255,255,255,0.3);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.4);
}

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-orange { background: rgba(244,121,32,0.15); color: var(--accent-orange); }
.badge-green  { background: rgba(46,170,94,0.15);  color: var(--accent-green); }
.badge-blue   { background: rgba(30,136,229,0.15);  color: var(--accent-blue); }
.badge-navy   { background: rgba(26,58,107,0.1);    color: var(--primary); }

/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-green));
  margin: 16px auto 0;
}
.divider-left { margin-left: 0; }

/* ===================================
   HEADER / NAVIGATION
   =================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 44px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
  border-radius: 1px;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.nav-cta { margin-left: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: var(--transition);
}

/* ---- Mobile Menu ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 40px 24px;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 1.2rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* ===================================
   FOOTER
   =================================== */
#footer {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.5); }
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  color: rgba(255,255,255,0.65);
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--accent-orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--accent-orange); }

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  padding: 148px 0 80px;
  background: linear-gradient(160deg, #f0f4ff 0%, #fff8f2 60%, #f0fbf5 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,121,32,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,136,229,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(244,121,32,0.1);
  border: 1px solid rgba(244,121,32,0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 24px;
}
.hero-badge i { font-size: 0.85rem; }
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-num span { color: var(--accent-orange); }
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}
.hero-visual {
  position: relative;
}
.hero-card-main {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-card-main h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.sns-icons-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.sns-icon-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
}
.sns-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.sns-x         { background: #000; color: #fff; }
.sns-tiktok    { background: #010101; color: #fff; }
.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.metric-box {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.metric-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.metric-val span { color: var(--accent-green); }
.metric-label {
  font-size: 0.72rem;
  color: var(--text-light);
}
.hero-float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}
.hero-float-1 { top: -20px; right: -20px; animation-delay: 0s; }
.hero-float-2 { bottom: -16px; left: -16px; animation-delay: 1.5s; }
.hero-float-badge i { color: var(--accent-green); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ===================================
   REASONS / WHY CHOOSE US
   =================================== */
.reasons { background: var(--bg-white); }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.reason-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.reason-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.reason-card.card-orange::before { background: var(--accent-orange); }
.reason-card.card-green::before  { background: var(--accent-green); }
.reason-card.card-blue::before   { background: var(--accent-blue); }
.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
  background: #fff;
}
.reason-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.reason-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}
.icon-orange { background: rgba(244,121,32,0.12); color: var(--accent-orange); }
.icon-green  { background: rgba(46,170,94,0.12);  color: var(--accent-green); }
.icon-blue   { background: rgba(30,136,229,0.12);  color: var(--accent-blue); }
.reason-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}
.reason-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===================================
   FLOW / HOW IT WORKS
   =================================== */
.flow { background: var(--bg-light); }
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  counter-reset: step;
}
.flow-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-green));
  z-index: 1;
}
.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(26,58,107,0.3);
}
.step-icon { font-size: 1.5rem; }
.step-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.step-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(244,121,32,0.12);
  color: var(--accent-orange);
}

/* ===================================
   PRICING PREVIEW
   =================================== */
.pricing { background: var(--bg-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  background: var(--primary);
  color: #fff;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card:not(.featured):hover {
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-md);
}
.price-popular {
  position: absolute;
  top: 20px; right: -28px;
  background: var(--accent-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 36px;
  transform: rotate(35deg);
  letter-spacing: 0.05em;
}
.price-plan {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.price-card:not(.featured) .price-plan { color: var(--text-light); }
.price-card.featured .price-plan       { color: rgba(255,255,255,0.6); }
.price-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.price-card:not(.featured) .price-name { color: var(--primary); }
.price-card.featured .price-name       { color: #fff; }
.price-amount {
  margin-bottom: 8px;
  line-height: 1;
}
.price-amount .yen {
  font-size: 1.2rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 6px;
}
.price-amount .num {
  font-size: 2.8rem;
  font-weight: 900;
}
.price-amount .period {
  font-size: 0.85rem;
  font-weight: 500;
}
.price-card:not(.featured) .price-amount { color: var(--primary); }
.price-card.featured .price-amount       { color: #fff; }
.price-tax {
  font-size: 0.78rem;
  margin-bottom: 24px;
}
.price-card:not(.featured) .price-tax { color: var(--text-light); }
.price-card.featured .price-tax       { color: rgba(255,255,255,0.55); }
.price-divider {
  height: 1px;
  margin-bottom: 24px;
}
.price-card:not(.featured) .price-divider { background: var(--border); }
.price-card.featured .price-divider       { background: rgba(255,255,255,0.15); }
.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.price-feature i {
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.price-card:not(.featured) .price-feature i { color: var(--accent-green); }
.price-card.featured .price-feature i       { color: var(--accent-orange); }
.price-card.featured .price-feature         { color: rgba(255,255,255,0.85); }
.price-btn-wrap { text-align: center; }
.price-cta-link {
  font-size: 0.88rem;
  color: var(--accent-orange);
  font-weight: 700;
  margin-top: 16px;
  display: block;
  text-align: center;
  transition: var(--transition);
}
.price-cta-link:hover { text-decoration: underline; }

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials { background: var(--bg-light); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.test-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.test-comment {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 24px;
  position: relative;
}
.test-comment::before {
  content: '"';
  font-size: 3rem;
  color: var(--accent-orange);
  opacity: 0.15;
  position: absolute;
  top: -16px;
  left: -8px;
  font-family: Georgia, serif;
  line-height: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.test-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
}
.test-role {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ===================================
   FAQ
   =================================== */
.faq { background: var(--bg-white); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--accent-orange);
  box-shadow: 0 4px 16px rgba(244,121,32,0.1);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--bg-light);
  transition: var(--transition);
  -webkit-user-select: none;
  user-select: none;
}
.faq-item.open .faq-q { background: rgba(244,121,32,0.06); }
.faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
  border-top: 1px solid var(--border);
  background: #fff;
}
.faq-item.open .faq-a { display: block; }

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1e3a5f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(244,121,32,0.12);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-inner .section-label { color: rgba(255,255,255,0.6); }
.cta-inner .section-title { color: #fff; }
.cta-inner .section-desc  { color: rgba(255,255,255,0.75); margin: 0 auto 40px; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.cta-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===================================
   SERVICE DETAIL PAGE
   =================================== */
.page-hero {
  padding: 120px 0 64px;
  background: linear-gradient(160deg, #f0f4ff 0%, #f8f9fc 100%);
  text-align: center;
}
.page-hero .section-title { max-width: 700px; margin: 0 auto 16px; }
.page-hero .section-desc  { max-width: 600px; margin: 0 auto; }
.sns-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sns-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 2px solid var(--border);
  transition: var(--transition);
}
.sns-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.sns-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
}
.ig-grad  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366); }
.x-dark   { background: #000; }
.tt-dark  { background: #010101; }
.sns-card-name { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.sns-card-sub  { font-size: 0.82rem; color: var(--text-light); margin-bottom: 20px; }
.sns-feature-list { display: flex; flex-direction: column; gap: 10px; }
.sns-feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-mid); }
.sns-feature-item i { color: var(--accent-green); font-size: 0.85rem; flex-shrink: 0; }
.service-detail-section { background: var(--bg-light); }
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-detail-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-detail-card:hover { box-shadow: var(--shadow-md); }
.sd-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.sd-title { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.sd-desc  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; }
.target-section { background: var(--bg-white); }
.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.target-card {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.target-card:hover { background: var(--accent-orange); color: #fff; transform: translateY(-4px); }
.target-card i { font-size: 1.8rem; margin-bottom: 12px; color: var(--accent-orange); transition: var(--transition); }
.target-card:hover i { color: #fff; }
.target-card p { font-size: 0.88rem; font-weight: 700; color: var(--primary); transition: var(--transition); line-height: 1.4; }
.target-card:hover p { color: #fff; }

/* ===================================
   PRICING PAGE
   =================================== */
.pricing-full { background: var(--bg-light); }
.pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 700px;
}
.pricing-table th, .pricing-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.pricing-table th {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--bg-light);
  color: var(--text-mid);
}
.pricing-table th.featured-col { background: var(--primary); color: #fff; }
.pricing-table td.featured-col { background: rgba(26,58,107,0.04); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .row-label {
  text-align: left;
  font-weight: 600;
  color: var(--primary);
}
.pricing-table .check { color: var(--accent-green); font-size: 1rem; }
.pricing-table .cross { color: #e2e8f0; font-size: 0.9rem; }
.options-section { background: var(--bg-white); }
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.option-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.option-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--accent-orange); }
.option-icon { font-size: 2rem; margin-bottom: 14px; }
.option-name  { font-size: 1rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.option-price { font-size: 0.88rem; font-weight: 700; color: var(--accent-orange); margin-bottom: 12px; }
.option-desc  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

/* ===================================
   ABOUT PAGE
   =================================== */
.message-section { background: var(--bg-white); }
.message-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: center;
}
.message-portrait {
  position: relative;
}
.portrait-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--bg-light), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--text-light);
}
.portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #e8ecf8, #f0f4ff);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
}
.portrait-placeholder i { font-size: 4rem; }
.portrait-placeholder p { font-size: 0.85rem; font-weight: 600; }
.message-content .section-title { text-align: left; }
.message-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 20px;
}
.message-sig {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 700;
  margin-top: 32px;
}
.company-section { background: var(--bg-light); }
.company-table {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.company-table th, .company-table td {
  padding: 18px 28px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.company-table th {
  background: var(--bg-light);
  font-weight: 700;
  color: var(--primary);
  width: 180px;
  text-align: left;
}
.company-table td { color: var(--text-mid); }
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }
.values-section { background: var(--bg-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: #fff; }
.value-icon { font-size: 2.4rem; margin-bottom: 16px; }
.value-title { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.value-desc  { font-size: 0.86rem; color: var(--text-mid); line-height: 1.8; }

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section { background: var(--bg-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-info h3 { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.contact-info p  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 32px; }
.contact-detail-list { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text .label { font-size: 0.75rem; color: var(--text-light); font-weight: 600; margin-bottom: 2px; }
.contact-detail-text .value { font-size: 0.92rem; color: var(--primary); font-weight: 600; }
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.form-subtitle { font-size: 0.85rem; color: var(--text-light); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-group .required {
  display: inline-block;
  padding: 2px 6px;
  background: rgba(244,121,32,0.15);
  color: var(--accent-orange);
  font-size: 0.68rem;
  border-radius: 4px;
  margin-left: 6px;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(244,121,32,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23718096' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.form-privacy { font-size: 0.82rem; color: var(--text-light); margin-bottom: 28px; line-height: 1.6; }
.form-privacy a { color: var(--accent-orange); text-decoration: underline; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; font-weight: 800; }
.success-message {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.success-message i { font-size: 3.5rem; color: var(--accent-green); margin-bottom: 20px; }
.success-message h3 { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.success-message p  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .hero-inner     { grid-template-columns: 1fr; }
  .hero-visual    { display: none; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .target-grid    { grid-template-columns: repeat(2, 1fr); }
  .message-inner  { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .reasons-grid       { grid-template-columns: 1fr; }
  .flow-steps         { flex-direction: column; align-items: stretch; gap: 16px; }
  .flow-step::after   { display: none; }
  .pricing-grid       { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .testimonial-grid   { grid-template-columns: 1fr; }
  .sns-cards          { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .options-grid       { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .contact-form-card  { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-stats { gap: 20px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
