/* =============================================
   A-ONE 2026 — main.css
   全ページ共通スタイル
============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: #333;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.8;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- CSS VARIABLES ---- */
:root {
  --blue-main:    #0097D1;
  --blue-dark:    #0076A8;
  --blue-light:   #E8F6FB;
  --blue-sky:     #5BC8E8;
  --gold:         #E8B84B;
  --white:        #FAFEFF;
  --text:         #333;
  --text-light:   #666;
  --section-pad:  90px;
}

/* =============================================
   HEADER
============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,151,209,0.15);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,151,209,0.15); }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 44px; width: auto; }

/* グローバルナビ */
.gnav { display: flex; align-items: center; gap: 4px; }
.gnav a, .gnav li a {
  font-size: 12.5px; color: var(--text);
  padding: 6px 10px; border-radius: 4px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
  display: block;
}
.gnav a:hover,
.gnav li a:hover,
.gnav li.current-menu-item > a,
.gnav li.current_page_item > a { color: var(--blue-main); background: var(--blue-light); }
.gnav ul { display: flex; align-items: center; gap: 4px; }
.gnav li { position: relative; }
/* ドロップダウン */
.gnav li ul {
  display: none; position: absolute;
  top: 100%; left: 0; min-width: 180px;
  background: #fff; border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 8px 0; flex-direction: column; gap: 0;
  z-index: 999;
}
.gnav li:hover > ul { display: flex; }
.gnav li ul li a { padding: 10px 16px; font-size: 12.5px; white-space: nowrap; }
.gnav .btn-contact {
  background: var(--blue-main); color: #fff !important;
  padding: 8px 16px; border-radius: 20px; font-weight: 500; margin-left: 8px;
  transition: background 0.2s, transform 0.2s !important;
}
.gnav .btn-contact:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }

/* ハンバーガー */
.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(--blue-main); transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* モバイルナビ */
.mobile-nav {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0;
  background: #fff; padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav a,
.mobile-nav li a {
  display: block; padding: 12px 16px;
  font-size: 14px; border-bottom: 1px solid #eee; color: var(--text);
}
.mobile-nav li.current-menu-item > a,
.mobile-nav li.current_page_item > a { color: var(--blue-main); font-weight: 700; }

/* =============================================
   COMMON ELEMENTS
============================================= */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--blue-main); font-weight: 600; display: block; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700; line-height: 1.3; margin-bottom: 8px;
}
.section-title .tsuzuku { font-size: 0.75em; color: var(--blue-main); font-weight: 400; }
.section-body { font-size: 14px; color: var(--text-light); line-height: 1.9; max-width: 560px; }

/* Buttons */
.btn-main {
  display: inline-block; background: var(--blue-main); color: #fff;
  padding: 13px 32px; border-radius: 30px; font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.05em; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-main:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,151,209,0.3); }
