@charset "UTF-8";
/* =============================================================
   AquaLife Design — 水槽レンタル（介護施設向け）
   Common Stylesheet
   Color: Blue based / Trust / Whitespace / Standout CTA
   ============================================================= */

/* -----------------------------------------------------------
   1. Design Tokens
   ----------------------------------------------------------- */
:root {
  /* Brand blues */
  --navy:      #0a2e52;   /* headings / footer */
  --navy-2:    #0c3a66;
  --blue:      #1571c9;   /* primary brand */
  --blue-600:  #1064b3;
  --blue-700:  #0c5299;
  --aqua:      #23b4d8;   /* accent / labels */
  --aqua-soft: #d3eefa;
  --sky:       #eaf4fc;   /* light section bg */
  --sky-2:     #f4f9fd;
  --sky-3:     #f8fbfe;

  /* CTA (warm, stands out against blue) */
  --cta:       #ff8a4c;
  --cta-600:   #f26f2c;
  --cta-glow:  rgba(255, 130, 70, .34);

  /* Warm tones (gentle accents) */
  --peach:     #ffe9dc;
  --cream:     #fff7f1;

  /* Ink / neutrals */
  --ink:       #213140;
  --muted:     #5b6e80;
  --line:      #e7eff7;
  --white:     #ffffff;

  /* Radii (soft, rounded) */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 28px;
  --pill: 999px;

  /* Shadow (soft, diffuse) */
  --sh-sm: 0 4px 16px rgba(13, 60, 110, .05);
  --sh:    0 16px 38px rgba(13, 60, 110, .10);
  --sh-lg: 0 30px 64px rgba(13, 60, 110, .15);
  --sh-cta: 0 14px 30px var(--cta-glow);

  /* Layout */
  --container: 1140px;
  --header-h: 76px;

  --ease: cubic-bezier(.22, .61, .36, 1);

  /* 明朝体（見出し用） — 端末標準の上質な明朝を優先（追加読み込みなし） */
  --mincho: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro",
            "Shippori Mincho", "Noto Serif JP", "MS PMincho", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
               "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic UI",
               Meiryo, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.85;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture, video { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue-700); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
strong, b { font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 2000;
  background: var(--navy); color: #fff; padding: 10px 18px;
  border-radius: 8px; transition: top .2s;
}
.skip-link:focus { top: 16px; color: #fff; }

/* -----------------------------------------------------------
   3. Layout helpers
   ----------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: 880px; }

.section { padding-block: 96px; }
.section--tight { padding-block: 72px; }
.bg-sky   { background: var(--sky); }
.bg-sky-2 { background: var(--sky-2); }
.bg-navy  { background: var(--navy); color: #eaf2fa; }

.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; } .mt-48 { margin-top: 48px; }

/* Section heading */
.sec-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.sec-head.left { margin-inline: 0; text-align: left; }
.sec-head .en {
  display: inline-block; color: var(--aqua); font-size: .8rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; margin-bottom: 14px;
}
.sec-head .en::before { content: ""; display: inline-block; width: 26px; height: 2px;
  background: var(--aqua); vertical-align: middle; margin-right: 10px; transform: translateY(-3px); }
.sec-head h2 {
  font-size: clamp(1.6rem, 1rem + 2.4vw, 2.4rem); line-height: 1.4; color: var(--navy);
  font-weight: 700; letter-spacing: .03em;
}
.sec-head h2 .accent { color: var(--blue); }
.sec-head .lead { margin-top: 20px; color: var(--muted); font-size: 1.02rem; }

.eyebrow { color: var(--aqua); font-weight: 700; letter-spacing: .18em; font-size: .8rem;
  text-transform: uppercase; }

/* -----------------------------------------------------------
   4. Buttons
   ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; letter-spacing: .04em; line-height: 1.3; text-align: center;
  padding: 16px 30px; border-radius: var(--pill); transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-cta {
  background: linear-gradient(135deg, #ffa05c, #f97f3d);
  color: #fff; box-shadow: var(--sh-cta);
}
.btn-cta:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 34px var(--cta-glow); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(21,113,201,.28); }
.btn-primary:hover { background: var(--blue-700); color: #fff; transform: translateY(-3px); }
.btn-outline { background: #fff; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.btn-ghost-white { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.btn-ghost-white:hover { background: #fff; color: var(--navy); }
.btn-lg { padding: 20px 40px; font-size: 1.08rem; }
.btn-block { width: 100%; }
.btn-sub { display: block; font-size: .72rem; font-weight: 500; opacity: .9; letter-spacing: .02em; margin-top: 2px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-row.center { justify-content: center; }

/* -----------------------------------------------------------
   5. Header
   ----------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--header-h);
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); transition: box-shadow .3s, height .3s;
}
.site-header.is-scrolled { box-shadow: var(--sh-sm); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); flex-shrink: 0; }
.logo:hover { color: var(--navy); }
.logo-mark { width: 40px; height: 40px; flex: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text b { font-size: 1.08rem; font-weight: 700; letter-spacing: .02em; white-space: nowrap; }
.logo-text b span { color: var(--blue); }
.logo-text small { font-size: .62rem; color: var(--muted); letter-spacing: .14em; font-weight: 500; }

.gnav { display: flex; align-items: center; gap: 20px; }
.gnav-list { display: flex; align-items: center; gap: 18px; }
.gnav-list a {
  position: relative; color: var(--ink); font-weight: 500; font-size: .9rem; padding: 6px 0;
  white-space: nowrap;
}
.gnav-list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--blue); transition: width .25s var(--ease);
}
.gnav-list a:hover, .gnav-list a[aria-current="page"] { color: var(--blue); }
.gnav-list a:hover::after, .gnav-list a[aria-current="page"]::after { width: 100%; }

.gnav-cta { display: flex; align-items: center; gap: 16px; }
.gnav-tel { display: flex; flex-direction: column; line-height: 1.15; color: var(--navy); }
.gnav-tel small { font-size: .62rem; color: var(--muted); letter-spacing: .08em; }
.gnav-tel b { font-size: 1.18rem; font-weight: 700; letter-spacing: .02em; }
.gnav-tel b svg { width: .9em; height: .9em; display: inline-block; vertical-align: -2px; margin-right: 4px; color: var(--blue); }
.gnav .btn-cta { padding: 12px 22px; font-size: .9rem; }

/* Hamburger */
.hamburger { display: none; width: 46px; height: 46px; position: relative; z-index: 1200; border-radius: 10px; }
.hamburger span {
  position: absolute; left: 11px; width: 24px; height: 2.5px; background: var(--navy);
  border-radius: 2px; transition: all .3s var(--ease);
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 28px; }
.is-menu-open .hamburger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.is-menu-open .hamburger span:nth-child(2) { opacity: 0; }
.is-menu-open .hamburger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(10,46,82,.5); opacity: 0; visibility: hidden;
  transition: .3s; z-index: 1100;
}
.is-menu-open .nav-backdrop { opacity: 1; visibility: visible; }

/* -----------------------------------------------------------
   6. Hero
   ----------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding-top: calc(var(--header-h) + 80px); padding-bottom: 112px;
  background:
    radial-gradient(1100px 560px at 84% -8%, rgba(35,180,216,.14), transparent 60%),
    radial-gradient(820px 480px at 6% 112%, rgba(21,113,201,.10), transparent 60%),
    linear-gradient(180deg, #f1f8ff 0%, #f7fbff 52%, #ffffff 100%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 48px; align-items: center; min-height: 540px; }

/* soft decorative background (gentle blobs + floating bubbles) */
.hero-decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-decor .blob { position: absolute; border-radius: 50%; filter: blur(48px); }
.hero-decor .blob-1 { width: 460px; height: 460px; top: -150px; right: -90px;
  background: radial-gradient(circle, rgba(140,212,242,.5), transparent 70%); }
.hero-decor .blob-2 { width: 420px; height: 420px; bottom: -170px; left: -130px;
  background: radial-gradient(circle, rgba(190,222,252,.55), transparent 70%); }
.hero-decor .blob-3 { width: 300px; height: 300px; top: 34%; left: 47%;
  background: radial-gradient(circle, rgba(255,206,176,.4), transparent 70%); }
.hero-decor .bubble { position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff, rgba(196,228,247,.65));
  box-shadow: 0 6px 16px rgba(13,60,110,.08); animation: floaty 7s ease-in-out infinite; }
