/* ==========================================
   INFLAIR - Main Stylesheet
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* ==========================================
   CSS Variables
   ========================================== */
:root {
  --navy:        #0D1F3C;
  --navy-mid:    #162D52;
  --navy-light:  #1A3260;
  --orange:      #E07A3A;
  --orange-dark: #C96A2A;
  --white:       #FFFFFF;
  --bg:          #F7F7F5;
  --bg-gray:     #EFEFED;
  --text:        #1C1C1C;
  --text-sub:    #6B6B6B;
  --border:      #E5E5E5;

  --shadow-sm: 0 2px 8px rgba(13, 31, 60, 0.07);
  --shadow-md: 0 4px 20px rgba(13, 31, 60, 0.11);
  --shadow-lg: 0 8px 40px rgba(13, 31, 60, 0.16);

  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --container: 1120px;
}

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

.section {
  padding: 96px 0;
}

.section--gray {
  background: var(--bg);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.25;
}

.section--navy .section-title {
  color: var(--white);
}

.section-desc {
  font-size: 16px;
  color: var(--text-sub);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.9;
}

.section--navy .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: inherit;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 122, 58, 0.38);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 16px;
}

/* ==========================================
   Header
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

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

.header__logo {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
}

.header__logo span {
  color: var(--orange);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--navy);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__cta .btn {
  padding: 10px 22px;
  font-size: 13px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 32px 24px 48px;
  gap: 4px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav .btn {
  margin-top: 28px;
  width: 100%;
}

/* ==========================================
   Hero (Home)
   ========================================== */
/* Overlay Hero Layout */
.hero {
  min-height: 100vh;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}

/* Navy overlay on background image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(13,31,60,0.82) 0%, rgba(26,50,96,0.72) 100%);
  z-index: 0;
  pointer-events: none;
}

.hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero__bg-circle--1 {
  width: 600px;
  height: 600px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero__bg-circle--2 {
  width: 400px;
  height: 400px;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__bg-dot {
  position: absolute;
  left: 55%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(224, 122, 58, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Left-aligned content block (desktop) */
.hero__content {
  max-width: 580px;
}

.hero__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero__title {
  font-size: clamp(32px, 4.5vw, 58px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__title em {
  color: var(--orange);
  font-style: normal;
}

.hero__text {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 2;
  margin-bottom: 48px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 0.7; transform: translateY(6px); }
}

/* ==========================================
   Page Hero (inner pages)
   ========================================== */
.page-hero {
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  padding: 148px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Navy overlay on top of background image */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(13,31,60,0.88) 0%, rgba(26,50,96,0.80) 100%);
  z-index: 0;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  right: -120px;
  bottom: -200px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.page-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.page-hero__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ==========================================
   Service Cards
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--orange);
  transition: width 0.4s ease;
}

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

.service-card:hover::after {
  width: 100%;
}

.service-card__icon {
  width: 68px;
  height: 68px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.service-card__title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card__text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 20px;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  display: inline-block;
  font-size: 12px;
  padding: 3px 10px;
  background: var(--bg);
  color: var(--text-sub);
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ==========================================
   Service Detail (service page)
   ========================================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * {
  direction: ltr;
}

.service-detail__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.service-detail__title {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-detail__text {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 28px;
}

.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail__list li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
}

.service-detail__list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 8px;
}

.service-detail__visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-sub);
  position: relative;
  overflow: hidden;
}

