/* =============================================
   あけぼのライフ 宅建講習 LP - style.css
   Design: Sincere · Trustworthy · Warm
   ============================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@400;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #1a4d8a;
  --primary-light: #2563c4;
  --primary-dark: #0f2f5c;
  --accent: #e8820c;
  --accent-light: #f5a330;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --success: #2d7a4f;
  --text-main: #1c1c2e;
  --text-body: #3a3a5c;
  --text-muted: #6b7280;
  --text-white: #ffffff;
  --bg-page: #fafbff;
  --bg-card: #ffffff;
  --bg-light: #f0f4ff;
  --bg-dark: #0f1e3d;
  --bg-darker: #0a1428;
  --border: #dde3f0;
  --border-accent: #c9a84c;
  --shadow-sm: 0 2px 8px rgba(26, 77, 138, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 77, 138, 0.14);
  --shadow-lg: 0 16px 48px rgba(26, 77, 138, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-sans: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  --font-serif: 'Noto Serif JP', 'Yu Mincho', serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 28px;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.header-tel:hover { color: var(--primary-light); }

.btn-header-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 30px;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(232, 130, 12, 0.35);
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 130, 12, 0.45);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.92);
  padding: 8px 0;
  overflow: hidden;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.trust-divider { opacity: 0.4; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 80px;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: white;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://akebonolifetakken.wordpress.com/wp-content/uploads/2024/12/26592841_s.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
  filter: brightness(0.4) contrast(1.1);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 30, 61, 0.4) 0%, rgba(15, 30, 61, 0.8) 70%, var(--bg-dark) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.25);
  border: 1px solid rgba(201, 168, 76, 0.6);
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.25;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title br { display: block; }

.hero-title em {
  font-style: normal;
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), #fff, var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 48px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f5a330);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(232, 130, 12, 0.4);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(232, 130, 12, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 15px 28px;
  border-radius: 50px;
  transition: var(--transition);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 28px;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
section { padding: 90px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  text-transform: uppercase;
  background: var(--bg-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(37, 99, 196, 0.2);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.45;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 48px;
}

/* =============================================
   SINCERITY
   ============================================= */
.sincerity {
  background: var(--bg-light);
  padding: 80px 0;
}

/* --- Sincerity Grid --- */
.sincerity-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: stretch;
  margin-bottom: 60px;
}

.sincerity-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.sincerity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.sincerity-image:hover img {
  transform: scale(1.05);
}

.sincerity-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sincerity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--accent));
}

.sincerity-icon {
  margin-bottom: 24px;
}
.sincerity-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  image-rendering: -webkit-optimize-contrast;
}

.sincerity-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
}

.sincerity-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 2;
  max-width: 680px;
  margin: 0 auto 48px;
}

.sincerity-text strong {
  color: var(--primary);
  font-weight: 700;
}

.sincerity-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.pillar-icon { font-size: 2rem; margin-bottom: 10px; }
.pillar strong { display: block; color: var(--primary); font-size: 1.05rem; margin-bottom: 8px; }
.pillar p { font-size: 0.85rem; color: var(--text-body); line-height: 1.6; }

/* =============================================
   FOR WHOM
   ============================================= */
.for-whom { background: var(--bg-page); }
.whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.whom-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.whom-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.whom-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.whom-card:hover::after { opacity: 1; }

.whom-icon { font-size: 2.8rem; margin-bottom: 16px; }
.whom-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.whom-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.75; margin-bottom: 16px; }
.whom-tag { font-size: 0.78rem; font-weight: 700; color: var(--accent); background: rgba(232, 130, 12, 0.1); padding: 5px 12px; border-radius: 20px; display: inline-block; }

/* =============================================
   PLANS
   ============================================= */
.plans {
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
  padding: 90px 0;
}

.plans .section-label {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--gold-light);
}

.plans .section-title {
  color: var(--text-white);
  text-align: center;
  margin-bottom: 52px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-6px);
}

.plan-card.plan-featured {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.25);
}

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

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--accent-light));
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-number {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgba(201, 168, 76, 0.7);
  margin-bottom: 12px;
}

.plan-card.plan-featured .plan-number { color: var(--gold); }

.plan-icon { font-size: 2.4rem; margin-bottom: 14px; }
.plan-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  line-height: 1.4;
}
.plan-card.plan-featured .plan-title { color: var(--primary); }

.plan-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}
.plan-card.plan-featured .plan-desc { color: var(--text-body); }

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.plan-card.plan-featured .plan-features li {
  color: var(--text-body);
  border-bottom-color: var(--border);
}

.btn-plan {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 30px;
  transition: var(--transition);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.btn-plan:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}

.btn-plan-featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary-light);
  color: white;
  box-shadow: 0 6px 20px rgba(26, 77, 138, 0.4);
}

