/* ============================================================
   인정피자 - style.css
   Breakpoints: 1200px, 1024px, 768px, 576px
   ============================================================ */

/* ---- Google Fonts + Pretendard ---- */
@import url('https://fonts.googleapis.com/css2?family=Cafe24+Shiningstar&family=Poppins:wght@700&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');

/* ---- CSS Variables ---- */
:root {
  --color-black: #000000;
  --color-yellow: #f9b911;
  --color-red: #db312a;
  --color-white: #ffffff;
  --color-dark: #111111;
  --color-gray: #888888;

  --section-pad-v: 150px;
  --container-max: 1600px;
  --container-pad: 15px;
  --container-outer-max: calc(var(--container-max) + var(--container-pad) * 2);
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: 'GmarketSans', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul, ol { list-style: none; }

/* ---- Font Utilities ---- */
.font-shining { font-family: 'Cafe24 Shiningstar', cursive; }
.font-poppins { font-family: 'Poppins', sans-serif; }
.font-pretendard { font-family: 'Pretendard', sans-serif; }
.font-inter { font-family: 'Inter', sans-serif; font-weight: 700; }
.font-gmarket-bold { font-family: 'GmarketSans', sans-serif; font-weight: 700; }
.font-gmarket-medium { font-family: 'GmarketSans', sans-serif; font-weight: 400; }
.font-gmarket-light { font-family: 'GmarketSans', sans-serif; font-weight: 300; }

/* ---- Color Utilities ---- */
.text-yellow { color: var(--color-yellow); }
.text-white { color: var(--color-white); }
.text-red { color: var(--color-red); }
.text-center { text-align: center; }

/* ---- Layout ---- */
.container {
  max-width: var(--container-outer-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}

/* ---- Common Section BG ---- */
.section-bg-cover {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.cover-overlay {
  position: absolute;
  inset: 0;
}
.dark-30 { background: rgba(0,0,0,0.3); }
.dark-50 { background: rgba(0,0,0,0.5); }
.dark-60 { background: rgba(0,0,0,0.6); }
.opacity-20 { opacity: 0.2; }
.cover-bg-dark { background: #151515; position: absolute; inset: 0; }

/* ---- Section Title ---- */
.section-title { padding-bottom: 70px; }
.section-heading {
  font-size: clamp(36px, 4.5vw, 80px);
  line-height: 1.3;
  margin-bottom: 30px;
}
.section-subheading {
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.6;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 100px;
  background: transparent;
  transition: background 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  padding: 12px 100px;
}
section[id],
[id="cost"] {
  scroll-margin-top: 120px;
}
.header-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s;
}
.site-header.scrolled .header-logo img {
  height: 70px;
}
.header-nav {
  display: flex;
  gap: 70px;
  align-items: center;
}
.header-nav a {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--color-white);
  transition: color 0.2s, font-size 0.3s;
  white-space: nowrap;
}
.site-header.scrolled .header-nav a {
  font-size: 18px;
}
.header-nav a:hover { color: var(--color-yellow); }
.header-phone {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  padding: 16px 25px;
  white-space: nowrap;
  transition: border-color 0.2s, font-size 0.3s, padding 0.3s;
}
.site-header.scrolled .header-phone {
  font-size: 18px;
  padding: 12px 20px;
}
.header-phone:hover { border-color: var(--color-yellow); color: var(--color-yellow); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO VISUAL
   ============================================================ */
.visual-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.visual-bg {
  position: absolute;
  inset: 0;
}
.visual-bg picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.visual-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  max-width: none;
}
.visual-overlay-img {
  display: none;
}
.visual-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 140px 20px 50px;
  width: 100%;
  height: 100%;
}
.visual-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.visual-subtitle-line {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.visual-subtitle-img {
  width: clamp(280px, 47vw, 865px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.visual-main-title {
  font-size: clamp(48px, 7.5vw, 120px);
  line-height: 1;
  color: var(--color-yellow);
}
.visual-sub-title {
  font-size: clamp(48px, 7.5vw, 120px);
  line-height: 1;
  color: var(--color-white);
}
.visual-btn-wrap {
  display: flex;
  gap: 20px;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}
.visual-btn-wrap .btn-primary-yellow,
.visual-btn-wrap .btn-primary-dark {
  flex: 1 1 0;
  min-width: max-content;
  justify-content: center;
  padding: 25px 35px;
}
.btn-primary-yellow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(249,185,17,0.9);
  color: #000;
  padding: 25px 20px;
  border-radius: 5px;
  font-size: clamp(16px, 1.3vw, 22px);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-primary-yellow:hover { opacity: 0.85; }
.btn-primary-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.9);
  color: #fff;
  padding: 25px 35px;
  border-radius: 5px;
  font-size: clamp(16px, 1.3vw, 22px);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-primary-dark:hover { opacity: 0.85; }
.arrow-icon { font-size: 1.1em; line-height: 1; }
.btn-text--mo { display: none; }
.br--mo { display: none; }

/* ============================================================
   BRAND SECTION
   ============================================================ */
.brand-section {
  position: relative;
  padding: var(--section-pad-v) 0;
  overflow: hidden;
}
.brand-section .container {
  position: relative;
  z-index: 1;
}
.brand-title-text {
  font-size: clamp(36px, 4.5vw, 80px);
  line-height: 1.4;
  margin-bottom: 30px;
}
.brand-title-sub {
  font-size: clamp(16px, 1.5vw, 24px);
}
.brand-cards {
  display: flex;
  gap: 20px;
  margin-top: 70px;
  flex-wrap: wrap;
}
.brand-card {
  flex: 1;
  min-width: 280px;
  padding: 70px 50px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.brand-card--yellow { background: var(--color-yellow); }
.brand-card--yellow .brand-card__title,
.brand-card--yellow .brand-card__desc { color: #000; }
.brand-card--dark { background: rgba(17,17,17,0.8); }
.brand-card__icon { height: 60px; display: flex; align-items: flex-end; }
.brand-card__icon img { height: 100%; width: auto; object-fit: contain; }
.brand-card__title { font-size: clamp(28px, 3vw, 50px); line-height: 1.4; }
.brand-card__desc { font-size: clamp(14px, 1.1vw, 18px); line-height: 1.6; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.marquee-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: clamp(60px, 8vw, 120px);
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
  padding-right: 30px;
}
.marquee-outline {
  color: transparent;
  -webkit-text-stroke: 2px #f9b911;
  paint-order: stroke fill;
  animation: marquee-stroke 2s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marquee-stroke {
  0%   { -webkit-text-stroke-color: #f9b911; }
  16%  { -webkit-text-stroke-color: #ff4d6d; }
  33%  { -webkit-text-stroke-color: #c77dff; }
  50%  { -webkit-text-stroke-color: #4cc9f0; }
  66%  { -webkit-text-stroke-color: #80ffdb; }
  83%  { -webkit-text-stroke-color: #fee440; }
  100% { -webkit-text-stroke-color: #f9b911; }
}

/* ============================================================
   STARTUP STRENGTH
   ============================================================ */
.startup-section {
  position: relative;
  padding: var(--section-pad-v) 0;
  overflow: hidden;
}
.startup-section .container { position: relative; z-index: 1; }
.strength-circles {
  display: flex;
  gap: 0;
  margin-top: 70px;
  flex-wrap: wrap;
  justify-content: center;
}
.circle-card {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(17,17,17,0.5);
  border: 1px solid var(--color-yellow);
  box-shadow: 5px 5px 30px 0 rgba(249,185,17,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 -17px;
  flex-shrink: 0;
  text-align: center;
  padding: 20px;
}
.circle-card--active {
  background: var(--color-yellow);
  box-shadow: 5px 5px 15px rgba(249,185,17,0.2);
}
.circle-num { font-size: 18px; line-height: 1.6; }
.circle-label { font-size: clamp(20px, 1.8vw, 30px); line-height: 1.6; }
.strength-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 70px;
}
.strength-card {
  background: rgba(0,0,0,0.5);
  border: 1px solid #2b2b2b;
  border-radius: 20px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.strength-card__title { font-size: clamp(20px, 1.8vw, 30px); line-height: 1.4; }
.strength-card__desc { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.6); }

/* ============================================================
   PROMISE
   ============================================================ */
.promise-section {
  position: relative;
  padding-top: var(--section-pad-v);
  overflow: hidden;
}
.promise-section .container { position: relative; z-index: 1; }
.promise-slides {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
.promise-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.promise-slide__bg {
  position: absolute;
  inset: 0;
}
.promise-slide__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 70px 100px;
}
.promise-slide__num { font-size: 16px; line-height: 1; }
.promise-slide__text h3 { font-size: clamp(32px, 3.5vw, 60px); line-height: 1.4; margin-bottom: 20px; }
.promise-slide__text p { font-size: clamp(14px, 1.1vw, 18px); line-height: 1.8; }

/* ============================================================
   NUMBERS STATS
   ============================================================ */
.numbers-section {
  position: relative;
  padding: var(--section-pad-v) 0;
  overflow: hidden;
}
.numbers-section .container { position: relative; z-index: 1; }
.stat-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-card {
  flex: 1;
  min-width: 200px;
  background: rgba(17,17,17,0.8);
  border-radius: 20px;
  padding: 100px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.stat-card__icon { height: 70px; display: flex; align-items: flex-end; }
.stat-card__icon img { height: 100%; width: auto; object-fit: contain; }
.stat-card__content { display: contents; }
.stat-card__label { font-size: 24px; }
.stat-card__number { font-size: clamp(36px, 3.5vw, 60px); }
.stat-card__basis { font-size: 18px; }

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  position: relative;
  padding-top: var(--section-pad-v);
  overflow: hidden;
}
.menu-section .container { position: relative; z-index: 1; }
.ingredient-rows { position: relative; z-index: 1; }
.ingredient-row {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.3);
}
.ingredient-row--right {
  flex-direction: row;
}
.ingredient-img {
  width: 50%;
  flex-shrink: 0;
  height: 600px;
  overflow: hidden;
}
.ingredient-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ingredient-text {
  flex: 1;
  padding: 60px 80px;
}
.ingredient-row--right .ingredient-text { padding: 60px 80px 60px 160px; }
.ingredient-text h3 { font-size: clamp(28px, 2.5vw, 50px); margin-bottom: 30px; }
.ingredient-text p {
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.6;
  max-width: 600px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.menu-cards-wrap {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 120px 0!important;
  overflow: hidden;
}
.menu-swiper {
  box-sizing: border-box;
}
.menu-cards {
  display: flex;
}
.menu-swiper .swiper-slide {
  width: auto;
  height: auto;
  flex-shrink: 0;
}
.menu-card {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  width: max-content;
  min-width: 280px;
  height: auto;
}
.menu-card__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
  padding-top: 20px;
}
.menu-card__img {
  width: 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.menu-card__name {
  font-size: clamp(20px, 1.8vw, 30px);
  letter-spacing: 0.1em;
  line-height: 1.35;
  display: inline;
  padding: 0 0.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(
    transparent 62%,
    rgba(219, 49, 42, 0.55) 62%,
    rgba(219, 49, 42, 0.55) 92%,
    transparent 92%
  );
  text-shadow:
    0 0 12px rgba(219, 49, 42, 0.35),
    0 2px 10px rgba(0, 0, 0, 0.55);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  position: relative;
  padding: var(--section-pad-v) 0 var(--section-pad-v) 0;
  overflow: hidden;
}
.reviews-section .container { position: relative; z-index: 1; }
.review-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(16px, 2.5vw, 40px);
}
.review-object {
  flex: 0 1 clamp(480px, 44%, 760px);
  width: clamp(480px, 44%, 760px);
  line-height: 0;
  align-self: flex-end;
}
.review-object img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom left;
  display: block;
}
.review-insta-grid {
  flex: 1 1 760px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 240px));
  gap: 20px;
  justify-content: end;
  align-content: end;
  min-width: 0;
}
.insta-card {
  width: 100%;
  background: var(--color-white);
  overflow: hidden;
  flex-shrink: 0;
  min-width: 0;
}
.insta-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--color-white);
}
.insta-profile { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.insta-name { font-size: 10px; color: #000; font-weight: 700; }
.insta-card__img {
  aspect-ratio: 1;
  overflow: hidden;
  line-height: 0;
  background: #f2f2f2;
}
.insta-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   COMPETITIVENESS
   ============================================================ */
.competitiveness-section {
  position: relative;
  padding: var(--section-pad-v) 0;
  overflow: hidden;
  background: #000;
}
.competitiveness-section .section-bg-cover {
  background: #000;
}
.competitiveness-bg__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(420px, 52vw, 760px);
  object-fit: cover;
  object-position: center top;
  max-width: none;
}
.competitiveness-bg__fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(420px, 52vw, 760px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 55%, #000 100%);
  pointer-events: none;
}
.competitiveness-section .container { position: relative; z-index: 1; }
.competitiveness-heading {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 30px;
}
.competitiveness-heading__title {
  margin-bottom: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.competitiveness-heading__accent {
  display: inline-block;
  margin-left: 0.18em;
}
.competitiveness-heading__char {
  position: relative;
  display: inline-block;
}
.competitiveness-heading__dot {
  position: absolute;
  top: -0.42em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.16em;
  height: 0.16em;
  min-width: 6px;
  min-height: 6px;
  border-radius: 50%;
  background: var(--color-yellow);
}
.competitiveness-heading__lines {
  margin-top: 0.55em;
  width: 100%;
}
.competitiveness-heading__line {
  display: block;
  border-radius: 2px;
  background: var(--color-yellow);
}
.competitiveness-heading__line--full {
	width: 90%;
    height: 2px;
    margin-left: -5%;
}
.competitiveness-heading__line--short {
	width: 95%;
    height: 2px;
    margin-top: 5px;
    margin-left: 19%;
}
.competitiveness-intro {
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.8;
  margin-bottom: 50px;
}
.competitiveness-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.competitiveness-card {
  flex: 1;
  min-width: 220px;
  background: rgba(0,0,0,0.5);
  border: 2px solid var(--color-yellow);
  box-shadow: 5px 5px 30px 0 rgba(249,185,17,0.2);
  border-radius: 20px;
  padding: 70px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.competitiveness-card--active {
  background: linear-gradient(146.78deg, rgba(249,185,17,0.12) 1.84%, rgba(249,185,17,0) 98.67%),
              rgba(0,0,0,0.5);
}
.competitiveness-card__img { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.competitiveness-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.img-circle { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.competitiveness-card h3 { font-size: clamp(18px, 1.6vw, 30px); line-height: 1.4; }
.competitiveness-card p {
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.competitiveness-intro2 {
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.8;
  margin-bottom: 50px;
  margin-top: 70px;
}
.renovation-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.renovation-card {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 50px;
  text-align: center;
}
.renovation-card--border {
  border-left: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
}
.renovation-card__icon { height: 80px; display: flex; align-items: center; }
.renovation-card__icon img { height: 100%; width: auto; object-fit: contain; }
.renovation-card p:first-of-type { font-size: clamp(18px, 1.6vw, 30px); }
.renovation-card p:last-of-type { font-size: clamp(14px, 1.1vw, 18px); line-height: 1.6; }
/* Support */
.support-section-inner { margin-top: 70px; }
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.support-card {
  min-width: 0;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.support-card--intro {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 40px 24px;
}
.support-card--intro p:first-child { font-size: clamp(32px, 3vw, 60px); line-height: 1.2; }
.support-card--intro p:last-child {
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.support-card--red {
  background: var(--color-red);
  padding: 40px 24px;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.support-card--red p:first-child { font-size: clamp(20px, 1.6vw, 30px); line-height: 1.3; }
.support-card--red p:last-child {
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.support-card--white { background: #fff; }
.support-card__img {
  width: 100%;
  height: clamp(180px, 18vw, 240px);
  object-fit: cover;
  display: block;
}
.support-card__body {
  flex: 1;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.support-card__body p:first-child { font-size: clamp(18px, 1.4vw, 30px); color: #222; line-height: 1.3; }
.support-card__body p:last-child {
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.6;
  color: #444;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.support-card--logo {
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
}
.support-logo { width: clamp(100px, 10vw, 140px); object-fit: contain; opacity: 1; }

/* ============================================================
   REVENUE
   ============================================================ */
.revenue-section {
  position: relative;
  padding: var(--section-pad-v) 0;
  overflow: hidden;
}
.revenue-section .container { position: relative; z-index: 1; }
.revenue-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.revenue-card {
  flex: 1;
  min-width: 180px;
  min-height: 500px;
  background: rgba(17,17,17,0.8);
  border-radius: 20px;
  padding: 130px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
.revenue-card__icon {
  height: 70px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 40px;
}
.revenue-card__icon img { height: 100%; width: auto; object-fit: contain; }
.revenue-card__label { font-size: 24px; }
.revenue-card__value {
  font-size: clamp(28px, 3vw, 52px);
  margin-top: auto;
}

/* ============================================================
   COOKING SYSTEM
   ============================================================ */
.cooking-section {
  position: relative;
  padding: var(--section-pad-v) 0;
  overflow: hidden;
}
.cooking-section .container { position: relative; z-index: 1; }
.cooking-subheading {
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.cooking-subheading .text-yellow {
  display: inline;
  padding: 0;
  line-height: 1;
  font-size: 1.35em;
  border-bottom: 2px solid var(--color-yellow);
  text-shadow: 0 0 18px rgba(249, 185, 17, 0.45);
}
.cooking-steps {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
.cooking-step {
  flex: 1;
  min-width: 130px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cooking-step--offset { padding-top: 100px; }
.cooking-step__num { font-size: 30px; }
.cooking-step__img { width: 100%; aspect-ratio: 1; border-radius: 20px; overflow: hidden; }
.cooking-step__img img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.cooking-step__label { font-size: 30px; }

/* ============================================================
   STORE DESIGN
   ============================================================ */
.store-design-section {
  position: relative;
  padding: var(--section-pad-v) 0;
  overflow: hidden;
}
.store-design-section .container { position: relative; z-index: 1; }
.gallery-grid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-top: 70px;
  flex-wrap: wrap;
}
.gallery-col { display: flex; flex-direction: column; gap: 45px; }
.gallery-col--left { flex: 0 0 620px; }
.gallery-col--center { flex: 0 0 420px; }
.gallery-col--right { flex: 0 0 480px; }
.gallery-img { overflow: hidden; border-radius: 4px; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-img--tall { height: 520px; }
.gallery-img--short { height: 250px; }
.gallery-img--full-height { height: 760px; }
.gallery-img--medium { height: 330px; }
.gallery-img--small { height: 260px; width: 300px; }

/* ============================================================
   EASY STARTUP
   ============================================================ */
.easy-startup-section {
  position: relative;
  padding: var(--section-pad-v) 0;
  overflow: hidden;
  background-color: var(--color-black);
}
.easy-startup-section .container { position: relative; z-index: 1; }
.easy-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.easy-card {
  flex: 1;
  min-width: 180px;
  min-height: 500px;
  background: rgba(17,17,17,0.8);
  border-radius: 20px;
  padding: 130px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 30px;
}
.easy-card__icon { height: 90px; display: flex; align-items: center; overflow: hidden; }
.easy-card__icon img { height: 100%; width: auto; object-fit: contain; }
.easy-card p:nth-child(2) {
  font-size: clamp(18px, 1.5vw, 30px);
  line-height: 1.4;
  min-height: 2.8em;
  display: grid;
  place-content: center;
  width: 100%;
}
.easy-card p:last-child {
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.6;
  min-height: 3.2em;
  display: grid;
  place-content: center;
  width: 100%;
}

/* ============================================================
   STARTUP TYPES
   ============================================================ */
.startup-types-section {
  display: flex;
  overflow: hidden;
}
.startup-type {
  flex: 1;
  min-height: 850px;
  position: relative;
  display: flex;
  align-items: center;
}
.startup-type__bg {
  position: absolute;
  inset: 0;
}
.startup-type__content {
  position: relative;
  z-index: 1;
  padding: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 40px;
}
.startup-type__content h3 { font-size: clamp(36px, 4vw, 60px); }
.startup-type__content p { font-size: clamp(14px, 1.2vw, 20px); line-height: 1.6; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.9);
  color: #000;
  padding: 25px 20px;
  border-radius: 5px;
  font-size: clamp(16px, 1.3vw, 22px);
  width: 271px;
  justify-content: center;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  border: 1px solid white;
  padding: 25px 20px;
  border-radius: 5px;
  font-size: clamp(16px, 1.3vw, 22px);
  width: 271px;
  justify-content: center;
}

/* ============================================================
   BENEFIT / COST
   ============================================================ */
.benefit-section {
  position: relative;
  padding: var(--section-pad-v) 0;
  overflow: hidden;
}
.benefit-section .container { position: relative; z-index: 1; }
.cost-table-wrap {
  margin-top: 70px;
  margin-bottom: 70px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cost-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  font-size: clamp(14px, 1.2vw, 20px);
}
.cost-table thead tr {
  background: #222;
  height: 70px;
}
.cost-table thead th {
  color: var(--color-white);
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
}
.cost-table thead th:first-child,
.cost-table tbody td:first-child {
  width: 240px;
  min-width: 240px;
  white-space: nowrap;
}
.cost-table tbody tr { background: #fff; }
.cost-table tbody tr:nth-child(even) { background: #fafafa; }
.cost-table tbody td {
  text-align: center;
  padding: 20px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  color: #000;
  vertical-align: middle;
  line-height: 1.5;
}
.zero-cost-img { display: flex; justify-content: center; }
.zero-cost-img img { height: 60px; width: auto; object-fit: contain; }
.cost-notes { display: flex; flex-direction: column; gap: 10px; padding: 20px 0; }
.cost-notes p { font-size: clamp(14px, 1.1vw, 20px); display: flex; align-items: center; gap: 10px; }
.note-icon { font-size: 1.2em; }
.event-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 70px;
}
.event-card {
  flex: 1;
  min-width: 220px;
  background: #222;
  border-radius: 20px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.event-card__tag { font-size: 18px; text-transform: uppercase; }
.event-card h3 { font-size: clamp(20px, 1.6vw, 30px); line-height: 1.6; }
.event-card p { font-size: clamp(13px, 1vw, 18px); line-height: 1.6; }

/* ============================================================
   PROCESS + CONTACT
   ============================================================ */
.process-contact-section {
  display: flex;
  min-height: 1000px;
  flex-wrap: wrap;
}
.process-panel {
  background: #151515;
  flex: 1;
  min-width: 320px;
}
.process-panel__inner {
  padding: 150px 70px 150px 160px;
  display: flex;
  flex-direction: column;
  gap: 70px;
  height: 100%;
}
.process-title h2 { font-size: clamp(32px, 3vw, 60px); margin-bottom: 30px; }
.process-title p { font-size: clamp(14px, 1.2vw, 22px); line-height: 1.6; }
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.process-step {
  width: calc(100% / 3);
  flex: 0 0 calc(100% / 3);
  padding: 65px 30px;
  border: 1px solid #313131;
  margin: -1px -1px 0 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
  box-sizing: border-box;
}
.process-step--active { background: var(--color-red); }
.process-step__tag { font-size: 18px; text-transform: uppercase; }
.process-step__name { font-size: clamp(18px, 1.5vw, 26px); }
.process-step__desc { font-size: clamp(13px, 1vw, 16px); line-height: 1.6; }
.contact-panel {
  background: var(--color-red);
  flex: 1;
  min-width: 320px;
  padding: clamp(60px, 8vw, 120px) clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 70px);
}
.contact-panel__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-panel h2 {
  font-size: clamp(32px, 3vw, 60px);
  margin: 0;
}
.contact-panel__head p {
  font-size: clamp(14px, 1.2vw, 24px);
  line-height: 1.6;
  margin: 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: clamp(16px, 1.1vw, 20px);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  padding: 18px 20px;
  color: var(--color-white);
  font-size: clamp(15px, 1vw, 18px);
  font-family: 'GmarketSans', sans-serif;
  font-weight: 400;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.55); }
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(255,255,255,0.7); }
.form-group textarea {
  resize: vertical;
  min-height: 200px;
}
.form-privacy { display: flex; align-items: center; }
.privacy-check {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  cursor: pointer;
}
.privacy-check input { display: none; }
.privacy-check__box {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.privacy-check input:checked + .privacy-check__box { background: var(--color-white); }
.privacy-check input:checked + .privacy-check__box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-yellow);
}
.privacy-check span.font-gmarket-medium { font-size: clamp(14px, 1vw, 18px); }
.privacy-check a {
  font-size: clamp(14px, 1vw, 18px);
  text-decoration: none;
}
.btn-submit {
  width: 100%;
  background: #f5f0f0;
  color: #111;
  padding: 22px 20px;
  border-radius: 10px;
  font-size: clamp(18px, 1.4vw, 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}
.btn-submit:hover { opacity: 0.9; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: #000;
  padding: 50px 0;
  border-top: 1px solid #222;
}
.footer-inner {
  max-width: var(--container-outer-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo-info {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-logo { height: 80px; width: auto; object-fit: contain; }
.footer-info { color: var(--color-gray); font-size: clamp(12px, 1vw, 16px); line-height: 1.8; }
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}
.footer-links a { font-size: clamp(14px, 1vw, 17px); color: var(--color-gray); }
.footer-links a:nth-child(2) { color: var(--color-white); }
.footer-links a:hover { color: var(--color-yellow); }

/* ============================================================
   POLICY MODAL
   ============================================================ */
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.policy-modal[hidden] { display: none; }
.policy-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
}
.policy-modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(80vh, 720px);
  background: #151515;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.policy-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.policy-modal__title {
  font-size: clamp(22px, 2vw, 30px);
  color: var(--color-white);
}
.policy-modal__title .text-yellow,
.policy-modal__title span { color: var(--color-yellow); }
.policy-modal__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--color-white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.policy-modal__close:hover {
  border-color: var(--color-yellow);
  background: rgba(249,185,17,0.1);
}
.policy-modal__body {
  padding: 28px 32px 36px;
  overflow-y: auto;
  color: rgba(255,255,255,0.85);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.8;
}
.policy-modal__body h3 {
  margin: 24px 0 10px;
  font-family: 'GmarketSans', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--color-yellow);
}
.policy-modal__body h3:first-of-type { margin-top: 0; }
.policy-modal__body p { margin-bottom: 12px; }
.policy-modal__date,
.policy-modal__notice {
  color: var(--color-gray);
  font-size: clamp(13px, 0.95vw, 15px);
}
body.modal-open { overflow: hidden; }
.js-policy-open { text-decoration: none; }
.js-policy-open:hover { color: var(--color-yellow); }

/* ============================================================
   SITE POPUPS (관리자 팝업관리)
   ============================================================ */
.site-popups {
  position: fixed;
  inset: 0;
  z-index: 2500;
  pointer-events: none;
}
.site-popup {
  position: absolute;
  pointer-events: auto;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  animation: sitePopupIn 0.28s ease;
}
@keyframes sitePopupIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.site-popup__body {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.site-popup__body img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
}
.site-popup__body a {
  display: block;
}
.site-popup__content {
  padding: 20px;
  color: #fff;
  font-family: 'GmarketSans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  max-height: 70vh;
  overflow: auto;
}
.site-popup__content img {
  max-width: 100%;
  height: auto;
}
.site-popup__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-popup__hide-today {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-family: 'GmarketSans', sans-serif;
  cursor: pointer;
  user-select: none;
}
.site-popup__hide-today input {
  width: 14px;
  height: 14px;
  accent-color: var(--color-yellow);
}
.site-popup__close {
  min-width: 56px;
  padding: 6px 12px;
  background: var(--color-yellow);
  color: #111;
  font-size: 12px;
  font-family: 'GmarketSans', sans-serif;
  font-weight: 700;
  border-radius: 4px;
}
.site-popup__close:hover {
  filter: brightness(1.05);
}

/* ============================================================
   ALERT MODAL (문의 안내 등)
   ============================================================ */
.alert-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.alert-modal[hidden] { display: none; }
.alert-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
}
.alert-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: #151515;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  animation: alertModalIn 0.25s ease;
}
@keyframes alertModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.alert-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.alert-modal__title {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--color-white);
}
.alert-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--color-white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.alert-modal__close:hover {
  border-color: var(--color-yellow);
  background: rgba(249,185,17,0.1);
}
.alert-modal__body {
  padding: 28px 24px 24px;
  text-align: center;
}
.alert-modal__message {
  color: rgba(255,255,255,0.9);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  word-break: keep-all;
  margin-bottom: 24px;
}
.alert-modal__confirm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 15px;
  transition: opacity 0.2s, transform 0.2s;
}
.alert-modal__confirm:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* AOS */
[data-aos] {
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.float-btns {
  position: fixed;
  bottom: 50px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
}
.float-btn {
  width: 70px;
  height: 70px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}
.float-btn--yellow {
  background: var(--color-yellow);
  color: #000;
  box-shadow: 10px 10px 20px rgba(0,0,0,0.15);
  padding: 0 6px;
  font-size: 13px;
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.float-btn--outline {
  border: 1px solid rgba(255,255,255,0.4);
  background: var(--color-black);
  color: var(--color-white);
  font-size: 20px;
}

/* ============================================================
   RESPONSIVE - 1200px
   ============================================================ */
@media (max-width: 1200px) {
  :root {
    --section-pad-v: 120px;
  }
  .site-header { padding: 20px 60px; }
  .site-header.scrolled { padding: 12px 60px; }
  .site-header.scrolled .header-logo img { height: 60px; }
  .header-nav { gap: 40px; }
  .header-nav a { font-size: 16px; }
  .gallery-col--left { flex: 0 0 400px; }
  .gallery-col--center { flex: 0 0 300px; }
  .gallery-col--right { flex: 0 0 320px; }
  .gallery-img--tall { height: 380px; }
  .gallery-img--full-height { height: 600px; }
  .gallery-img--medium { height: 250px; }
  .circle-card { width: 200px; height: 200px; margin: 0 -12px; }
  .process-panel__inner { padding: 120px 40px 120px 60px; }
}

/* ============================================================
   RESPONSIVE - 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad-v: 100px; }
  .site-header { padding: 16px 40px; }
  .site-header.scrolled { padding: 10px 40px; }
  .site-header.scrolled .header-logo img { height: 56px; }
  .header-nav { display: none; }
  .header-nav.nav-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.96);
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 999;
  }
  .header-nav.nav-open a { font-size: 24px; }
  .mobile-menu-btn { display: flex; z-index: 1001; position: relative; flex-shrink: 0; }
  .header-actions { gap: 12px; }
  .header-phone,
  .site-header.scrolled .header-phone {
    font-size: 16px;
    padding: 8px 14px;
  }
  .visual-pizza-imgs { display: none; }
  .section-title { padding-bottom: 36px; }
  .section-title .section-heading { margin-bottom: 16px; }
  .brand-cards { flex-direction: column; }
  .brand-section .section-title { padding-bottom: 32px; }
  .store-design-section .section-title { padding-bottom: 24px; }
  .benefit-section .section-heading { margin-bottom: 16px; }
  .benefit-section .cost-table-wrap {
    margin-top: 40px;
    overflow-x: visible;
  }
  .cost-table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
    font-size: 13px;
  }
  .cost-table thead tr { height: auto; }
  .cost-table thead th {
    padding: 10px 6px;
    white-space: normal;
    word-break: keep-all;
    line-height: 1.4;
  }
  .cost-table thead th:first-child,
  .cost-table tbody td:first-child {
    width: 22%;
    min-width: 0;
    white-space: normal;
  }
  .cost-table thead th:nth-child(2),
  .cost-table tbody td:nth-child(2) { width: 46%; }
  .cost-table thead th:nth-child(3),
  .cost-table tbody td:nth-child(3) { width: 32%; }
  .cost-table tbody td {
    padding: 10px 6px;
    word-break: keep-all;
    overflow-wrap: break-word;
    font-size: 12px;
  }
  .zero-cost-img img { height: 40px; }
  .brand-title-text { margin-bottom: 20px; }
  .brand-cards { margin-top: 32px; }
  .brand-card {
    align-items: center;
    text-align: center;
  }
  .brand-card__icon {
    justify-content: center;
    align-items: center;
  }
  .strength-circles {
    justify-content: center;
    gap: 0;
    row-gap: 16px;
  }
  .startup-section .section-heading { margin-bottom: 16px; }
  .startup-section .strength-circles { margin-top: 36px; }
  .circle-card {
    flex: 0 0 calc(33.333% + 12px);
    width: calc(33.333% + 12px);
    max-width: 160px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 -12px;
    padding: 14px;
    gap: 10px;
  }
  .circle-label { font-size: 16px; }
  .gallery-grid { flex-direction: column; }
  .gallery-col { flex: none; width: 100%; }
  .gallery-col--left { order: 1; }
  .gallery-col--center { order: 2; flex-direction: row; gap: 20px; }
  .gallery-col--right { order: 3; flex-direction: row; gap: 20px; }
  .gallery-img--tall { height: 300px; }
  .gallery-img--short { height: 200px; }
  .gallery-img--full-height { height: 300px; flex: 1; }
  .gallery-img--medium { height: 200px; flex: 1; }
  .gallery-img--small { height: 200px; flex: 1; width: auto; }
  .startup-type__content { padding: 80px 60px; }
  .process-panel__inner { padding: 80px 40px; }
  .review-grid {
    flex-direction: column;
    align-items: center;
    gap: clamp(32px, 5vw, 48px);
  }
  .review-object {
    width: min(520px, 100%);
    flex: none;
    flex-basis: auto;
    order: 2;
    align-self: center;
  }
  .review-insta-grid {
    order: 1;
    width: 100%;
    max-width: 780px;
    flex: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 2vw, 20px);
    justify-content: center;
    justify-items: stretch;
  }
}

/* ============================================================
   RESPONSIVE - 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad-v: 80px; }
  .site-header { padding: 14px 24px; }
  .site-header.scrolled { padding: 10px 24px; }
  .header-logo img { height: 66px; }
  .site-header.scrolled .header-logo img { height: 54px; }
  .header-actions { gap: 10px; }
  .header-phone,
  .site-header.scrolled .header-phone {
    font-size: 14px;
    padding: 7px 12px;
  }
  .visual-content { padding: 100px 20px 28px; gap: 32px; justify-content: flex-start; }
  .visual-bg-img {
    object-fit: cover;
    object-position: center bottom;
    width: 100%;
    height: 100%;
    transform: none;
  }
  .visual-section {
    min-height: 700px;
  }
  .visual-btn-wrap {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: auto;
  }
  .visual-btn-wrap .btn-primary-yellow,
  .visual-btn-wrap .btn-primary-dark {
    width: 280px;
    flex: none;
    padding: 18px 24px;
    white-space: nowrap;
  }
  .btn-text--pc { display: none; }
  .btn-text--mo { display: inline; }
  .br--mo { display: block; }
  .strength-cards { grid-template-columns: 1fr; }
  .strength-card {
    padding: 36px 24px;
    gap: 16px;
    align-items: center;
    text-align: center;
  }
  .circle-card {
    flex: 0 0 calc(33.333% + 10px);
    width: calc(33.333% + 10px);
    max-width: 140px;
    margin: 0 -10px;
    padding: 12px;
  }
  .circle-label { font-size: 14px; }
  .circle-num { font-size: 13px; }
  .stat-cards {
    flex-direction: column;
    gap: 12px;
  }
  .stat-card {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 24px 20px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    text-align: center;
  }
  .stat-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 0 1 auto;
  }
  .stat-card__icon {
    height: 56px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .stat-card__label {
    font-size: 18px;
    text-align: center;
  }
  .stat-card__number {
    font-size: clamp(28px, 7vw, 40px);
    line-height: 1.1;
    text-align: center;
  }
  .stat-card__basis {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }
  .promise-slide__inner {
    padding: 50px 40px;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 24px;
  }
  .promise-slide__text { width: 100%; }
  .promise-slide__text h3 { font-size: clamp(24px, 5vw, 40px); }
  .ingredient-row { flex-direction: column !important; }
  .ingredient-row .ingredient-img { order: -1; width: 100%; height: 280px; }
  .ingredient-row .ingredient-text { order: 1; padding: 40px 24px !important; }
  .menu-swiper .swiper-slide {
    width: auto;
    max-width: none;
  }
  .menu-card {
    width: 100%;
    min-width: 0;
    gap: 24px;
  }
  .menu-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .review-insta-grid {
    max-width: 520px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .competitiveness-cards { flex-direction: column; }
  .competitiveness-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 32px 24px;
  }
  .competitiveness-card__img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }
  .competitiveness-card__content {
    flex: 1;
    min-width: 0;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
  }
  .competitiveness-card h3,
  .competitiveness-card p { margin: 0; }
  .renovation-cards { flex-direction: column; }
  .renovation-card--border { border: none; border-top: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); }
  .support-cards { grid-template-columns: repeat(2, 1fr); }
  .revenue-cards { flex-wrap: wrap; }
  .revenue-card { min-height: 300px; padding: 60px 30px; min-width: calc(50% - 10px); }
  .cooking-steps { gap: 16px; }
  .cooking-step {
    min-width: calc(50% - 20px);
    gap: 12px;
  }
  .cooking-step__num { font-size: 22px; }
  .cooking-step__label { font-size: 20px; }
  .cooking-step--offset { padding-top: 0; }
  .startup-types-section { flex-direction: column; }
  .startup-type {
    min-height: 500px;
    justify-content: center;
    align-items: center;
  }
  .startup-type__content {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 60px 40px;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .process-contact-section { flex-direction: column; }
  .process-panel { flex: none; width: 100%; }
  .contact-panel { flex: none; width: 100%; }
  .process-panel__inner { padding: 80px 40px; }
  .process-step {
    width: 50%;
    flex: 0 0 50%;
    padding: 40px 16px;
    gap: 16px;
    text-align: center;
    align-items: center;
  }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-logo-info { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { align-items: flex-start; }
  .float-btns { bottom: 30px; right: 16px; }
  .float-btn { width: 58px; height: 58px; font-size: 13px; }
  .easy-cards {
    flex-direction: column;
    gap: 12px;
  }
  .easy-card {
    width: 100%;
    flex: none;
    min-width: 0;
    min-height: auto;
    padding: 24px 20px;
    display: grid;
    grid-template-columns: 72px 1fr;
    column-gap: 16px;
    row-gap: 6px;
    align-items: center;
    justify-content: start;
    text-align: left;
  }
  .easy-card__icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 72px;
    height: 72px;
    align-self: center;
    justify-content: center;
  }
  .easy-card p:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    display: block;
    place-content: start;
    text-align: left;
    margin: 0;
  }
  .easy-card p:last-child {
    grid-column: 2;
    grid-row: 2;
    min-height: 0;
    display: block;
    place-content: start;
    text-align: left;
    margin: 0;
  }
}

/* ============================================================
   RESPONSIVE - 576px
   ============================================================ */
@media (max-width: 576px) {
  :root { --section-pad-v: 60px; }
  .header-logo img { height: 58px; }
  .site-header.scrolled .header-logo img { height: 50px; }
  .visual-main-title { font-size: clamp(36px, 12vw, 80px); }
  .visual-sub-title { font-size: clamp(36px, 12vw, 80px); }
  .visual-subtitle-img { width: min(100%, 320px); }
  .visual-content { padding: 90px 20px 24px; gap: 24px; }
  .visual-bg-img {
    object-fit: cover;
    object-position: center bottom;
    transform: none;
  }
  .visual-section { min-height: 620px; }
  .visual-btn-wrap { gap: 10px; }
  .visual-btn-wrap .btn-primary-yellow,
  .visual-btn-wrap .btn-primary-dark { padding: 16px 20px; }
  .section-heading { font-size: clamp(28px, 7vw, 48px); }
  .startup-section .section-heading { margin-bottom: 12px; }
  .startup-section .strength-circles { margin-top: 28px; }
  .competitiveness-heading__title { white-space: normal; }
  .competitiveness-heading__line--short { width: 70%; margin-left: 30%; }
  .section-title { padding-bottom: 28px; }
  .section-title .section-heading { margin-bottom: 12px; }
  .brand-section .section-title { padding-bottom: 24px; }
  .store-design-section .section-title { padding-bottom: 20px; }
  .benefit-section .section-heading { margin-bottom: 12px; }
  .benefit-section .cost-table-wrap { margin-top: 32px; }
  .brand-cards { margin-top: 24px; }
  .brand-card { padding: 40px 24px; }
  .brand-card__title { font-size: clamp(22px, 5vw, 36px); }
  .strength-card {
    padding: 28px 20px;
    gap: 14px;
    align-items: center;
    text-align: center;
  }
  .circle-card {
    flex: 0 0 calc(33.333% + 8px);
    width: calc(33.333% + 8px);
    max-width: 118px;
    margin: 0 -8px;
    padding: 10px;
    gap: 8px;
  }
  .circle-label { font-size: 12px; line-height: 1.4; }
  .circle-num { font-size: 11px; }
  .stat-card {
    padding: 20px 16px;
    gap: 14px;
  }
  .stat-card__icon { height: 48px; }
  .stat-card__label { font-size: 16px; }
  .stat-card__number { font-size: clamp(24px, 7vw, 36px); }
  .stat-card__basis { font-size: 13px; }
  .promise-slide__inner {
    padding: 40px 24px;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 20px;
  }
  .promise-slide__text h3 { font-size: clamp(22px, 6vw, 36px); }
  .review-insta-grid { gap: 10px; max-width: 100%; }
  .revenue-card { min-width: 100%; padding: 40px 24px; min-height: auto; }
  .cooking-step {
    min-width: calc(100% - 20px);
    max-width: 100%;
    gap: 10px;
  }
  .cooking-step__num { font-size: 20px; }
  .cooking-step__label { font-size: 18px; }
  .easy-card {
    padding: 20px 16px;
    grid-template-columns: 64px 1fr;
    column-gap: 14px;
  }
  .easy-card__icon { width: 64px; height: 64px; }
  .startup-type__content { padding: 50px 24px; }
  .btn-white, .btn-outline-white { width: 240px; font-size: 16px; padding: 20px; }
  .process-panel__inner { padding: 60px 24px; }
  .contact-form__grid { grid-template-columns: 1fr; }
  .event-card { padding: 40px 24px; }
  .cost-table { font-size: 11px; }
  .cost-table thead th,
  .cost-table tbody td { padding: 8px 4px; }
  .cost-table tbody td { font-size: 11px; }
  .zero-cost-img img { height: 32px; }
  .gallery-col--center, .gallery-col--right { flex-direction: column; }
  .gallery-img--full-height, .gallery-img--medium, .gallery-img--small { width: 100%; }
  .policy-modal { padding: 16px; }
  .policy-modal__header,
  .policy-modal__body { padding: 20px; }
  .policy-modal__panel { max-height: 85vh; border-radius: 16px; }
  .alert-modal { padding: 16px; }
  .alert-modal__header { padding: 18px 20px; }
  .alert-modal__body { padding: 24px 20px 20px; }
  .alert-modal__panel { border-radius: 16px; }
  .site-popup {
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: min(92vw, 420px) !important;
    max-height: 85vh;
    transform: translate(-50%, -50%);
  }
  .site-popup + .site-popup {
    display: none;
  }
  .site-popup__body {
    max-height: calc(85vh - 48px);
    overflow: auto;
  }
}
