/* ===========================
   TOURFIT — Editorial Luxury CSS
   =========================== */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: #0C0C0C;
  background: #FAFAF8;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --yellow:      #FAE100;
  --yellow-dark: #C9B800;
  --black:       #0C0C0C;
  --dark:        #191919;
  --cream:       #FAFAF8;
  --gray-light:  #F2F1ED;
  --gray-mid:    #888;
  --gray-border: #D8D5CE;
  --white:       #FFFFFF;
  --serif:       'Cormorant Garamond', 'Noto Serif KR', Georgia, serif;
  --sans:        'Noto Sans KR', sans-serif;

  /* Section layout */
  --section-pad: 120px 24px;
  --max-w:       1200px;
}

/* ── FULL-BLEED SECTIONS ── */
section, .stats-bar-sec, .cta-sec-wrap, .partners-sec {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* ── CONTAINERS ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* ── SECTION LABELS ── */
.sec-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}
.sec-title-serif {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.sec-title-serif em {
  font-style: italic;
  color: var(--dark);
}
.sec-header { margin-bottom: 16px; }
.sec-desc {
  font-size: 15px;
  color: #777;
  line-height: 2;
  max-width: 560px;
  margin-bottom: 64px;
}


/* ═══════════════════════════
   FADE-IN ANIMATIONS (CSS-only)
   ═══════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal-up    { animation: fadeUp    0.72s cubic-bezier(0.22, 1, 0.36, 1) both; }
.reveal-left  { animation: fadeLeft  0.72s cubic-bezier(0.22, 1, 0.36, 1) both; }
.reveal-right { animation: fadeRight 0.72s cubic-bezier(0.22, 1, 0.36, 1) both; }


/* ═══════════════════════════
   HERO
   ═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    url('https://company.tourfit.kr/img/sub/subTop_bg02.jpg')
    center center / cover no-repeat;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.60) 55%,
    rgba(10, 10, 10, 0.30) 100%
  );
  z-index: 1;
}
/* Grain texture overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px 100px;
  width: 100%;
}
.hero-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 600;
}
.hero-dot { color: rgba(250,225,0,0.4); font-size: 10px; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 300;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 32px;
}
.hero-title-serif  { font-weight: 300; font-style: italic; color: rgba(255,255,255,0.85); }
.hero-title-bold   { font-weight: 700; font-style: normal; font-family: var(--sans); letter-spacing: -3px; line-height: 0.95; }
.hero-title-accent { color: var(--yellow); }
.hero-title-brand  {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: var(--yellow);
  font-size: 0.85em;
  letter-spacing: 2px;
}
.hero-title-brand em { font-style: normal; font-weight: 300; }

.hero-rule {
  width: 48px;
  height: 2px;
  background: var(--yellow);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 52px;
  line-height: 2;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px 15px 32px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.hero-cta:hover  { background: var(--yellow-dark); transform: scale(1.02); }
.hero-cta:focus  { outline: 3px solid var(--yellow); outline-offset: 4px; }
.hero-cta:active { transform: scale(0.97); }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity 0.4s;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(250,225,0,0.6));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}
.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(250,225,0,0.5);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  font-weight: 500;
}


/* ═══════════════════════════
   STATS BAR
   ═══════════════════════════ */
.stats-bar-sec {
  background: var(--black);
  padding: 0;
}
.stats-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  text-align: center;
  padding: 0 60px;
  flex: 1;
  min-width: 140px;
}
.stat-val {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-lbl {
  font-family: var(--sans);
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}


/* ═══════════════════════════
   SERVICES
   ═══════════════════════════ */
.services-sec {
  padding: var(--section-pad);
  background: var(--cream);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-border);
}
.svc-card {
  background: var(--cream);
  padding: 44px 28px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-card:hover { background: var(--white); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }
.svc-card:hover .svc-num-bg { opacity: 0.06; }

.svc-num-bg {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--serif);
  font-size: 88px;
  font-weight: 700;
  color: var(--dark);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s;
}
.svc-content { position: relative; z-index: 1; }
.svc-tag {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow-dark);
  font-weight: 700;
  margin-bottom: 16px;
}
.svc-name {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.35;
}
.svc-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.95;
  margin-bottom: 24px;
}
.svc-arrow {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--yellow-dark);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}


