/* ============================================
   Virtual Procurement Services - Main Styles
   ============================================ */

:root {
  --navy:         #1a2b4a;
  --navy-dark:    #111e33;
  --orange:       #e8622a;
  --orange-hover: #cf4e1e;
  --gray-light:   #f5f6f8;
  --gray-mid:     #e8eaed;
  --gray-text:    #666;
  --text:         #333;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --section-pad:  96px;
  --header-h:     70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body { font-family: var(--font-body); font-size: 15px; color: var(--text); line-height: 1.7; background: #fff; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ===== HEADER ===== */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; height: 70px;
  position: relative;
}
.logo img { height: 52px; width: auto; }
#main-nav {
  position: absolute; left: 50%; transform: translateX(-50%);
}
#main-nav ul { list-style: none; display: flex; gap: 8px; }
.header-contact { margin-left: auto; }
#main-nav ul li a {
  color: var(--text); font-family: var(--font-head); font-size: 13px;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 3px; transition: color 0.2s;
}
#main-nav ul li a:hover { color: var(--orange); }
#main-nav ul li a.active { color: var(--orange); }
.header-contact { display: flex; align-items: center; gap: 20px; white-space: nowrap; }
.phone-link {
  display: flex; align-items: center; gap: 8px;
  color: var(--text); font-family: var(--font-head); font-size: 13px;
  font-weight: 500; transition: color 0.2s;
}
.phone-link:hover { color: var(--orange); }
.phone-link i { color: var(--navy); font-size: 16px; }
.btn-contact {
  background: var(--orange); color: #fff !important;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 3px; transition: background 0.2s;
}
.btn-contact:hover { background: var(--orange-hover); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-nav { display: none; background: #f9f9f9; border-top: 1px solid var(--gray-mid); padding: 12px 24px 20px; }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block; color: var(--text); font-family: var(--font-head); font-size: 13px;
  font-weight: 600; text-transform: uppercase; padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid); letter-spacing: 0.04em;
}
.mobile-nav ul li a:hover { color: var(--orange); }

/* ===== HERO ===== */
.hero {
  padding: var(--section-pad) 0;
  background: #fff;
  min-height: 600px;
  display: flex;
  align-items: center;
  scroll-margin-top: var(--header-h);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-text h1 {
  font-family: var(--font-head); font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 600; line-height: 1.25; color: #000; margin-bottom: 24px;
}
.hero-vvi-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
}
.hero-vvi-link:hover { color: var(--orange-hover); }
.hero-text p { font-size: 16.5px; color: var(--gray-text); margin-bottom: 16px; line-height: 1.75; }
.hero-text p:last-child { margin-bottom: 0; }

/* Hero company cards - combined height matches left column, hover expands one */
.hero-images {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  /* height set by JS to match .hero-text */
}

.hero-company-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex 0.4s ease;
  cursor: pointer;
  min-height: 0;
}

/* Dark overlay on expanded card to improve text legibility */
.hero-company-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.hero-images:hover .hero-company-card:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

/* When any card is hovered, collapse non-hovered to thin strips */
.hero-images:hover .hero-company-card { flex: 0 0 32px; }
/* Expand the hovered card to fill the remaining height */
.hero-images:hover .hero-company-card:hover { flex: 1; }

.hero-company-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.3s;
}

.hero-company-detail {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,43,74,0.55) 0%, rgba(26,43,74,0.72) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
}

.hero-company-card:hover .hero-company-detail {
  opacity: 1;
  transform: translateY(0);
}

.hero-company-detail h5 {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: #fff; margin-bottom: 8px;
}
.hero-company-detail p {
  font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.55; margin-bottom: 12px;
}
.hero-company-detail .btn-learn {
  font-size: 11px; padding: 7px 16px;
}