.btn-outline {
  display: inline-block; border: 2px solid var(--blue-main); color: var(--blue-main);
  padding: 11px 28px; border-radius: 30px; font-size: 13.5px; font-weight: 600; transition: 0.2s;
}
.btn-outline:hover { background: var(--blue-main); color: #fff; }

/* Placeholder */
.ph {
  background: linear-gradient(135deg, #E8F6FB 0%, #C8E8F6 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-family: monospace; color: rgba(0,100,160,0.5); text-align: center;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,151,209,0.04) 10px, rgba(0,151,209,0.04) 20px);
}
.ph span { position: relative; z-index: 1; padding: 12px; line-height: 1.6; }

/* Animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =============================================
   HERO (トップページ)
============================================= */
.hero {
  position: relative; width: 100%;
  height: 100vh; min-height: 600px;
  overflow: hidden;
}
.hero-slides { display: flex; width: 100%; height: 100%; transition: transform 0.8s cubic-bezier(0.77,0,0.175,1); }
.hero-slide { min-width: 100%; height: 100%; position: relative; overflow: hidden; }
.hero-slide:nth-child(1) .slide-bg { background: linear-gradient(135deg, #0076A8 0%, #00C4F0 40%, #8ED8F0 70%, #C8EEFA 100%); }
.hero-slide:nth-child(2) .slide-bg { background: linear-gradient(135deg, #005A8A 0%, #0097D1 45%, #67C7E8 80%, #D0EEFA 100%); }
.hero-slide:nth-child(3) .slide-bg { background: linear-gradient(135deg, #0086BC 0%, #00B8E0 50%, #7DCFEC 80%, #BDE8F7 100%); }
.slide-bg {
  width: 100%; height: 100%;
  position: absolute; top: 0; left: 0;
}
.slide-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 300'%3E%3Crect x='0' y='150' width='60' height='150' fill='rgba(255,255,255,0.08)'/%3E%3Crect x='70' y='100' width='80' height='200' fill='rgba(255,255,255,0.06)'/%3E%3Crect x='220' y='80' width='100' height='220' fill='rgba(255,255,255,0.05)'/%3E%3Crect x='410' y='60' width='90' height='240' fill='rgba(255,255,255,0.06)'/%3E%3Crect x='670' y='70' width='110' height='230' fill='rgba(255,255,255,0.08)'/%3E%3Crect x='940' y='80' width='90' height='220' fill='rgba(255,255,255,0.05)'/%3E%3Crect x='1120' y='100' width='80' height='200' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") bottom/cover no-repeat;
}
.hero-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; color: #fff;
  width: 90%; max-width: 800px; z-index: 10;
}
.hero-text .catch-sub {
  font-size: 14px; letter-spacing: 4px; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif; opacity: 0.9; margin-bottom: 16px;
}
.hero-text h1 {
  font-size: clamp(36px, 7vw, 72px); font-weight: 700;
  line-height: 1.15; text-shadow: 0 2px 20px rgba(0,0,0,0.2); margin-bottom: 20px;
}
.hero-text h1 .accent { color: var(--gold); font-style: italic; }
.hero-text .hero-body {
  font-size: 15px; opacity: 0.92;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2); line-height: 1.8; margin-bottom: 32px;
}
.hero-text .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-text .hero-btns a {
  padding: 14px 36px; border-radius: 30px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em; transition: transform 0.2s, box-shadow 0.2s;
}
.hero-text .hero-btns a:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.hero-text .hero-btns .btn-primary { background: #fff; color: var(--blue-main); }
.hero-text .hero-btns .btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.8); }
.hero-dots {
  position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 20;
}
.hero-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer; transition: 0.3s;
}
.hero-dots span.active { background: #fff; width: 24px; border-radius: 4px; }
.hero-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 20px; z-index: 20;
}
.hero-arrows button {
  background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.5);
  color: #fff; width: 46px; height: 46px; border-radius: 50%;
  font-size: 18px; cursor: pointer; transition: background 0.3s; backdrop-filter: blur(4px);
}
.hero-arrows button:hover { background: rgba(255,255,255,0.4); }
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 15; line-height: 0; }
.hero-wave svg { width: 100%; height: 100px; }
.scroll-down {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; font-family: 'Montserrat', sans-serif;
}
.scroll-down .scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.6); }
}

