/* ================================================
   Flawless Partners — style.css
   Logo colors: #2FA9B4 (teal), #A7D5DF (sky blue)
   ================================================ */

:root {
  /* Primary: Teal #27a9be */
  --teal:        #27a9be;
  --teal-light:  #45bece;
  --teal-deep:   #1a8fa3;
  --teal-dark:   #126e80;

  /* Sky（淡いティール） */
  --sky:         #a0d8e4;
  --sky-pale:    #cdedf3;
  --sky-lightest:#e8f7fa;

  /* Accent: Yellow-green #a7dc20 */
  --accent:      #a7dc20;
  --accent-deep: #88b818;
  --accent-pale: #eaf6cc;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F8FAFB;
  --gray-50:     #F2F6F7;
  --gray-100:    #E0EAEC;
  --gray-200:    #C4D8DC;
  --gray-400:    #8AAFB6;
  --gray-600:    #5A8A92;

  /* Text（基本#555） */
  --text-primary:   #555555;
  --text-secondary: #666666;
  --text-light:     #888888;
  --text-dark:      #333333;

  /* Layout */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 12px rgba(39,169,190,0.10);
  --shadow-md: 0 8px 32px rgba(39,169,190,0.14);
  --shadow-lg: 0 20px 60px rgba(39,169,190,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-primary);
  background: var(--off-white);
  overflow-x: hidden;
  cursor: auto;
}

/* ===================== NAVIGATION ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  padding: 13px 60px;
  box-shadow: 0 1px 0 rgba(17,50,69,0.10), var(--shadow-sm);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.nav-logo-text { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 14px; letter-spacing: 0.04em; color: rgba(255,255,255,0.95); }
nav.scrolled .nav-logo-text { color: var(--text-primary); }
.nav-logo-text span { color: var(--accent); }
nav.scrolled .nav-logo-text span { color: var(--teal-deep); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.04em; color: rgba(255,255,255,0.55); text-decoration: none; position: relative; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--teal); transition: width 0.3s; }
nav.scrolled .nav-links a { color: #888888; }
nav.scrolled .nav-links a:hover, nav.scrolled .nav-links a.active-link { color: var(--teal-deep); }
.nav-links a:hover, .nav-links a.active-link { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active-link::after { width: 100%; }
.nav-cta {
  background: white; color: var(--teal); border: 1.5px solid white;
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  padding: 10px 22px; border-radius: var(--radius-sm);
  text-decoration: none; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(255,255,255,0.2);
}
.nav-cta:hover { background: rgba(255,255,255,0.85); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,255,255,0.3); }
nav.scrolled .nav-cta { background: var(--teal); color: white; border-color: var(--teal); box-shadow: 0 4px 14px rgba(39,169,190,0.4); }
nav.scrolled .nav-cta:hover { background: var(--teal-deep); border-color: var(--teal-deep); box-shadow: 0 6px 20px rgba(39,169,190,0.5); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 22px; height: 1.5px; background: rgba(255,255,255,0.9); transition: all 0.3s; display: block; }
nav.scrolled .nav-hamburger span { background: var(--text-primary); }

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: white;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; gap: 28px;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 22px; font-family: 'Cormorant Garamond', serif; font-weight: 300; color: var(--text-primary); text-decoration: none; opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
.mobile-menu a:hover { opacity: 1; color: var(--teal); }
.mobile-menu .nav-cta { font-size: 14px; margin-top: 12px; opacity: 1; color: white; }

/* ===================== BUTTONS ===================== */
.btn-primary {
  background: var(--teal); color: white; border: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  padding: 14px 32px; border-radius: var(--radius-sm); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(39,169,190,0.35);
}
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(39,169,190,0.45); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.7); color: rgba(255,255,255,0.9); background: transparent;
  font-size: 13px; font-weight: 400; letter-spacing: 0.04em;
  padding: 13px 28px; border-radius: var(--radius-sm); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================== SECTION COMMON ===================== */
section { padding: 100px 60px; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.section-eyebrow-line { width: 22px; height: 2px; background: var(--accent); }
.section-eyebrow-text { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 3.8vw, 46px); font-weight: 300; line-height: 1.25; color: var(--text-primary); letter-spacing: -0.01em; margin-bottom: 16px; }
.section-title em { font-style: italic; color: var(--accent-deep); }
.section-lead { font-size: 14px; font-weight: 300; line-height: 1.95; color: var(--text-secondary); max-width: 560px; }

