/* =====================================================
   せきぐち事務所 - メインスタイルシート (Redesign 2024)
   ===================================================== */

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

:root {
  --navy:    #4a7055;
  --navy-d:  #2d4a38;
  --navy-l:  #6a9775;
  --gold:    #85b569;
  --gold-l:  #9dca80;
  --cream:   #faf8f4;
  --gray-bg: #f4f6f1;
  --gray-bd: #d0dbc8;
  --gray-tx: #5e6e57;
  --text:    #1e2d1f;
  --white:   #ffffff;
  --radius:  14px;
  --radius-lg: 22px;
  --shadow:  0 4px 24px rgba(45,74,56,.08);
  --shadow-h:0 10px 40px rgba(45,74,56,.15);
  --transition: .28s ease;
  --max-w:   1100px;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN',
               'Yu Gothic Medium', 'YuGothic', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* --- Utility -------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 96px 0;
}

.section--gray {
  background: var(--gray-bg);
}

.section--cream {
  background: var(--cream);
}

.section__head {
  text-align: center;
  margin-bottom: 60px;
}

.section__label {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  background: rgba(74,112,85,.10);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy-d);
  line-height: 1.45;
  margin-bottom: 16px;
}

.section__desc {
  color: var(--gray-tx);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.9;
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  margin: 22px auto 0;
  border-radius: 10px;
}

/* --- Buttons --------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(133,181,105,.35);
}
.btn--primary:hover {
  background: var(--gold-l);
  border-color: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(133,181,105,.45);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.9);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(74,112,85,.30);
}
.btn--navy:hover {
  background: var(--navy-l);
  border-color: var(--navy-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,112,85,.38);
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-bd);
  z-index: 900;
  box-shadow: 0 2px 20px rgba(45,74,56,.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.header__logo-sub {
  font-size: .62rem;
  color: var(--gray-tx);
  letter-spacing: .08em;
}

.header__logo-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-d);
  letter-spacing: .04em;
}

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__item a {
  display: block;
  padding: 8px 14px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 40px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav__item a:hover,
.nav__item a[aria-current="page"] {
  color: var(--navy);
  background: var(--gray-bg);
  font-weight: 700;
}

.nav__item--cta a {
  background: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(74,112,85,.25);
}
.nav__item--cta a:hover {
  background: var(--navy-l);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-d);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--gray-bd);
  box-shadow: 0 12px 32px rgba(45,74,56,.12);
  z-index: 850;
  padding: 16px 0 28px;
}
.mobile-nav.is-open { display: block; }

.mobile-nav__list { padding: 0 28px; }
.mobile-nav__list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
  font-size: .95rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-bd);
}
.mobile-nav__list li:last-child a { border-bottom: none; }
.mobile-nav__cta {
  padding: 20px 28px 0;
}
.mobile-nav__cta .btn {
  width: 100%;
  justify-content: center;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  margin-top: var(--header-h);
  background: linear-gradient(145deg, #243b2d 0%, #325d43 55%, #486a55 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}

/* Soft organic background layers */
.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(133,181,105,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero__deco-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(133,181,105,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133,181,105,.05) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hero__deco-shape {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(133,181,105,.18);
  border-radius: 50%;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(133,181,105,.14);
  border: 1px solid rgba(133,181,105,.32);
  border-radius: 40px;
  padding: 6px 18px;
  font-size: .76rem;
  color: var(--gold-l);
  letter-spacing: .12em;
  margin-bottom: 30px;
}

.hero__catch {
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 18px;
  letter-spacing: .02em;
}

.hero__catch-accent {
  color: var(--gold-l);
  display: block;
}

.hero__sub {
  font-size: clamp(.88rem, 2vw, 1.02rem);
  color: rgba(255,255,255,.72);
  margin-bottom: 14px;
  letter-spacing: .06em;
}

.hero__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
}

.hero__tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 40px;
  padding: 5px 16px;
  font-size: .77rem;
  color: rgba(255,255,255,.82);
  letter-spacing: .04em;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.38);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.38), transparent);
  animation: scrollLine 1.9s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: .38; transform: scaleY(1); }
  50%       { opacity: .85; transform: scaleY(1.15); }
}

