/* ===== CSS Variables ===== */
:root {
  --orange:      #FF6B35;
  --orange-lt:   #FFF4EE;
  --orange-dark: #E85520;
  --yellow:      #FDD835;
  --yellow-lt:   #FFFDE7;
  --black:       #111111;
  --black-soft:  #1A1A1A;
  --navy:        #111111;   /* 後方互換 — navy参照はすべて黒に */
  --navy-lt:     #F5F5F5;
  --white:       #FFFFFF;
  --gray-soft:   #F5F5F5;
  --gray-border: #E5E7EB;
  --text-dark:   #111111;
  --text-mid:    #4B5563;
  --text-light:  #9CA3AF;
  --header-h:    72px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto; /* JS handles smooth scroll with offset */
  font-size: 16px;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Yu Gothic", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  line-height: 1.3;
  font-weight: 700;
}

.section-heading {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-heading-accent {
  width: 48px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}

.section-heading-accent.orange {
  background: var(--orange);
}

.section-sub {
  text-align: center;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

/* ===== Layout Helpers ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 5rem 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-line {
  background: #06C755;
  color: var(--white);
  border-color: #06C755;
}

.btn-line:hover {
  background: #059740;
  border-color: #059740;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.35);
}

.btn-instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
  color: #fff;
  border-color: transparent;
}

.btn-instagram:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-facebook {
  background: #1877F2;
  color: #fff;
  border-color: transparent;
}

.btn-facebook:hover {
  background: #0f65d8;
  transform: translateY(-1px);
}

/* ===== Tag Selector (Contact Form) ===== */
.tag-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tag-option {
  cursor: pointer;
}

.tag-option input[type="checkbox"] {
  display: none;
}

.tag-option span {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--gray-border);
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.15s;
  user-select: none;
}

.tag-option:hover span {
  border-color: var(--orange);
  color: var(--orange);
}

.tag-option input[type="checkbox"]:checked + span {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ===== Header / Nav ===== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

#main-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-name {
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
}

.site-name span {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-mid);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.desktop-nav a {
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--black);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: #333 !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  padding: 0 1.5rem;
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, visibility 0.35s;
}

.mobile-nav.open {
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem;
  visibility: visible;
}

.mobile-nav a {
  display: block;
  color: var(--text-mid);
  font-size: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-border);
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--orange);
}

/* ===== Hero ===== */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "tag slideshow"
    "main slideshow";
}

/* タグバッジ（PC：左上） */
.hero-tag-wrap {
  grid-area: tag;
  padding: calc(var(--header-h) + 2.5rem) 3rem 1rem 5vw;
  background: var(--white);
}

/* メインテキスト（PC：左下） */
.hero-main {
  grid-area: main;
  padding: 1rem 3rem 3rem 5vw;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* 右：スライドショーエリア */
.hero-right {
  grid-area: slideshow;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  border-radius: 9999px;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0;
}

.hero-h1 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  color: var(--black);
  margin-bottom: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-h1 em {
  font-style: normal;
  border-bottom: 4px solid var(--yellow);
  padding-bottom: 2px;
}

.hero-sub {
  color: var(--text-mid);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  margin-bottom: 2.5rem;
  line-height: 1.9;
}

.hero-sub p {
  margin-bottom: 0.6rem;
}

.hero-sub p:last-child {
  margin-bottom: 0;
}

.hero-sub-quote {
  font-weight: 700;
  color: var(--black);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
}

.btn-hero-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-hero-outline:hover {
  background: var(--orange);
  color: #fff;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== Cards ===== */
.card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* ===== Icon Boxes (What Is LK section) ===== */
/* ===== About LK リスト ===== */
.about-lk-checks {
  list-style: none;
  margin-bottom: 1.25rem;
}

.about-lk-checks li {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 0.3rem 0 0.3rem 1.6rem;
  position: relative;
  line-height: 1.6;
}

.about-lk-checks li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--orange);
}

.about-lk-targets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-lk-targets li {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.about-lk-targets strong {
  color: var(--text-dark);
}

.icon-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.icon-box .icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.icon-box h4 {
  font-size: 0.95rem;
  color: var(--navy);
}

.icon-box p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ===== Target Audience Cards ===== */
.audience-card {
  background: var(--white);
  border-radius: 1rem;
  border-top: 4px solid var(--orange);
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.audience-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.audience-card .tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--black);
  background: var(--yellow);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.audience-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.audience-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.audience-card li {
  font-size: 0.83rem;
  color: var(--text-mid);
  padding-left: 1.1rem;
  position: relative;
}

.audience-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ===== Service Cards ===== */
.service-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.service-card .icon {
  font-size: 2.2rem;
}

.service-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--text-mid);
  background: var(--gray-soft);
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  width: fit-content;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}