/* ===================== HERO ===================== */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background-color: var(--teal-dark);
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
/* 全体オーバーレイ：右側の画像を少し暗くしつつ左は強め */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(18,110,128,0.92) 0%,
    rgba(18,110,128,0.88) 38%,
    rgba(18,110,128,0.55) 60%,
    rgba(18,110,128,0.15) 80%,
    rgba(18,110,128,0.05) 100%
  );
}
/* 左端の縦アクセントライン */
.hero-accent-line {
  position: absolute; left: 0; top: 0; bottom: 0; z-index: 2;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}
/* 右下のぼかし（画像と境界をなじませる） */
#hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 70% 80% at 75% 50%, transparent 0%, rgba(18,110,128,0.25) 100%);
  pointer-events: none;
}
@keyframes spin { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }
@keyframes floatUD { 0%,100%{ transform: translateY(-50%); } 50%{ transform: translateY(calc(-50% - 12px)); } }
.hero-dots { display: none; }
.hero-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }
/* テキストコンテンツ */
.hero-content {
  position: relative; z-index: 3;
  padding: 130px 60px 100px; max-width: 600px;
}
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px; animation: fadeUp 0.8s ease both; }
.hero-eyebrow-line { width: 28px; height: 2px; background: var(--accent); }
.hero-eyebrow-text { font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.hero-h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 5.5vw, 68px); font-weight: 300; line-height: 1.18; color: white; letter-spacing: -0.01em; margin-bottom: 24px; animation: fadeUp 0.8s 0.15s ease both; text-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.hero-h1 em { font-style: italic; color: var(--accent); }
.hero-h1 strong { font-weight: 600; display: block; }
.hero-sub { font-size: 15px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.85); margin-bottom: 44px; animation: fadeUp 0.8s 0.3s ease both; text-shadow: 0 1px 8px rgba(0,0,0,0.15); }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; animation: fadeUp 0.8s 0.55s ease both; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,0.95); background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.30); padding: 5px 12px; border-radius: 20px; font-family: 'DM Sans', sans-serif; backdrop-filter: blur(4px); }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.45s ease both; }
.hero-scroll { position: absolute; bottom: 40px; left: 60px; z-index: 3; display: flex; align-items: center; gap: 12px; animation: fadeUp 0.8s 0.7s ease both; }
.hero-scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ''; position: absolute; left: -100%; top: 0; width: 100%; height: 100%; background: var(--accent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100%{ left:-100%; } 50%{ left:100%; } }
.hero-scroll span { font-size: 11px; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

/* ===================== PROBLEMS ===================== */
#problems { background: white; }
.problems-inner { max-width: 1100px; margin: 0 auto; }
.problems-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.problem-card { background: var(--sky-lightest); border: 1px solid var(--gray-100); padding: 40px 34px; border-radius: var(--radius-md); position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s, background 0.3s; }
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); background: white; }
.problem-card-top-bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.problem-card:hover .problem-card-top-bar { transform: scaleX(1); }
.problem-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: var(--teal); line-height: 1; margin-bottom: 14px; }
.problem-title { font-size: 16px; font-weight: 500; margin-bottom: 10px; line-height: 1.5; color: var(--text-primary); }
.problem-body { font-size: 13px; font-weight: 300; color: var(--text-secondary); line-height: 1.85; }