.hero-decor .bubble.x1 { width: 18px; height: 18px; top: 24%; left: 7%; }
.hero-decor .bubble.x2 { width: 11px; height: 11px; top: 72%; left: 15%; animation-delay: 1.4s; }
.hero-decor .bubble.x3 { width: 26px; height: 26px; top: 12%; left: 53%; animation-delay: .7s; opacity: .85; }
.hero-decor .bubble.x4 { width: 9px; height: 9px; bottom: 20%; right: 47%; animation-delay: 2.1s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid #e4eef8;
  color: var(--blue-700); font-weight: 700; font-size: .82rem; padding: 9px 18px; border-radius: var(--pill);
  box-shadow: 0 6px 18px rgba(13,60,110,.08); margin-bottom: 28px;
}
.hero-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--cta);
  box-shadow: 0 0 0 4px rgba(255,130,70,.18); }
.hero h1 {
  font-family: var(--mincho);
  font-size: clamp(1.45rem, 3.3vw, 2.55rem); line-height: 1.52; color: var(--navy);
  font-weight: 700; letter-spacing: .04em;
}
/* PC: keep the main headline on a single line */
@media (min-width: 992px) {
  .hero h1, .nowrap-pc { white-space: nowrap; }
}
.hero h1 .hl { color: var(--blue); position: relative; }
.hero h1 .hl-mark { background: linear-gradient(transparent 58%, var(--aqua-soft) 58%); padding: 0 .12em; border-radius: 3px; }