/* ═══════════════════════════
   ABOUT
   ═══════════════════════════ */
.about-sec {
  padding: 0;
  background: var(--white);
}
.about-layout {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 680px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.about-visual {
  position: relative;
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 560px;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-visual:hover .about-img { transform: scale(1.03); }
.about-img-caption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-weight: 500;
}

.about-text {
  padding: 80px 72px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-quote {
  margin: 28px 0 32px;
  padding: 0;
  border: none;
  position: relative;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.7;
  color: var(--yellow);
  margin-bottom: 12px;
  display: block;
  font-style: italic;
}
.about-quote p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--dark);
  font-style: italic;
}
.about-quote p strong {
  font-style: normal;
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 1px;
}
.about-body {
  font-size: 14px;
  color: #666;
  line-height: 2.1;
  margin-bottom: 16px;
}
.ceo-sig {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-border);
}
.ceo-accent-bar {
  width: 3px;
  height: 44px;
  background: var(--yellow);
  flex-shrink: 0;
}
.ceo-name-kr {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.ceo-title-en {
  font-size: 11px;
  color: var(--gray-mid);
  letter-spacing: 0.5px;
}


/* ═══════════════════════════
   COMPANY INFO
   ═══════════════════════════ */
.info-sec {
  padding: var(--section-pad);
  background: #0E0E0E;
}
.info-header { margin-bottom: 64px; }
.info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.info-table { width: 100%; border-collapse: collapse; }
.info-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.info-table tr:last-child { border-bottom: none; }
.info-table th {
  padding: 18px 24px 18px 0;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  text-align: left;
  white-space: nowrap;
  width: 148px;
  letter-spacing: 0.5px;
}
.info-table td {
  padding: 18px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  line-height: 1.65;
}

/* Office cards */
.info-right { display: flex; flex-direction: column; gap: 2px; }
.office-card {
  display: flex;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s;
}
.office-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--yellow);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.office-card:hover { background: rgba(255,255,255,0.025); border-color: rgba(255,255,255,0.12); }
.office-card:hover::before { transform: scaleY(1); }

.office-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 4px;
  letter-spacing: -1px;
}
.office-tag {
  font-size: 9px;
  letter-spacing: 3.5px;
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.office-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.office-addr {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.9;
}
.office-tel {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.5px;
}


/* ═══════════════════════════
   HISTORY
   ═══════════════════════════ */
.history-sec {
  padding: var(--section-pad);
  background: var(--cream);
}
.history-timeline {
  margin-top: 64px;
  position: relative;
  padding-top: 32px;
}
.timeline-line {
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  background: var(--gray-border);
  width: 100%;
}
.timeline-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--yellow);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.timeline-line.animated::after { width: 100%; }

.history-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.h-item {
  padding: 28px 24px 28px 0;
  position: relative;
  border-right: 1px solid var(--gray-border);
  padding-right: 28px;
}
.h-item:last-child { border-right: none; }
.h-item:first-child { padding-left: 0; }
.h-item:not(:first-child) { padding-left: 28px; }

.h-dot {
  position: absolute;
  top: -39px;
  left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-border);
  transition: background 0.3s, transform 0.3s;
}
.h-dot.active { background: var(--yellow); }
.h-item:hover .h-dot { background: var(--yellow); transform: scale(1.5); }

.h-year {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1;
}
.h-year.active { color: var(--yellow-dark); }
.h-events li {
  font-size: 13px;
  color: #666;
  line-height: 2;
  padding-left: 14px;
  position: relative;
}
.h-events li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--yellow-dark);
  opacity: 0.6;
}


/* ═══════════════════════════
   PARTNERS
   ═══════════════════════════ */
.partners-sec {
  padding: 96px 0;
  background: var(--white);
}
.partners-head {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 56px;
}
.marquee-wrap {
  overflow: hidden;
  position: relative;
}
.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-left  { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(to left,  var(--white), transparent); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.p-item {
  flex: 0 0 180px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-right: 1px solid var(--gray-border);
}
.p-item img {
  max-width: 110px;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.3);
  transition: filter 0.35s;
}
.p-item:hover img { filter: grayscale(0%) opacity(1); }