/* =============================================
   NEWS BAR
============================================= */
.news-bar { background: #fff; border-bottom: 1px solid #e8f4fb; padding: 14px 0 40px; }
.news-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: flex-start; justify-content: center; gap: 20px;
}
.news-label {
  font-family: 'Montserrat', sans-serif; font-size: 12px; letter-spacing: 2px;
  background: var(--blue-main); color: #fff; padding: 5px 14px; border-radius: 3px;
  white-space: nowrap; font-weight: 600;
  margin-top: 2px; /* ラベルと1件目のテキストの天端を揃える微調整 */
}
.news-list {
  display: flex; flex-direction: column; gap: 10px;
  min-width: 0; max-width: 100%;
}
.news-item {
  display: flex; gap: 14px; align-items: baseline;
  font-size: 15px; line-height: 1.6;
}
.news-date {
  color: var(--blue-main); font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 600; white-space: nowrap; flex-shrink: 0;
}
.news-text {
  color: #555;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
a.news-text:hover { color: var(--blue-main); }

/* =============================================
   MESSAGE SECTION
============================================= */
.section-message { background: #fff; padding: var(--section-pad) 0 0; }
.message-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.message-content .section-label { margin-bottom: 12px; }
.message-content .section-title { margin-bottom: 24px; }
.msg-text { font-size: 14px; line-height: 2; color: #444; margin-bottom: 20px; }
.message-image { position: relative; }
.img-placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: 16px;
  background: linear-gradient(135deg, #E8F6FB, #C2E8F6);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #999; font-family: monospace;
  overflow: hidden; position: relative;
}
.img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,151,209,0.04) 10px, rgba(0,151,209,0.04) 20px);
}
.img-placeholder span { position: relative; z-index: 1; text-align: center; padding: 16px; }
.ceo-badge {
  position: absolute; bottom: -20px; right: 20px;
  background: #fff; border-radius: 12px; padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: flex; align-items: center; gap: 12px;
}
.ceo-badge .ceo-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.ceo-badge .ceo-info { font-size: 12px; }
.ceo-badge .ceo-name { font-weight: 700; font-size: 14px; }
.ceo-badge .ceo-role { color: var(--text-light); }