/* ===================== WHY ===================== */
#why { background: linear-gradient(160deg, var(--sky-lightest) 0%, var(--off-white) 60%, white 100%); position: relative; overflow: hidden; }
#why::after { content: 'WHY'; position: absolute; right: -30px; bottom: -40px; font-family: 'Cormorant Garamond', serif; font-size: 180px; font-weight: 300; color: rgba(17,50,69,0.05); letter-spacing: -0.04em; pointer-events: none; white-space: nowrap; line-height: 1; }
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.why-card { background: white; border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 36px 32px; transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; }
.why-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-card-num { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 300; color: var(--teal); line-height: 1; margin-bottom: 16px; transition: color 0.3s; }
.why-card:hover .why-card-num { color: var(--teal); }
.why-card-title { font-size: 19px; font-weight: 500; margin-bottom: 10px; color: var(--text-primary); }
.why-card-title span { color: var(--accent-deep); }
.why-card-body { font-size: 13px; font-weight: 300; line-height: 1.9; color: var(--text-secondary); }
.why-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; background: white; border-radius: var(--radius-md); border: 1px solid var(--gray-100); overflow: hidden; box-shadow: var(--shadow-sm); }
.why-stat { padding: 36px 28px; text-align: center; border-right: 1px solid var(--gray-100); }
.why-stat:last-child { border-right: none; }
.why-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 400; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.why-stat-num sup { font-size: 20px; vertical-align: top; margin-top: 8px; display: inline-block; }
.why-stat-label { font-size: 12px; font-weight: 300; color: var(--text-light); line-height: 1.5; }

/* ===================== SERVICES ===================== */
#services { background: white; }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-flow { display: flex; align-items: stretch; gap: 0; margin: 44px 0 56px; background: var(--sky-lightest); border-radius: var(--radius-md); border: 1px solid var(--gray-100); overflow: hidden; }
.services-flow-step { flex: 1; text-align: center; padding: 22px 14px; border-right: 1px solid var(--gray-100); position: relative; }
.services-flow-step:last-child { border-right: none; }
.services-flow-step::after { content: '→'; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); color: var(--teal); font-size: 14px; z-index: 1; }
.services-flow-step:last-child::after { display: none; }
.services-flow-num { width: 32px; height: 32px; border-radius: 50%; background: var(--teal); color: white; font-size: 12px; font-weight: 500; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; }
.services-flow-label { font-size: 12px; font-weight: 500; color: var(--text-primary); margin-bottom: 3px; }
.services-flow-sub { font-size: 10px; color: var(--text-light); }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.service-card { background: var(--sky-lightest); border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 40px 36px; position: relative; overflow: hidden; transition: background 0.3s, box-shadow 0.3s, transform 0.3s, border-color 0.3s; }
.service-card:hover { background: white; box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal); }
.service-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--teal)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.service-card:hover .service-card-accent { transform: scaleX(1); }
.service-icon { width: 46px; height: 46px; margin-bottom: 22px; color: var(--teal); }
.service-card-title { font-size: 20px; font-weight: 500; margin-bottom: 12px; line-height: 1.4; color: var(--text-primary); }
.service-card-body { font-size: 13px; font-weight: 300; color: var(--text-secondary); line-height: 1.9; margin-bottom: 20px; }
.service-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.service-tag { font-size: 11px; color: var(--teal-deep); background: rgba(47,169,180,0.08); border: 1px solid rgba(47,169,180,0.2); padding: 3px 10px; border-radius: 20px; }