.service-link {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 0.5rem;
}

/* ===== Profile Section ===== */
#profile {
  background: var(--gray-soft);
  color: var(--black);
}

.profile-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: center;
}

.profile-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  flex-shrink: 0;
}

.profile-photo-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #e8e8e8;
  border: 4px solid var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #aaa;
  text-align: center;
  gap: 0.5rem;
}

.profile-photo-placeholder .icon {
  font-size: 3rem;
  opacity: 0.4;
}

.profile-name {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.profile-title {
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.profile-location {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.profile-bio {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 1.75rem;
}

.profile-bio p + p {
  margin-top: 1rem;
}

.profile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--gray-border);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.chip a {
  color: inherit;
}

.chip a:hover {
  color: var(--orange);
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.pricing-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.pricing-card.featured {
  border-color: var(--orange);
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(255,107,53,0.18);
  position: relative;
}

.pricing-card.featured:hover {
  transform: scale(1.04) translateY(-3px);
}

.pricing-card.dark {
  background: #1A2B4A;
  border-color: #1A2B4A;
  box-shadow: 0 8px 32px rgba(26,43,74,0.25);
}

.pricing-card.dark .pricing-label,
.pricing-card.dark .pricing-name,
.pricing-card.dark .pricing-price,
.pricing-card.dark .pricing-duration {
  color: #fff;
}

.pricing-card.dark .pricing-features li {
  color: rgba(255,255,255,0.75);
}

.pricing-card.dark .pricing-features li::before {
  color: var(--yellow);
}

.pricing-card.dark .pricing-divider {
  border-color: rgba(255,255,255,0.15);
}

.pricing-card.dark .pricing-badge {
  background: var(--yellow);
  color: #1A2B4A;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.8rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-icon {
  font-size: 1.75rem;
}

.pricing-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-name {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}

.pricing-price {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.pricing-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-mid);
}

.pricing-duration {
  font-size: 0.8rem;
  color: var(--text-mid);
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--gray-border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.83rem;
  color: var(--text-mid);
  padding-left: 1.2rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.pricing-note {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1.5rem;
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.75rem;
  border-left: 4px solid var(--orange);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
}

.testimonial-quote {
  font-size: 3.5rem;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrap h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group label .required {
  color: var(--orange);
  margin-left: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-border);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #EF4444;
}

.form-error {
  font-size: 0.76rem;
  color: #EF4444;
  margin-top: 0.3rem;
  display: none;
}

.form-error.show {
  display: block;
}

.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='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234B5563' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.btn-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 9999px;
  padding: 0.95rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}

.privacy-note {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  text-align: center;
  line-height: 1.6;
}

/* Contact side panel */
.contact-side h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-option {
  background: var(--gray-soft);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.contact-option-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.contact-option p {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 0.85rem;
}

.contact-option .btn {
  width: 100%;
  justify-content: center;
}

/* Success banner */
.success-banner {
  display: none;
  background: #DCFCE7;
  border: 1.5px solid #86EFAC;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  color: #166534;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.success-banner.show {
  display: block;
}

/* ===== Footer ===== */
#footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand .name {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.footer-brand .sub {
  font-size: 0.78rem;
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.footer-brand .loc {
  font-size: 0.8rem;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.82rem;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--orange);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
}

.footer-contact-item a {
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-contact-item a:hover {
  opacity: 1;
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ===== Fade-in animation ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered delay for grid children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; visibility: hidden; }

  .profile-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-photo,
  .profile-photo-placeholder {
    margin: 0 auto;
  }

  .profile-chips {
    justify-content: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
    order: -1;
  }

  .pricing-card.featured:hover {
    transform: translateY(-3px);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .card-grid-2,
  .card-grid-3,
  .card-grid-4,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "tag"
      "slideshow"
      "main";
    padding-top: var(--header-h);
  }

  .hero-tag-wrap {
    padding: 1.5rem 1.25rem 1rem;
  }

  .hero-right {
    min-height: unset;
    height: 60vw;
  }

  .hero-main {
    padding: 1.5rem 1.25rem 2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-pad {
    padding: 3.5rem 0;
  }
}
