:root {
  --primary-turquoise: #25D3CC;
  --light-aqua: #A8E7E2;
  --deep-navy: #0B1F33;
  --supporting-blue: #12395C;
  --light-bg: #F5F8F9;
  --white: #FFFFFF;
  --dark-text: #1F2933;
  --turquoise: var(--primary-turquoise);
  --aqua: var(--light-aqua);
  --navy: var(--deep-navy);
  --blue: var(--supporting-blue);
  --light: var(--light-bg);
  --text: var(--dark-text);
  --muted-text: #657684;
  --line: #DCE7EA;
  --line-strong: #BFD2D8;
  --shadow: 0 28px 80px rgba(11, 31, 51, 0.14);
  --soft-shadow: 0 16px 42px rgba(11, 31, 51, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#yaklasim,
#kimlere,
#hizmetler,
#surec,
#ofis {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(37, 211, 204, 0.45);
  outline-offset: 4px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 108px 0;
}

.section-tight {
  padding: 34px 0;
}

.muted {
  background: var(--light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 234, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(11, 31, 51, 0.04);
  transition: box-shadow 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 38px rgba(11, 31, 51, 0.09);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(11, 31, 51, 0.09);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted-text);
  font-size: 12px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease, font-weight 220ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--turquoise);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: center;
  transition: opacity 220ms ease, transform 220ms ease;
}

.nav-menu a:hover {
  color: var(--blue);
}

.nav-link:hover::after {
  opacity: 0.45;
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--navy);
  font-weight: 900;
}

.nav-link.active::after {
  height: 3px;
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px !important;
  color: var(--white) !important;
  background: var(--navy);
  border: 1px solid rgba(37, 211, 204, 0.24) !important;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(37, 211, 204, 0.24), transparent 28%),
    linear-gradient(122deg, var(--navy) 0%, var(--blue) 62%, #071827 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 82%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 211, 204, 0.7), transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 72px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--turquoise);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-positioning {
  margin-bottom: 22px;
}

.hero-positioning p {
  margin: 0;
  color: var(--turquoise);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.hero-positioning span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 700;
}

.hero h1,
h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(42px, 5.7vw, 74px);
}

.hero-subtitle {
  max-width: 730px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.identity-line {
  margin-top: 30px;
  padding: 20px 22px;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(168, 231, 226, 0.22);
  border-left: 4px solid var(--turquoise);
  border-radius: var(--radius);
}

.identity-line strong,
.identity-line span {
  display: block;
}

.identity-line strong {
  font-size: 20px;
}

.identity-line span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

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

.btn-primary {
  color: var(--navy);
  background: var(--turquoise);
  border-color: var(--turquoise);
  box-shadow: 0 18px 38px rgba(37, 211, 204, 0.24);
}

.btn-primary:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  box-shadow: 0 24px 48px rgba(37, 211, 204, 0.3);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-secondary:hover {
  border-color: var(--turquoise);
  background: rgba(37, 211, 204, 0.11);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.profile-card {
  position: relative;
  display: grid;
  justify-items: center;
}

.portrait-stage {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(37, 211, 204, 0.45);
  border-radius: 50%;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    0 0 42px rgba(37, 211, 204, 0.12);
}

.portrait-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.profile-body {
  width: min(420px, 100%);
  margin-top: 22px;
  padding: 22px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(168, 231, 226, 0.28);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.profile-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-name {
  font-size: 24px;
  margin: 0 !important;
  color: var(--navy) !important;
  font-weight: 900;
  line-height: 1.08;
}

.profile-body p {
  margin: 8px 0 0;
  color: var(--muted-text);
}

.profile-note {
  margin-top: 16px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--blue) !important;
  font-weight: 800;
}

.icon {
  width: 60px;
  height: 60px;
  padding: 14px;
  flex: 0 0 auto;
  color: var(--navy);
  background: linear-gradient(145deg, rgba(168, 231, 226, 0.72), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(37, 211, 204, 0.28);
  border-radius: 16px;
  stroke: currentColor;
  stroke-width: 2.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.08);
  transition: color 240ms ease, transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.icon-badge {
  width: 70px;
  height: 70px;
  padding: 9px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--white);
  border: 2px solid rgba(37, 211, 204, 0.45);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}

.icon-badge img {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.trust {
  background: var(--light);
  border-top: 1px solid rgba(220, 231, 234, 0.9);
  border-bottom: 1px solid rgba(220, 231, 234, 0.9);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.trust-card {
  min-height: 230px;
  padding: 30px 24px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(37, 211, 204, 0.18);
  border-top: 3px solid rgba(37, 211, 204, 0.48);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 211, 204, 0.58);
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-card:hover .icon {
  color: var(--turquoise);
  border-color: rgba(37, 211, 204, 0.7);
  box-shadow: 0 16px 36px rgba(37, 211, 204, 0.2);
  transform: scale(1.06);
}

.trust-card:hover .icon-badge {
  border-color: rgba(37, 211, 204, 0.7);
  box-shadow: 0 16px 36px rgba(37, 211, 204, 0.2);
  transform: scale(1.05);
}

.trust-card .icon,
.trust-card .icon-badge {
  margin-bottom: 22px;
}

.trust-card strong,
.trust-card span {
  display: block;
}

.trust-card strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.16;
}

.trust-card span {
  margin-top: 12px;
  color: var(--muted-text);
  font-size: 15px;
  line-height: 1.45;
}

.split,
.output-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 68px;
}

h2 {
  color: var(--navy);
  font-size: clamp(34px, 4.4vw, 54px);
}

.intro-copy {
  position: relative;
  padding: 34px;
  color: #384657;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 18px;
}

.intro-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 30px;
  width: 4px;
  background: var(--turquoise);
}

.intro-copy p:first-child {
  margin-top: 0;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  position: relative;
  max-width: 860px;
  margin-bottom: 56px;
  padding-bottom: 18px;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 3px;
  background: var(--turquoise);
  border-radius: 999px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted-text);
  font-size: 18px;
}

