/* =========================
   〇〇海苔 ふざけ系HP ドンキ風ポップ
   ========================= */

:root {
  --pink: #ef4136;
  --pink-light: #ffd1c4;
  --yellow: #ffe25a;
  --yellow-pastel: #fff7c2;
  --cyan: #00d4d4;
  --cyan-light: #b5f5f5;
  --orange: #ff8a1f;
  --red: #ff3b30;
  --black: #1a1a1a;
  --white: #ffffff;
  --bg: #fffef5;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Yusei Magic", "RocknRoll One", "Kaisei Decol", "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", sans-serif;
  color: var(--black);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

strong { color: var(--pink); }
em { font-style: normal; background: linear-gradient(transparent 55%, var(--yellow) 55%); padding: 0 2px; }

/* ===== Marquee ===== */
.marquee {
  background: var(--black);
  color: var(--yellow);
  overflow: hidden;
  padding: 10px 0;
  font-family: "Reggae One", cursive;
  font-size: 1.1rem;
  letter-spacing: 2px;
  position: relative;
  z-index: 30;
}
.top-marquee { border-bottom: 4px solid var(--pink); }
.sub-marquee {
  background: var(--pink);
  color: var(--yellow);
  border-top: 4px solid var(--black);
  border-bottom: 4px solid var(--black);
}
.marquee-inner {
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
  display: inline-block;
  padding-left: 100%;
}
.marquee-inner.reverse {
  animation: scroll-right 30s linear infinite;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
@keyframes scroll-right {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* ===== Header ===== */
.header {
  background: var(--yellow);
  border-bottom: 4px solid var(--black);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 0 var(--pink);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}
.logo-badge {
  background: var(--pink);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  transform: rotate(-6deg);
  display: inline-block;
}
.logo-main {
  font-family: "Reggae One", cursive;
  font-size: 1.8rem;
  color: var(--black);
  text-shadow: 3px 3px 0 var(--pink);
}
.logo-sub {
  font-size: 0.8rem;
  background: var(--black);
  color: var(--yellow);
  padding: 2px 6px;
  border-radius: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nav a {
  font-weight: bold;
  font-size: 0.95rem;
  padding: 6px 10px;
  transition: transform 0.1s;
}
.nav a:hover {
  transform: scale(1.1) rotate(-2deg);
  color: var(--pink);
}
.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 10px 16px !important;
  border-radius: 30px;
  border: 3px solid var(--black);
  box-shadow: 3px 3px 0 var(--black);
}
.nav-cta:hover {
  transform: translate(-2px,-2px) rotate(-2deg) !important;
  box-shadow: 5px 5px 0 var(--black);
  color: var(--white) !important;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 80vh;
  padding: 60px 20px;
  background:
    radial-gradient(circle at 20% 20%, var(--yellow-pastel) 0, transparent 40%),
    radial-gradient(circle at 80% 30%, var(--cyan-light) 0, transparent 40%),
    radial-gradient(circle at 50% 80%, var(--pink-light) 0, transparent 40%),
    var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-splash {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.4;
  pointer-events: none;
  animation: wobble 6s ease-in-out infinite;
}
.splash-1 { background: var(--pink); width: 180px; height: 180px; top: 10%; left: 8%; }
.splash-2 { background: var(--yellow); width: 120px; height: 120px; top: 60%; left: 5%; animation-delay: 1s; }
.splash-3 { background: var(--cyan); width: 200px; height: 200px; top: 15%; right: 10%; animation-delay: 2s; }
.splash-4 { background: var(--orange); width: 140px; height: 140px; bottom: 10%; right: 15%; animation-delay: 3s; }
@keyframes wobble {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-20px) scale(1.05); }
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: "Reggae One", cursive;
  color: var(--pink);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.hero-title {
  font-family: "Reggae One", cursive;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.hero-title span {
  display: inline-block;
}
.hero-title .line1 {
  color: var(--pink);
  text-shadow: 6px 6px 0 var(--black), 12px 12px 0 var(--yellow);
  transform: rotate(-4deg);
  animation: bump 1.5s ease-in-out infinite;
}
.hero-title .line2 {
  color: var(--black);
  background: var(--yellow);
  padding: 0 20px;
  transform: rotate(2deg) scale(1.1);
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--pink);
  align-self: center;
}
.hero-title .line3 {
  color: var(--cyan);
  text-shadow: 5px 5px 0 var(--black);
  transform: rotate(-2deg);
  animation: bump 1.5s ease-in-out infinite;
  animation-delay: 0.4s;
}
@keyframes bump {
  0%, 100% { transform: rotate(-4deg) scale(1); }
  50% { transform: rotate(-4deg) scale(1.04); }
}

.hero-copy {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  font-family: "Reggae One", cursive;
  font-size: 1.3rem;
  padding: 16px 32px;
  border: 4px solid var(--black);
  border-radius: 999px;
  box-shadow: 6px 6px 0 var(--black);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  color: var(--black);
}
.btn:hover {
  transform: translate(-3px,-3px);
  box-shadow: 9px 9px 0 var(--black);
}
.btn-pink { background: var(--pink); color: var(--white); }
.btn-yellow { background: var(--yellow); }
.btn-huge {
  font-size: 1.8rem;
  padding: 22px 48px;
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--black);
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.sticker {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Reggae One", cursive;
  font-size: 1.3rem;
  text-align: center;
  border: 4px solid var(--black);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--black);
  line-height: 1.2;
}
.sticker-yellow { background: var(--yellow); transform: rotate(-8deg); }
.sticker-pink { background: var(--pink); color: var(--white); transform: rotate(6deg); }
.sticker-cyan { background: var(--cyan); transform: rotate(-4deg); }
.sticker-orange { background: var(--orange); color: var(--white); transform: rotate(8deg); }

/* ===== Section Common ===== */
section {
  padding: 80px 20px;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-kicker {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-family: "Reggae One", cursive;
  font-size: 1rem;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 16px;
  transform: rotate(-2deg);
}
.section-title {
  font-family: "Reggae One", cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.3;
}
.highlight-pink {
  background: var(--pink);
  color: var(--white);
  padding: 0 12px;
  display: inline-block;
  transform: rotate(-2deg);
}
.highlight-yellow {
  background: var(--yellow);
  padding: 0 12px;
  display: inline-block;
  transform: rotate(2deg);
  border: 3px solid var(--black);
}
.section-desc {
  margin-top: 12px;
  font-size: 1.05rem;
  color: var(--black);
}

/* ===== Philosophy ===== */
.philosophy {
  background: repeating-linear-gradient(
    45deg,
    var(--yellow-pastel) 0 40px,
    var(--bg) 40px 80px
  );
}
.philosophy-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.philo-card {
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--pink);
  position: relative;
  transition: transform 0.2s;
}
.philo-card:nth-child(even) {
  box-shadow: 6px 6px 0 var(--cyan);
  transform: rotate(1deg);
}
.philo-card:nth-child(odd) {
  transform: rotate(-1deg);
}
.philo-card:hover {
  transform: rotate(0) scale(1.04);
}
.card-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  background: var(--pink);
  color: var(--white);
  border: 4px solid var(--black);
  border-radius: 50%;
  font-family: "Reggae One", cursive;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg);
}
.philo-card h3 {
  font-family: "Reggae One", cursive;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.philo-card h3 small { font-size: 0.8em; color: var(--black); }
.philo-card h3 strong { color: var(--pink); }
.philo-card p { font-size: 0.95rem; line-height: 1.7; }

/* ===== Strength ===== */
.strength {
  background: var(--black);
  color: var(--white);
  position: relative;
}
.strength::before, .strength::after {
  content: "★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★";
  display: block;
  text-align: center;
  color: var(--yellow);
  font-size: 1.2rem;
  letter-spacing: 8px;
  position: absolute;
  left: 0;
  right: 0;
}
.strength::before { top: 20px; }
.strength::after { bottom: 20px; }
.strength-inner {
  max-width: 1100px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.strength-photo {
  position: relative;
  border: 6px solid var(--yellow);
  transform: rotate(-2deg);
  box-shadow: 10px 10px 0 var(--pink);
}
.photo-sticker {
  position: absolute;
  top: -30px;
  right: -30px;
  background: var(--yellow);
  color: var(--black);
  border: 4px solid var(--black);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Reggae One", cursive;
  font-size: 1rem;
  text-align: center;
  transform: rotate(10deg);
  line-height: 1.3;
  animation: spin-slow 10s linear infinite;
}
@keyframes spin-slow {
  0% { transform: rotate(10deg); }
  100% { transform: rotate(370deg); }
}
.strength-copy .section-kicker {
  background: var(--yellow);
  color: var(--black);
}
.strength-copy .section-title { color: var(--white); }
.strength-copy p {
  font-size: 1.15rem;
  line-height: 2;
  margin-top: 24px;
}

/* ===== Products ===== */
.products {
  background:
    radial-gradient(circle at 10% 20%, var(--pink-light) 0, transparent 30%),
    radial-gradient(circle at 90% 80%, var(--cyan-light) 0, transparent 30%),
    var(--bg);
}
.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  box-shadow: 6px 6px 0 var(--black);
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translate(-3px,-3px);
  box-shadow: 9px 9px 0 var(--black);
}
.card-pink { background: #fff3ef; }
.card-yellow { background: var(--yellow-pastel); }
.card-cyan { background: var(--cyan-light); }
.card-orange { background: #ffe8d1; }

.product-tag {
  position: absolute;
  top: -12px;
  left: -12px;
  font-family: "Reggae One", cursive;
  font-size: 0.9rem;
  padding: 6px 14px;
  border: 3px solid var(--black);
  border-radius: 6px;
  transform: rotate(-6deg);
  z-index: 2;
}
.tag-new { background: var(--pink); color: var(--white); }
.tag-hot { background: var(--orange); color: var(--white); }
.tag-limited { background: var(--black); color: var(--yellow); }
.tag-gift { background: var(--cyan); }

.product-img {
  border: 3px solid var(--black);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 14px;
}
.product-card h3 {
  font-family: "Reggae One", cursive;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.product-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.price-label { font-size: 0.8rem; }
.price-value {
  font-family: "Reggae One", cursive;
  font-size: 1.5rem;
  color: var(--pink);
}
.price-value strong { color: var(--pink); }
.btn-buy {
  display: block;
  text-align: center;
  background: var(--yellow);
  color: var(--black);
  font-family: "Reggae One", cursive;
  padding: 10px;
  border: 3px solid var(--black);
  border-radius: 8px;
  box-shadow: 3px 3px 0 var(--black);
  transition: transform 0.1s;
}
.btn-buy:hover {
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 var(--black);
  background: var(--pink);
  color: var(--white);
}

/* ===== Voice (お客様の声) ===== */
.voice {
  background:
    radial-gradient(circle at 15% 85%, var(--yellow-pastel) 0, transparent 35%),
    radial-gradient(circle at 85% 15%, var(--pink-light) 0, transparent 35%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.voice::before {
  content: "♥ うまい ♥ パリパリ ♥ もう一枚 ♥ 無限 ♥ ごはん泥棒 ♥ ほっぺ落ちた ♥ うまい ♥ パリパリ ♥";
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--pink);
  font-family: "Reggae One", cursive;
  font-size: 0.95rem;
  letter-spacing: 4px;
  opacity: 0.5;
  pointer-events: none;
}
.voice-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}
.voice-card {
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 20px;
  padding: 24px 20px 28px;
  position: relative;
  box-shadow: 8px 8px 0 var(--black);
  transition: transform 0.2s;
}
.voice-card:hover {
  transform: translate(-3px,-3px) rotate(0);
  box-shadow: 11px 11px 0 var(--black);
}
.voice-card:nth-child(odd) { transform: rotate(-1.5deg); }
.voice-card:nth-child(even) { transform: rotate(1.5deg); }
.voice-yellow { background: var(--yellow-pastel); }
.voice-pink { background: #fff3ef; }
.voice-cyan { background: var(--cyan-light); }

.voice-tag {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-family: "Reggae One", cursive;
  font-size: 0.9rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  transform: rotate(-3deg);
}

.voice-photo {
  position: relative;
  border: 4px solid var(--black);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 4px 4px 0 var(--pink);
}
.voice-photo img {
  width: 100%;
  display: block;
}
.voice-sticker {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--pink);
  color: var(--white);
  border: 4px solid var(--black);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Reggae One", cursive;
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.2;
  transform: rotate(12deg);
  box-shadow: 3px 3px 0 var(--black);
  animation: wiggle 2s ease-in-out infinite;
}
.voice-card:nth-child(even) .voice-sticker {
  background: var(--yellow);
  color: var(--black);
  transform: rotate(-10deg);
  animation-delay: 0.5s;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(12deg) scale(1); }
  50% { transform: rotate(12deg) scale(1.1); }
}

.voice-quote {
  font-size: 1rem;
  line-height: 1.8;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: 14px;
  padding: 16px 16px 18px;
  position: relative;
  box-shadow: 3px 3px 0 var(--black);
}
.voice-quote::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 14px solid var(--black);
}
.voice-quote::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 34px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid var(--white);
}
.quote-big {
  display: block;
  font-family: "Reggae One", cursive;
  font-size: 1.4rem;
  color: var(--pink);
  margin-bottom: 8px;
  line-height: 1.3;
  text-shadow: 2px 2px 0 var(--yellow);
}

.voice-footer {
  max-width: 800px;
  margin: 50px auto 0;
  text-align: center;
}
.voice-conclusion {
  display: inline-block;
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 20px;
  padding: 20px 32px;
  font-family: "Reggae One", cursive;
  font-size: 1.3rem;
  line-height: 1.8;
  box-shadow: 6px 6px 0 var(--pink);
  transform: rotate(-1deg);
}

/* ===== Norizon CTA ===== */
.norizon-cta {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  text-align: center;
  border-top: 6px solid var(--black);
  border-bottom: 6px solid var(--black);
}
.norizon-inner {
  max-width: 800px;
  margin: 0 auto;
}
.norizon-kicker {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  padding: 6px 20px;
  font-family: "Reggae One", cursive;
  border-radius: 20px;
  margin-bottom: 20px;
  transform: rotate(-3deg);
}
.norizon-title {
  font-family: "Reggae One", cursive;
  font-size: clamp(3rem, 10vw, 6rem);
  margin-bottom: 20px;
}
.noriz-amazon {
  color: var(--black);
  position: relative;
  display: inline-block;
}
.noriz-arrow {
  position: relative;
}
.noriz-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 15%;
  bottom: -10px;
  height: 20px;
  background: none;
  border-bottom: 6px solid var(--pink);
  border-radius: 0 0 50% 50%;
}
.noriz-arrow::before {
  content: "▶";
  position: absolute;
  right: -5%;
  bottom: -25px;
  color: var(--pink);
  font-size: 1.5rem;
}
.norizon-copy {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.8;
  margin: 40px 0 30px;
}
.norizon-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--black);
}