/* ===================== ABOUT ===================== */
#about { background: var(--sky-lightest); }
.about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-story p { font-size: 14px; font-weight: 300; line-height: 2; color: var(--text-secondary); margin-bottom: 20px; }
.about-story p strong { font-weight: 500; color: var(--text-primary); }
.company-table { width: 100%; border-collapse: collapse; }
.company-table tr { border-bottom: 1px solid var(--gray-100); }
.company-table tr:last-child { border-bottom: none; }
.company-table td { padding: 14px 0; font-size: 13px; font-weight: 300; vertical-align: top; color: var(--text-secondary); }
.company-table td:first-child { width: 110px; color: var(--text-primary); font-weight: 400; }
.about-profile { background: white; border-radius: var(--radius-md); padding: 40px 36px; border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.about-profile-header { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--gray-100); }
.about-avatar { width: 68px; height: 68px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--sky-pale), var(--sky)); display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--teal-deep); font-weight: 500; text-align: center; line-height: 1.4; }
.about-name { font-size: 18px; font-weight: 500; margin-bottom: 4px; color: var(--text-primary); }
.about-role { font-size: 12px; color: var(--teal); letter-spacing: 0.04em; margin-bottom: 8px; }
.about-desc { font-size: 13px; font-weight: 300; color: var(--text-secondary); line-height: 1.75; }
.about-timeline { display: flex; flex-direction: column; }
.about-tl-item { display: flex; gap: 14px; padding-bottom: 20px; }
.about-tl-left { display: flex; flex-direction: column; align-items: center; width: 14px; flex-shrink: 0; }
.about-tl-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid var(--accent); background: white; flex-shrink: 0; }
.about-tl-line { width: 1px; flex: 1; background: var(--gray-100); margin-top: 4px; }
.about-tl-item:last-child .about-tl-line { display: none; }
.about-tl-year { font-size: 11px; font-family: 'DM Sans', sans-serif; color: var(--accent-deep); font-weight: 500; margin-bottom: 2px; }
.about-tl-title { font-size: 13px; font-weight: 500; margin-bottom: 2px; color: var(--text-primary); }
.about-tl-body { font-size: 12px; font-weight: 300; color: var(--text-secondary); line-height: 1.75; }
.about-team { margin-top: 28px; }
.about-team-label { font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: var(--text-primary); margin-bottom: 16px; }
.about-team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.team-member { background: var(--sky-lightest); border-radius: var(--radius-md); padding: 20px 18px; display: flex; gap: 12px; align-items: flex-start; border: 1px solid var(--gray-100); }
.team-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--sky-pale), var(--sky)); display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--teal-deep); font-weight: 500; text-align: center; line-height: 1.4; }
.team-member-open { background: white; border-radius: var(--radius-md); padding: 20px 18px; display: flex; gap: 12px; align-items: flex-start; border: 1.5px dashed var(--gray-200); transition: border-color 0.3s; }
.team-member-open:hover { border-color: var(--teal); }
.team-open-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; border: 1.5px dashed var(--gray-200); display: flex; align-items: center; justify-content: center; }
.team-member-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; color: var(--text-primary); }
.team-member-role { font-size: 11px; color: var(--teal); margin-bottom: 3px; }
.team-member-bio { font-size: 11px; color: var(--text-secondary); line-height: 1.6; font-weight: 300; }
.team-open-label { font-size: 12px; font-weight: 400; color: var(--text-secondary); margin-bottom: 2px; }
.team-open-role { font-size: 11px; color: var(--teal); }

/* ===================== WORKS ===================== */
#works { background: white; }
.works-inner { max-width: 1100px; margin: 0 auto; }
.works-filter { display: flex; gap: 8px; margin: 36px 0; flex-wrap: wrap; }
.filter-btn { font-size: 12px; padding: 7px 16px; border-radius: 20px; border: 1px solid var(--gray-200); background: transparent; cursor: pointer; color: var(--text-secondary); font-family: 'Noto Sans JP', sans-serif; transition: all 0.2s; }
.filter-btn:hover, .filter-btn.active { background: var(--teal); border-color: var(--teal); color: white; }
.works-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.work-card { background: var(--sky-lightest); border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 32px 28px; transition: background 0.3s, transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.work-card:hover { background: white; transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.work-industry { font-size: 11px; color: var(--teal); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; font-family: 'DM Sans', sans-serif; }
.work-title { font-size: 15px; font-weight: 500; margin-bottom: 12px; line-height: 1.5; color: var(--text-primary); }
.work-challenge { font-size: 12px; color: var(--text-secondary); font-weight: 300; line-height: 1.75; }
.work-result { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-100); }
.work-result-num { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--teal); }
.work-result-label { font-size: 11px; color: var(--text-secondary); line-height: 1.4; }
.work-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 12px; }
.work-tag { font-size: 10px; color: var(--text-light); background: var(--gray-100); padding: 2px 8px; border-radius: 10px; }