/* 明朝体（主要な見出しに統一。本文・小さなラベルはゴシックのまま） */
.page-hero h1,
.sec-head h2,
.split-body h2,
.cta-band h2,
.faq-cat,
.area-card h3,
.legal h2 {
  font-family: var(--mincho);
  letter-spacing: .045em;
}
.hero-sub { margin-top: 26px; font-size: 1.06rem; color: #46596c; max-width: 520px; line-height: 2; }
.hero .btn-row { margin-top: 38px; }
.hero-note { margin-top: 20px; font-size: .86rem; color: var(--muted); display: inline-flex; align-items: center;
  gap: 9px; background: rgba(255,255,255,.66); padding: 9px 16px; border-radius: var(--pill); }
.hero-note svg { width: 1.15em; height: 1.15em; color: var(--aqua); flex: none; }

.hero-media { position: relative; z-index: 1; }
.hero-media::before { content: ""; position: absolute; inset: -20px -16px -24px -20px; z-index: 0;
  background: linear-gradient(135deg, rgba(35,180,216,.16), rgba(255,206,176,.16));
  border-radius: 38px; filter: blur(4px); }
.hero-media .frame {
  position: relative; z-index: 1; border-radius: 26px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(13,60,110,.2); aspect-ratio: 4 / 3.1; border: 8px solid #fff;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; z-index: 2; background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border-radius: 18px; box-shadow: 0 16px 34px rgba(13,60,110,.16);
  padding: 13px 20px 13px 15px; display: flex; align-items: center; gap: 13px;
}
.hero-float .num { font-size: 1.7rem; font-weight: 700; color: var(--blue); line-height: 1; }
.hero-float .lbl { font-size: .76rem; color: var(--muted); line-height: 1.4; }
.hero-float--tl { top: 26px; left: -28px; }
.hero-float--br { bottom: 28px; right: -24px; }
.hero-float .ico { width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--sky), var(--aqua-soft)); display: grid; place-items: center; color: var(--blue); }
.hero-float .ico svg { width: 20px; height: 20px; }

/* Trust bar under hero */
.trustbar { border-top: 1px solid var(--line); background: #fff; }
.trustbar .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding-block: 26px; }
.trustbar .item { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 600; font-size: .92rem; }
.trustbar .item svg { width: 22px; height: 22px; color: var(--blue); flex: none; }

/* Wave divider */
.wave-top { display: block; width: 100%; height: 60px; }
.wave-top path { fill: var(--white); }
.bg-sky + .wave-bottom path { fill: var(--sky); }

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

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 34px 30px;
  box-shadow: var(--sh-sm); transition: transform .3s var(--ease), box-shadow .3s;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.card .ico {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--sky), var(--aqua-soft)); color: var(--blue); margin-bottom: 20px;
}
.card .ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.18rem; color: var(--navy); font-weight: 700; line-height: 1.5; }
.card p { margin-top: 12px; color: var(--muted); font-size: .96rem; }
.card .num-tag { font-size: .78rem; font-weight: 700; color: var(--aqua); letter-spacing: .12em; }

