@charset "UTF-8";

/**
 * FINHI Enterprise Unified CSS Stylesheet
 * 핀하이 전체 웹사이트 통합 스타일시트
 */

/* ==========================================================================
   1. Design Tokens & Global CSS Reset
   ========================================================================== */
:root {
  --ink: #14233c;
  --muted: #61718b;
  --line: #dfe6f0;
  --cream: #fffaf0;
  --blue: #536dff;
  --aqua: #30d7c3;
  --yellow: #ffd85a;
  --coral: #ff7d72;
  --tint: #f4f6ff;
  --lavender: #eeeaff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", "Nanum Square Round", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: "Nanum Square Round", sans-serif;
  letter-spacing: -2px;
  margin: 0;
}

/* Base Layout Container */
.wrap {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}

section {
  padding: 92px 0;
}

/* ==========================================================================
   2. Navigation Header & Footer Component Styles
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 81px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(223, 230, 240, 0.6);
}

.nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 97px;
  height: auto;
}

.menu {
  display: flex;
  gap: 2px;
  color: #536077;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  background: var(--tint);
  padding: 6px;
  border-radius: 99px;
  border: 1px solid rgba(223, 230, 240, 0.7);
}

.menu > a,
.menu-dropdown > a {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 99px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.menu > a:hover,
.menu-dropdown > a:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.7);
}

.menu > a.active,
.menu-dropdown > a.active {
  color: var(--blue);
  font-weight: 800;
  background: #fff;
  box-shadow: 0 4px 12px rgba(83, 109, 255, 0.16);
}

.menu-dropdown {
  position: relative;
}

.menu-dropdown > a:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.menu-dropdown:hover > a:after,
.menu-dropdown:focus-within > a:after {
  transform: rotate(225deg) translateY(2px);
}

.submenu {
  position: absolute;
  z-index: 10;
  top: calc(100% + 13px);
  left: -14px;
  width: 250px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(21, 34, 58, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}

.submenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 12px;
  font-size: 13px;
  white-space: nowrap;
}

.submenu a:hover {
  background: var(--tint);
}

.submenu-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
}

.submenu-icon.blue { background: #e8ebff; color: var(--blue); }
.submenu-icon.aqua { background: #dbfbf6; color: #0e8e7e; }
.submenu-icon.yellow { background: #fff3c6; color: #a3760a; }
.submenu-icon.coral { background: #ffe4e0; color: #d9564a; }

.submenu-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--ink);
  font-weight: 700;
}

.submenu-text small {
  font-weight: 500;
  color: var(--muted);
  font-size: 11px;
}

.menu a.active {
  color: var(--blue);
  font-weight: 800;
}

.submenu a.active {
  background: var(--tint);
}

.submenu a.active .submenu-text {
  color: var(--blue);
}

.menu-dropdown:hover .submenu,
.menu-dropdown:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-action {
  padding: 11px 17px;
  border-radius: 99px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

footer {
  background: var(--ink);
  color: #fff;
  padding: 50px 0 27px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 40px;
}

footer .brand img {
  filter: brightness(0) invert(1);
}

footer p {
  color: #b8c4d6;
  margin: 12px 0 0;
  line-height: 1.55;
  font-size: 14px;
}

.contact {
  display: flex;
  gap: 27px;
  color: #dbe4f4;
  font-size: 14px;
  align-items: flex-start;
}

.contact b {
  display: block;
  color: #fff;
  margin-bottom: 7px;
}

.copyright {
  border-top: 1px solid #2e3c53;
  padding-top: 22px;
  color: #92a0b5;
  font-size: 12px;
}

/* ==========================================================================
   3. Main Homepage (index.html) Specific Styles
   ========================================================================== */
.hero {
  background: var(--cream);
  overflow: hidden;
  padding: 60px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 13px;
  border-radius: 99px;
  background: #e8ebff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.hero h1 {
  font-size: clamp(38px, 5.2vw, 68px);
  letter-spacing: -3px;
  line-height: 1.1;
  margin: 20px 0;
  word-break: keep-all;
}