/* ===================== CTA ===================== */
#cta { background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%); color: white; position: relative; overflow: hidden; }
#cta::before { content: ''; position: absolute; top: -150px; right: -150px; width: 400px; height: 400px; border-radius: 50%; background: rgba(167,213,223,0.2); }
#cta::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.cta-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
#cta .section-title { color: white; }
#cta .section-lead { color: rgba(255,255,255,0.8); margin: 0 auto 48px; text-align: center; max-width: 500px; }
#cta .section-eyebrow-line { background: rgba(255,255,255,0.5); }
#cta .section-eyebrow-text { color: rgba(255,255,255,0.8); }
.cta-steps { display: flex; gap: 0; margin-bottom: 48px; background: rgba(255,255,255,0.1); border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.cta-step { flex: 1; padding: 22px 18px; border-right: 1px solid rgba(255,255,255,0.1); }
.cta-step:last-child { border-right: none; }
.cta-step-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: rgba(255,255,255,0.7); margin-bottom: 6px; }
.cta-step-title { font-size: 13px; font-weight: 500; margin-bottom: 4px; color: white; }
.cta-step-body { font-size: 11px; color: rgba(255,255,255,0.55); line-height: 1.6; font-weight: 300; }
.cta-form-wrap { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-input { flex: 1; min-width: 240px; max-width: 320px; padding: 13px 18px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: white; font-size: 13px; font-family: 'Noto Sans JP', sans-serif; border-radius: var(--radius-sm); outline: none; transition: border-color 0.2s, background 0.2s; }
.cta-input::placeholder { color: rgba(255,255,255,0.5); }
.cta-input:focus { border-color: white; background: rgba(255,255,255,0.2); }
.btn-white { background: white; color: var(--teal); border: none; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; padding: 13px 28px; border-radius: var(--radius-sm); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.cta-note { margin-top: 16px; font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 300; }

/* ===================== FOOTER ===================== */
footer { background: var(--teal-dark); color: white; padding: 64px 60px 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-mark { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; }
.footer-brand-name { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; color: white; letter-spacing: 0.04em; }
.footer-brand-desc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-col-title { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; font-family: 'DM Sans', sans-serif; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: var(--sky); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); font-weight: 300; }
.footer-policy { font-size: 11px; color: rgba(255,255,255,0.2); text-decoration: none; }
.footer-policy:hover { color: rgba(255,255,255,0.4); }

/* ===================== PRIVACY PAGE ===================== */
#privacy-page { padding: 140px 60px 100px; background: white; }
.privacy-inner { max-width: 800px; margin: 0 auto; }
.privacy-inner h2 { font-size: 16px; font-weight: 500; margin: 32px 0 12px; color: var(--text-primary); }
.privacy-inner p { font-size: 14px; font-weight: 300; line-height: 2; color: var(--text-secondary); margin-bottom: 12px; }

/* ===================== THANKS PAGE ===================== */
#thanks-page { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 120px 60px; text-align: center; }
.thanks-inner { max-width: 500px; }
.thanks-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--sky-pale), var(--sky)); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.thanks-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--text-primary); margin-bottom: 16px; }
.thanks-inner p { font-size: 14px; font-weight: 300; color: var(--text-secondary); line-height: 1.9; margin-bottom: 32px; }