.btn-plan-featured:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 77, 138, 0.5);
}

/* =============================================
   REASONS
   ============================================= */
.reasons { background: var(--bg-page); }

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.reason-item {
  display: flex;
  gap: 28px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  align-items: center;
}

.reason-image-small {
  width: 180px;
  height: 120px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.reason-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateX(4px);
}

.reason-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(26, 77, 138, 0.12);
  line-height: 1;
  min-width: 80px;
  font-family: var(--font-serif);
}

.reason-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.reason-content p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.85;
}

/* =============================================
   YOUTUBE
   ============================================= */
.youtube-section {
  background: linear-gradient(160deg, #0f0f1a 0%, #1a0f2e 100%);
  padding: 90px 0;
}

.youtube-section .section-label {
  background: rgba(255,0,0,0.1);
  border-color: rgba(255,80,80,0.3);
  color: #ff8080;
}

.youtube-section .section-title {
  color: var(--text-white);
  margin-bottom: 12px;
}

.youtube-section .section-subtitle {
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
}

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

.yt-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.yt-embed-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}

.yt-bg-cover {
  position: absolute;
  inset: 0;
  background-image: url('https://akebonolifetakken.wordpress.com/wp-content/uploads/2024/12/screenshot_4.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: grayscale(100%) contrast(1.2);
  z-index: 0;
  pointer-events: none;
}

.yt-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  background: radial-gradient(circle, transparent 40%, rgba(10,25,47,0.4) 100%);
  transition: var(--transition);
}

.yt-placeholder:hover { background: radial-gradient(circle, transparent 30%, rgba(10,25,47,0.6) 100%); }

.yt-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255,0,0,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
}

.yt-placeholder:hover .yt-play-btn {
  transform: scale(1.1);
  background: #ff0000;
}

.yt-label {
  text-align: center;
}

.yt-label strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.yt-label span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.yt-card-info {
  padding: 24px;
}

.yt-channel-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.yt-channel-icon {
  font-size: 2.4rem;
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yt-channel-meta strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.yt-channel-meta p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.btn-youtube {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: #ff0000;
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 30px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}

.btn-youtube:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 0, 0, 0.45);
}

.yt-topics {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.yt-topics-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
}

.yt-topics-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.yt-topics-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: default;
}

.yt-topics-list li:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.15);
}

.yt-topic-icon { font-size: 1.6rem; flex-shrink: 0; }

.yt-topics-list li strong {
  display: block;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 2px;
}

.yt-topics-list li span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.btn-yt-more {
  display: block;
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  transition: var(--transition);
}

.btn-yt-more:hover {
  color: white;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 5rem;
  color: var(--bg-light);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

blockquote {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  background: var(--bg-page);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}

.contact-info {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

.contact-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

a.contact-method:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.25);
}

.contact-method-icon { font-size: 1.4rem; flex-shrink: 0; }

.contact-method strong {
  display: block;
  font-size: 0.8rem;
  opacity: 0.75;
  margin-bottom: 2px;
}

.contact-method span {
  font-size: 0.9rem;
  font-weight: 500;
}

.license-badge {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-align: center;
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 7px;
}

.required {
  background: #e53e3e;
  color: white;
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text-main);
  background: var(--bg-page);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  background: white;
  box-shadow: 0 0 0 3px rgba(37,99,196,0.1);
}

.form-group textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(232, 130, 12, 0.35);
  letter-spacing: 0.02em;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 130, 12, 0.5);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,0.7);
  padding: 52px 0 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo .logo-icon { font-size: 2.4rem; }
.footer-logo-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
}
.footer-logo-license {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links a:hover { color: white; }

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.social-btn:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: white;
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  text-align: center;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .sincerity-grid,
  .sincerity-pillars,
  .whom-grid,
  .plans-grid,
  .testimonials-grid,
  .youtube-grid {
    grid-template-columns: 1fr;
  }

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

  .plan-card.plan-featured:hover {
    transform: translateY(-6px);
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .reason-item {
    flex-direction: column;
    gap: 12px;
  }

  .reason-num {
    font-size: 2rem;
    min-width: auto;
  }

  .hero-stats {
    flex-wrap: wrap;
    padding: 16px;
    gap: 12px;
  }

  .stat-divider { display: none; }
  .stat-item { padding: 0 12px; }
}

@media (max-width: 600px) {
  .header-inner { padding: 0 16px; }
  .header-tel { display: none; }
  .hero { padding: 60px 16px 50px; min-height: 85vh; }
  .hero-title { font-size: 1.9rem; }
  section { padding: 64px 0; }
  .sincerity-card { padding: 36px 20px; }
  .contact-form { padding: 28px 20px; }
}
