:root {
  --color-main: #04384c;
  --color-main-dark: #032a38;
  --color-accent: #23aec4;
  --color-accent-2: #1176d4;
  --color-ai: #3d79d5;
  --color-ai-2: #06b6d4;
  --color-ai-grad: linear-gradient(90deg, #4f46e5, #06b6d4);
  --color-text: #333;
  --color-bg: #fdfdfd;
  --color-bg-alt: #f7f7f7;
  --font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --container: 1200px;
  --announce-h: 40px;
  --header-h: 70px;
}

* { box-sizing: border-box; }

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  font-weight: 500;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-accent-2); text-decoration: none; }

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

/* Announcement bar */
.p-announce {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--announce-h);
  z-index: 101;
  background: var(--color-ai-grad);
  color: #fff;
}

.p-announce a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.p-announce__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.p-announce a .icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .p-announce a .icon { display: none; }
}

.p-announce__badge {
  background: #fff;
  color: #4f46e5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .p-announce a { font-size: 11px; gap: 6px; }
}

/* Header */
.l-header {
  position: fixed;
  top: var(--announce-h);
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(253, 253, 253, 0.96);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.l-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-main);
}

.l-header__logo img { height: 36px; width: auto; }

.l-header__logo-text {
  font-size: 14px;
  line-height: 1.3;
}

.l-header__logo-text small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #777;
}

.c-gnav {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-gnav a {
  display: block;
  padding: 10px 14px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.c-gnav a:hover { color: var(--color-main); background: rgba(4, 56, 76, 0.06); }

.c-gnav__ai a { color: var(--color-ai); font-weight: 700; }

.l-header__menuBtn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.l-header__menuBtn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-main);
}

@media (max-width: 900px) {
  .c-gnav {
    position: fixed;
    top: calc(var(--announce-h) + 60px);
    right: -100%;
    flex-direction: column;
    background: #fff;
    width: 260px;
    height: calc(100vh - var(--announce-h) - 60px);
    padding: 24px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    gap: 0;
  }
  .c-gnav.is-open { right: 0; }
  .c-gnav a { padding: 14px 8px; border-bottom: 1px solid #eee; }
  .l-header__menuBtn { display: flex; }
}

/* Hero */
.p-hero {
  position: relative;
  min-height: 68vh;
  padding: calc(var(--announce-h) + var(--header-h) + 56px) 20px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 20%, #0a4d68 0%, #04384c 45%, #021e29 100%);
}

.p-hero__network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.p-hero__network .node {
  animation: nodePulse 3.4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes nodePulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 860px;
}

.p-hero__eyebrow {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8be3ff;
  font-weight: 700;
  margin: 0 0 14px;
}

.p-hero__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  margin: 0 0 16px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.p-hero__text {
  font-size: clamp(14px, 2vw, 17px);
  letter-spacing: 0.03em;
  margin: 0 0 32px;
  color: #e6f6ff;
}

.p-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.p-hero__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.p-hero__mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dff5ff;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(223, 245, 255, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.p-hero__mail:hover { color: #fff; border-color: #fff; }

.p-hero__mail .icon { width: 16px; height: 16px; }

.p-hero__contactBtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.2s;
}

.p-hero__contactBtn:hover { background: rgba(255, 255, 255, 0.22); }

.p-hero__contactBtn .icon { width: 14px; height: 14px; }

/* Section titles */
.c-sectionTitle {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  margin: 0 0 32px;
  letter-spacing: 0.02em;
}

.c-sectionTitle.-ai {
  background: var(--color-ai-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.c-sectionLead {
  max-width: 720px;
  font-size: 15px;
  color: #666;
  margin: 0 0 32px;
}

.c-sectionKicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--color-ai);
  margin: 0 0 12px;
}

section { scroll-margin-top: calc(var(--announce-h) + var(--header-h)); }

.u-pt { padding-top: 72px; }
.u-pb { padding-bottom: 72px; }

/* Benefits (Why choose us) */
.p-benefits {
  padding: 88px 0;
  background: #fff;
  position: relative;
}

.p-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 8px;
}

.p-benefits__item {
  background: #fff;
  border: 1px solid #eef0f2;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(4, 56, 76, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.p-benefits__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(4, 56, 76, 0.12);
  border-color: transparent;
}

.p-benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-main), var(--color-accent));
  color: #fff;
  margin-bottom: 20px;
}

.p-benefits__icon .icon { width: 28px; height: 28px; }

.p-benefits__item h3 {
  font-size: 17px;
  color: var(--color-main);
  margin: 0 0 12px;
  line-height: 1.5;
}

.p-benefits__item p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.8;
}

/* Vision */
.p-vision {
  background: var(--color-accent);
  color: #fff;
  padding: 64px 0;
}