/* ===================== CONTACT PAGE ===================== */
.contact-hero { min-height: 50vh; padding: 120px 60px 64px; background: linear-gradient(150deg, var(--sky-lightest) 0%, var(--sky-pale) 55%, #E4F5F8 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.contact-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 65% 75% at 85% 50%, rgba(167,213,223,0.3) 0%, transparent 65%); }
.contact-hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(47,169,180,0.14); }
.contact-hero-ring-1 { width: 460px; height: 460px; right: -70px; top: 50%; transform: translateY(-50%); animation: chRing 30s linear infinite; }
.contact-hero-ring-2 { width: 290px; height: 290px; right: 75px; top: 50%; transform: translateY(-50%); animation: chRing 20s linear infinite reverse; border-color: rgba(47,169,180,0.22); }
@keyframes chRing { to { transform: translateY(-50%) rotate(360deg); } }
.contact-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 680px; }
.contact-hero-eyebrow { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 22px; animation: fadeUp .7s ease both; }
.contact-hero-eyebrow-line { width: 26px; height: 1px; background: var(--teal); display: inline-block; }
.contact-hero-eyebrow-text { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); }
.contact-hero-h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4.2vw, 52px); font-weight: 300; line-height: 1.3; color: var(--text-primary); margin-bottom: 18px; animation: fadeUp .7s .1s ease both; }
.contact-hero-h1 em { font-style: italic; color: var(--accent); }
.contact-hero-sub { font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--text-secondary); margin-bottom: 26px; animation: fadeUp .7s .2s ease both; }
.contact-hero-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; animation: fadeUp .7s .32s ease both; }
.contact-hero-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--teal-deep); font-family: 'DM Sans', sans-serif; background: white; border: 1px solid rgba(47,169,180,0.22); padding: 6px 14px; border-radius: 20px; box-shadow: var(--shadow-sm); }
.contact-hero-scroll { position: absolute; bottom: 22px; left: 60px; display: flex; align-items: center; gap: 10px; animation: fadeUp .7s .48s ease both; }
.contact-hero-scroll-line { width: 36px; height: 1px; background: var(--gray-200); overflow: hidden; position: relative; }
.contact-hero-scroll-line::after { content: ''; position: absolute; left: -100%; top: 0; width: 100%; height: 100%; background: var(--teal); animation: scrollLine 2s ease-in-out infinite; }
.contact-hero-scroll span { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); font-family: 'DM Sans', sans-serif; }
.contact-trust { background: white; border-bottom: 1px solid var(--gray-100); }
.contact-trust-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); }
.contact-trust-item { text-align: center; padding: 26px 18px; border-right: 1px solid var(--gray-100); }
.contact-trust-item:last-child { border-right: none; }
.contact-trust-num { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 400; color: var(--teal); line-height: 1; margin-bottom: 5px; }
.contact-trust-label { font-size: 12px; font-weight: 300; color: var(--text-light); }
.contact-main { background: var(--sky-lightest); padding: 72px 60px; }
.contact-main-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-section-label { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); font-family: 'DM Sans', sans-serif; padding-bottom: 10px; border-bottom: 1px solid var(--gray-100); margin-bottom: 22px; }
.contact-steps { display: flex; flex-direction: column; }
.contact-step { display: flex; gap: 14px; }
.contact-step-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 30px; }
.contact-step-num { width: 30px; height: 30px; border-radius: 50%; background: var(--teal); color: white; font-size: 13px; font-weight: 500; font-family: 'DM Sans', sans-serif; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-step-line { width: 1px; flex: 1; background: var(--gray-100); margin: 5px 0; min-height: 24px; }
.contact-step-body { padding-bottom: 26px; padding-top: 3px; }
.contact-step-title { font-size: 15px; font-weight: 500; color: var(--text-primary); margin-bottom: 5px; }
.contact-step-desc { font-size: 13px; font-weight: 300; color: var(--text-secondary); line-height: 1.75; margin-bottom: 6px; }
.contact-step-note { display: inline-block; font-size: 11px; color: var(--teal-deep); background: rgba(47,169,180,0.08); border: 1px solid rgba(47,169,180,0.18); padding: 3px 10px; border-radius: 20px; line-height: 1.5; }
.contact-ok-list { display: flex; flex-direction: column; gap: 8px; }
.contact-ok-item { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; font-weight: 300; color: var(--text-secondary); line-height: 1.6; padding: 9px 13px; background: white; border-radius: var(--radius-sm); border: 1px solid var(--gray-100); transition: border-color .2s, box-shadow .2s; }
.contact-ok-item:hover { border-color: rgba(47,169,180,0.3); box-shadow: var(--shadow-sm); }
.contact-info-card { background: white; border-radius: var(--radius-md); border: 1px solid var(--gray-100); overflow: hidden; box-shadow: var(--shadow-sm); }
.contact-info-logo { display: flex; align-items: center; gap: 10px; padding: 16px 18px; border-bottom: 1px solid var(--gray-100); font-size: 13px; font-weight: 500; color: var(--text-primary); font-family: 'DM Sans', sans-serif; }
.contact-info-row { display: flex; padding: 11px 18px; border-bottom: 1px solid var(--gray-100); font-size: 13px; }
.contact-info-row:last-child { border-bottom: none; }
.contact-info-key { width: 76px; font-weight: 400; color: var(--text-secondary); flex-shrink: 0; }
.contact-info-val { font-weight: 300; color: var(--text-primary); }
.contact-form-outer { background: white; border-radius: var(--radius-lg); border: 1px solid var(--gray-100); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-form-header { padding: 26px 32px 18px; background: linear-gradient(135deg, var(--sky-lightest), white); border-bottom: 1px solid var(--gray-100); }
.contact-form-header-title { font-size: 17px; font-weight: 500; color: var(--text-primary); margin-bottom: 5px; }
.contact-form-header-sub { font-size: 13px; font-weight: 300; color: var(--text-secondary); line-height: 1.7; }
.contact-form-alert { margin: 18px 32px 0; display: flex; align-items: flex-start; gap: 9px; padding: 11px 14px; background: rgba(192,57,43,0.06); border: 1px solid rgba(192,57,43,0.2); border-radius: var(--radius-sm); font-size: 13px; color: #c0392b; line-height: 1.6; }
.contact-form-body { padding: 24px 32px 32px; }
.form-label { display: block; font-size: 12px; font-weight: 500; color: var(--text-primary); margin-bottom: 7px; letter-spacing: .03em; }
.form-required { font-size: 10px; color: var(--teal); margin-left: 3px; }
.form-input { width: 100%; padding: 10px 13px; background: var(--sky-lightest); border: 1.5px solid var(--gray-100); font-size: 13px; font-family: 'Noto Sans JP', sans-serif; color: var(--text-primary); border-radius: var(--radius-sm); outline: none; transition: border-color .2s, background .2s, box-shadow .2s; -webkit-appearance: none; appearance: none; }
.form-input:focus { border-color: var(--teal); background: white; box-shadow: 0 0 0 3px rgba(47,169,180,0.1); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236A9AA2' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; }
.form-char-count { font-size: 11px; color: var(--text-light); text-align: right; margin-top: 4px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row { margin-bottom: 18px; }
.form-checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.form-checkbox-label, .form-privacy-label { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; font-size: 13px; font-weight: 300; color: var(--text-secondary); }
.form-checkbox, .form-radio { position: absolute; opacity: 0; width: 0; height: 0; }
.form-checkbox-custom { width: 16px; height: 16px; border-radius: 3px; flex-shrink: 0; border: 1.5px solid var(--gray-200); background: var(--sky-lightest); display: flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s; position: relative; }
.form-checkbox:checked + .form-checkbox-custom { background: var(--teal); border-color: var(--teal); }
.form-checkbox:checked + .form-checkbox-custom::after { content: ''; width: 8px; height: 5px; border-left: 1.5px solid white; border-bottom: 1.5px solid white; transform: rotate(-45deg) translate(1px,-1px); display: block; }
.form-radio-group { display: flex; gap: 14px; flex-wrap: wrap; }
.form-radio-label { display: inline-flex; align-items: center; gap: 7px; cursor: pointer; font-size: 13px; font-weight: 300; color: var(--text-secondary); }
.form-radio-custom { width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; border: 1.5px solid var(--gray-200); background: var(--sky-lightest); transition: border-color .2s; position: relative; }
.form-radio:checked + .form-radio-custom { border-color: var(--teal); }
.form-radio:checked + .form-radio-custom::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.form-link { color: var(--teal); text-decoration: underline; }
.form-validation-msg { padding: 11px 14px; border-radius: var(--radius-sm); font-size: 13px; background: rgba(192,57,43,0.06); border: 1px solid rgba(192,57,43,0.2); color: #c0392b; margin-bottom: 14px; line-height: 1.6; }
.form-submit { width: 100%; padding: 14px; background: var(--teal); color: white; border: none; font-size: 14px; font-weight: 500; font-family: 'Noto Sans JP', sans-serif; cursor: pointer; border-radius: var(--radius-sm); letter-spacing: .04em; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background .2s, transform .2s, box-shadow .2s; box-shadow: 0 4px 16px rgba(39,169,190,0.3); }
.form-submit:hover:not(:disabled) { background: var(--teal-deep); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(39,169,190,0.4); }
.form-submit:disabled { background: var(--gray-400); cursor: not-allowed; box-shadow: none; }
.form-note { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 11px; font-weight: 300; }
@keyframes cSpin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.contact-success { background: white; border-radius: var(--radius-lg); padding: 60px 44px; text-align: center; border: 1px solid var(--gray-100); box-shadow: var(--shadow-md); }
.contact-success-icon { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, var(--sky-pale), var(--sky)); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.contact-success-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; color: var(--text-primary); margin-bottom: 12px; }
.contact-success-body { font-size: 14px; font-weight: 300; color: var(--text-secondary); line-height: 1.9; margin-bottom: 28px; }
.contact-success-body strong { font-weight: 500; color: var(--teal); }
.contact-success-steps { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.contact-success-step { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 300; color: var(--text-secondary); background: var(--sky-lightest); padding: 7px 13px; border-radius: 20px; border: 1px solid var(--gray-100); }
.css-num { width: 18px; height: 18px; border-radius: 50%; background: var(--teal); color: white; font-size: 10px; font-weight: 500; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.css-arrow { color: var(--text-light); font-size: 13px; }
.contact-faq { background: white; padding: 80px 60px; }
.contact-faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { border: 1px solid var(--gray-100); border-radius: var(--radius-md); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--gray-100); cursor: pointer; }
.faq-item:last-child { border-bottom: none; }
.faq-q { display: flex; align-items: flex-start; gap: 13px; padding: 18px 22px; transition: background .2s; }
.faq-item:hover .faq-q, .faq-item.open .faq-q { background: var(--sky-lightest); }
.faq-q-icon { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; background: var(--teal); color: white; font-size: 11px; font-weight: 500; font-family: 'DM Sans', sans-serif; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.faq-q-text { flex: 1; font-size: 14px; font-weight: 500; color: var(--text-primary); line-height: 1.6; }
.faq-toggle { flex-shrink: 0; color: var(--text-light); transition: transform .3s; margin-top: 2px; }
.faq-item.open .faq-toggle { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { display: flex; gap: 13px; padding: 0 22px 18px; }
.faq-a-icon { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; background: var(--sky-pale); color: var(--teal-deep); font-size: 11px; font-weight: 500; font-family: 'DM Sans', sans-serif; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.faq-a p { flex: 1; font-size: 13px; font-weight: 300; color: var(--text-secondary); line-height: 1.85; }
.contact-bottom-cta { background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%); padding: 80px 60px; text-align: center; position: relative; overflow: hidden; }
.contact-bottom-cta::before { content: ''; position: absolute; top: -100px; right: -100px; width: 280px; height: 280px; border-radius: 50%; background: rgba(167,213,223,0.16); pointer-events: none; }
.contact-bottom-cta-inner { position: relative; z-index: 1; }
.contact-bottom-cta-eyebrow { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: .06em; margin-bottom: 12px; font-family: 'DM Sans', sans-serif; }
.contact-bottom-cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3.2vw, 40px); font-weight: 300; color: white; margin-bottom: 32px; line-height: 1.3; }
.contact-bottom-cta-title em { font-style: italic; color: var(--accent); }
.contact-bottom-cta-btn { display: inline-flex; background: white; color: var(--teal); }
.contact-bottom-cta-btn:hover { background: var(--sky-lightest); color: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.14); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  nav, nav.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section, #problems, #why, #services, #about, #works, #cta, footer { padding: 70px 24px; }
  #privacy-page, #thanks-page { padding: 110px 24px 70px; }
  .hero-content { padding: 110px 24px 80px; }
  .hero-scroll { left: 24px; bottom: 28px; }
  .hero-circle-bg, .hero-ring-1, .hero-ring-2, .hero-logo-float, .hero-dots { display: none; }
  .problems-grid, .why-grid, .services-grid, .works-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: repeat(2,1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 44px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .about-team-grid { grid-template-columns: 1fr; }
  .services-flow { flex-direction: column; }
  .services-flow-step::after { display: none; }
  /* Contact responsive */
  #hero { background-position: center top; }
  .hero-content { padding: 110px 24px 80px; }
  .contact-hero { padding: 100px 24px 52px; }
  .contact-hero-ring-1, .contact-hero-ring-2 { display: none; }
  .contact-hero-scroll { left: 24px; }
  .contact-trust-inner { grid-template-columns: repeat(2,1fr); }
  .contact-trust-item:nth-child(2) { border-right: none; }
  .contact-trust-item { border-bottom: 1px solid var(--gray-100); }
  .contact-trust-item:nth-child(3), .contact-trust-item:nth-child(4) { border-bottom: none; }
  .contact-main { padding: 48px 24px; }
  .contact-main-inner { grid-template-columns: 1fr; gap: 44px; }
  .contact-form-body { padding: 20px 20px 26px; }
  .contact-form-header { padding: 20px 20px 14px; }
  .contact-form-alert { margin: 14px 20px 0; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .contact-faq { padding: 60px 24px; }
  .contact-bottom-cta { padding: 60px 24px; }
  .contact-success { padding: 40px 22px; }
}