/* ===== News ===== */
.news {
  background: var(--white);
}
.news-list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
}
.news-list li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 3px dashed var(--black);
  flex-wrap: wrap;
  transition: background 0.2s;
}
.news-list li:hover { background: var(--yellow-pastel); }
.news-date {
  font-family: "Reggae One", cursive;
  color: var(--pink);
  min-width: 100px;
}
.news-tag {
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 4px;
  border: 2px solid var(--black);
  font-weight: bold;
}
.tag-info { background: var(--cyan); }
.tag-media { background: var(--yellow); }
.tag-event { background: var(--orange); color: var(--white); }
.news-title {
  flex: 1;
  min-width: 200px;
  font-weight: bold;
}

/* ===== Company ===== */
.company {
  background: var(--yellow-pastel);
  border-top: 4px solid var(--black);
}
.company-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.company-message {
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 8px 8px 0 var(--pink);
}
.ceo-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid var(--black);
  margin: 0 auto 20px;
}
.ceo-quote {
  font-family: "Reggae One", cursive;
  font-size: 1.5rem;
  color: var(--pink);
  margin-bottom: 12px;
  line-height: 1.5;
}
.ceo-name {
  font-weight: bold;
  font-size: 1.05rem;
}
.company-info {
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 8px 8px 0 var(--cyan);
  display: grid;
  grid-template-columns: 100px 1fr;
  row-gap: 14px;
  column-gap: 16px;
  align-content: start;
}
.company-info dt {
  font-weight: bold;
  color: var(--pink);
  font-family: "Reggae One", cursive;
}
.company-info dd {
  border-bottom: 2px dashed var(--black);
  padding-bottom: 10px;
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 50px 20px 30px;
  text-align: center;
  border-top: 6px solid var(--pink);
}
.footer-logo {
  font-family: "Reggae One", cursive;
  font-size: 2rem;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--pink);
  margin-bottom: 10px;
}
.footer-logo small {
  display: block;
  font-size: 0.8rem;
  color: var(--white);
  margin-top: 6px;
}
.footer-copy {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  color: var(--white);
  padding: 6px 12px;
  border: 2px solid var(--yellow);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-links a:hover {
  background: var(--yellow);
  color: var(--black);
}
.footer-copyright {
  color: #888;
  font-size: 0.8rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 12px; }
  .nav { gap: 10px; }
  .nav a { font-size: 0.85rem; padding: 4px 8px; }
  .strength-inner { grid-template-columns: 1fr; gap: 30px; }
  .company-inner { grid-template-columns: 1fr; }
  .company-info { grid-template-columns: 90px 1fr; }
  .hero-title .line2 { align-self: center; }
  section { padding: 60px 16px; }
  .photo-sticker { width: 100px; height: 100px; top: -20px; right: -20px; font-size: 0.85rem; }
  .voice-sticker { width: 76px; height: 76px; font-size: 0.75rem; }
  .quote-big { font-size: 1.2rem; }
}