/* ===== ABOUT SPLIT ===== */
.about-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: stretch;
  background: var(--gray-light);
  scroll-margin-top: var(--header-h);
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.about-text {
  background: transparent;
  padding: var(--section-pad) 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 {
  font-family: var(--font-head); font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700; color: var(--navy); margin-bottom: 20px; line-height: 1.35;
}
.about-text p { font-size: 16px; color: #444; margin-bottom: 16px; line-height: 1.75; }
.about-text p:last-child { margin-bottom: 0; }
.about-text a { color: var(--orange); }
.about-text a:hover { text-decoration: underline; }

/* ===== WHY CHOOSE US - ACCORDION ===== */
.why-us {
  padding: var(--section-pad) 0;
  background: #fff;
  scroll-margin-top: var(--header-h);
}
.why-us h2 {
  font-family: var(--font-head); font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700; color: var(--navy); text-align: center; margin-bottom: 48px;
}

.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
  border: 1px solid var(--gray-mid); border-radius: 4px;
  margin-bottom: 10px; background: #fff; overflow: hidden;
}
.accordion-trigger {
  width: 100%; background: #fff; border: none; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--navy); text-align: left; text-transform: uppercase;
  letter-spacing: 0.04em; transition: background 0.2s, color 0.2s;
}
.accordion-trigger:hover { background: var(--gray-light); color: var(--orange); }
.accordion-trigger.open { background: var(--navy); color: #fff; border-left: 4px solid var(--orange); }
.accordion-trigger.open i { transform: rotate(180deg); }
.accordion-trigger i { flex-shrink: 0; font-size: 12px; transition: transform 0.3s ease; }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}
.accordion-body.open { max-height: 400px; padding: 20px 24px 24px; border-top: 1px solid var(--gray-mid); }
.accordion-body ul { list-style: none; padding: 0; }
.accordion-body ul li {
  font-size: 14px; color: #444; line-height: 1.7;
  padding-left: 18px; position: relative; margin-bottom: 10px;
}
.accordion-body ul li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--orange); font-weight: 700; font-size: 16px; line-height: 1.5;
}
.accordion-body ul li:last-child { margin-bottom: 0; }
.accordion-body a { color: var(--orange); }
.accordion-body a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
#site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding-top: 56px; }
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-contact h5 {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 14px;
}
.footer-contact p { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-bottom: 8px; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-map img { border-radius: 4px; opacity: 0.8; transition: opacity 0.2s; width: 100%; }
.footer-map img:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 32px; text-align: center; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.footer-bottom a:hover { color: rgba(255,255,255,0.9); }

/* ===== UTILITY CLASSES ===== */
.section-pad { padding: var(--section-pad) 0; }
.section-alt  { background: var(--gray-light); }
.section-navy { background: var(--navy); }
.page-banner  { background: var(--navy); padding: 72px 0 64px; text-align: center; }
.page-banner h1 { font-family:var(--font-head); font-size:clamp(28px,4vw,46px); font-weight:800; color:#fff; margin-bottom:16px; line-height:1.2; }
.page-banner p  { font-size:17px; color:rgba(255,255,255,0.72); max-width:640px; margin:0 auto; line-height:1.75; }

.section-heading { text-align:center; margin-bottom:52px; }
.section-heading h2, .section-heading h1 { font-family:var(--font-head); font-size:clamp(22px,2.5vw,32px); font-weight:700; color:var(--navy); margin-bottom:12px; line-height:1.3; }
.section-heading p { font-size:16px; color:var(--gray-text); max-width:620px; margin:0 auto; line-height:1.75; }
.section-heading-light h2, .section-heading-light h1 { color:#fff; }
.section-heading-light p { color:rgba(255,255,255,0.65); }

.split-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.split-text h2 { font-family:var(--font-head); font-size:clamp(20px,2.2vw,28px); font-weight:700; color:var(--navy); margin-bottom:20px; line-height:1.3; }
.split-text p { font-size:15px; color:#444; line-height:1.8; margin-bottom:16px; }
.split-text p:last-child { margin-bottom:0; }
.split-text a { color:var(--orange); }
.split-text a:hover { text-decoration:underline; }

/* stat-highlight: navy box with big orange number */
.stat-highlight { background:var(--navy); border-radius:8px; padding:36px 28px; text-align:center; margin-bottom:16px; }
.stat-highlight .big-num { font-family:var(--font-head); font-size:44px; font-weight:800; color:var(--orange); display:block; line-height:1; margin-bottom:10px; }
.stat-highlight .big-label { font-size:13px; color:rgba(255,255,255,0.72); line-height:1.5; }

/* VVI stats strip */
.vvi-stats { display:flex; justify-content:center; gap:56px; margin-top:48px; }
.vvi-stat { text-align:center; }
.vvi-stat .num { font-family:var(--font-head); font-size:48px; font-weight:800; color:var(--orange); display:block; line-height:1; margin-bottom:8px; }
.vvi-stat .label { font-size:13px; color:rgba(255,255,255,0.65); text-transform:uppercase; letter-spacing:0.06em; font-family:var(--font-head); font-weight:600; }

/* Pricing / centered navy content */
.pricing-content { max-width:700px; margin:0 auto; text-align:center; }
.pricing-content p { font-size:16px; color:rgba(255,255,255,0.8); margin-bottom:16px; line-height:1.8; }
.cta-center { text-align:center; margin-top:36px; }

/* value-card supports both h3 and h4 */
.value-card h3, .value-card h4 { font-family:var(--font-head); font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:0.07em; color:var(--navy); margin-bottom:10px; }
/* team-card supports h4/span as well as h3/p */
.team-card h4 { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.team-card span { font-size:12px; color:var(--gray-text); text-transform:uppercase; letter-spacing:0.06em; font-family:var(--font-head); font-weight:600; }
.vm-card h3 { font-family:var(--font-head); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.12em; color:var(--orange); margin-bottom:16px; }

/* Analysis layout */
.analysis-grid { display:grid; grid-template-columns:3fr 2fr; gap:56px; align-items:center; }

/* ===== NEWS HERO + PAGE ===== */
.news-hero    { background-image: linear-gradient(rgba(0,0,0,0.52),rgba(0,0,0,0.52)), url('../images/news1.png'); background-position: center top; }
.privacy-hero { background-image: linear-gradient(rgba(0,0,0,0.52),rgba(0,0,0,0.52)), url('../images/privacy.png'); }
.terms-hero   { background-image: linear-gradient(rgba(0,0,0,0.52),rgba(0,0,0,0.52)), url('../images/terms.png'); }
.contact-hero { background-image: linear-gradient(rgba(0,0,0,0.52),rgba(0,0,0,0.52)), url('../images/contact.png'); }
.vvi-hero     { background-image: linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)), url('../images/vvi1.png'); }

/* shared sizing for remaining hero types */
.privacy-hero, .terms-hero, .contact-hero, .vvi-hero {
  background-size: cover; background-position: center center; background-attachment: scroll;
  padding: 110px 0 100px; text-align: center; display: flex; align-items: center; justify-content: center; min-height: 320px;
}
.privacy-hero h1, .terms-hero h1, .contact-hero h1, .vvi-hero h1 {
  font-family: var(--font-head); font-size: clamp(28px,4vw,48px); font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 16px;
}
.contact-hero p, .vvi-hero p {
  font-size: 17px; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; line-height: 1.75;
}

/* VVI content */
.vvi-content { max-width: 860px; margin: 0 auto; }
.vvi-section h2 { font-family: var(--font-head); font-size: clamp(20px,2.2vw,28px); font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.vvi-section p { font-size: 15px; color: #444; line-height: 1.9; margin-bottom: 18px; }
.vvi-section p:last-child { margin-bottom: 0; }
.vvi-divider { border: none; border-top: 2px solid var(--gray-mid); margin: 56px 0; }

.news-toolbar { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:36px; flex-wrap:wrap; }
.news-search-wrap { position:relative; flex:1; max-width:420px; }
.news-search-wrap i { position:absolute; left:14px; top:50%; transform:translateY(-50%); color:var(--gray-text); font-size:14px; pointer-events:none; }
.news-search { width:100%; padding:11px 16px 11px 40px; border:1px solid var(--gray-mid); border-radius:6px; font-size:14px; font-family:var(--font-body); color:var(--text); background:#fff; transition:border-color 0.2s; }
.news-search:focus { outline:none; border-color:var(--orange); }
.news-count { font-family:var(--font-head); font-size:12px; font-weight:600; color:var(--gray-text); text-transform:uppercase; letter-spacing:0.06em; white-space:nowrap; }

.news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.news-card { background:#fff; border-radius:8px; border:1px solid var(--gray-mid); display:flex; flex-direction:column; transition:box-shadow 0.25s, transform 0.25s; overflow:hidden; }
.news-card:hover { box-shadow:0 8px 28px rgba(0,0,0,0.1); transform:translateY(-3px); }
.news-card.hidden { display:none; }
.news-card-body { padding:24px 24px 16px; flex:1; }
.news-date { font-family:var(--font-head); font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; color:var(--orange); display:block; margin-bottom:10px; }
.news-card-body h3 { font-family:var(--font-head); font-size:15px; font-weight:700; color:var(--navy); line-height:1.4; margin-bottom:12px; }
.news-card-body h3 a { color:inherit; }
.news-card-body h3 a:hover { color:var(--orange); }
.news-card-body p { font-size:13.5px; color:#555; line-height:1.75; }
.news-card-footer { padding:16px 24px; border-top:1px solid var(--gray-mid); display:flex; align-items:center; justify-content:space-between; gap:12px; }
.news-author { font-size:12px; color:var(--gray-text); display:flex; align-items:center; gap:6px; }
.news-author i { color:var(--orange); }
.read-more { font-family:var(--font-head); font-size:12px; font-weight:700; color:var(--orange); text-transform:uppercase; letter-spacing:0.04em; display:flex; align-items:center; gap:6px; white-space:nowrap; transition:gap 0.2s; }
.read-more:hover { color:var(--orange-hover); gap:10px; }

.news-pagination { display:flex; justify-content:center; align-items:center; gap:8px; margin-top:48px; flex-wrap:wrap; }
.page-btn { width:38px; height:38px; border:1px solid var(--gray-mid); border-radius:6px; background:#fff; font-family:var(--font-head); font-size:13px; font-weight:600; color:var(--navy); cursor:pointer; transition:background 0.2s, color 0.2s, border-color 0.2s; display:flex; align-items:center; justify-content:center; }
.page-btn:hover { background:var(--gray-light); }
.page-btn.active { background:var(--orange); border-color:var(--orange); color:#fff; }
.page-btn.prev-next { width:auto; padding:0 14px; font-size:12px; }
.news-empty { text-align:center; color:var(--gray-text); font-size:15px; padding:48px 0; }
.news-empty.hidden { display:none; }

/* ===== CAREERS PAGE ===== */
.careers-hero { background-image: linear-gradient(rgba(0,0,0,0.52),rgba(0,0,0,0.52)), url('../images/careers1.png'); }

.careers-culture-grid { display:grid; grid-template-columns:3fr 2fr; gap:72px; align-items:center; }
.culture-text h2 { font-family:var(--font-head); font-size:clamp(22px,2.4vw,32px); font-weight:800; color:var(--navy); margin-bottom:20px; line-height:1.25; }
.culture-text p { font-size:15px; color:#444; line-height:1.85; margin-bottom:16px; }
.culture-text p:last-of-type { margin-bottom:24px; }
.culture-stats { display:grid; grid-template-columns:1fr 1fr; gap:2px; background:var(--orange); border:2px solid var(--orange); border-radius:8px; overflow:hidden; }
.culture-stat { background:#fff; padding:28px 20px; text-align:center; }
.culture-num { display:block; font-family:var(--font-head); font-size:clamp(22px,2.5vw,30px); font-weight:800; color:var(--orange); line-height:1; margin-bottom:8px; }
.culture-label { font-family:var(--font-head); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:var(--navy); line-height:1.4; display:block; }

.perks-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:8px; }
.perk-item { background:#fff; border-radius:8px; padding:32px 24px; text-align:center; border:1px solid var(--gray-mid); transition:box-shadow 0.25s, transform 0.25s; }
.perk-item:hover { box-shadow:0 6px 24px rgba(0,0,0,0.09); transform:translateY(-3px); }
.perk-icon { width:56px; height:56px; background:rgba(232,98,42,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.perk-icon i { font-size:22px; color:var(--orange); }
.perk-item h4 { font-family:var(--font-head); font-size:13px; font-weight:700; color:var(--navy); text-transform:uppercase; letter-spacing:0.05em; margin-bottom:10px; }
.perk-item p { font-size:13px; color:#555; line-height:1.7; }

.positions-grid { display:grid; gap:16px; }
.position-card { background:#fff; border:1px solid var(--gray-mid); border-radius:8px; padding:28px 32px; border-left:4px solid var(--orange); transition:box-shadow 0.2s; }
.position-card:hover { box-shadow:0 4px 20px rgba(0,0,0,0.08); }
.position-header { display:flex; align-items:flex-start; justify-content:space-between; gap:24px; margin-bottom:12px; }
.position-header h3 { font-family:var(--font-head); font-size:17px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.position-type { font-size:12px; color:var(--gray-text); font-family:var(--font-head); font-weight:600; }
.position-apply { flex-shrink:0; display:inline-flex; align-items:center; gap:8px; background:var(--orange); color:#fff !important; font-family:var(--font-head); font-size:12px; font-weight:700; letter-spacing:0.04em; text-transform:uppercase; padding:9px 20px; border-radius:4px; transition:background 0.2s; white-space:nowrap; }
.position-apply:hover { background:var(--orange-hover); }
.position-desc { font-size:14px; color:#555; line-height:1.75; }

.careers-form { background:#fff; border-radius:10px; padding:40px 40px 36px; border:1px solid var(--gray-mid); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:28px; }
.form-group { display:flex; flex-direction:column; gap:7px; }
.form-group.full { grid-column:1/-1; }
.form-group label { font-family:var(--font-head); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:0.05em; color:var(--navy); }
.req { color:var(--orange); }
.form-group input, .form-group select, .form-group textarea { padding:11px 14px; border:1px solid var(--gray-mid); border-radius:5px; font-size:14px; font-family:var(--font-body); color:var(--text); background:#fff; transition:border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline:none; border-color:var(--orange); }
.form-group input[type="file"] { padding:9px 14px; }
.btn-submit { background:var(--orange); color:#fff; font-family:var(--font-head); font-size:13px; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; padding:14px 36px; border:none; border-radius:5px; cursor:pointer; transition:background 0.2s; }
.btn-submit:hover { background:var(--orange-hover); }




/* ===== SHARED INTERIOR HERO (all parallax page heroes) ===== */
.about-hero, .approach-hero, .insight-hero, .news-hero, .careers-hero {
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
  padding: 110px 0 100px;
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
}
.about-hero h1, .approach-hero h1, .insight-hero h1, .news-hero h1, .careers-hero h1 {
  font-family: var(--font-head); font-size: clamp(28px,4vw,48px);
  font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2;
}
.about-hero p, .approach-hero p, .insight-hero p, .news-hero p, .careers-hero p {
  font-size: 17px; color: rgba(255,255,255,0.75);
  max-width: 580px; margin: 0 auto; line-height: 1.75;
}
/* Individual backgrounds */
.about-hero    { background-image: linear-gradient(rgba(0,0,0,0.52),rgba(0,0,0,0.52)), url('../images/about1.png'); background-position: center 70%; }

/* ===== PARALLAX STRIP ===== */
.parallax-strip {
  height: 340px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ===== VM + VALUES LAYOUT ===== */
.vm-values-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: center;
}
.vm-side { text-align: center; }
.vm-block { margin-bottom: 40px; }
.vm-block:last-child { margin-bottom: 0; }
.vm-block h2 {
  font-family: var(--font-head); font-size: clamp(22px,2.2vw,30px);
  font-weight: 800; color: var(--navy); margin-bottom: 12px;
}
.vm-block p {
  font-size: 15px; color: var(--gray-text); line-height: 1.8;
}

/* ===== CORE VALUES QUADRANT ===== */
.values-quadrant {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--orange);
  border: 3px solid var(--orange);
  border-radius: 4px;
  overflow: hidden;
}
.value-cell {
  background: #fff;
  padding: 40px 28px 32px;
  text-align: center;
  cursor: default;
  overflow: hidden;
  transition: background 0.3s, box-shadow 0.3s;
}
.value-cell:hover { background: #fdf5f1; box-shadow: inset 0 -4px 0 var(--orange); }
.value-cell i {
  font-size: 30px;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s;
}
.value-cell:hover i {
  transform: scale(1.25) rotate(-8deg);
  color: var(--navy);
}
.value-cell h4 {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--orange); line-height: 1.35; margin-bottom: 0;
  transition: color 0.3s, transform 0.3s;
}
.value-cell:hover h4 { color: var(--navy); transform: translateY(-2px); }
.value-desc {
  font-size: 13px; color: #555; line-height: 1.65;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.45s ease, opacity 0.35s ease 0.05s, transform 0.4s ease 0.05s, margin-top 0.35s;
  margin-top: 0;
}
.value-cell:hover .value-desc,
.value-cell:focus-within .value-desc {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 14px;
}

.approach-hero { background-image: linear-gradient(rgba(0,0,0,0.50),rgba(0,0,0,0.50)), url('../images/approach1.png'); background-position: center center; }

/* ===== PROCESS FLOW ===== */
.process-intro {
  font-size: 15px; color: #555; line-height: 1.85;
  max-width: 740px; margin: 0 auto 56px; text-align: center;
}
.process-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.process-step { text-align: center; padding: 0 8px; }
.process-icon-row { margin-bottom: 28px; }
.process-circle {
  width: 88px; height: 88px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  box-shadow: 0 6px 24px rgba(232,98,42,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover .process-circle {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232,98,42,0.45);
}
.process-circle i { font-size: 32px; color: #fff; }
.process-arrow {
  display: flex; align-items: flex-start;
  padding-top: 28px;
  color: var(--orange); font-size: 22px;
  opacity: 0.5;
}
.process-label {
  display: inline-block;
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange); margin-bottom: 10px;
  background: rgba(232,98,42,0.1);
  padding: 3px 10px; border-radius: 20px;
}
.process-body h3 {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px; line-height: 1.3;
}
.process-body p { font-size: 14px; color: #555; line-height: 1.75; }

/* ===== WARM SECTION + PRICING CARDS ===== */
.section-warm { background: #f4f8f6; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 48px;
}
.pricing-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  border-top: 4px solid var(--orange);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.pricing-card i { font-size: 32px; color: var(--orange); margin-bottom: 18px; display: block; }
.pricing-card h4 {
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px;
}
.pricing-card p { font-size: 14px; color: #555; line-height: 1.75; }

/* ===== INSIGHT PAGE ===== */
.insight-hero { background-image: linear-gradient(rgba(0,0,0,0.50),rgba(0,0,0,0.50)), url('../images/insight1.png'); }

.insight-body { max-width: 860px; margin: 0 auto; }
.insight-quote {
  font-family: var(--font-head); font-size: clamp(20px,2.4vw,28px); font-weight: 700;
  color: var(--text); line-height: 1.45; margin-bottom: 20px;
  border: none; padding: 0;
}
.insight-attr { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.insight-intro { font-size: 15px; color: #444; line-height: 1.85; margin-bottom: 36px; }
.insight-intro em { font-style: italic; color: var(--navy); }
.insight-intro strong { color: var(--navy); }
.insight-closing { font-size: 15px; color: #444; line-height: 1.85; margin-top: 36px; }
.insight-closing strong { color: var(--navy); }

/* Chart tabs */
.chart-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--gray-mid); margin-bottom: 32px; flex-wrap: wrap; }
.chart-tab {
  background: none; border: none; cursor: pointer; padding: 12px 20px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600;
  color: var(--gray-text); display: flex; align-items: center; gap: 7px;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.chart-tab i { font-size: 14px; }
.chart-tab:hover { color: var(--navy); }
.chart-tab.active { color: #2ab5d4; border-bottom-color: #2ab5d4; }
.chart-tab.active i { color: #2ab5d4; }

/* Chart panels */
.chart-panel { display: block; }
.chart-panel.hidden { display: none; }
.bar-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.bar-vendor { width: 150px; font-size: 14px; color: #333; flex-shrink: 0; }
.bar-track { flex: 1; height: 13px; background: #e8eaed; border-radius: 7px; overflow: hidden; }
.bar-fill {
  height: 100%; background: #2ab5d4; border-radius: 7px;
  width: 0;
  transition: width 0.75s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.bar-pct { width: 40px; font-size: 13px; color: #555; text-align: right; flex-shrink: 0; }

/* Testimonials carousel */
.carousel-wrapper { display: flex; align-items: center; gap: 16px; }
.carousel-outer { flex: 1; overflow: hidden; }
.carousel-track {
  display: flex; gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #fff; border-radius: 8px;
  padding: 32px 28px;
  border-top: 4px solid #2ab5d4;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 200px;
}
.testimonial-quote {
  font-size: 15px; color: #333; line-height: 1.75; font-style: italic;
  margin-bottom: 20px; flex: 1;
}
.testimonial-quote::before { content: '\201C'; color: #2ab5d4; font-size: 32px; line-height: 0.6; vertical-align: -10px; margin-right: 2px; font-style: normal; }
.testimonial-meta strong { display: block; font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--navy); }
.testimonial-meta span { font-size: 12px; color: var(--gray-text); }
.carousel-btn {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 2px solid var(--gray-mid);
  color: var(--navy); cursor: pointer; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.carousel-btn:hover { background: #2ab5d4; border-color: #2ab5d4; color: #fff; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-mid); cursor: pointer; transition: background 0.2s, transform 0.2s;
  border: none;
}
.carousel-dot.active { background: #2ab5d4; transform: scale(1.3); }

/* ===== INTERIOR PAGE HERO ===== */
.page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2;
}
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,0.72);
  max-width: 640px; margin: 0 auto; line-height: 1.75;
}

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: var(--section-pad) 0; background: #fff; }
.content-section.bg-light { background: var(--gray-light); }
.content-section.bg-navy { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 {
  font-family: var(--font-head); font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.3;
}
.content-section.bg-navy .section-header h2 { color: #fff; }
.section-header p {
  font-size: 16px; color: var(--gray-text); max-width: 620px; margin: 0 auto; line-height: 1.75;
}
.content-section.bg-navy .section-header p { color: rgba(255,255,255,0.65); }

.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-size: 16px; color: #444; margin-bottom: 20px; line-height: 1.8; }
.prose strong { color: var(--navy); }

/* ===== STATS ROW ===== */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px;
}
.stat-item {
  padding: 36px 24px; background: var(--navy); border-radius: 8px; text-align: center;
}
.stat-item .num {
  font-family: var(--font-head); font-size: 40px; font-weight: 800;
  color: var(--orange); display: block; line-height: 1; margin-bottom: 10px;
}
.stat-item p {
  font-size: 13px; color: rgba(255,255,255,0.72); margin: 0;
  font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ===== VALUES GRID ===== */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card {
  background: #fff; border-radius: 6px; padding: 32px 28px;
  border-left: 4px solid var(--orange); box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.value-card h3 {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--navy); margin-bottom: 10px;
}
.value-card p { font-size: 14.5px; color: #555; line-height: 1.7; margin: 0; }

/* ===== VISION / MISSION ===== */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card { background: var(--navy); border-radius: 8px; padding: 44px 40px; text-align: center; }
.vm-card .vm-label {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 16px;
}
.vm-card p { font-size: 17px; color: #fff; line-height: 1.65; font-style: italic; margin: 0; }

/* ===== LEADERSHIP TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: #fff; border-radius: 8px; padding: 32px 24px;
  text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.team-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 26px; font-weight: 700;
  margin: 0 auto 18px;
}
.team-card h3 {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.team-card p {
  font-size: 12px; color: var(--gray-text); text-transform: uppercase;
  letter-spacing: 0.06em; font-family: var(--font-head); font-weight: 600; margin: 0;
}

/* ===== APPROACH: STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card {
  background: #fff; border-radius: 8px; padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.step-number {
  font-family: var(--font-head); font-size: 52px; font-weight: 800;
  color: var(--orange); opacity: 0.22; line-height: 1; margin-bottom: 14px;
}
.step-card h3 {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); margin-bottom: 12px;
}
.step-card p { font-size: 14.5px; color: #555; line-height: 1.7; margin: 0; }

/* Callout banner */
.callout-banner {
  background: var(--orange); border-radius: 8px; padding: 40px 48px;
  display: flex; align-items: center; gap: 36px;
}
.callout-banner .callout-icon { font-size: 40px; color: #fff; flex-shrink: 0; }
.callout-banner h3 {
  font-family: var(--font-head); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.callout-banner p { font-size: 15px; color: rgba(255,255,255,0.88); margin: 0; line-height: 1.65; }

/* Feature two-col */
.feature-split {
  display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: center;
}
.feature-split.reversed { grid-template-columns: 2fr 3fr; }
.feature-split .prose p { font-size: 15.5px; }
.highlight-box {
  background: var(--navy); border-radius: 8px; padding: 44px 36px; text-align: center;
}
.highlight-box .stat {
  font-family: var(--font-head); font-size: 52px; font-weight: 800;
  color: var(--orange); line-height: 1; margin-bottom: 10px;
}
.highlight-box p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.65; margin: 0; }

/* ===== INSIGHT: PULL QUOTE ===== */
.pull-quote {
  background: var(--navy); border-radius: 8px; padding: 52px 60px;
  text-align: center; margin-bottom: 64px;
}
.pull-quote blockquote {
  font-size: clamp(16px, 2vw, 20px); color: #fff;
  font-style: italic; line-height: 1.7; margin: 0 0 20px;
}
.pull-quote cite {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.09em; font-style: normal;
}

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: #fff; border-radius: 8px; padding: 26px 24px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  display: flex; flex-direction: column;
}
.testimonial-card .stat-callout {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: var(--orange); margin-bottom: 8px;
}
.testimonial-card blockquote {
  font-size: 14px; color: #444; line-height: 1.7; font-style: italic;
  flex: 1; margin: 0 0 18px; border-left: 3px solid var(--orange); padding-left: 14px;
}
.testimonial-card .attribution {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em;
}
.testimonial-card .attribution span {
  display: block; font-weight: 400; color: var(--gray-text);
  text-transform: none; margin-top: 2px; font-size: 12px; font-family: var(--font-body);
}

/* Industries */
.industries-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.industry-card {
  background: #fff; border-radius: 8px; padding: 28px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.industry-card h3 {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy);
  margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--orange);
}
.vendor-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.vendor-tag {
  font-size: 12px; color: var(--navy); background: var(--gray-light);
  border-radius: 3px; padding: 4px 10px;
  font-family: var(--font-head); font-weight: 600;
}

/* ===== BLOG ===== */
.blog-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 48px; justify-content: center;
}
.filter-btn {
  background: none; border: 1px solid var(--gray-mid); color: var(--text);
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 8px 18px; border-radius: 3px; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex; flex-direction: column; transition: box-shadow 0.25s;
}
.blog-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.13); }
.blog-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.blog-tag {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--orange); background: rgba(232,98,42,0.09); padding: 3px 9px; border-radius: 3px;
}
.blog-card h3 {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px; line-height: 1.4;
}
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--orange); }
.blog-card p { font-size: 13.5px; color: #555; line-height: 1.65; margin: 0; flex: 1; }
.blog-card-footer {
  padding: 14px 26px; border-top: 1px solid var(--gray-mid);
  display: flex; justify-content: space-between; align-items: center;
}
.blog-author {
  font-family: var(--font-head); font-size: 11px; font-weight: 600;
  color: var(--gray-text); text-transform: uppercase; letter-spacing: 0.04em;
}
.read-more {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em;
}
.read-more:hover { color: var(--orange-hover); }

/* ===== CAREERS ===== */
.positions-list { display: flex; flex-direction: column; gap: 12px; }
.position-item {
  background: #fff; border-radius: 6px; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06); border-left: 4px solid var(--orange);
}
.position-item h3 {
  font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--navy);
}
.position-badge {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--orange); background: rgba(232,98,42,0.1); padding: 5px 14px; border-radius: 3px;
}
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-card {
  background: #fff; border-radius: 8px; padding: 28px 20px;
  text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.benefit-card i { font-size: 28px; color: var(--orange); margin-bottom: 14px; display: block; }
.benefit-card h4 {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em;
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; align-items: start; }
.contact-info h2 {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  color: var(--navy); margin-bottom: 28px;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px;
}
.contact-info-item i { font-size: 18px; color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.contact-info-item p { font-size: 15px; color: #444; line-height: 1.65; margin: 0; }
.contact-info-item a { color: var(--orange); }
.contact-info-item a:hover { text-decoration: underline; }
.contact-map { margin-top: 28px; border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.contact-map img { width: 100%; display: block; }

/* Forms */
.form-heading {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  color: var(--navy); margin-bottom: 28px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px; border: 1px solid var(--gray-mid); border-radius: 4px;
  font-family: var(--font-body); font-size: 14px; color: var(--text);
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,43,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--orange); color: #fff; font-family: var(--font-head);
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 14px 36px; border: none; border-radius: 4px;
  cursor: pointer; transition: background 0.2s; margin-top: 8px;
}
.btn-submit:hover { background: var(--orange-hover); }

/* ===== VVI ===== */
.vvi-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 64px; }
.vvi-stat-card {
  background: var(--navy); border-radius: 8px; padding: 40px 28px; text-align: center;
}
.vvi-stat-card .big-num {
  font-family: var(--font-head); font-size: 44px; font-weight: 800;
  color: var(--orange); line-height: 1; margin-bottom: 12px;
}
.vvi-stat-card p { font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.6; margin: 0; }
.inputs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.input-item {
  background: #fff; border-radius: 6px; padding: 18px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.input-item i { color: var(--orange); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.input-item p { font-size: 14px; color: #444; line-height: 1.6; margin: 0; }

/* ===== BUTTONS ===== */
.btn-learn {
  display: inline-block; background: var(--orange); color: #fff !important;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 9px 22px; border-radius: 3px; transition: background 0.2s;
}
.btn-learn:hover { background: var(--orange-hover); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE SYSTEM
   1400px  wide screen
   1200px  large laptop
   1024px  tablet landscape
    768px  tablet portrait / large mobile
    600px  mobile
    480px  small mobile
═══════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════
   ARTICLE PAGE
   ════════════════════════════════════════════════════════════════ */

.article-hero {
  background: var(--navy);
  padding: 80px 0 64px;
  text-align: left;
}
.article-hero h1 {
  color: #fff;
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  max-width: 760px;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.article-meta i { margin-right: 6px; color: var(--orange); }

.article-layout { max-width: 760px; margin: 0 auto; }

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 40px;
  transition: gap .2s ease;
}
.article-back:hover { gap: 12px; color: var(--orange); }
.article-back i { font-size: 11px; }

.article-body h2 { font-size: clamp(18px, 2.5vw, 22px); color: var(--navy); margin: 40px 0 12px; }
.article-body h3 { font-size: clamp(15px, 2vw, 17px); color: var(--navy); margin: 28px 0 8px; }
.article-body p { font-size: 16px; line-height: 1.8; color: #3a3a3a; margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 20px; }
.article-body li { font-size: 16px; line-height: 1.8; color: #3a3a3a; margin-bottom: 6px; }
.article-body blockquote {
  border-left: 4px solid var(--orange);
  margin: 32px 0;
  padding: 12px 24px;
  background: #f7f7f5;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.6;
}
.article-body img { width: 100%; border-radius: 8px; margin: 28px 0; }

.article-attachments {
  background: #f4f6fa;
  border: 1px solid #dde3ed;
  border-radius: 8px;
  padding: 24px 28px;
  margin: 40px 0;
}
.article-attachments h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; color: var(--navy); margin: 0 0 16px; }
.article-attachments h3 i { margin-right: 8px; color: var(--orange); }
.article-attachments ul { list-style: none; padding: 0; margin: 0; }
.article-attachments li { margin-bottom: 10px; }
.article-attachments a { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--navy); text-decoration: none; transition: color .2s; }
.article-attachments a:hover { color: var(--orange); }
.article-attachments .fa-file-pdf { color: #c0392b; }
.article-attachments .fa-file-excel { color: #27ae60; }
.article-attachments .fa-file-word { color: #2980b9; }

.article-author-bio { display: flex; align-items: center; gap: 16px; border-top: 1px solid #e2e8f0; margin-top: 48px; padding-top: 28px; }
.author-bio-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.article-author-bio strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 4px; }
.article-author-bio p { font-size: 13px; color: #666; margin: 0; }

/* ── 1400px: wide screen ───────────────────────────── */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}

/* ── 1200px: large laptop ──────────────────────────── */
@media (max-width: 1200px) {
  .hero-grid { gap: 48px; }
  .vm-values-layout { gap: 52px; }
  .careers-culture-grid { gap: 48px; }
}

/* ── 1024px: tablet landscape ──────────────────────── */
@media (max-width: 1024px) {
  /* Layout */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-map { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Hero */
  .hero { min-height: unset; }
  .hero-grid { gap: 40px; }

  /* About */
  .about-split { grid-template-columns: 1fr 1.8fr; }

  /* Approach */
  .process-flow { gap: 0; }
  .process-circle { width: 72px; height: 72px; }
  .process-circle i { font-size: 26px; }
  .process-body h3 { font-size: 15px; }

  /* Insight */
  .testimonial-card { flex: 0 0 calc(50% - 12px); }

  /* News */
  .news-grid { grid-template-columns: repeat(2, 1fr); }

  /* Careers */
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-stats { max-width: 320px; }
  .careers-culture-grid { gap: 40px; }

  /* VVI / split */
  .split-grid { gap: 48px; }
  .analysis-grid { gap: 40px; }
  .vm-values-layout { gap: 48px; }
  .pricing-cards { gap: 20px; }
}

/* ── 768px: tablet portrait / large mobile ─────────── */
@media (max-width: 768px) {
  /* Section spacing */
  :root { --section-pad: 64px; }

  /* Header */
  #main-nav, .header-contact { display: none; }
  .hamburger { display: flex; }

  /* Hero banner sizing on mobile */
  .about-hero, .approach-hero, .insight-hero, .news-hero, .careers-hero,
  .privacy-hero, .terms-hero, .contact-hero, .vvi-hero {
    padding: 80px 0 72px;
    min-height: unset;
  }
  .parallax-strip { background-attachment: scroll; height: 220px; }

  /* Index hero */
  .hero { padding: 56px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-images { height: 280px !important; }

  /* About split */
  .about-split { grid-template-columns: 1fr; }
  .about-image { padding: 0; }
  .about-image img { height: 320px; }
  .about-text { padding: 48px 24px; }

  /* About page */
  .split-grid { grid-template-columns: 1fr; gap: 36px; }
  .vm-values-layout { grid-template-columns: 1fr; gap: 40px; }
  .values-quadrant { max-width: 480px; margin: 0 auto; }

  /* Approach */
  .process-flow { grid-template-columns: 1fr; gap: 36px; }
  .process-arrow { display: none; }
  .process-circle { width: 68px; height: 68px; }
  .process-step { display: flex; gap: 20px; align-items: flex-start; text-align: left; }
  .process-icon-row { margin-bottom: 0; flex-shrink: 0; }
  .process-body { text-align: left; }
  .pricing-cards { grid-template-columns: 1fr; }

  /* Insight */
  .insight-body { padding: 0; }
  .chart-tabs { gap: 0; }
  .chart-tab { font-size: 12px; padding: 10px 10px; gap: 5px; }
  .bar-vendor { width: 110px; font-size: 13px; }
  .testimonial-card { flex: 0 0 100%; }
  .insight-quote { font-size: clamp(17px, 4vw, 22px); }

  /* News */
  .news-grid { grid-template-columns: 1fr; }
  .news-toolbar { flex-direction: column; align-items: flex-start; }
  .news-search-wrap { max-width: 100%; width: 100%; }

  /* Careers */
  .careers-culture-grid { grid-template-columns: 1fr; gap: 40px; }
  .culture-stats { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .positions-grid { gap: 12px; }
  .position-header { flex-direction: column; gap: 12px; }
  .position-apply { width: max-content; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }

  /* VVI */
  .analysis-grid { grid-template-columns: 1fr; }
  .vvi-stats { flex-direction: column; gap: 28px; }

  /* Why us */
  .why-us { padding: 56px 0; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── 600px: mobile ─────────────────────────────────── */
@media (max-width: 600px) {
  /* Hero */
  .hero-text h1 { font-size: clamp(22px, 5.5vw, 30px); }
  .hero-text p { font-size: 15px; }
  .hero-images { height: 260px !important; }

  /* About split */
  .about-image img { height: 260px; }

  /* About page values */
  .values-quadrant { max-width: 100%; }

  /* Approach steps — stack fully */
  .process-step { flex-direction: column; align-items: center; text-align: center; }
  .process-body { text-align: center; }

  /* Careers */
  .perks-grid { grid-template-columns: 1fr; }
  .culture-stats { grid-template-columns: 1fr 1fr; }

  /* Insight chart tabs — wrap to 2×2 */
  .chart-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .chart-tab { justify-content: center; border-bottom: 2px solid var(--gray-mid); }

  /* News */
  .news-pagination { gap: 6px; }
  .page-btn { width: 34px; height: 34px; font-size: 12px; }

  /* Accordion */
  .accordion-trigger { font-size: 12px; padding: 16px 18px; }
}

/* ── 480px: small mobile ───────────────────────────── */
@media (max-width: 480px) {
  :root { --section-pad: 52px; }

  .header-inner { height: 60px; }
  .logo img { height: 42px; }
  .container { padding: 0 16px; }

  .about-hero, .approach-hero, .insight-hero, .news-hero, .careers-hero,
  .privacy-hero, .terms-hero, .contact-hero, .vvi-hero {
    padding: 64px 0 56px;
  }

  .hero { padding: 48px 0; }
  .hero-images { height: 240px !important; }
  .hero-company-detail h5 { font-size: 12px; }
  .hero-company-detail p { font-size: 12px; }

  .about-image img { height: 220px; }
  .about-text { padding: 36px 0; }
  .about-text h2 { font-size: 20px; }

  .section-heading h2 { font-size: 20px; }

  .chart-tab { font-size: 11px; padding: 9px 8px; }
  .bar-vendor { width: 90px; font-size: 12px; }
  .bar-pct { font-size: 12px; }

  .testimonial-quote { font-size: 14px; }

  .perks-grid { grid-template-columns: 1fr; gap: 16px; }
  .culture-stats { grid-template-columns: 1fr 1fr; }
  .culture-num { font-size: 24px; }

  .position-card { padding: 20px; }
  .position-header h3 { font-size: 15px; }

  .footer-brand img { height: 40px; }
  .footer-bottom { padding: 16px 20px; }
}