/* =============================================
   SERVICES SECTION
============================================= */
.section-services {
  background: linear-gradient(170deg, var(--blue-main) 0%, var(--blue-sky) 60%, #A8E0F4 100%);
  position: relative; padding: 90px 0 var(--section-pad); overflow: hidden;
}
.services-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.services-header { text-align: center; color: #fff; margin-bottom: 56px; }
.services-header .section-label { color: rgba(255,255,255,0.75); }
.services-header .section-title { color: #fff; }
.services-header .section-title .tsuzuku { color: rgba(255,255,255,0.7); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: rgba(255,255,255,0.95); border-radius: 16px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }
.service-img {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #C8E8F8, #E8F6FB);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.service-img::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(0,151,209,0.05) 8px, rgba(0,151,209,0.05) 16px);
}
.service-img .svc-icon {
  position: relative; width: 64px; height: 64px;
  background: var(--blue-main); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; box-shadow: 0 4px 16px rgba(0,151,209,0.3);
}
.svc-placeholder-text { position: absolute; bottom: 8px; left: 0; right: 0; text-align: center; font-size: 10px; font-family: monospace; color: rgba(0,100,160,0.5); }
.service-body { padding: 20px 22px 24px; }
.service-en { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 2px; color: var(--blue-main); font-weight: 700; display: block; margin-bottom: 4px; }
.service-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #222; }
.service-desc { font-size: 13px; color: #666; line-height: 1.8; margin-bottom: 16px; }
.service-link { font-size: 12.5px; color: var(--blue-main); font-weight: 600; display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.service-link::after { content: '→'; }
.service-card:hover .service-link { gap: 8px; }

/* =============================================
   VIDEO SECTION
============================================= */
.section-video {
  background: linear-gradient(to bottom, #A8E0F4 0%, #ffffff 140px);
  padding: 0 0 var(--section-pad); position: relative; overflow: hidden;
}
.video-inner { max-width: 1100px; margin: 0 auto; padding: 60px 40px 0; }
.video-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.video-card {
  border-radius: 12px; overflow: hidden; position: relative;
  aspect-ratio: 16/10; background: linear-gradient(135deg, #1a3a5c, #2a5a8c);
  cursor: pointer; transition: transform 0.3s;
}
.video-card:hover { transform: scale(1.03); }
.video-card:nth-child(1) { grid-column: span 2; }
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; background: rgba(255,255,255,0.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--blue-main); transition: transform 0.2s;
}
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.15); }
.video-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff; font-size: 11px; padding: 16px 10px 8px;
}

/* =============================================
   COMPANY SECTION
============================================= */
.section-company {
  background: var(--blue-light);
  padding: var(--section-pad) 0; position: relative; overflow: hidden;
}
.company-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.company-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; aspect-ratio: 1/0.9; }
.gallery-item { border-radius: 12px; overflow: hidden; position: relative; }
.gallery-item:first-child { grid-row: span 2; border-radius: 16px; }
.gal-ph {
  width: 100%; height: 100%; min-height: 140px;
  background: linear-gradient(135deg, #B8D8E8, #D8EEF6);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-family: monospace; color: #999;
  position: relative; overflow: hidden;
}
.gal-ph::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0,100,150,0.04) 8px, rgba(0,100,150,0.04) 16px);
}
.gal-ph span { position: relative; z-index: 1; text-align: center; padding: 8px; }
.history-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.history-year { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; color: var(--blue-main); white-space: nowrap; padding-top: 2px; }
.history-desc { font-size: 13px; color: #555; border-left: 2px solid var(--blue-main); padding-left: 12px; line-height: 1.7; }

/* =============================================
   CTA SECTION
============================================= */
.section-cta {
  position: relative;
  background: linear-gradient(135deg, #0076A8, #00B8E0);
  padding: 80px 0; text-align: center; overflow: hidden;
}
.section-cta::before {
  content: ''; position: absolute; top: -60%; left: -20%;
  width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.04);
}
.section-cta::after {
  content: ''; position: absolute; bottom: -40%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.06);
}
.cta-wave, .cta-wave-top {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 90px; display: block; z-index: 1;
}
.cta-inner { max-width: 700px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 2; }
.cta-en { font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 5px; color: rgba(255,255,255,0.7); text-transform: uppercase; display: block; margin-bottom: 12px; }
.cta-title { font-size: clamp(24px, 4vw, 40px); font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.3; }
.cta-body { font-size: 14px; color: rgba(255,255,255,0.88); line-height: 2; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btns a { padding: 15px 40px; border-radius: 30px; font-size: 14px; font-weight: 700; letter-spacing: 0.05em; transition: transform 0.2s, box-shadow 0.2s; }
.cta-btns a:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.btn-white { background: #fff; color: var(--blue-main); }
.btn-tel { background: var(--gold); color: #fff; }

/* =============================================
   PAGE HERO（サービス個別ページ）
============================================= */
.page-hero {
  padding-top: 70px;
  background: linear-gradient(150deg, #0076A8 0%, #0097D1 45%, #5BC8E8 80%, #C2E8F6 100%);
  position: relative; overflow: hidden;
  min-height: 420px; display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,0.06);
}
.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-en {
  font-family: 'Montserrat', sans-serif; font-size: 12px; letter-spacing: 5px;
  text-transform: uppercase; opacity: 0.8; margin-bottom: 16px; display: block;
}
.hero-content h1 {
  font-size: clamp(36px, 6vw, 68px); font-weight: 700;
  line-height: 1.2; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero-content h1 .accent { color: var(--gold); }
.hero-sub { font-size: 15px; opacity: 0.9; line-height: 1.8; }
.hero-breadcrumb {
  position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.75); white-space: nowrap;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.hero-breadcrumb a:hover { color: #fff; }
.hero-breadcrumb .sep { opacity: 0.5; }
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 10; line-height: 0; }
.hero-wave svg { width: 100%; height: 100px; }

/* ウェブ制作ページ専用ヒーロー */
.page-hero--web {
  min-height: 500px; text-align: left; justify-content: flex-start;
}
.page-hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 64px 40px 120px;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.page-hero-text .breadcrumb {
  font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 3px;
  color: rgba(255,255,255,0.65); text-transform: uppercase;
  display: flex; gap: 8px; align-items: center; margin-bottom: 20px;
}
.page-hero-text .breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.page-hero-text .breadcrumb a:hover { color: #fff; }
.page-hero-text .breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero-text .hero-en {
  font-family: 'Montserrat', sans-serif; font-size: 11px; letter-spacing: 4px;
  color: rgba(255,255,255,0.7); text-transform: uppercase; display: block; margin-bottom: 14px;
}
.page-hero-text h1 {
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 700; color: #fff;
  line-height: 1.2; margin-bottom: 20px; text-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.page-hero-text .hero-lead { font-size: 14px; color: rgba(255,255,255,0.88); line-height: 2; margin-bottom: 32px; }
.page-hero-text .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero-text .hero-btns a {
  padding: 12px 30px; border-radius: 30px; font-size: 13.5px; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.page-hero-text .hero-btns a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.hero-btn-white { background: #fff; color: var(--blue-main); }
.hero-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.page-hero-visual { position: relative; }
.browser-mockup { background: #fff; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); overflow: hidden; }
.browser-bar { background: #f0f0f0; padding: 10px 14px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #ddd; }
.browser-dots { display: flex; gap: 5px; }
.browser-dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.browser-dots i:nth-child(1) { background: #FF5F57; }
.browser-dots i:nth-child(2) { background: #FFBD2E; }
.browser-dots i:nth-child(3) { background: #28C840; }
.browser-url { flex: 1; background: #fff; border-radius: 4px; padding: 4px 10px; font-size: 11px; font-family: monospace; color: #888; border: 1px solid #ddd; }
.browser-body { aspect-ratio: 16/10; }
.hero-badge {
  position: absolute; bottom: -16px; left: -20px;
  background: #fff; border-radius: 12px; padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge .badge-icon { width: 40px; height: 40px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--blue-main); }
.hero-badge .badge-text { font-size: 12px; line-height: 1.4; }
.hero-badge .badge-text strong { display: block; font-size: 14px; color: #222; }
.page-hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 3; line-height: 0; }
.page-hero-wave svg { width: 100%; height: 80px; }

/* =============================================
   DTPページ固有
============================================= */
#intro { background: #fff; padding: var(--section-pad) 0 0; }
.intro-inner { max-width: 900px; margin: 0 auto; padding: 0 40px; text-align: center; }
.intro-inner .lead { font-size: 17px; line-height: 2; color: #444; margin-bottom: 48px; }

#services-list { background: #fff; padding: 0 0 var(--section-pad); }
.services-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-item {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,151,209,0.08); border: 1px solid rgba(0,151,209,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.svc-item:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,151,209,0.15); }
.svc-img {
  height: 160px; background: linear-gradient(135deg, #C8E8F8, #E8F6FB);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.svc-img::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(0,151,209,0.04) 8px, rgba(0,151,209,0.04) 16px);
}
.svc-img .icon-wrap {
  width: 60px; height: 60px; background: var(--blue-main); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  position: relative; box-shadow: 0 4px 16px rgba(0,151,209,0.3);
}
.svc-body { padding: 22px 24px 26px; }
.svc-num { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; color: var(--blue-main); letter-spacing: 2px; display: block; margin-bottom: 6px; }
.svc-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #222; }
.svc-desc { font-size: 13.5px; color: #666; line-height: 1.85; }

#print-types {
  background: linear-gradient(170deg, var(--blue-main) 0%, var(--blue-sky) 60%, #A8E0F4 100%);
  padding: 90px 0 var(--section-pad); position: relative; overflow: hidden;
}
.print-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.print-header { text-align: center; color: #fff; margin-bottom: 56px; }
.print-header .section-label { color: rgba(255,255,255,0.75); }
.print-header .section-title { color: #fff; }
.print-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.print-card { background: rgba(255,255,255,0.95); border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.print-card-img {
  height: 200px; background: linear-gradient(135deg, #dbeefa, #c0e0f4);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.print-card-img::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,151,209,0.04) 10px, rgba(0,151,209,0.04) 20px);
}
.machine-icon { position: relative; font-size: 56px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }
.ph-label { position: absolute; bottom: 8px; left: 0; right: 0; text-align: center; font-size: 10px; font-family: monospace; color: rgba(0,100,160,0.45); }
.print-card-body { padding: 28px 32px 32px; }
.print-type-label { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 3px; color: var(--blue-main); font-weight: 700; display: block; margin-bottom: 6px; }
.print-card-title { font-size: 22px; font-weight: 700; margin-bottom: 14px; color: #222; }
.print-card-desc { font-size: 14px; color: #555; line-height: 1.9; }
.print-features { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.feature-tag { background: var(--blue-light); color: var(--blue-main); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }

#flow-section { background: #fff; padding: 0 0 var(--section-pad); position: relative; }
.flow-inner { max-width: 900px; margin: 0 auto; padding: 60px 40px 0; }
.flow-header { text-align: center; margin-bottom: 56px; }
.flow-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.flow-steps::before {
  content: ''; position: absolute;
  left: 36px; top: 36px; bottom: 36px; width: 2px;
  background: linear-gradient(to bottom, var(--blue-main), #A8E0F4);
}
.flow-step { display: flex; align-items: flex-start; gap: 24px; padding: 0 0 36px; position: relative; }
.step-num {
  width: 72px; height: 72px; background: var(--blue-main); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0; box-shadow: 0 4px 16px rgba(0,151,209,0.3);
  position: relative; z-index: 1;
}
.step-num .step-label { font-size: 9px; font-family: 'Montserrat', sans-serif; letter-spacing: 1px; opacity: 0.8; }
.step-num .step-n { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; line-height: 1; }
.step-content { padding-top: 18px; flex: 1; }
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #222; }
.step-desc { font-size: 13.5px; color: #666; line-height: 1.85; }

/* =============================================
   ウェブ制作ページ固有
============================================= */
#web-lead { background: #fff; padding: 80px 0 60px; }
.web-lead-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.web-lead-content p { font-size: 14px; color: #444; line-height: 2; margin-bottom: 16px; }
.lead-stats { display: flex; gap: 32px; margin-top: 32px; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 700; color: var(--blue-main); line-height: 1; }
.stat-num sup { font-size: 0.45em; vertical-align: super; }
.stat-num small { font-size: 0.4em; color: #888; font-weight: 400; font-family: 'Noto Sans JP', sans-serif; }
.stat-label { font-size: 11px; color: #888; margin-top: 6px; }
.web-lead-image { position: relative; }
.float-card { position: absolute; top: -20px; right: -20px; background: #fff; border-radius: 12px; padding: 16px 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); font-size: 12px; line-height: 1.6; }
.fc-title { font-weight: 700; font-size: 13px; margin-bottom: 6px; color: var(--blue-main); }
.fc-item { display: flex; align-items: center; gap: 6px; color: #555; }
.fc-item::before { content: '✓'; color: var(--blue-main); font-weight: 700; }

#strengths {
  background: linear-gradient(170deg, var(--blue-main) 0%, #0097D1 50%, #5BC8E8 100%);
  padding: var(--section-pad) 0; position: relative; overflow: hidden;
}
.strengths-wave-top { position: absolute; top: 0; left: 0; right: 0; z-index: 1; line-height: 0; }
.strengths-wave-top svg { width: 100%; height: 90px; }
.strengths-wave-bottom { position: absolute; bottom: -2px; left: 0; right: 0; z-index: 1; line-height: 0; }
.strengths-wave-bottom svg { width: 100%; height: 80px; }
.strengths-inner { max-width: 1100px; margin: 0 auto; padding: 40px 40px 0; position: relative; z-index: 2; }
.strengths-header { text-align: center; color: #fff; margin-bottom: 56px; }
.strengths-header .section-label { color: rgba(255,255,255,0.7); }
.strengths-header .section-title { color: #fff; }
.strengths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 60px; }
.strength-card { background: rgba(255,255,255,0.95); border-radius: 16px; padding: 32px 28px; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.strength-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.15); }
.strength-num { font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 700; color: rgba(0,151,209,0.12); line-height: 1; margin-bottom: 12px; }
.strength-icon { width: 56px; height: 56px; background: var(--blue-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.strength-icon svg { width: 28px; height: 28px; }
.strength-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #222; }
.strength-desc { font-size: 13px; color: #666; line-height: 1.8; }

#plans { background: #fff; padding: var(--section-pad) 0; }
.plans-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.plans-header { text-align: center; margin-bottom: 56px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan-card { border: 2px solid #eee; border-radius: 20px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.plan-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.plan-card.featured { border-color: var(--blue-main); box-shadow: 0 8px 40px rgba(0,151,209,0.2); transform: translateY(-8px); }
.plan-card.featured:hover { transform: translateY(-14px); }
.plan-head { padding: 28px 28px 20px; background: #fafcfe; border-bottom: 1px solid #eee; text-align: center; position: relative; }
.plan-card.featured .plan-head { background: linear-gradient(135deg, var(--blue-main), var(--blue-sky)); border-bottom: none; }
.plan-badge { display: inline-block; background: var(--gold); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 3px 10px; border-radius: 20px; font-family: 'Montserrat', sans-serif; margin-bottom: 12px; }
.plan-en { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 2px; color: var(--blue-main); font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 4px; }
.plan-card.featured .plan-en { color: rgba(255,255,255,0.75); }
.plan-name { font-size: 20px; font-weight: 700; color: #222; margin-bottom: 16px; }
.plan-card.featured .plan-name { color: #fff; }
.plan-price { font-family: 'Montserrat', sans-serif; font-size: 38px; font-weight: 700; color: var(--blue-main); line-height: 1; }
.plan-card.featured .plan-price { color: #fff; }
.plan-price sup { font-size: 0.45em; vertical-align: super; }
.plan-price sub { font-size: 0.35em; color: #888; font-weight: 400; font-family: 'Noto Sans JP', sans-serif; }
.plan-card.featured .plan-price sub { color: rgba(255,255,255,0.65); }
.plan-price-note { font-size: 11px; color: #999; margin-top: 6px; }
.plan-card.featured .plan-price-note { color: rgba(255,255,255,0.65); }
.plan-body { padding: 24px 28px 28px; }
.plan-tagline { font-size: 13px; color: #555; margin-bottom: 20px; line-height: 1.7; }
.plan-features { margin-bottom: 24px; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #444; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.plan-feature:last-child { border-bottom: none; }
.feat-check { width: 18px; height: 18px; border-radius: 50%; background: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; font-size: 10px; color: var(--blue-main); font-weight: 700; }
.plan-feature.disabled .feat-check { background: #f0f0f0; color: #ccc; }
.plan-feature.disabled { color: #bbb; }
.plan-cta a { display: block; text-align: center; padding: 13px; border-radius: 30px; font-size: 13.5px; font-weight: 600; transition: 0.2s; background: var(--blue-light); color: var(--blue-main); }
.plan-cta a:hover { background: var(--blue-main); color: #fff; }
.plan-card.featured .plan-cta a { background: var(--blue-main); color: #fff; }
.plan-card.featured .plan-cta a:hover { background: var(--blue-dark); }
.plans-note { text-align: center; margin-top: 28px; font-size: 12px; color: #999; line-height: 1.9; }

#flow { background: var(--blue-light); padding: var(--section-pad) 0; position: relative; overflow: hidden; }
.flow-list { position: relative; }
.flow-list::before { content: ''; position: absolute; left: 32px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue-main), var(--blue-sky)); }
.flow-item { display: flex; gap: 28px; align-items: flex-start; margin-bottom: 36px; position: relative; }
.flow-item:last-child { margin-bottom: 0; }
.flow-step { width: 64px; height: 64px; flex-shrink: 0; background: var(--blue-main); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; z-index: 1; box-shadow: 0 4px 16px rgba(0,151,209,0.3); }
.flow-step .step-num { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1px; opacity: 0.75; line-height: 1; }
.flow-step .step-n { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; line-height: 1; }
.flow-content { background: #fff; border-radius: 14px; padding: 22px 26px; flex: 1; box-shadow: 0 2px 12px rgba(0,0,0,0.05); transition: box-shadow 0.3s; }
.flow-content:hover { box-shadow: 0 6px 24px rgba(0,151,209,0.12); }
.flow-title { font-size: 16px; font-weight: 700; color: #222; margin-bottom: 6px; }
.flow-desc { font-size: 13px; color: #666; line-height: 1.8; }
.flow-duration { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 1px; background: var(--blue-light); color: var(--blue-main); padding: 2px 10px; border-radius: 20px; margin-top: 8px; }

#works { background: #fff; padding: var(--section-pad) 0; }
.works-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.works-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.work-card { border-radius: 16px; overflow: hidden; border: 1px solid #eee; transition: transform 0.3s, box-shadow 0.3s; }
.work-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.work-thumb { aspect-ratio: 16/10; }
.work-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.work-tag { font-size: 10px; padding: 2px 8px; border-radius: 20px; background: var(--blue-light); color: var(--blue-main); font-weight: 600; font-family: 'Montserrat', sans-serif; letter-spacing: 0.5px; }
.work-body { padding: 16px 18px 20px; }
.work-title { font-size: 14px; font-weight: 700; color: #222; margin-bottom: 4px; }
.work-desc { font-size: 12.5px; color: #777; line-height: 1.7; }

#faq { background: linear-gradient(to bottom, #fff 0%, var(--blue-light) 100%); padding: var(--section-pad) 0; }
.faq-inner { max-width: 800px; margin: 0 auto; padding: 0 40px; }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-item { background: #fff; border-radius: 14px; overflow: hidden; margin-bottom: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); border: 1px solid rgba(0,151,209,0.08); }
.faq-q { display: flex; align-items: center; gap: 16px; padding: 18px 22px; cursor: pointer; font-weight: 700; font-size: 14px; transition: background 0.2s; user-select: none; }
.faq-q:hover { background: var(--blue-light); }
.faq-icon { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: var(--blue-main); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; font-family: 'Montserrat', sans-serif; }
.faq-arrow { margin-left: auto; color: var(--blue-main); font-size: 12px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 16px 22px 18px; font-size: 13.5px; color: #555; line-height: 1.9; border-top: 1px solid rgba(0,151,209,0.08); }
.faq-a .ans-q { display: flex; gap: 12px; }
.faq-a .a-icon { color: var(--blue-main); font-weight: 700; font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.faq-item.open .faq-a { display: block; }

/* =============================================
   FOOTER
============================================= */
#site-footer { background: #1a2a3a; color: rgba(255,255,255,0.75); }
.footer-top {
  max-width: 1200px; margin: 0 auto; padding: 60px 40px 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand address { font-style: normal; font-size: 13px; line-height: 2; color: rgba(255,255,255,0.6); }
.footer-brand address strong { color: rgba(255,255,255,0.85); }
.footer-tel { margin-top: 16px; font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 1px; }
.footer-tel .tel-label { font-size: 11px; font-family: 'Noto Sans JP', sans-serif; letter-spacing: 0; display: block; color: rgba(255,255,255,0.5); margin-bottom: 4px; font-weight: 400; }
.footer-col h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-family: 'Montserrat', sans-serif; color: rgba(255,255,255,0.9); font-weight: 700; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.footer-col ul { display: flex; flex-direction: column; gap: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '›'; color: var(--blue-sky); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 40px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* Float contact */
.float-contact { position: fixed; bottom: 24px; right: 24px; z-index: 900; display: flex; flex-direction: column; gap: 10px; }
.float-btn { display: flex; align-items: center; gap: 10px; background: var(--blue-main); color: #fff; padding: 12px 20px; border-radius: 30px; font-size: 13px; font-weight: 600; box-shadow: 0 4px 20px rgba(0,151,209,0.35); transition: transform 0.2s, box-shadow 0.2s; }
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,151,209,0.45); }
.float-btn.tel-btn { background: var(--gold); box-shadow: 0 4px 20px rgba(232,184,75,0.35); }
.float-btn.tel-btn:hover { box-shadow: 0 8px 28px rgba(232,184,75,0.45); }
.fb-icon { font-size: 16px; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card:nth-child(1) { grid-column: span 1; }
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan-card.featured { transform: none; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .print-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .gnav { display: none; }
  .hamburger { display: flex; }
  .message-inner, .company-inner, .web-lead-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 80px; }
  .page-hero-visual { display: none; }
  .company-inner .company-content { order: -1; }
  .services-grid, .svc-grid, .strengths-grid, .works-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-card:nth-child(1) { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-contact { right: 12px; bottom: 12px; }
  .flow-steps::before { left: 26px; }
  .step-num { width: 52px; height: 52px; }
  .hero-text h1 { font-size: 36px; }
  .ceo-badge { display: none; }
  .lead-stats { gap: 20px; }
  .float-card { display: none; }
}
@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-card:nth-child(1) { grid-column: span 1; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-text .hero-btns a { width: 200px; text-align: center; }
}