/* ============================================
   株式会社あおば工房 法人向けホームページ
   Shared Stylesheet — v2 華やかデザイン
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #1D6BB5;
  --primary-dark: #14508A;
  --primary-deeper: #0D3B6E;
  --primary-light: #4A9EE0;
  --primary-bg: #EBF4FC;
  --primary-bg2: #D6EAFC;
  --accent: #F29B30;
  --accent-dark: #D9820A;
  --accent-light: #FFD08A;
  --green: #2EAF6E;
  --green-dark: #1E8F56;
  --warning: #E8590C;
  --warning-bg: #FFF4ED;
  --text: #1A2744;
  --text-light: #5A6A85;
  --text-white: #FFFFFF;
  --bg-white: #FFFFFF;
  --bg-gray: #F5F8FC;
  --bg-dark: #0E1E3A;
  --border: #D4DFED;
  --shadow: 0 2px 8px rgba(13,59,110,0.08), 0 1px 3px rgba(13,59,110,0.06);
  --shadow-md: 0 6px 16px rgba(13,59,110,0.10), 0 2px 6px rgba(13,59,110,0.06);
  --shadow-lg: 0 12px 32px rgba(13,59,110,0.12), 0 4px 8px rgba(13,59,110,0.06);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --max-width: 1200px;
  --header-height: 130px;
  --gradient-hero: linear-gradient(135deg, #1D6BB5 0%, #2E8AD6 40%, #4AABE8 70%, #73C8F5 100%);
  --gradient-cta: linear-gradient(135deg, #14508A 0%, #1D6BB5 50%, #2E8AD6 100%);
  --gradient-accent: linear-gradient(135deg, #F29B30 0%, #F5B560 100%);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  color: var(--text);
  line-height: 1.8;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.25s, opacity 0.25s; }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { line-height: 1.45; font-weight: 700; color: var(--text); }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.75rem; letter-spacing: 0.02em; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; position: relative; }
.section--gray { background: var(--bg-gray); }
.section--blue { background: var(--primary-bg); }
.section--dark { background: var(--bg-dark); color: var(--text-white); }

/* Wave separator between sections */
.section--wave-top { padding-top: 120px; }
.section--wave-top::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; position: relative; display: inline-block; }
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}
.section-header .section-sub { color: var(--text-light); font-size: 0.95rem; margin-top: 20px; }