.section-support {
  margin-top: 18px;
  color: var(--muted-text);
  font-size: 18px;
}

.card-grid,
.service-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.five-grid {
  grid-template-columns: repeat(5, 1fr);
}

.info-card,
.service-card,
.process-step,
.contact-card,
.office-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(37, 211, 204, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.info-card:hover,
.service-card:hover,
.process-step:hover,
.contact-card:hover,
.office-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 211, 204, 0.45);
  box-shadow: var(--shadow);
}

.info-card:hover .icon,
.service-card:hover .icon,
.process-step:hover .icon,
.contact-card:hover .icon,
.office-card:hover .icon,
.output-list li:hover .icon {
  color: var(--turquoise);
  border-color: rgba(37, 211, 204, 0.7);
  box-shadow: 0 16px 36px rgba(37, 211, 204, 0.18);
  transform: scale(1.06);
}

.info-card:hover .icon-badge,
.service-card:hover .icon-badge,
.process-step:hover .icon-badge {
  background: var(--white);
  border-color: rgba(37, 211, 204, 0.7);
  box-shadow: 0 16px 36px rgba(37, 211, 204, 0.18);
  transform: scale(1.06);
}

.info-card {
  padding: 24px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.info-card .icon,
.info-card .icon-badge,
.process-step .icon,
.process-step .icon-badge {
  margin-bottom: 18px;
}

h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.25;
  font-size: 19px;
}

.info-card p,
.service-card p,
.process-step p,
.contact-card p,
.contact-lead,
.office-card p {
  color: var(--muted-text);
}

.info-card p,
.service-card p,
.process-step p,
.office-card p {
  margin: 14px 0 0;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 28px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
}

.operation-card {
  grid-column: 1 / -1;
  min-height: 0;
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.service-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.service-card.wide {
  grid-column: auto;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 58px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 211, 204, 0.45), transparent);
  pointer-events: none;
}

.process-step {
  position: relative;
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.process-step h3 {
  min-height: 48px;
}

.process-step p {
  flex: 1;
}

.step-number {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
}

.output-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.output-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #354456;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.output-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 211, 204, 0.45);
  background: var(--white);
}

.output-list .icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 13px;
  margin-top: 2px;
}