.p-vision__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.p-vision__img img {
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.p-vision__card {
  background: rgba(255, 255, 255, 0.9);
  color: #222;
  border-radius: 8px;
  padding: 32px;
}

.p-vision__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #b2b1b1;
  margin: 0 0 16px;
}

.p-vision__body { font-weight: 700; }

.p-vision__sign {
  text-align: right;
  margin-top: 16px;
  font-weight: 700;
}

@media (max-width: 800px) {
  .p-vision__grid { grid-template-columns: 1fr; }
}

/* Service */
.p-service { padding: 72px 0; }

.p-service .c-sectionTitle { color: #f09f4d; }

.c-cardGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 8px;
}

.c-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.c-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.c-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  background: var(--color-main);
}

.c-card__head .icon { color: #fff; }

.c-card.-alt .c-card__head {
  background: linear-gradient(135deg, #020381, #2874fc);
}

.c-card__body {
  list-style: none;
  margin: 0;
  padding: 18px 20px;
}

.c-card__body li {
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 14.5px;
  border-bottom: 1px dashed #eee;
}

.c-card__body li:last-child { border-bottom: none; }

.c-card__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-2);
}

/* AI Service highlight section */
.p-ai {
  background: linear-gradient(135deg, #eef1ff 0%, #eaf7ff 55%, #fff 100%);
  padding: 96px 0 80px;
  position: relative;
}

.p-ai__intro {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.p-ai__illust { width: 100%; height: auto; }

@media (max-width: 800px) {
  .p-ai__intro { grid-template-columns: 1fr; }
  .p-ai__introMedia { max-width: 240px; margin: 0 auto; }
}

.p-ai__badge {
  display: inline-block;
  background: var(--color-ai-grad);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.p-ai__lead {
  max-width: 760px;
  font-size: 16px;
  margin-bottom: 16px;
}

.p-ai__note {
  display: inline-block;
  font-size: 12px;
  color: #666;
  background: #fff;
  border: 1px solid #dbe6f5;
  padding: 4px 10px;
  border-radius: 4px;
}

.p-ai__freeSample {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 48px;
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.3);
  position: relative;
  overflow: hidden;
}

.p-ai__freeSample::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}

.p-ai__freeSample-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.p-ai__freeSample-icon .icon { width: 30px; height: 30px; }

.p-ai__freeSample-body {
  flex: 1 1 320px;
  position: relative;
  z-index: 1;
}

.p-ai__freeSample-tag {
  display: inline-block;
  background: #fff;
  color: #4f46e5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.p-ai__freeSample-body p {
  color: #fff;
  font-size: 15px;
  margin: 0;
  line-height: 1.7;
}

.p-ai__freeSample .c-btn.-ai {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: #fff;
  color: #4f46e5;
  box-shadow: none;
}

.p-ai__freeSample .c-btn.-ai:hover { opacity: 0.9; }

@media (max-width: 640px) {
  .p-ai__freeSample { padding: 24px; }
}

.p-ai__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.p-ai__card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(61, 121, 213, 0.08);
  border-top: 3px solid var(--color-ai);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-ai__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(61, 121, 213, 0.2);
}

.p-ai__introText .c-sectionTitle { margin-bottom: 12px; }

.p-ai__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-ai-grad);
  color: #fff;
  margin-bottom: 16px;
}

.p-ai__card-icon .icon { width: 24px; height: 24px; }

.p-ai__card h3 {
  font-size: 17px;
  margin: 0 0 10px;
  color: var(--color-main);
}

.p-ai__card p {
  font-size: 14px;
  margin: 0;
  color: #555;
}

.p-ai__flow {
  margin-bottom: 56px;
}

.p-ai__flow h3, .p-ai__cases h3 {
  font-size: 20px;
  color: var(--color-main);
  margin-bottom: 24px;
  border-left: 4px solid var(--color-ai);
  padding-left: 12px;
}

.p-ai__flowSteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.p-ai__flowStep {
  background: #fff;
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  position: relative;
}

.p-ai__flowStep .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-ai);
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.p-ai__flowStep h4 {
  font-size: 14px;
  margin: 0 0 6px;
}

.p-ai__flowStep p {
  font-size: 12.5px;
  color: #666;
  margin: 0;
}

@media (max-width: 900px) {
  .p-ai__flowSteps { grid-template-columns: repeat(2, 1fr); }
}

.p-ai__caseGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.p-ai__case {
  background: #fff;
  border: 1px solid #e3ecf7;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.p-ai__case:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(61, 121, 213, 0.14);
}

.p-ai__case .tag {
  display: inline-block;
  font-size: 11px;
  color: var(--color-ai);
  background: #eaf2ff;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: 700;
}

.p-ai__case h4 {
  font-size: 15px;
  margin: 0 0 8px;
  color: var(--color-main);
}

.p-ai__case p {
  font-size: 13.5px;
  color: #555;
  margin: 0;
}