.section-label {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================
   HEADER — Gradient Top Bar
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  box-shadow: 0 2px 12px rgba(13,59,110,0.08);
  height: var(--header-height);
}
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-hero);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.header-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-logo-img {
  height: 110px;
  width: 320px;
  object-fit: contain;
  display: block;
  background: #FFFFFF;
  mix-blend-mode: multiply;
  filter: brightness(1.35) contrast(1.2);
}
.header-logo small {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-light);
  display: block;
}
.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: background 0.25s, color 0.25s;
}
.header-nav a:hover { background: var(--primary-bg); color: var(--primary); }
.header-nav a.active { color: var(--text-white); background: var(--primary); }
.header-tel {
  font-size: 0.85rem;
  color: var(--text);
  margin-right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-tel strong { font-size: 1.1rem; color: var(--primary-dark); font-weight: 800; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   BUTTONS — Pill-shaped, gradient
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn-primary {
  background: var(--gradient-accent);
  color: var(--text-white);
}
.btn-primary:hover { color: var(--text-white); opacity: 0.9; }

.btn-secondary {
  background: var(--bg-white);
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}
.btn-secondary:hover { background: var(--primary-bg); color: var(--primary-dark); box-shadow: var(--shadow); }

.btn-blue {
  background: var(--gradient-cta);
  color: var(--text-white);
}
.btn-blue:hover { color: var(--text-white); opacity: 0.9; }

.btn-white {
  background: var(--bg-white);
  color: var(--primary-dark);
  font-weight: 700;
}
.btn-white:hover { background: rgba(255,255,255,0.9); color: var(--primary-dark); }

.btn-sm { padding: 12px 24px; font-size: 0.85rem; }

/* ============================================
   HERO — Dynamic Gradient + Decorative Shapes
   ============================================ */
.hero {
  background: var(--gradient-hero);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
  color: var(--text-white);
}
/* Decorative circles */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 700px; }
.hero h1 {
  font-size: 2.5rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hero h1 span { color: var(--accent-light); }
.hero .hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  line-height: 2;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Sub Hero (inner pages) */
.hero-sub-page {
  background: var(--gradient-hero);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-sub-page::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-sub-page h1 { font-size: 1.9rem; margin-bottom: 10px; color: var(--text-white); text-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.hero-sub-page p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--text-white); }

/* ============================================
   CARDS — Elevated with border-top accent
   ============================================ */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  border-top: 4px solid var(--primary-light);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-body { padding: 28px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 12px; }

/* ============================================
   PHOTO PLACEHOLDER
   ============================================ */
.photo-placeholder {
  background: linear-gradient(135deg, #D6EAFC 0%, #B0D4F1 50%, #8DC3E8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary-dark);
  font-size: 0.85rem;
  padding: 24px;
  min-height: 200px;
  position: relative;
}
.photo-placeholder::before {
  content: '📷';
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
  opacity: 0.6;
}
.photo-placeholder span { display: block; max-width: 260px; line-height: 1.5; opacity: 0.8; }
.photo-placeholder--tall { min-height: 300px; }
.photo-placeholder--short { min-height: 150px; }
.photo-placeholder--hero { min-height: 360px; border-radius: var(--radius-lg); }

/* ============================================
   STATS ROW — Gradient number accents
   ============================================ */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-item {
  text-align: center;
  padding: 40px 16px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-hero);
}
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.stat-number span { font-size: 1.3rem; font-weight: 700; }
.stat-label { font-size: 0.9rem; color: var(--text-light); margin-top: 8px; }
.stat-item { transition: none !important; }
.stat-item:hover { transform: none !important; box-shadow: var(--shadow) !important; }

/* ============================================
   PAIN POINTS
   ============================================ */
.pain-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pain-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.pain-card p { margin: 0; font-size: 0.95rem; font-weight: 600; }

/* ============================================
   REASON CARDS — Numbered with gradient
   ============================================ */
.reason-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}
.reason-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.reason-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gradient-cta);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(29,107,181,0.3);
}
.reason-card h4 { margin-bottom: 6px; color: var(--primary-dark); }
.reason-card p { margin: 0; font-size: 0.9rem; color: var(--text-light); }

/* ============================================
   SERVICE CARDS (large)
   ============================================ */
.service-card-large {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  border-top: 4px solid var(--primary);
}
.service-card-large:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card-large .card-body { padding: 32px; }
.service-card-large h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--primary-dark); }
.service-card-large .btn { margin-top: 16px; }

/* ============================================
   TESTIMONIAL — Quote with accent bar
   ============================================ */
.testimonial {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px;
  position: relative;
  border-top: 4px solid var(--accent);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-size: 4.5rem;
  color: var(--primary-bg2);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.9;
  padding-top: 36px;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(29,107,181,0.2);
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ============================================
   CTA BANNER — Vivid Gradient
   ============================================ */
.cta-banner {
  background: var(--gradient-cta);
  color: var(--text-white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--text-white); margin-bottom: 10px; font-size: 1.6rem; }
.cta-banner p { opacity: 0.9; margin-bottom: 24px; }
.cta-banner .cta-tel {
  font-size: 2rem;
  font-weight: 900;
  display: block;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.cta-banner .cta-hours { font-size: 0.85rem; opacity: 0.8; margin-bottom: 24px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================
   TIMELINE / STEPS
   ============================================ */
.steps { display: flex; justify-content: space-between; position: relative; padding: 0; }
.steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 48px;
  right: 48px;
  height: 4px;
  background: var(--primary-bg2);
  border-radius: 2px;
}
.step { text-align: center; position: relative; flex: 1; padding: 0 8px; }
.step-num {
  width: 60px;
  height: 60px;
  background: var(--gradient-cta);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(29,107,181,0.25);
}
.step-title { font-weight: 700; font-size: 0.88rem; margin-bottom: 4px; color: var(--primary-dark); }
.step-desc { font-size: 0.78rem; color: var(--text-light); }

/* ============================================
   TABLE
   ============================================ */
.info-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.info-table th, .info-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.info-table th {
  background: var(--primary-bg);
  color: var(--primary-dark);
  font-weight: 700;
  width: 180px;
  white-space: nowrap;
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card { display: flex; flex-direction: column; border-top: 4px solid var(--primary-light); }
.blog-card .card-body { flex: 1; display: flex; flex-direction: column; }
.blog-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-white);
  background: var(--primary);
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}
.blog-date { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-excerpt { font-size: 0.85rem; color: var(--text-light); flex: 1; }
.blog-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-more:hover { color: var(--primary-dark); }

/* ============================================
   BLOG ARTICLE
   ============================================ */
.article-content { max-width: 800px; margin: 0 auto; }
.article-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 32px; }
.article-content h2 {
  font-size: 1.4rem;
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--primary-light);
  position: relative;
}
.article-content h3 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
}
.article-content p { font-size: 0.95rem; line-height: 2; }
.article-content ul, .article-content ol { margin: 16px 0; padding-left: 24px; }
.article-content li { list-style: disc; font-size: 0.95rem; line-height: 2; margin-bottom: 4px; }
.article-content ol li { list-style: decimal; }