/* =====================================================
   FEATURES (強み)
   ===================================================== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-h);
  border-color: rgba(133,181,105,.25);
}

.feature-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy-d), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--gold-l);
  font-size: 1.5rem;
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-d);
  margin-bottom: 10px;
}

.feature-card__text {
  font-size: .92rem;
  color: var(--gray-tx);
  line-height: 1.8;
}

/* =====================================================
   SERVICES
   ===================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-h);
  border-color: rgba(133,181,105,.30);
}

.service-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-d), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-l);
  font-size: 1.3rem;
}

.service-card__body { flex: 1; }

.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-d);
  margin-bottom: 8px;
}

.service-card__text {
  font-size: .92rem;
  color: var(--gray-tx);
  line-height: 1.8;
  margin-bottom: 14px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  transition: var(--transition);
}
.service-card__link:hover { color: var(--gold); gap: 10px; }

/* =====================================================
   CTA BANNER
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 60%, var(--navy-l) 100%);
  color: var(--white);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(133,181,105,.12) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 65%);
  border-radius: 50%;
}

.cta-banner__inner { position: relative; z-index: 1; }

.cta-banner__label {
  font-size: .72rem;
  letter-spacing: .22em;
  color: var(--gold-l);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.cta-banner__title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-banner__text {
  color: rgba(255,255,255,.68);
  margin-bottom: 38px;
  font-size: 1rem;
  line-height: 1.9;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =====================================================
   ABOUT PREVIEW
   ===================================================== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-preview__visual {
  position: relative;
}

.about-preview__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-h);
  overflow: hidden;
}

.about-preview__card-top {
  background: linear-gradient(135deg, var(--navy-d), var(--navy-l));
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about-preview__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  border: 3px solid rgba(133,181,105,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--gold-l);
}

.about-preview__name-en {
  font-size: .75rem;
  letter-spacing: .14em;
  color: rgba(255,255,255,.55);
}

.about-preview__name-ja {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.about-preview__quals {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-preview__qual {
  background: rgba(133,181,105,.18);
  border: 1px solid rgba(133,181,105,.38);
  border-radius: 40px;
  padding: 4px 14px;
  font-size: .72rem;
  color: var(--gold-l);
  letter-spacing: .04em;
}

.about-preview__card-bottom {
  padding: 28px 36px;
}

.about-preview__info li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-bd);
  font-size: .85rem;
}
.about-preview__info li:last-child { border-bottom: none; }
.about-preview__info .label {
  color: var(--gray-tx);
  min-width: 60px;
  flex-shrink: 0;
  font-size: .78rem;
  padding-top: 2px;
}

.about-preview__deco {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: .25;
  z-index: -1;
}

.about-preview__body {}

.about-preview__title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--navy-d);
  line-height: 1.45;
  margin-bottom: 24px;
}

.about-preview__title span {
  color: var(--gold);
}

.about-preview__text {
  color: var(--gray-tx);
  font-size: .97rem;
  line-height: 2;
  margin-bottom: 20px;
}

.about-preview__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 12px;
  transition: var(--transition);
}
.about-preview__link:hover { color: var(--gold); gap: 14px; }

/* =====================================================
   ACCESS
   ===================================================== */
.access {
  background: var(--gray-bg);
  padding: 96px 0;
}

.access__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

.access__info {}

.access__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-d);
  margin-bottom: 24px;
}

.access__list li {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-bd);
  font-size: .95rem;
  align-items: flex-start;
}
.access__list li:last-child { border-bottom: none; }

.access__list .icon {
  color: var(--gold);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.access__map-placeholder {
  background: linear-gradient(135deg, #edf5e8, #d8ebd0);
  border-radius: var(--radius-lg);
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--navy-d);
  font-size: .9rem;
  border: 1px solid var(--gray-bd);
}

.access__map-placeholder i {
  font-size: 2.5rem;
  color: var(--navy);
}

.access__map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  background: rgba(74,112,85,.10);
  padding: 7px 18px;
  border-radius: 40px;
  transition: var(--transition);
}
.access__map-link:hover {
  background: rgba(74,112,85,.18);
  color: var(--navy-d);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--navy-d);
  color: rgba(255,255,255,.72);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand {}

.footer__logo {
  margin-bottom: 16px;
}
.footer__logo-sub {
  font-size: .62rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.38);
  margin-bottom: 4px;
}
.footer__logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.footer__catch {
  font-size: .78rem;
  color: var(--gold-l);
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: .8rem;
  line-height: 1.9;
  color: rgba(255,255,255,.48);
}

.footer__nav-title {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.42);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer__nav-list li {
  margin-bottom: 12px;
}

.footer__nav-list a {
  font-size: .83rem;
  color: rgba(255,255,255,.58);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__nav-list a:hover { color: var(--gold-l); }
.footer__nav-list a i { font-size: .68rem; }

.footer__bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .74rem;
  color: rgba(255,255,255,.3);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a {
  color: rgba(255,255,255,.3);
  transition: var(--transition);
}
.footer__bottom-links a:hover { color: rgba(255,255,255,.6); }

/* =====================================================
   INNER PAGE HERO (サービスページ等)
   ===================================================== */
.page-hero {
  margin-top: var(--header-h);
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(133,181,105,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133,181,105,.045) 1px, transparent 1px);
  background-size: 52px 52px;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(133,181,105,.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 22px;
}
.page-hero__breadcrumb a {
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}
.page-hero__breadcrumb a:hover { color: var(--gold-l); }
.page-hero__breadcrumb span { color: rgba(255,255,255,.28); }

.page-hero__label {
  font-size: .72rem;
  letter-spacing: .22em;
  color: var(--gold-l);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.page-hero__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
}

/* =====================================================
   BREADCRUMB
   ===================================================== */
.breadcrumb {
  padding: 14px 0;
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-bd);
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--gray-tx);
}
.breadcrumb__inner a {
  color: var(--navy);
  transition: var(--transition);
}
.breadcrumb__inner a:hover { color: var(--gold); }