.quote-section {
  padding: 90px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 0%, rgba(37, 211, 204, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.quote-box {
  max-width: 990px;
}

.quote-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--turquoise);
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

blockquote {
  margin: 0;
  padding-left: 30px;
  border-left: 4px solid var(--turquoise);
}

blockquote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.35;
}

blockquote p + p {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 23px);
}

.contact {
  background: var(--light);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) 1.14fr;
  gap: 22px;
  align-items: stretch;
}

.contact-card {
  padding: 34px;
}

.contact-logo {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
  margin-bottom: 22px;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.08);
}

.contact-card dl {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.contact-card dl div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-card dt {
  display: flex;
  align-items: center;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.contact-card dt .icon {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 18px;
}

.contact-icon-badge {
  width: 52px;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  background: var(--white);
  border: 2px solid rgba(37, 211, 204, 0.62);
}

.contact-icon-img {
  display: block;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.contact-icon-img {
  width: 32px;
  height: 32px;
}

.contact-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.3;
  overflow-wrap: anywhere;
  min-width: 0;
}

.contact-card dd a {
  display: inline-flex;
  align-items: center;
}

.contact-card a:not(.btn):hover {
  color: var(--blue);
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.office-card {
  position: relative;
  padding: 32px;
  overflow: hidden;
}

.office-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(37, 211, 204, 0.14), transparent 68%);
  pointer-events: none;
}

.office-card .icon {
  margin-bottom: 18px;
}

.office-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.office-card p {
  font-size: 17px;
}

.office-card p strong {
  color: var(--navy);
}

.map-section {
  margin-top: 22px;
}

.map-card {
  background: var(--white);
  border: 1px solid rgba(37, 211, 204, 0.35);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.map-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 30px 24px;
}

.map-card-header p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted-text);
  font-size: 16px;
}

.map-frame {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(37, 211, 204, 0.22);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
}

.map-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  border: 1px solid rgba(37, 211, 204, 0.45);
  border-radius: 999px;
  background: rgba(37, 211, 204, 0.08);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.map-link:hover {
  color: var(--navy);
  border-color: rgba(37, 211, 204, 0.7);
  background: rgba(37, 211, 204, 0.14);
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.74);
  background: #071827;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--turquoise);
  font-weight: 900;
}

.back-to-top {
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 9999;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split,
  .output-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .profile-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .five-grid,
  .service-grid,
  .process-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .operation-card {
    grid-template-columns: 80px 1fr;
  }

  .operation-card p {
    grid-column: 2;
    margin-top: -6px;
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 840px) {
  .brand small {
    white-space: normal;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 90px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 12px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 74px 0;
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .nav-menu {
    top: 82px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-positioning p {
    font-size: 14px;
  }

  .hero-positioning span {
    font-size: 14px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .contact-card dl div {
    gap: 12px;
    min-width: 0;
  }

  .contact-card dd {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
    line-height: 1.25;
    white-space: nowrap;
    overflow-wrap: normal;
  }

  .contact-card dd a {
    white-space: nowrap;
  }

  .map-card-header {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .map-link {
    width: 100%;
  }

  .map-frame iframe {
    height: 280px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .profile-card {
    max-width: none;
  }

  .portrait-stage {
    width: min(320px, 82vw);
  }

  .trust-grid,
  .five-grid,
  .service-grid,
  .process-grid,
  .output-list {
    grid-template-columns: 1fr;
  }

  .operation-card {
    grid-column: auto;
    display: flex;
    min-height: 330px;
  }

  .operation-card p {
    grid-column: auto;
    margin-top: 14px;
  }

  .intro-copy {
    padding: 28px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand strong {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 32px;
  }

  .identity-line,
  .profile-body,
  .contact-card,
  .office-card {
    padding: 22px;
  }

  .portrait-stage {
    width: min(280px, 82vw);
  }
}

@media (max-width: 380px) {
  .contact-card dl div {
    gap: 10px;
  }

  .contact-card dd {
    font-size: 13px;
    letter-spacing: -0.01em;
  }
}

.fixed-office-icon-badge {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  border: 2px solid #7FE7E1 !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  margin: 0 0 22px 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
  position: relative !important;
}

.fixed-office-icon-img {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}