.article-box {
  background: var(--primary-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 24px 0;
  border-left: 4px solid var(--primary);
}
.article-box h4 { color: var(--primary-dark); margin-bottom: 10px; }

.article-alert {
  background: var(--warning-bg);
  border-left: 5px solid var(--warning);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

.article-cta-box {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}
.article-cta-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.article-cta-box h3 { color: var(--text-white); margin-bottom: 10px; }
.article-cta-box p { margin-bottom: 20px; color: rgba(255,255,255,0.9); }

.related-articles { margin-top: 60px; }

/* ============================================
   FORM
   ============================================ */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.form-group label .required {
  color: var(--warning);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--warning-bg);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-left: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
  background: var(--bg-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(29,107,181,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 16px; }
.checkbox-group label { display: flex; align-items: center; gap: 6px; font-weight: 400; cursor: pointer; }
.checkbox-group input { width: auto; }

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-method {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary);
  transition: transform 0.3s;
}
.contact-method:hover { transform: translateY(-3px); }
.contact-icon { font-size: 2.2rem; margin-bottom: 14px; }
.contact-method h3 { font-size: 1rem; margin-bottom: 8px; color: var(--primary-dark); }
.contact-method p { font-size: 0.85rem; color: var(--text-light); margin: 0; }
.contact-method .tel-number { font-size: 1.4rem; font-weight: 800; color: var(--primary-dark); }

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-q { font-weight: 700; font-size: 0.95rem; margin-bottom: 10px; color: var(--primary-dark); }
.faq-q::before { content: 'Q. '; font-weight: 800; color: var(--accent); }
.faq-a { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.faq-a::before { content: 'A. '; font-weight: 800; color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-hero);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h3 { color: var(--text-white); font-size: 1.25rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin: 0; }
.footer h4 { color: var(--text-white); font-size: 0.9rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--accent); border-radius: 2px; }
.footer-nav a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  padding: 5px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-nav a:hover { color: var(--text-white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary-dark); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-40 { gap: 40px; }

/* Arrow Transition */
.transition-arrow {
  text-align: center;
  padding: 36px 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
}
.transition-arrow::before {
  content: '▼';
  display: block;
  font-size: 1.5rem;
  margin-bottom: 10px;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border-top: 4px solid var(--primary);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.product-card .card-body { padding: 28px; }
.product-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--text-white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.product-card h4 { margin-bottom: 10px; color: var(--primary-dark); }

/* Case Study */
.case-badge {
  display: inline-block;
  background: var(--green);
  color: var(--text-white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}
.case-result {
  background: var(--primary-bg);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 14px;
  border-left: 4px solid var(--accent);
}
.case-result strong { color: var(--primary-dark); }

/* Alert Banner */
.alert-banner {
  background: var(--warning-bg);
  border: 2px solid var(--warning);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.alert-banner .alert-icon { font-size: 1.6rem; flex-shrink: 0; }
.alert-banner p { margin: 0; font-size: 0.9rem; }

/* Map Placeholder (legacy) */
.map-placeholder {
  background: linear-gradient(135deg, #D6EAFC 0%, #B0D4F1 100%);
  border-radius: var(--radius-lg);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Map Embed */
.map-embed {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.map-embed iframe {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.map-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
  padding-left: 0.25rem;
}

/* Before/After */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-dark);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.ba-grid .photo-placeholder { position: relative; min-height: 180px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .section { padding: 60px 0; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }

  .header-nav, .header-tel { display: none; }
  .menu-toggle { display: block; }

  /* ---- Mobile menu open state ---- */
  .header-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    padding: 12px 0;
    z-index: 999;
    animation: slideDown 0.25s ease;
  }
  .header-nav.is-open a {
    padding: 14px 24px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: var(--text);
    text-decoration: none;
  }
  .header-nav.is-open a:last-child { border-bottom: none; }
  .header-nav.is-open a:hover { background: var(--bg-light); color: var(--primary); }

  /* Mobile phone link inside nav dropdown */
  .header-nav.is-open .mobile-tel-link {
    background: var(--primary);
    color: #fff !important;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 24px !important;
    border-bottom: none !important;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .header-nav.is-open .mobile-tel-link:hover {
    background: var(--primary-dark);
    color: #fff !important;
  }

  /* Hamburger animation to X */
  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .stat-item { padding: 24px 16px; }
  .stat-number { font-size: 2.4rem; }

  .hero { padding: 72px 0 60px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; }

  .steps { flex-direction: column; gap: 28px; }
  .steps::before { display: none; }

  .form-row { grid-template-columns: 1fr; }

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

  .info-table th { width: 120px; }
  .ba-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ADDITIONAL DECORATIVE COMPONENTS v2
   ============================================ */

/* --- Checklist --- */
.check-list { padding-left: 0; }
.check-list li {
  list-style: none;
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.7;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

/* --- Feature Box (icon + text) --- */
.feature-box {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.feature-box:hover { }
.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(29,107,181,0.25);
}
.feature-box h4 { margin-bottom: 8px; color: var(--primary-dark); }
.feature-box p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* --- Highlight Box (gradient bg info) --- */
.highlight-box {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}
.highlight-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.highlight-box h3 { color: var(--text-white); margin-bottom: 12px; font-size: 1.4rem; }
.highlight-box p { color: rgba(255,255,255,0.9); position: relative; z-index: 1; }

/* --- Mid CTA (inline gradient banner) --- */
.mid-cta {
  background: var(--gradient-accent);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--text-white);
  box-shadow: 0 6px 20px rgba(242,155,48,0.3);
}
.mid-cta h3 { color: var(--text-white); margin-bottom: 8px; font-size: 1.3rem; }
.mid-cta p { color: rgba(255,255,255,0.9); margin-bottom: 20px; }

/* --- Comparison Table (styled) --- */
.compare-table { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.compare-table thead th {
  background: var(--gradient-cta);
  color: white;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  border: none;
}
.compare-table tbody td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  background: var(--bg-white);
}
.compare-table tbody tr:hover td { background: var(--bg-white); }
.compare-table tbody td:first-child { font-weight: 700; text-align: left; color: var(--primary-dark); }

/* --- Icon Circle (small) --- */
.icon-sm {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* --- Decorated Section BG --- */
.section--decorated {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--primary-bg) 100%);
}
.section--decorated2 {
  background: linear-gradient(180deg, var(--primary-bg) 0%, var(--bg-white) 100%);
}

/* --- Wave SVG Separator --- */
.wave-separator {
  position: relative;
  height: 60px;
  overflow: hidden;
  margin-top: -1px;
}
.wave-separator svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
}

/* --- Area Badge --- */
.area-badge {
  display: inline-block;
  background: var(--bg-white);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 4px;
  transition: background 0.2s;
}
.area-badge:hover { background: var(--primary-bg); }
.area-badge.area-badge--active {
  background: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}

/* --- Number Highlight --- */
.num-highlight {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.num-highlight span {
  font-size: 1.5rem;
}

/* --- Two-tone Section --- */
.section--split {
  background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  color: var(--text-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.section--split::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.section--split h2, .section--split h3, .section--split h4 { color: var(--text-white); }

/* --- Striped List (alternating bg) --- */
.striped-list .striped-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
}
.striped-list .striped-item:nth-child(odd) { background: var(--primary-bg); }
.striped-list .striped-item:nth-child(even) { background: var(--bg-white); }

/* --- Gradient Text --- */
.gradient-text {
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Print --- */
@media print {
  .header, .footer, .cta-banner, .menu-toggle { display: none; }
  .section { padding: 24px 0; }
  body { font-size: 12pt; }
}