.service-detail__visual--web {
  background: linear-gradient(135deg, #E8EFF8 0%, #C5D5EC 100%);
}

.service-detail__visual--shopify {
  background: linear-gradient(135deg, #E6F4EB 0%, #C3E4CC 100%);
}

.service-detail__visual--design {
  background: linear-gradient(135deg, #FDF2E9 0%, #F5D5B5 100%);
}

.service-detail__visual--operation {
  background: linear-gradient(135deg, #F0EFF8 0%, #D5D0EC 100%);
}

.service-detail__visual span {
  font-size: 48px;
  opacity: 0.5;
}

/* ==========================================
   Works Grid
   ========================================== */
.works-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-sub);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.work-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.work-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.work-card__img {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.work-card__img--web     { background: linear-gradient(135deg, #E8EFF8, #C8D8EE); }
.work-card__img--shopify { background: linear-gradient(135deg, #E6F4EB, #C3E4CC); }
.work-card__img--design  { background: linear-gradient(135deg, #FDF2E9, #F5D5B5); }
.work-card__img--op      { background: linear-gradient(135deg, #F0EFF8, #D5D0EC); }

/* 画像あり時：写真をカバー表示 */
.work-card__img--photo {
  background: var(--bg);
  overflow: hidden;
}
.work-card__img--photo img.work-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.work-card:hover .work-card__img--photo img.work-card__thumb {
  transform: scale(1.04);
}

/* カードリンク */
.work-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

/* ========== Works 詳細ページ ========== */

/* 戻るリンク */
.work-single__breadcrumb {
  margin-bottom: 32px;
}
.work-single__back {
  font-size: 13px;
  color: var(--text-sub);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.work-single__back:hover { color: var(--navy); }

/* 2カラムレイアウト（左:コンテンツ 右:サイドバー） */
.work-single__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

/* 左：メイン画像 */
.work-single__main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
  background: var(--bg);
}
.work-single__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.work-single__main-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  aspect-ratio: 16 / 10;
}

/* カテゴリバッジ */
.work-single__category {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(224, 122, 58, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* タイトル */
.work-single__title {
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}

/* 本文 */
.work-single__content {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}
.work-single__content h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.work-single__content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}
.work-single__content p { margin-bottom: 18px; }
.work-single__content img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 20px 0;
}
.work-single__content ul,
.work-single__content ol {
  padding-left: 1.5em;
  margin-bottom: 18px;
}
.work-single__content li { margin-bottom: 6px; }

/* 右：プロジェクト情報カード */
.work-single__sidebar {
  position: sticky;
  top: 100px;
}
.work-single__info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.work-single__info-card__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.work-single__info-list {
  display: flex;
  flex-direction: column;
}
.work-single__info-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.work-single__info-item:last-child { border-bottom: none; }
.work-single__info-item dt {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-sub);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.work-single__info-item dd {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}
.work-single__url-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.work-single__url-link:hover { opacity: 0.75; }

/* サブ画像ギャラリー（2カラム下） */
.work-single__gallery {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}
.work-single__gallery__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 20px;
}
.work-single__gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.work-single__gallery-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

/* 前後ナビ */
.work-single__nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.work-single__nav-item--right { text-align: right; }
.work-single__nav-center { text-align: center; }
.work-single__nav-link {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: var(--navy);
  transition: var(--transition);
}
.work-single__nav-link:hover { color: var(--orange); }
.work-single__nav-dir { font-size: 12px; color: var(--text-sub); }
.work-single__nav-name { font-size: 14px; font-weight: 600; }

/* レスポンシブ */
@media (max-width: 960px) {
  .work-single__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .work-single__sidebar { position: static; }
}
@media (max-width: 640px) {
  .work-single__gallery-grid { grid-template-columns: 1fr; }
  .work-single__nav {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .work-single__nav-item--right { text-align: center; }
}

.work-card__body {
  padding: 20px 24px 24px;
}

.work-card__category {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.work-card__title {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}

.work-card__desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.75;
}

/* ==========================================
   Price Cards
   ========================================== */
.price-intro {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.price-intro p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.95;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}

.price-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.price-card:hover:not(.price-card--featured) {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.price-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.price-card__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.price-card--featured .price-card__name {
  color: var(--white);
}

.price-card__price {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--orange);
  margin: 18px 0 2px;
  line-height: 1;
}

.price-card__price-note {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 8px;
}

.price-card--featured .price-card__price-note {
  color: rgba(255, 255, 255, 0.55);
}

.price-card__desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-card--featured .price-card__desc {
  color: rgba(255, 255, 255, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-card__list li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  line-height: 1.6;
}

.price-card--featured .price-card__list li {
  color: rgba(255, 255, 255, 0.8);
}

.price-card__list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card .btn {
  width: 100%;
}

.price-note {
  max-width: 680px;
  margin: 48px auto 0;
  padding: 28px 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
}

.price-note p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.85;
}

.price-note p + p {
  margin-top: 8px;
}

/* ==========================================
   Flow Steps
   ========================================== */
.flow-steps {
  max-width: 760px;
  margin: 0 auto;
}

.flow-step {
  display: flex;
  gap: 28px;
  position: relative;
}

.flow-step:not(:last-child) > .flow-step__line {
  position: absolute;
  left: 23px;
  top: 52px;
  width: 2px;
  height: calc(100% - 12px);
  background: linear-gradient(to bottom, var(--border), transparent);
}

.flow-step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.flow-step__content {
  padding: 8px 0 56px;
  flex: 1;
}

.flow-step:last-child .flow-step__content {
  padding-bottom: 0;
}

.flow-step__title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}

.flow-step__text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.85;
}

.flow-step__duration {
  display: inline-block;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--orange);
  background: rgba(224, 122, 58, 0.1);
  padding: 3px 12px;
  border-radius: 100px;
  margin-top: 10px;
}

/* ==========================================
   Contact Form
   ========================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info__title {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 700;
}

.contact-info__text {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 32px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info__item svg {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__item p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

.contact-info__item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.required {
  display: inline-block;
  font-size: 11px;
  background: var(--orange);
  color: var(--white);
  padding: 2px 7px;
  border-radius: 3px;
  font-weight: 500;
}

.form-control,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.form-control:focus,
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 31, 60, 0.08);
}

.form-control::placeholder,
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #BDBDBD;
}

textarea.form-control,
.wpcf7 textarea {
  min-height: 200px;
  resize: vertical;
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
}

.form-note {
  font-size: 12px;
  color: var(--text-sub);
  text-align: center;
  margin-top: 14px;
  line-height: 1.75;
}

.form-note a {
  color: var(--navy);
  text-decoration: underline;
}

/* ==========================================
   About
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #E8EFF8 0%, #C5D5EC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  font-size: 80px;
}

.about-content__label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.about-content__title {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-content__text {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2.1;
  margin-bottom: 16px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
}

.value-item:hover {
  border-color: rgba(224, 122, 58, 0.2);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.value-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(224, 122, 58, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  font-size: 18px;
}

.value-item__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.value-item__text {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* Profile */
.profile-card {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  max-width: 680px;
  margin: 0 auto;
}

.profile-card__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}

.profile-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-card__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.profile-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.profile-card__text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
}

.profile-card__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  left: -150px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-section__title {
  font-size: clamp(28px, 4.5vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-section__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 44px;
  line-height: 2;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   Stats
   ========================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item__number {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__number sup {
  font-size: 24px;
}

.stat-item__label {
  font-size: 14px;
  color: var(--text-sub);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: #080F1E;
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__logo {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 16px;
}

.footer__logo span {
  color: var(--orange);
}

.footer__desc {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.45);
  max-width: 280px;
}

.footer__heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   Privacy Policy
   ========================================== */
.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.policy-content h2 {
  font-size: 20px;
  color: var(--navy);
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.policy-content h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.policy-content p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 2;
  margin-bottom: 16px;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-content ul li {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 8px;
}

.policy-content .policy-date {
  font-size: 14px;
  color: var(--text-sub);
  text-align: right;
  margin-bottom: 48px;
}

/* ==========================================
   Animations
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ==========================================
   Utilities
   ========================================== */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 960px) {

  .header__nav,
  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img {
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 1/1;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail--reverse {
    direction: ltr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .profile-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-card__skills {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .works-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-form {
    padding: 28px 20px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .hero__label {
    justify-content: center;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-section__btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-section__btns .btn {
    width: 100%;
    max-width: 320px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
