/* =============================================
   HINA INVESTMENT — PAGE-SPECIFIC STYLES
   ============================================= */

/* ══════════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════════ */

/* Hero */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(200,146,42,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 50%, rgba(200,146,42,0.07) 0%, transparent 55%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,146,42,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,146,42,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content { position: relative; max-width: 720px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,146,42,0.35);
  padding: 0.45rem 1.1rem;
  margin-bottom: 2rem;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero-headline {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.85;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(200,146,42,0.12);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-top: 0.4rem;
}

/* Hero visual */
.hero-visual {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 42%;
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 8px;
  padding-right: 4%;
}

.hex-cell {
  width: 120px; height: 138px;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  background: var(--dark2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.3s;
}
.hex-cell img { width: 52px; height: 52px; }
.hex-cell::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,146,42,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.hex-cell:hover { transform: scale(1.06); }
.hex-cell:hover::before { opacity: 1; }
.hex-cell:nth-child(even) { margin-top: 70px; }
.hex-label {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.4rem;
}

/* About strip on home */
.home-about {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.home-about .text p {
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.vm-card {
  padding: 1.8rem;
}
.vm-card .ico { width: 56px; height: 56px; margin-bottom: 1rem; display: block; }
.vm-card h4 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.vm-card p {
  font-size: 0.82rem;
  color: rgba(248,245,240,0.55);
  line-height: 1.7;
}

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200,146,42,0.08);
  border: 1px solid rgba(200,146,42,0.08);
  margin-top: 3rem;
}

.industry-card {
  background: var(--dark);
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.3s;
}
.industry-card:hover { background: var(--dark2); }
.industry-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  display: block;
}
.industry-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.industry-desc {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Clients strip */
.clients-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(200,146,42,0.07);
  border: 1px solid rgba(200,146,42,0.07);
  margin-top: 3rem;
}

.client-logo-cell {
  background: var(--dark2);
  padding: 1.8rem 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
  min-height: 110px;
}
.client-logo-cell:hover { background: var(--dark3); }
.client-logo-cell img {
  max-width: 130px;
  max-height: 60px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(2) invert(1);
  opacity: 0.55;
  transition: filter 0.35s, opacity 0.35s, transform 0.3s;
}
.client-logo-cell:hover img {
  filter: grayscale(100%) brightness(2) invert(1);
  opacity: 1;
  transform: scale(1.05);
}

/* CTA Banner */
.cta-banner {
  background:
    linear-gradient(135deg, var(--gold) 0%, #a06c1a 100%);
  padding: 5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--black);
  max-width: 600px;
}
.btn-dark {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.3s;
  white-space: nowrap;
}
.btn-dark:hover { background: #1a1a1a; }

/* ══════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════ */

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-story .text p {
  color: var(--gray-light);
  line-height: 1.95;
  margin-bottom: 1.3rem;
  font-weight: 300;
  font-size: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2.2rem;
  text-align: center;
}
.value-card .ico { width: 60px; height: 60px; margin: 0 auto 1rem; display: block; }
.value-card h4 {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.value-card p {
  font-size: 0.82rem;
  color: rgba(248,245,240,0.5);
  line-height: 1.75;
}

.regions-section { background: var(--dark); }
.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.region-card {
  padding: 2rem;
  text-align: center;
}
.region-flag { font-size: 2.5rem; margin-bottom: 0.8rem; }
.region-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.region-detail { font-size: 0.8rem; color: var(--gray); }
.region-card.primary { border-color: var(--gold); background: rgba(200,146,42,0.05); }

/* ══════════════════════════════════════════════
   PRODUCTS PAGE
══════════════════════════════════════════════ */

.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}

.product-nav {
  position: sticky;
  top: 100px;
}

.product-tab {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  text-align: left;
  padding: 1rem 1.2rem;
  border-left: 2px solid rgba(200,146,42,0.15);
  color: var(--gray);
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: all 0.3s;
  background: none;
  margin-bottom: 2px;
}
.product-tab .tab-ico { font-size: 1.1rem; }
.product-tab:hover:not(.active) {
  color: var(--white);
  border-left-color: rgba(200,146,42,0.35);
  padding-left: 1.6rem;
}
.product-tab.active {
  border-left-color: var(--gold);
  color: var(--white);
  background: rgba(200,146,42,0.07);
  padding-left: 1.6rem;
}

.product-panel { display: none; }
.product-panel.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

.product-panel-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200,146,42,0.1);
}
.product-panel-header h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.product-panel-header p {
  color: var(--gray-light);
  font-weight: 300;
  line-height: 1.8;
}

.product-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(200,146,42,0.04);
  border: 1px solid rgba(200,146,42,0.1);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.87rem;
  color: rgba(248,245,240,0.7);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.product-item::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.45rem;
  flex-shrink: 0;
}
.product-item:hover {
  background: rgba(200,146,42,0.09);
  border-color: rgba(200,146,42,0.3);
  color: var(--white);
}

/* ══════════════════════════════════════════════
   CLIENTS PAGE
══════════════════════════════════════════════ */

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.client-card {
  padding: 2rem 1.8rem;
  text-align: center;
}

.client-logo-wrap {
  height: 90px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 4px;
  padding: 0.8rem 1.5rem;
  margin-bottom: 1.2rem;
  transition: box-shadow 0.3s;
}
.client-card:hover .client-logo-wrap {
  box-shadow: 0 4px 20px rgba(200,146,42,0.2);
}
.client-logo-wrap img {
  max-width: 160px;
  max-height: 68px;
  width: auto; height: auto;
  object-fit: contain;
}

.client-card h4 {
  font-size: 1rem;
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
  color: var(--white);
  transition: color 0.3s;
}
.client-card:hover h4 { color: var(--gold); }
.client-card .sector {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.client-card p {
  font-size: 0.8rem;
  color: rgba(248,245,240,0.45);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info .intro-text {
  color: var(--gray-light);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 3rem;
}

.offices { display: flex; flex-direction: column; gap: 2rem; }

.office {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}
.office-city {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.office-details {
  font-size: 0.88rem;
  color: rgba(248,245,240,0.6);
  line-height: 1.9;
}
.office-details a { color: var(--gold-light); transition: color 0.3s; }
.office-details a:hover { color: var(--gold); }

.contact-form-box {
  background: var(--dark);
  border: 1px solid rgba(200,146,42,0.12);
  padding: 3rem;
  border-radius: var(--radius);
}
.contact-form-box h3 {
  font-size: 1.6rem;
  margin-bottom: 1.8rem;
  color: var(--white);
}

/* ─── RESPONSIVE (pages) ─── */
@media (max-width: 1024px) {
  .products-layout { grid-template-columns: 1fr; }
  .product-nav { position: static; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
  .product-tab { border-left: none; border-bottom: 2px solid rgba(200,146,42,0.15); padding: 0.6rem 1rem; }
  .product-tab.active { border-bottom-color: var(--gold); padding-left: 1rem; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-logos { grid-template-columns: repeat(3, 1fr); }
  .home-about { grid-template-columns: 1fr; gap: 3rem; }
  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero-headline { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero-visual { display: none; }
  .industries-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .clients-logos { grid-template-columns: repeat(2, 1fr); }
  .vm-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .contact-form-box { padding: 2rem; }
  .products-layout { gap: 1.5rem; }
}