/* =====================================================
   CARD GRID (general)
   ===================================================== */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1.5px solid var(--gray-bd);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-h);
  border-color: rgba(133,181,105,.35);
  transform: translateY(-4px);
}

/* =====================================================
   TABLE (料金表等)
   ===================================================== */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.fee-table th, .fee-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--gray-bd);
}
.fee-table thead th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  letter-spacing: .04em;
  font-size: .82rem;
}
.fee-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.fee-table thead th:last-child  { border-radius: 0 var(--radius) 0 0; }
.fee-table tbody tr:last-child td { border-bottom: none; }
.fee-table tbody tr:hover td { background: var(--gray-bg); }
.fee-table .fee { color: var(--navy); font-weight: 700; }
.fee-table .note { font-size: .78rem; color: var(--gray-tx); margin-top: 4px; }

/* =====================================================
   PDF NOTE (fee page)
   ===================================================== */
.pdf-note {
  background: var(--cream);
  border: 1px solid var(--gray-bd);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  font-size: .84rem;
  color: var(--gray-tx);
  line-height: 2;
  margin-top: 28px;
}

/* =====================================================
   FORM
   ===================================================== */
.form-group {
  margin-bottom: 26px;
}

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy-d);
  margin-bottom: 8px;
}

.form-label .required {
  display: inline-block;
  background: #c0392b;
  color: var(--white);
  font-size: .64rem;
  padding: 2px 7px;
  border-radius: 40px;
  margin-left: 6px;
  vertical-align: middle;
  letter-spacing: .04em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--gray-bd);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(74,112,85,.10);
  background: var(--cream);
}
.form-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.75;
}

/* =====================================================
   CONTACT LAYOUT (contact page)
   ===================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--gray-bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-bd);
}

.contact-info-card__title {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 20px;
  background: rgba(74,112,85,.10);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 40px;
}

.contact-info-card ul li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--gray-bd);
  font-size: .93rem;
  align-items: flex-start;
}
.contact-info-card ul li:last-child { border-bottom: none; }
.contact-info-card .icon {
  color: var(--gold);
  width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* =====================================================
   STEP FLOW
   ===================================================== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding-bottom: 44px;
  position: relative;
}
.step:last-child { padding-bottom: 0; }

.step__num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step__num {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy-d), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(45,74,56,.22);
}

.step__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--gray-bd), transparent);
  margin-top: 10px;
}
.step:last-child .step__line { display: none; }

.step__body {
  padding-top: 12px;
  padding-bottom: 8px;
}

.step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-d);
  margin-bottom: 8px;
}

.step__text {
  font-size: .93rem;
  color: var(--gray-tx);
  line-height: 1.9;
}

/* =====================================================
   FAQ (flow page)
   ===================================================== */
.faq-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-bd);
  margin-bottom: 12px;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(133,181,105,.35);
  box-shadow: var(--shadow);
}

/* =====================================================
   PLAN CARDS (labor page)
   ===================================================== */
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
}
.plan-card--featured {
  border-color: var(--gold);
  position: relative;
  box-shadow: var(--shadow-h);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-h);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .hero__deco { display: none; }

  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about-preview { grid-template-columns: 1fr; gap: 40px; }
  .about-preview__visual { order: -1; max-width: 420px; margin: 0 auto; }
  .access__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .features__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .card-grid--2,
  .card-grid--3 { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; text-align: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }

  .step { grid-template-columns: 56px 1fr; gap: 16px; }
  .step__num { width: 48px; height: 48px; font-size: 1rem; border-radius: 14px; }
}

/* =====================================================
   LOGO & BADGE IMAGES
   ===================================================== */

/* Header logo image */
.header__logo-img {
  height: 46px;
  width: auto;
  display: block;
}

/* Footer logo image (white invert for dark background) */
.footer__logo-img {
  height: 38px;
  width: auto;
  display: block;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  opacity: .80;
}

/* Security / certification badge in footer */
.footer__security-badge {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.footer__security-badge img {
  max-width: 150px;
  height: auto;
  opacity: .92;
  border-radius: 8px;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp .6s ease both;
}
.animate-in:nth-child(2) { animation-delay: .1s; }
.animate-in:nth-child(3) { animation-delay: .2s; }
.animate-in:nth-child(4) { animation-delay: .3s; }