/* ═══════════════════════════
   NEWS
   ═══════════════════════════ */
.news-sec {
  padding: var(--section-pad);
  background: var(--cream);
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.view-all {
  font-size: 13px;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gray-border);
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.view-all:hover { color: var(--dark); border-color: var(--dark); gap: 10px; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-border);
}
.news-card {
  display: block;
  background: var(--cream);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.news-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card:hover { background: var(--white); }
.news-card:hover::after { transform: scaleX(1); }
.news-card:hover .n-arrow { opacity: 1; transform: translateX(0); }

.n-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.n-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-notice { background: var(--dark); color: var(--cream); }
.badge-event  { background: var(--yellow); color: var(--dark); }

.n-date {
  font-size: 11px;
  color: var(--gray-mid);
  letter-spacing: 1px;
}
.n-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 20px;
}
.n-arrow {
  font-size: 18px;
  color: var(--yellow-dark);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}


/* ═══════════════════════════
   CONTACT CTA
   ═══════════════════════════ */
.cta-sec-wrap {
  background: var(--yellow);
  padding: 0;
}
.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-eyebrow {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 5px;
  color: rgba(25,25,25,0.45);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.cta-sub {
  font-size: 14px;
  color: rgba(25,25,25,0.55);
}

.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}
.cta-phones {
  display: flex;
  gap: 36px;
  align-items: center;
}
.cp-lbl {
  font-size: 9px;
  color: rgba(25,25,25,0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}
.cp-num {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.cp-divider {
  width: 1px;
  height: 36px;
  background: rgba(25,25,25,0.2);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 36px;
  background: var(--dark);
  color: var(--yellow);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, gap 0.2s;
}
.cta-btn:hover  { background: #2a2a2a; gap: 18px; transform: scale(1.02); }
.cta-btn:focus  { outline: 3px solid var(--dark); outline-offset: 4px; }
.cta-btn:active { transform: scale(0.97); }


/* ═══════════════════════════
   RESPONSIVE
   ═══════════════════════════ */
@media (max-width: 1100px) {
  .svc-grid       { grid-template-columns: repeat(2, 1fr); }
  .history-items  { grid-template-columns: repeat(2, 1fr); }
  .h-item:nth-child(2) { border-right: none; }
  .h-item:nth-child(3) { border-top: 1px solid var(--gray-border); }
  .about-text { padding: 64px 48px; }
}

@media (max-width: 900px) {
  .about-layout   { grid-template-columns: 1fr; }
  .about-visual   { min-height: 380px; }
  .about-img      { min-height: 380px; }
  .info-layout    { grid-template-columns: 1fr; gap: 48px; }
  .news-grid      { grid-template-columns: 1fr 1fr; }
  .cta-inner      { flex-direction: column; align-items: flex-start; }
  .cta-right      { align-items: flex-start; }
  .stat           { padding: 0 28px; }
}

@media (max-width: 640px) {
  :root { --section-pad: 72px 20px; }
  .container      { padding: 0 20px; }
  .hero-inner     { padding: 60px 24px 80px; }
  .svc-grid       { grid-template-columns: 1fr; gap: 2px; }
  .history-items  { grid-template-columns: 1fr; }
  .h-item         { border-right: none; border-bottom: 1px solid var(--gray-border); }
  .h-item:nth-child(2) { border-right: none; }
  .h-item:nth-child(3) { border-top: none; }
  .h-dot          { top: -32px; }
  .news-grid      { grid-template-columns: 1fr; }
  .cta-inner      { padding: 48px 24px; }
  .cta-phones     { flex-direction: column; gap: 16px; align-items: flex-start; }
  .cp-divider     { width: 36px; height: 1px; }
  .stats-bar      { padding: 36px 20px; gap: 16px; }
  .stat           { padding: 0 16px; }
  .stat-divider   { height: 32px; }
  .about-text     { padding: 48px 24px; }
  .info-right     { margin-top: 0; }
  .hero-scroll-indicator { display: none; }
}