/* Performance */
.p-performance { background: var(--color-bg-alt); padding: 72px 0; }

.p-performance .c-sectionTitle { color: #f57474; }

.p-performance__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.p-performance__item {
  background: #fff;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.p-performance__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.p-performance__item h3 {
  font-size: 16px;
  color: var(--color-main);
  margin: 0 0 10px;
  border-left: 3px solid var(--color-main);
  padding-left: 10px;
}

.p-performance__item p {
  font-size: 13.5px;
  color: #555;
  margin: 0;
}

/* Company */
.p-company { padding: 72px 0; background: var(--color-bg-alt); }

.p-company .c-sectionTitle { color: var(--color-ai); }

.c-infoCard {
  background: #fff;
  border-radius: 16px;
  padding: 8px 32px;
  box-shadow: 0 8px 32px rgba(4, 56, 76, 0.08);
}

.c-infoTable {
  width: 100%;
  border-collapse: collapse;
}

.c-infoTable tr { transition: background 0.2s ease; }
.c-infoTable tr:hover { background: rgba(6, 182, 212, 0.05); }

.c-infoTable th, .c-infoTable td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  font-size: 14.5px;
  vertical-align: top;
}

.c-infoTable tr:last-child th, .c-infoTable tr:last-child td { border-bottom: none; }

.c-infoTable th {
  width: 190px;
  color: #666;
  font-weight: 700;
  white-space: nowrap;
}

.c-infoTable th .icon {
  color: var(--color-ai);
  vertical-align: middle;
  margin-right: 8px;
  margin-top: -2px;
}

@media (max-width: 640px) {
  .c-infoCard { padding: 4px 16px; }
  .c-infoTable th { width: 130px; font-size: 13px; }
  .c-infoTable th .icon { width: 16px; height: 16px; }
  .c-infoTable td { font-size: 13px; }
}

/* Recruit */
.p-recruit {
  background: radial-gradient(ellipse at 15% 0%, #0a5570 0%, var(--color-main) 55%, var(--color-main-dark) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.p-recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.p-recruit .container { position: relative; z-index: 1; }

.p-recruit__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(90deg, #ff7a59, #ffb648);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(255, 122, 89, 0.4);
  animation: recruitPulse 2.2s ease-in-out infinite;
}

@keyframes recruitPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.p-recruit .c-sectionTitle.-recruit { color: #fff; }

.c-sectionLead.-recruit { color: #d8ecf3; max-width: 680px; }

.c-recruitGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.p-recruit__subTitle {
  font-size: 22px;
  color: #fff;
  margin: 0 0 20px;
  border-left: 4px solid #ffb648;
  padding-left: 14px;
}

.p-recruit .c-infoCard {
  margin-bottom: 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.c-recruitGrid__item {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 26px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease;
}

.c-recruitGrid__item:hover { transform: translateY(-4px); }

.c-recruitGrid__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff0ea;
  color: #ff7a3d;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
}

.c-recruitGrid__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-main);
  color: #fff;
  margin-bottom: 14px;
}

.c-recruitGrid__icon .icon { width: 22px; height: 22px; }

.c-recruitGrid__item h3 {
  font-size: 16px;
  color: var(--color-main);
  margin: 0 0 10px;
}

.c-recruitGrid__item p {
  font-size: 13.5px;
  color: #555;
  margin: 0;
}

.p-recruit__cta { text-align: center; margin: 0; }

.c-btn.-recruit {
  background: linear-gradient(90deg, #ff7a59, #ffb648);
  box-shadow: 0 10px 28px rgba(255, 122, 89, 0.4);
  font-size: 15px;
}

/* Buttons */
.c-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 999px;
  background: var(--color-main);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.c-btn:hover { opacity: 0.85; transform: translateY(-2px); }

.c-btn.-ai {
  background: var(--color-ai-grad);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
}

.c-btn.-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.c-btn.-outline:hover { background: rgba(255, 255, 255, 0.12); opacity: 1; }

.c-btn.-sm { padding: 10px 24px; font-size: 13.5px; }

@media (max-width: 420px) {
  .c-btn { padding: 13px 22px; font-size: 14px; letter-spacing: 0.05em; }
}

/* Contact */
.p-contact { background: var(--color-bg-alt); padding: 80px 0; }

.p-contact__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.p-contact .c-sectionTitle { color: #3fbf6a; margin-bottom: 12px; }

/* Footer */
.l-footer {
  background: #fdfdfd;
  border-top: 1px solid #eee;
  padding: 32px 0;
  text-align: center;
}

.l-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.l-footer__nav a {
  color: var(--color-text);
  font-size: 13.5px;
}

.l-footer .copyright {
  font-size: 12px;
  color: #999;
  margin: 0;
}

/* Reveal animation */
.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Back to top */
.c-pageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 90;
}

.c-pageTop.is-visible { opacity: 1; visibility: visible; }