.accent {
  color: var(--blue);
}

.hero p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 530px;
  margin: 0 0 28px;
  word-break: keep-all;
}

.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 21px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(83, 109, 255, 0.22);
}

.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

/* AI Code Assistant Interactive Artwork Box */
.hero-art {
  min-height: 410px;
  position: relative;
}

.bubble {
  position: absolute;
  border-radius: 50%;
}

.bubble.yellow { width: 103px; height: 103px; background: var(--yellow); right: 1%; top: 3%; }
.bubble.aqua { width: 62px; height: 62px; background: var(--aqua); left: 4%; bottom: 7%; }
.bubble.coral { width: 31px; height: 31px; background: var(--coral); right: 9%; bottom: 13%; }

.dashboard {
  position: absolute;
  inset: 42px 20px 10px 30px;
  background: #fff;
  border-radius: 28px;
  padding: 24px;
  transform: rotate(2.5deg);
  box-shadow: 0 23px 48px rgba(24, 40, 93, 0.11);
  border: 1px solid rgba(223, 230, 240, 0.8);
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pill-ai {
  background: linear-gradient(135deg, #536dff, #6b4eff);
  color: #fff;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 99px;
  letter-spacing: 0.05em;
}

.dots { display: flex; gap: 5px; }
.dots b { display: block; width: 7px; height: 7px; background: #dce3ee; border-radius: 50%; }

.ai-models-bar { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.ai-chip { display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; border-radius: 8px; font-size: 11px; font-weight: 700; background: #f4f6ff; border: 1px solid #e1e7f5; }
.ai-chip.claude { color: #d96b27; background: #fff5ee; border-color: #fcdac6; }
.ai-chip.gemini { color: #1a73e8; background: #eef4ff; border-color: #c6dafc; }
.ai-chip.gpt { color: #10a37f; background: #edfbf6; border-color: #bcf2e3; }

.code-box {
  background: #142036;
  border-radius: 15px;
  padding: 13px 15px;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 12px;
  color: #dbe4f4;
  margin-bottom: 14px;
  line-height: 1.6;
}

.code-line { display: flex; gap: 8px; align-items: center; }
.code-line.res { margin-top: 4px; color: #95abdf; }
.code-kw { color: var(--yellow); font-weight: 700; }
.code-fn { color: var(--aqua); font-weight: 700; }
.code-str { color: #ff9f95; }
.code-tag { margin-left: auto; background: rgba(48, 215, 195, 0.2); color: var(--aqua); padding: 2px 7px; border-radius: 4px; font-size: 10px; font-weight: 700; font-family: "DM Sans", sans-serif; }

.dash-bottom { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 12px; }
.mini { min-height: 75px; border-radius: 15px; padding: 12px 14px; }
.mini.purple { background: #efedff; }
.mini.aqua { background: #dbfbf6; }
.mini-label { display: block; color: #63708d; font-size: 11px; margin-bottom: 5px; font-weight: 600; }
.mini strong { font-size: 18px; letter-spacing: -0.7px; }
.mini strong small { font-size: 11px; font-weight: 700; color: var(--blue); margin-left: 3px; }

/* Features & Sectors */
.section-heading { max-width: 585px; margin-bottom: 39px; }
.section-heading h2 { font-size: 36px; line-height: 1.25; margin: 0 0 12px; word-break: keep-all; }
.section-heading p { color: var(--muted); line-height: 1.6; margin: 0; word-break: keep-all; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.feature { padding: 27px; border: 1px solid var(--line); border-radius: 22px; transition: transform 0.2s, box-shadow 0.2s; }
.feature:hover { transform: translateY(-4px); box-shadow: 0 14px 26px rgba(21, 34, 58, 0.06); }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; margin-bottom: 22px; font-size: 23px; }
.icon.blue { background: #e8ebff; }
.icon.aqua { background: #dbfbf6; }
.icon.yellow { background: #fff3c6; }
.feature h3 { margin: 0 0 10px; letter-spacing: -0.7px; font-size: 19px; }
.feature p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.65; word-break: keep-all; }

.solution { background: #f5f7ff; }
.solution-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 65px; align-items: center; }
.solution-list { display: grid; gap: 10px; }
.solution-item { background: #fff; border-radius: 16px; padding: 16px 17px; display: flex; gap: 14px; align-items: center; font-weight: 700; }
.solution-item span { flex: none; width: 30px; height: 30px; display: grid; place-items: center; background: var(--lavender); border-radius: 10px; }
.solution-note { position: relative; min-height: 330px; background: var(--ink); border-radius: 27px; padding: 33px; color: #fff; overflow: hidden; }
.solution-note:before, .solution-note:after { content: ""; position: absolute; border-radius: 50%; }
.solution-note:before { width: 225px; height: 225px; background: var(--blue); right: -70px; bottom: -90px; }
.solution-note:after { width: 90px; height: 90px; background: var(--yellow); right: 35px; top: -35px; }
.solution-note h3 { position: relative; z-index: 1; font-size: 29px; letter-spacing: -1.5px; max-width: 260px; }
.solution-note p { position: relative; z-index: 1; color: #c3cde3; line-height: 1.65; max-width: 275px; }
.quote { position: absolute; z-index: 2; bottom: 27px; left: 33px; font-size: 13px; font-weight: 700; display: flex; gap: 10px; align-items: center; }
.quote:before { content: "✦"; display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: var(--aqua); color: var(--ink); }

.sectors { padding-bottom: 105px; }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sector { position: relative; padding: 28px; min-height: 210px; border-radius: 22px; overflow: hidden; }
.sector:nth-child(1) { background: #e9edff; }
.sector:nth-child(2) { background: #dcfaf5; }
.sector:nth-child(3) { background: #fff2c8; }
.sector .sector-icon { position: absolute; right: 19px; bottom: 16px; font-size: 62px; opacity: 0.9; }
.sector h3 { font-size: 22px; }
.sector p { color: #4e5f77; width: 75%; line-height: 1.5; font-size: 14px; word-break: keep-all; }
.sector a { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.sector-clients { margin-top: 10px; font-size: 11px; font-weight: 700; color: #536077; line-height: 1.6; word-break: keep-all; }

.clients-strip { margin-top: 40px; padding-top: 32px; border-top: 1px solid #e5e9f2; }
.clients-label { display: block; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; margin-bottom: 14px; }
.clients-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.clients-chips span { font-size: 13px; font-weight: 700; color: var(--ink); background: var(--tint); padding: 7px 14px; border-radius: 20px; }

/* ==========================================================================
   4. Services & Consulting (finhi-services.html) Specific Styles
   ========================================================================== */
.service-hero { padding: 76px 0 82px; background: var(--cream); overflow: hidden; }
.service-hero .hero-grid { align-items: stretch; }
.hero-p { max-width: 540px; margin: 0; color: var(--muted); line-height: 1.75; font-size: 17px; word-break: keep-all; }

.hero-visual { position: relative; min-height: 330px; padding: 34px; border-radius: 28px; background: var(--ink); color: #fff; overflow: hidden; box-shadow: 0 22px 48px rgba(24, 40, 93, 0.11); }
.hero-visual:before, .hero-visual:after { content: ""; position: absolute; border-radius: 50%; }
.hero-visual:before { width: 220px; height: 220px; right: -60px; bottom: -90px; background: var(--blue); }
.hero-visual:after { width: 85px; height: 85px; right: 30px; top: -25px; background: var(--yellow); }
.hero-visual > * { position: relative; z-index: 1; }
.hero-visual strong { display: block; max-width: 280px; font-size: 26px; line-height: 1.3; letter-spacing: -1.2px; }
.hero-visual p { margin-top: 14px; max-width: 280px; color: #c8d1e4; font-size: 14px; line-height: 1.6; }
.method-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding: 8px 14px; border-radius: 99px; background: rgba(255, 255, 255, 0.1); font-size: 12px; font-weight: 700; color: var(--aqua); border: 1px solid rgba(48, 215, 195, 0.3); }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head h2 { font-size: 36px; line-height: 1.25; margin: 0 0 14px; word-break: keep-all; }
.section-head p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; word-break: keep-all; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; padding: 32px 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(21, 34, 58, 0.06); }
.num-tag { width: 38px; height: 38px; border-radius: 12px; background: #e8ebff; color: var(--blue); font-size: 13px; font-weight: 800; display: grid; place-items: center; margin-bottom: 20px; }
.service-card h3 { font-size: 21px; margin: 0 0 12px; letter-spacing: -0.8px; word-break: keep-all; }
.service-card p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.65; flex: 1; word-break: keep-all; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.tag { font-size: 11px; font-weight: 700; color: #536077; background: var(--tint); padding: 5px 9px; border-radius: 6px; }

.bg-tint { background: var(--tint); }
.bg-cream { background: var(--cream); }
.num-tag.aqua { background: #dbfbf6; color: #0e8e7e; }
.num-tag.purple { background: #efedff; color: #6b4eff; }
.num-tag.method { width: auto; height: auto; padding: 6px 12px; border-radius: 10px; font-size: 11px; letter-spacing: 0.05em; }

/* ==========================================================================
   5. About Us (finhi-about.html) Specific Styles
   ========================================================================== */
.about-hero { padding: 76px 0 82px; overflow: hidden; background: var(--cream); }
.about-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: stretch; }
.about-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; }
.about-kicker:before { content: ""; width: 28px; height: 2px; background: var(--blue); }
.about-hero p { max-width: 545px; margin: 0; color: var(--muted); line-height: 1.75; font-size: 17px; word-break: keep-all; }
.about-visual { position: relative; min-height: 335px; padding: 34px; border-radius: 28px; background: var(--ink); color: #fff; overflow: hidden; box-shadow: 0 22px 48px rgba(24, 40, 93, 0.11); }
.about-visual:before, .about-visual:after { content: ""; position: absolute; border-radius: 50%; }
.about-visual:before { width: 230px; height: 230px; right: -66px; bottom: -108px; background: var(--blue); }
.about-visual:after { width: 88px; height: 88px; right: 30px; top: -30px; background: var(--yellow); }
.about-visual > * { position: relative; z-index: 1; }
.about-visual strong { display: block; max-width: 260px; font-size: 29px; line-height: 1.3; letter-spacing: -1.4px; }
.about-visual p { margin-top: 17px; max-width: 260px; color: #c8d1e4; font-size: 14px; }
.expertise-list { display: grid; gap: 11px; margin-top: 26px; }
.expertise-list span { display: flex; align-items: center; gap: 9px; color: #eef3ff; font-size: 13px; font-weight: 700; }
.expertise-list span:before { content: "✦"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--aqua); color: var(--ink); font-size: 11px; }

.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: start; }
.about-copy { position: sticky; top: 24px; }
.about-copy p { margin: 0; color: var(--muted); line-height: 1.75; font-size: 16px; word-break: keep-all; }
.promise { margin-top: 27px; padding: 19px 21px; border-radius: 17px; background: var(--tint); color: var(--ink); line-height: 1.55; font-size: 14px; font-weight: 700; }
.history-label { margin: 4px 0 14px; color: #65738d; font-size: 13px; font-weight: 800; letter-spacing: 0.1em; }
.history { display: grid; gap: 14px; }
.history-card { display: grid; grid-template-columns: 78px 1fr; gap: 17px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.year { color: var(--blue); font-size: 20px; font-weight: 800; letter-spacing: -0.8px; }
ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
li { color: #536077; font-size: 14px; line-height: 1.5; word-break: keep-all; }
li b { display: block; color: var(--ink); margin-bottom: 2px; }
li:before { content: ""; display: inline-block; width: 6px; height: 6px; margin: 0 8px 2px 0; border-radius: 50%; background: var(--aqua); }

/* ==========================================================================
   6. Solution Detail Pages (Hi-Five, ESG, NCR, FIN STUDIO) Styles
   ========================================================================== */
.kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 0.1em; }
.kicker:before { content: ""; width: 28px; height: 2px; background: var(--blue); }
.intro { max-width: 580px; margin-bottom: 48px; }
.intro h2 { font-size: 36px; line-height: 1.25; margin: 0 0 12px; word-break: keep-all; }
.intro p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; word-break: keep-all; }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { padding: 30px 24px; border: 1px solid var(--line); border-radius: 22px; background: #fff; transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(21, 34, 58, 0.06); }
.card-num { display: inline-block; font-size: 13px; font-weight: 800; color: var(--blue); background: #e8ebff; padding: 4px 10px; border-radius: 8px; margin-bottom: 18px; }
.card h3 { font-size: 19px; margin: 0 0 10px; word-break: keep-all; }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; word-break: keep-all; }

.detail { background: var(--tint); }
.detail-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.architecture { display: grid; gap: 14px; }
.architecture div { padding: 22px 24px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.architecture strong { display: block; font-size: 17px; margin-bottom: 6px; }
.architecture span { color: var(--muted); font-size: 14px; line-height: 1.5; word-break: keep-all; }

/* ==========================================================================
   7. Unified Mobile Responsive Rules (max-width: 760px)
   ========================================================================== */
@media(max-width: 760px) {
  .wrap { width: calc(100% - 32px); }
  .nav { height: 64px; }
  section { padding: 54px 0; }
  
  /* Hero Mobile Adaptations */
  .hero, .service-hero, .about-hero { padding: 36px 0 48px; }
  .hero-grid, .about-hero-grid, .about-grid, .solution-grid, .detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-copy { position: static; top: auto; }
  
  .hero h1, .about-hero h1 { font-size: clamp(28px, 7vw, 38px); letter-spacing: -1.2px; line-height: 1.2; word-break: keep-all; }
  .hero p, .hero-p, .about-hero p { font-size: 15px; line-height: 1.6; word-break: keep-all; }
  
  .hero-art { min-height: auto; margin-top: 10px; width: 100%; position: relative; }
  .dashboard { position: relative; inset: 0 !important; transform: none !important; width: 100% !important; padding: 16px 14px !important; margin: 0 auto; box-shadow: 0 10px 24px rgba(24, 40, 93, 0.12); }
  
  .code-box { padding: 10px 11px; font-size: 10.5px; margin-bottom: 10px; white-space: pre-wrap; word-break: break-all; line-height: 1.5; }
  .dash-bottom { grid-template-columns: 1fr 1fr; gap: 8px; }
  
  /* Grids Mobile Adaptations */
  .feature-grid, .sector-grid, .service-grid, .cards { grid-template-columns: 1fr !important; gap: 14px; }
  .feature, .service-card, .card { padding: 22px 20px; }
  
  .hero-visual, .about-visual { min-height: 260px; padding: 24px; }
  .hero-visual strong, .about-visual strong { font-size: 22px; }
  
  .section-heading h2, .section-head h2, .intro h2, h2 { font-size: 26px; letter-spacing: -1px; line-height: 1.3; word-break: keep-all; }
  
  .solution-note { min-height: 260px; padding: 24px; }
  .solution-note h3 { font-size: 24px; letter-spacing: -1px; }
  
  .history-card { grid-template-columns: 55px 1fr; gap: 12px; padding: 18px; }
  .year { font-size: 18px; }
  
  .footer-top { display: block; }
  .contact { margin-top: 24px; display: grid; grid-template-columns: 1fr; gap: 14px; }
}