/* Feature list with check */
.checklist { display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.checklist li svg { width: 22px; height: 22px; flex: none; color: var(--blue); margin-top: 3px; }
.checklist.on-navy li { color: #dceaf6; }
.checklist.on-navy li svg { color: var(--aqua); }

/* -----------------------------------------------------------
   8. Concept / split feature
   ----------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--sh); aspect-ratio: 4/3; object-fit: cover; }
.split-body h2 { font-size: clamp(1.5rem, 1rem + 2vw, 2.1rem); color: var(--navy); line-height: 1.45; }
.split-body p { margin-top: 18px; color: var(--muted); }

/* Stat block */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat .n { font-size: clamp(2rem, 1.4rem + 2vw, 2.8rem); font-weight: 700; color: var(--blue); line-height: 1; }
.stat .n small { font-size: .5em; }
.stat .l { margin-top: 12px; color: var(--muted); font-size: .9rem; }
.bg-navy .stat .n { color: var(--aqua); }
.bg-navy .stat .l { color: #b9cee0; }

/* -----------------------------------------------------------
   9. Steps (flow)
   ----------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 40px 24px 28px; text-align: center; box-shadow: var(--sh-sm); }
.step .badge { counter-increment: step; position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 700;
  display: grid; place-items: center; box-shadow: 0 8px 18px rgba(21,113,201,.35); }
.step .badge::before { content: counter(step); }
.step .ico { width: 50px; height: 50px; margin: 6px auto 16px; color: var(--blue); }
.step h3 { font-size: 1.05rem; color: var(--navy); }
.step p { margin-top: 10px; font-size: .9rem; color: var(--muted); }

/* -----------------------------------------------------------
   10. Pricing
   ----------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.plan { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 40px 30px; box-shadow: var(--sh-sm); display: flex; flex-direction: column; transition: .3s var(--ease); }
.plan:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.plan.is-popular { border-color: var(--blue); box-shadow: var(--sh); }
.plan .ribbon { position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #ffa05c, #f97f3d); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 6px 20px; border-radius: var(--pill); box-shadow: var(--sh-cta); white-space: nowrap; }
.plan .size { font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.plan .size small { display: block; font-size: .72rem; color: var(--muted); font-weight: 500; margin-top: 4px; }
.plan .price { margin: 22px 0 6px; color: var(--navy); }
.plan .price .yen { font-size: clamp(2.2rem, 1.5rem + 2vw, 2.8rem); font-weight: 700; color: var(--blue); line-height: 1; }
.plan .price .per { font-size: .9rem; color: var(--muted); }
.plan .price-ex { font-size: .8rem; color: var(--muted); }
.plan .feat { margin: 24px 0; display: grid; gap: 12px; border-top: 1px dashed var(--line); padding-top: 24px; }
.plan .feat li { display: flex; gap: 10px; font-size: .92rem; color: var(--ink); }
.plan .feat li svg { width: 20px; height: 20px; color: var(--blue); flex: none; margin-top: 2px; }
.plan .btn { margin-top: auto; }

.price-note { margin-top: 32px; background: var(--sky); border-radius: var(--r); padding: 28px 32px; }
.price-note h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.price-note h3 svg { width: 22px; height: 22px; color: var(--blue); }
.price-note ul { display: grid; gap: 8px; }
.price-note li { padding-left: 20px; position: relative; color: var(--muted); font-size: .92rem; }
.price-note li::before { content: ""; position: absolute; left: 0; top: 12px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--aqua); }

/* Comparison / generic table */
.table-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--line); box-shadow: var(--sh-sm); }
table.tbl { width: 100%; border-collapse: collapse; background: #fff; min-width: 560px; }
table.tbl th, table.tbl td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); font-size: .94rem; }
table.tbl thead th { background: var(--navy); color: #fff; font-weight: 600; letter-spacing: .04em; }
table.tbl tbody th { background: var(--sky-2); color: var(--navy); font-weight: 700; width: 34%; }
table.tbl tbody tr:last-child th, table.tbl tbody tr:last-child td { border-bottom: none; }
table.tbl .hl { color: var(--blue); font-weight: 700; }

/* -----------------------------------------------------------
   11. Works / gallery
   ----------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.work {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  box-shadow: var(--sh-sm); transition: .3s var(--ease); height: 100%;
}
.work:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.work .ph { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.work .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.work:hover .ph img { transform: scale(1.05); }
.work .tag { position: absolute; left: 12px; top: 12px; background: rgba(10,46,82,.82); color: #fff;
  font-size: .74rem; font-weight: 600; padding: 5px 12px; border-radius: var(--pill); backdrop-filter: blur(4px); }
.work .body { padding: 20px 22px 24px; }
.work h3 { font-size: 1.05rem; color: var(--navy); line-height: 1.5; }
.work p { margin-top: 8px; font-size: .88rem; color: var(--muted); }
.work .loc { margin-top: 12px; font-size: .8rem; color: var(--blue); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.work .loc svg { width: 15px; height: 15px; }

.work.feature { grid-column: span 2; }
.work.feature .ph { aspect-ratio: 16/9; }

/* -----------------------------------------------------------
   12. Testimonials
   ----------------------------------------------------------- */
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.voice { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 28px;
  box-shadow: var(--sh-sm); position: relative; }
.voice::before { content: "\201C"; font-family: Georgia, serif; position: absolute; top: 6px; right: 22px;
  font-size: 4rem; color: var(--aqua-soft); line-height: 1; }
.voice .stars { color: #ffb13c; letter-spacing: 2px; margin-bottom: 12px; }
.voice p { color: var(--ink); font-size: .96rem; position: relative; z-index: 1; }
.voice .who { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--muted); }
.voice .who b { color: var(--navy); display: block; font-size: .92rem; }

/* -----------------------------------------------------------
   13. CTA section
   ----------------------------------------------------------- */
.cta-band { position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(700px 400px at 12% 0%, rgba(35,180,216,.35), transparent 55%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
}
.cta-band .inner { text-align: center; padding-block: 84px; }
.cta-band h2 { font-size: clamp(1.6rem, 1.1rem + 2.4vw, 2.4rem); line-height: 1.45; letter-spacing: .03em; }
.cta-band p { margin-top: 18px; color: #c6dcef; max-width: 620px; margin-inline: auto; }
.cta-band .btn-row { margin-top: 36px; }
.cta-band .tel-big { margin-top: 28px; }
.cta-band .tel-big a { color: #fff; font-size: 1.9rem; font-weight: 700; letter-spacing: .02em; }
.cta-band .tel-big a svg { width: .85em; height: .85em; vertical-align: -3px; margin-right: 8px; color: var(--aqua); }
.cta-band .tel-big small { display: block; color: #b9cee0; font-size: .82rem; font-weight: 400; margin-top: 4px; }
.cta-bubbles { position: absolute; inset: 0; pointer-events: none; opacity: .5; }

/* -----------------------------------------------------------
   14. Page hero (sub pages)
   ----------------------------------------------------------- */
.page-hero { position: relative; padding-top: calc(var(--header-h) + 64px); padding-bottom: 56px;
  background:
    radial-gradient(700px 360px at 88% -20%, rgba(35,180,216,.16), transparent 60%),
    linear-gradient(180deg, var(--sky-2), #fff);
  text-align: center;
}
.page-hero .en { color: var(--aqua); font-weight: 700; letter-spacing: .22em; font-size: .78rem; text-transform: uppercase; }
.page-hero h1 { margin-top: 12px; font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.5rem); color: var(--navy); letter-spacing: .04em; }
.page-hero p { margin-top: 16px; color: var(--muted); max-width: 640px; margin-inline: auto; }

/* Breadcrumb */
.breadcrumb { background: var(--sky-2); border-top: 1px solid var(--line); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; padding-block: 12px; font-size: .8rem; color: var(--muted); }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: "›"; color: var(--line); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb [aria-current="page"] { color: var(--navy); font-weight: 600; }

/* -----------------------------------------------------------
   15. FAQ accordion
   ----------------------------------------------------------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); }
.faq-q { width: 100%; display: flex; align-items: flex-start; gap: 16px; padding: 22px 24px; text-align: left;
  font-weight: 700; color: var(--navy); font-size: 1.02rem; line-height: 1.6; }
.faq-q .q { flex: none; width: 28px; height: 28px; border-radius: 8px; background: var(--blue); color: #fff;
  display: grid; place-items: center; font-size: .9rem; }
.faq-q .qt { flex: 1; }
.faq-q .chev { flex: none; width: 22px; height: 22px; color: var(--blue); transition: transform .3s; margin-top: 3px; }
.faq-item.is-open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a .faq-a-inner { padding: 0 24px 24px 68px; color: var(--muted); }
.faq-a .faq-a-inner::before { content: "A."; color: var(--aqua); font-weight: 700; margin-right: 8px; }

.faq-cat { margin: 48px 0 20px; font-size: 1.1rem; color: var(--navy); font-weight: 700;
  display: flex; align-items: center; gap: 10px; }
.faq-cat::before { content: ""; width: 5px; height: 22px; background: var(--blue); border-radius: 3px; }
.faq-cat:first-of-type { margin-top: 0; }

/* -----------------------------------------------------------
   16. Area page
   ----------------------------------------------------------- */
.area-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.area-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh-sm); }
.area-card h3 { font-size: 1.4rem; color: var(--navy); display: flex; align-items: center; gap: 12px; }
.area-card h3 .pin { width: 40px; height: 40px; border-radius: 12px; background: var(--sky); color: var(--blue);
  display: grid; place-items: center; flex: none; }
.area-card h3 .pin svg { width: 22px; height: 22px; }
.area-card .desc { margin-top: 16px; color: var(--muted); font-size: .95rem; }
.area-tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.area-tags span { background: var(--sky); color: var(--navy); font-size: .85rem; font-weight: 600;
  padding: 7px 15px; border-radius: var(--pill); }
.area-note { margin-top: 28px; text-align: center; color: var(--muted); font-size: .92rem; }

/* -----------------------------------------------------------
   17. Forms (contact)
   ----------------------------------------------------------- */
.form-wrap { max-width: 760px; margin-inline: auto; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 44px; box-shadow: var(--sh); }
.form-row { margin-bottom: 26px; }
.form-row label { display: block; font-weight: 700; color: var(--navy); margin-bottom: 10px; font-size: .95rem; }
.req, .any { font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 5px; margin-left: 10px; vertical-align: 2px; }
.req { background: #ffe9df; color: var(--cta-600); }
.any { background: var(--sky); color: var(--blue); }
.form-control { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--sky-3); transition: border-color .2s, background .2s; }
.form-control:focus { outline: none; border-color: var(--blue); background: #fff; }
textarea.form-control { min-height: 140px; resize: vertical; }
.radio-group { display: flex; flex-wrap: wrap; gap: 12px; }
.radio-group label { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--ink);
  background: var(--sky-3); border: 1.5px solid var(--line); padding: 10px 18px; border-radius: var(--pill);
  cursor: pointer; transition: .2s; margin: 0; }
.radio-group input { accent-color: var(--blue); }
.radio-group label:has(input:checked) { border-color: var(--blue); background: #fff; color: var(--blue); }
.form-error { color: var(--cta-600); font-size: .82rem; margin-top: 6px; display: none; }
.form-control.invalid { border-color: var(--cta-600); background: #fff5f1; }
.form-row.has-error .form-error { display: block; }
.privacy-check { display: flex; gap: 10px; align-items: flex-start; background: var(--sky-2); padding: 18px;
  border-radius: var(--r-sm); }
.privacy-check input { margin-top: 5px; accent-color: var(--blue); }
.form-submit { text-align: center; margin-top: 32px; }
.form-aside { background: var(--sky); border-radius: var(--r); padding: 24px 28px; margin-bottom: 32px; }
.form-aside .tel { font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.form-aside .tel svg { width: .8em; height: .8em; vertical-align: -2px; color: var(--blue); margin-right: 6px; }

/* -----------------------------------------------------------
   18. Company table
   ----------------------------------------------------------- */
.info-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; }
.info-table th, .info-table td { padding: 20px 24px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { background: var(--sky-2); color: var(--navy); font-weight: 700; width: 30%; white-space: nowrap; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }

/* -----------------------------------------------------------
   19. Footer
   ----------------------------------------------------------- */
.site-footer { background: var(--navy); color: #b9cee0; padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer-brand .logo { color: #fff; }
.footer-brand .logo .logo-text b { color: #fff; }
.footer-brand .logo .logo-text b span { color: var(--aqua); }
.footer-brand .logo .logo-text small { color: #8fb0cc; }
.footer-brand p { margin-top: 18px; font-size: .88rem; color: #9fbdd8; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 18px; letter-spacing: .06em; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: #b9cee0; font-size: .88rem; }
.footer-col a:hover { color: #fff; }
.footer-contact .tel { color: #fff; font-size: 1.5rem; font-weight: 700; }
.footer-contact .tel svg { width: .8em; height: .8em; vertical-align: -2px; color: var(--aqua); margin-right: 6px; }
.footer-contact small { display: block; color: #9fbdd8; font-size: .8rem; margin: 6px 0 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-block: 22px; font-size: .8rem; color: #8fb0cc; }
.footer-bottom a { color: #8fb0cc; }
.footer-bottom nav { display: flex; gap: 18px; }

/* -----------------------------------------------------------
   20. Mobile fixed CTA bar
   ----------------------------------------------------------- */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; display: none;
  grid-template-columns: 1fr; gap: 0; background: #fff; box-shadow: 0 -6px 20px rgba(12,58,102,.14);
  border-top: 1px solid var(--line); }
.mobile-cta a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  padding: 12px 8px; font-weight: 700; font-size: .82rem; line-height: 1.2; text-align: center; }
.mobile-cta .m-tel { color: var(--navy); }
.mobile-cta .m-tel svg { width: 20px; height: 20px; color: var(--blue); }
.mobile-cta .m-cta { background: linear-gradient(135deg, #ffa05c, #f97f3d); color: #fff; }
.mobile-cta .m-cta svg { width: 20px; height: 20px; }
.mobile-cta small { font-size: .64rem; font-weight: 500; opacity: .85; }

/* Back to top */
.to-top { position: fixed; right: 18px; bottom: 84px; z-index: 850; width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center; box-shadow: var(--sh);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: .3s; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top svg { width: 22px; height: 22px; }

/* -----------------------------------------------------------
   21. .reveal — kept as a hook for optional future animation.
       Content is ALWAYS visible (no JS / fill-mode dependency),
       so nothing can ever hide a section by accident.
   ----------------------------------------------------------- */
.reveal { opacity: 1; }

/* -----------------------------------------------------------
   22. Responsive
   ----------------------------------------------------------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Nav -> drawer (switch earlier so the 7 menu items never get cramped) */
  .hamburger { display: block; }
  .gnav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(82vw, 340px);
    background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: calc(var(--header-h) + 20px) 28px 40px; box-shadow: -10px 0 40px rgba(12,58,102,.18);
    transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto;
  }
  .is-menu-open .gnav { transform: translateX(0); }
  .gnav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav-list li { border-bottom: 1px solid var(--line); }
  .gnav-list a { display: block; padding: 16px 4px; font-size: 1rem; white-space: normal; }
  .gnav-list a::after { display: none; }
  .gnav-cta { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 24px; }
  .gnav .btn-cta { padding: 16px; font-size: 1rem; }

  /* fixed mobile CTA + body room */
  .mobile-cta { display: grid; }
  body { padding-bottom: 68px; }
  .to-top { bottom: 80px; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .section { padding-block: 68px; }

  /* Hero stack */
  .hero { padding-bottom: 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero-float--tl { left: 8px; } .hero-float--br { right: 8px; }

  .split, .split.reverse { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }

  .grid-3, .grid-4, .plans, .gallery, .voices, .steps, .area-cols { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .work.feature { grid-column: span 2; }
}

@media (max-width: 600px) {
  body { font-size: 15.5px; }
  .container { padding-inline: 18px; }
  .section { padding-block: 56px; }
  .sec-head { margin-bottom: 40px; }

  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .hero .btn-row { gap: 12px; }

  .grid-2, .grid-3, .grid-4, .plans, .gallery, .voices, .steps, .area-cols { grid-template-columns: 1fr; }
  .work.feature { grid-column: span 1; }
  .stats { grid-template-columns: 1fr 1fr; }

  .card { padding: 28px 22px; }
  .plan { padding: 34px 24px; }
  .form-card { padding: 28px 20px; }
  .area-card { padding: 28px 22px; }
  .info-table th { width: 38%; padding: 14px 14px; font-size: .86rem; }
  .info-table td { padding: 14px 14px; font-size: .9rem; }

  .hero-float { padding: 10px 14px; }
  .hero-float .num { font-size: 1.4rem; }
  .hero-float--tl { top: 10px; left: 4px; }
  .hero-float--br { bottom: 10px; right: 4px; }

  .cta-band .inner { padding-block: 60px; }
  .cta-band .tel-big a { font-size: 1.5rem; }
  .faq-q { padding: 18px 18px; font-size: .96rem; gap: 12px; }
  .faq-a .faq-a-inner { padding-left: 18px; padding-right: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trustbar .container { gap: 12px 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
