/* ============================================
   Homepage — Premium Corporate
   ============================================ */

/* ---- Hero ---- */
.hero-banner-v2 {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 0;
  background: #FDFCFA;
  overflow: hidden;
}

.hero-bg-layer { position: absolute; inset: 0; pointer-events: none; }

.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 80% 15%, rgba(201, 162, 39, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #FDFCFA 0%, #F7F4EE 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 162, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 65% 65% at 50% 35%, black 15%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 65% 65% at 50% 35%, black 15%, transparent 70%);
}

.hero-beam {
  position: absolute;
  width: 1px;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(201, 162, 39, 0.35), transparent);
  animation: beamDrop 5s ease-in-out infinite;
}

.hero-beam:nth-child(1) { left: 18%; top: -160px; animation-delay: 0s; }
.hero-beam:nth-child(2) { left: 52%; top: -160px; animation-delay: 1.5s; height: 120px; }
.hero-beam:nth-child(3) { left: 78%; top: -160px; animation-delay: 3s; }

@keyframes beamDrop {
  0% { transform: translateY(0); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 0.4; }
  100% { transform: translateY(calc(100vh + 160px)); opacity: 0; }
}

.hero-accent-line {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: lineGrow 1s ease forwards 0.4s;
}

@keyframes lineGrow { to { height: 140px; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 0.45rem 1rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards 0.2s;
}

.hero-badge .badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.45); }
  50% { box-shadow: 0 0 0 5px rgba(201, 162, 39, 0); }
}

.hero-banner-v2 .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 3vw, 5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  /* letter-spacing: -0.03em; */
}

.hero-title-line { display: block; }
.hero-title-line .gold-text { color: var(--gold); }
.hero-title-llc { color: var(--charcoal); margin-top: 0.1rem; }

.hero-title-accent {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards 0.45s;
}

.hero-banner-v2 .hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--charcoal-light);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards 0.7s;
}

.hero-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
}

.hero-highlight-item i { color: var(--gold); font-size: 0.7rem; }

.hero-banner-v2 .hero-text {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 1.75rem;
  color: var(--silver);
}

.hero-buttons { opacity: 0; animation: fadeInUp 0.7s ease forwards 0.9s; }

/* ---- Hero Corporate Panel — Ultra Premium ---- */
.hero-panel-wrap {
  position: relative;
  max-width: 470px;
  margin-left: auto;
  padding: 14px;
  perspective: 1200px;
  animation: panelFloat 7s ease-in-out 1.5s infinite;
}

.hero-panel-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(201,162,39,0.14), rgba(201,162,39,0.02) 50%, rgba(201,162,39,0.08));
  animation: wrapGlow 4s ease-in-out infinite alternate;
}

@keyframes wrapGlow {
  0% { opacity: 0.7; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-panel-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(201,162,39,0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: auraPulse 5s ease-in-out infinite;
}

@keyframes auraPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

.hero-corp-panel {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.15),
    0 4px 8px rgba(44, 44, 44, 0.04),
    0 24px 60px rgba(44, 44, 44, 0.1),
    0 48px 100px rgba(44, 44, 44, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: panelReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.5s;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.2s ease-out;
}

@keyframes panelReveal {
  from { opacity: 0; transform: translateX(40px) translateY(20px); }
  to { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.corp-panel-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  z-index: 10;
  pointer-events: none;
  animation: panelShine 6s ease-in-out 2s infinite;
}

@keyframes panelShine {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

.corp-panel-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 6;
  pointer-events: none;
  transition: all 0.4s ease;
}

.corp-panel-corner-tl {
  top: 12px;
  left: 12px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0.7;
  animation: cornerPulse 3s ease-in-out infinite;
}

.corp-panel-corner-br {
  bottom: 12px;
  right: 12px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  opacity: 0.7;
  animation: cornerPulse 3s ease-in-out 1.5s infinite;
}

@keyframes cornerPulse {
  0%, 100% { opacity: 0.5; box-shadow: none; }
  50% { opacity: 1; box-shadow: 0 0 8px rgba(201,162,39,0.4); }
}

.hero-corp-panel:hover .corp-panel-corner-tl,
.hero-corp-panel:hover .corp-panel-corner-br {
  width: 28px;
  height: 28px;
  opacity: 1;
}

/* Header */
.corp-panel-header {
  background:
    radial-gradient(ellipse 90% 80% at 50% -20%, rgba(201,162,39,0.12) 0%, transparent 55%),
    linear-gradient(168deg, #181818 0%, #242424 40%, #2e2e2e 100%);
  padding: 2.35rem 2rem 2.1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.corp-panel-header-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
  animation: headerGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes headerGlow {
  0% { opacity: 0.5; transform: translateX(-50%) scale(0.9); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.corp-panel-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 16h32M16 0v32' stroke='%23C9A227' stroke-opacity='0.04' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

.corp-panel-header-line {
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.3) 15%, rgba(201,162,39,0.3) 85%, transparent);
  overflow: hidden;
}

.corp-panel-header-line .line-shimmer {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  animation: lineShimmer 3s ease-in-out infinite;
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.6);
}

@keyframes lineShimmer {
  0% { left: -50%; }
  100% { left: 150%; }
}

.corp-panel-logo-wrap {
  position: relative;
  display: inline-block;
  padding: 1.15rem 1.85rem;
  background: #0d0d0d;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 10px;
  /* box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9); */
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-corp-panel:hover .corp-panel-logo-wrap {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(201, 162, 39, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo-ring {
  position: absolute;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.logo-ring-1 {
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  animation: ringPulse 3s ease-in-out infinite;
}

.logo-ring-2 {
  width: calc(100% + 44px);
  height: calc(100% + 44px);
  border-style: dashed;
  opacity: 0.4;
  animation: ringPulse 3s ease-in-out 1s infinite reverse;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.03); }
}

.corp-panel-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 11px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,162,39,0.6), transparent 40%, transparent 60%, rgba(201,162,39,0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.corp-panel-header img {
  height: 54px;
  display: block;
  position: relative;
  z-index: 1;
  /* filter: drop-shadow(0 3px 12px rgba(0,0,0,0.35)); */
}

/* Body */
.corp-panel-body {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FDFCFA 60%, #FAF8F4 100%);
  padding: 1.9rem 1.9rem 1.7rem;
  position: relative;
}

.corp-panel-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 10px rgba(201, 162, 39, 0.35);
}

.corp-panel-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
  margin-top: 0.35rem;
}

.corp-panel-tag .tag-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  animation: tagLineGrow 0.8s ease forwards 1s;
}

.corp-panel-tag .tag-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
  animation-delay: 1.1s;
}

@keyframes tagLineGrow {
  to { width: 32px; }
}

.corp-panel-desc {
  font-size: 0.79rem;
  color: var(--silver);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.corp-panel-desc::before {
  content: '◆';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.45rem;
  color: var(--gold);
  background: #FDFCFA;
  padding: 0 6px;
  line-height: 1;
}

.corp-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.corp-panel-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.95rem 0.9rem;
  background: linear-gradient(145deg, #FFFFFF 0%, #FAFAF8 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: panelItemIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.corp-panel-item[data-delay="0"] { animation-delay: 0.7s; }
.corp-panel-item[data-delay="1"] { animation-delay: 0.82s; }
.corp-panel-item[data-delay="2"] { animation-delay: 0.94s; }
.corp-panel-item[data-delay="3"] { animation-delay: 1.06s; }

@keyframes panelItemIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.corp-panel-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 3px 0 0 3px;
}

.item-hover-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201,162,39,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.corp-panel-item:hover {
  border-color: rgba(201, 162, 39, 0.35);
  background: linear-gradient(145deg, #FDF9F2 0%, #FFFFFF 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 12px 28px rgba(44, 44, 44, 0.08),
    0 0 0 1px rgba(201, 162, 39, 0.1);
}

.corp-panel-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.corp-panel-item:hover .item-hover-glow {
  opacity: 1;
}

.corp-panel-item .item-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #FFFFFF 0%, #F8F4EA 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 9px;
  color: var(--gold);
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.1);
  position: relative;
  z-index: 1;
}

.corp-panel-item:hover .item-icon {
  background: linear-gradient(145deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 16px var(--shadow-gold);
  transform: scale(1.08) rotate(-3deg);
}

.corp-panel-item .item-text {
  position: relative;
  z-index: 1;
}

.corp-panel-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.corp-panel-item:hover strong {
  color: var(--gold-dark);
}

.corp-panel-item span {
  font-size: 0.65rem;
  color: var(--silver);
  line-height: 1.35;
}

/* Trust Bar */
.hero-trust-bar {
  position: relative;
  z-index: 5;
  margin-top: auto;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(44, 44, 44, 0.03);
}

.hero-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.5rem 1.75rem;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.hero-trust-item:last-child { border-right: none; }
.hero-trust-item:hover { background: #FDF9F2; }

.hero-trust-item .trust-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal);
}

.hero-trust-item span { font-size: 0.72rem; color: var(--silver); }

.hero-scroll-hint {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  z-index: 3;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1.2s;
}

.hero-scroll-hint .scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ---- Who We Are — Info Panel (no image) ---- */
.corp-info-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 50px var(--shadow);
}

.corp-info-panel-header {
  background: linear-gradient(135deg, #FDF9F2 0%, #F5F0E6 100%);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.corp-info-panel-header .header-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 8px;
  color: var(--gold);
  font-size: 1.25rem;
}

.corp-info-panel-header h3 {
  font-size: 1.15rem;
  margin: 0;
}

.corp-info-panel-header p {
  font-size: 0.82rem;
  color: var(--silver);
  margin: 0;
}

.corp-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.corp-info-cell {
  padding: 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.corp-info-cell:nth-child(2n) { border-right: none; }
.corp-info-cell:nth-child(3),
.corp-info-cell:nth-child(4) { border-bottom: none; }

.corp-info-cell:hover { background: #FDFCFA; }

.corp-info-cell i {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.65rem;
  display: block;
}

.corp-info-cell h5 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.corp-info-cell p {
  font-size: 0.78rem;
  color: var(--silver);
  margin: 0;
  line-height: 1.5;
}

/* ---- Brand Split (icon, no image) ---- */
.brand-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 50px var(--shadow);
}

.brand-split-visual {
  position: relative;
  min-height: 380px;
  background: linear-gradient(145deg, #2C2C2C 0%, #3D3D3D 50%, #2C2C2C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-split-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,162,39,0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(201,162,39,0.08) 0%, transparent 40%);
}

.brand-split-visual .visual-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2.5rem;
}

.brand-split-visual .visual-inner .brand-icon-wrap {
  width: 88px; height: 88px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.15);
  border: 2px solid rgba(201, 162, 39, 0.35);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--gold);
}

.brand-split-visual h3 {
  color: var(--white);
  font-size: 1.65rem;
  margin-bottom: 0.35rem;
}

.brand-split-visual p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin: 0;
}

.brand-split-content {
  background: var(--white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- Our Role — Clean Grid ---- */
.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.role-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.role-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.role-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px var(--shadow);
  border-color: transparent;
}

.role-card:hover::before { transform: scaleX(1); }

.role-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.role-card-num {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  background: #FDF9F2;
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.role-card .card-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,162,39,0.12), rgba(201,162,39,0.04));
  border-radius: 8px;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.role-card:hover .card-icon {
  background: var(--gold);
  color: var(--white);
}

.role-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.role-card p {
  font-size: 0.88rem;
  color: var(--silver);
  margin: 0;
  line-height: 1.65;
}

/* ---- Section Decorations ---- */
.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-heavy { position: relative; }

.section-heavy::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.section-bg-pattern {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.text-block-accent {
  position: relative;
  padding-left: 1.25rem;
}

.text-block-accent::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light), transparent);
  border-radius: 2px;
}

/* ---- Transparency ---- */
.transparency-block-v2 {
  background: linear-gradient(160deg, #2C2C2C 0%, #353535 50%, #2C2C2C 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.transparency-block-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.transparency-block-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='%23C9A227' fill-opacity='0.02'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.transparency-block-v2 .section-title { color: var(--white); }

.transparency-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.transparency-pillar {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: all var(--transition);
}

.transparency-pillar:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.25);
}

.transparency-pillar .pillar-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 8px;
  color: var(--gold);
  font-size: 1.25rem;
}

.transparency-pillar h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.transparency-pillar p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.65;
}

/* ---- Disclaimer — Premium Redesign ---- */
.disclaimer-section {
  position: relative;
  overflow: hidden;
}

.disclaimer-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,162,39,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.disclaimer-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.disclaimer-premium-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 8px 30px rgba(44, 44, 44, 0.05);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.disclaimer-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 44, 44, 0.1);
  border-color: rgba(201, 162, 39, 0.25);
}

.dpc-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  transition: width 0.4s ease;
}

.disclaimer-premium-card:hover .dpc-accent {
  width: 6px;
}

.disclaimer-premium-card.card-warning .dpc-accent {
  background: linear-gradient(180deg, #D4A017, #E8C547);
}

.dpc-header {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.75rem 1.75rem 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #FDFCFA 0%, #FFFFFF 100%);
}

.dpc-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.4s ease;
}

.card-info .dpc-icon {
  background: linear-gradient(145deg, #FDF9F2, #F5F0E6);
  border: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--gold);
}

.card-warning .dpc-icon {
  background: linear-gradient(145deg, #FFF9F0, #FFF3E0);
  border: 1px solid rgba(212, 160, 23, 0.25);
  color: #C9921A;
}

.disclaimer-premium-card:hover .dpc-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 6px 20px var(--shadow-gold);
}

.card-info:hover .dpc-icon {
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: var(--white);
  border-color: var(--gold);
}

.card-warning:hover .dpc-icon {
  background: linear-gradient(145deg, #E8C547, #D4A017);
  color: var(--white);
  border-color: #D4A017;
}

.dpc-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  color: var(--charcoal);
}

.dpc-body {
  padding: 1.5rem 1.75rem 1.75rem 2rem;
  flex: 1;
}

.dpc-body p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.dpc-body p:last-child {
  margin-bottom: 0;
}

.dpc-footer-line {
  height: 1px;
  margin: 0 1.75rem 1.25rem 2rem;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.3;
}

/* ---- Section polish effects ---- */
.corp-info-cell {
  transition: all 0.4s ease;
}

.corp-info-cell:hover {
  background: #FDF9F2;
  transform: translateY(-3px);
}

.corp-info-cell:hover i {
  transform: scale(1.15);
  transition: transform 0.3s ease;
}

.hero-trust-item .trust-icon {
  transition: all 0.4s ease;
}

.hero-trust-item:hover .trust-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px var(--shadow-gold);
}

.cta-card .cta-icon-ring {
  animation: ctaIconPulse 3s ease-in-out infinite;
}

@keyframes ctaIconPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(201, 162, 39, 0); }
}

.transparency-pillar .pillar-icon {
  transition: all 0.4s ease;
}

.transparency-pillar:hover .pillar-icon {
  background: rgba(201, 162, 39, 0.25);
  transform: scale(1.1);
}

.brand-split {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.brand-split:hover {
  box-shadow: 0 24px 70px rgba(44, 44, 44, 0.12);
  transform: translateY(-4px);
}

/* ---- CTA ---- */
.cta-section-v2 {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, #F8F4EA 0%, #EDE6D6 60%, #E5DBC8 100%);
  overflow: hidden;
}

.cta-section-v2::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 50%; height: 180%;
  background: radial-gradient(ellipse, rgba(201,162,39,0.06), transparent 70%);
  pointer-events: none;
}

.cta-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 3.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(44, 44, 44, 0.07);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-card .cta-icon-ring {
  width: 72px; height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FDF9F2;
  border: 2px solid rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.5rem;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
  .hero-banner-v2 {min-height: auto;padding-top: 110px;text-align: center;}
  .hero-panel-wrap { max-width: 100%; margin: 2rem auto 0; }
  .hero-trust-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-trust-item:nth-child(2) { border-right: none; }
  .hero-trust-item:nth-child(1),
  .hero-trust-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .hero-scroll-hint { display: none; }
  .brand-split { grid-template-columns: 1fr; }
  .brand-split-visual { min-height: 260px; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .transparency-pillars { grid-template-columns: repeat(2, 1fr); }
  .disclaimer-premium-grid { grid-template-columns: 1fr; }
  
  .hero-banner-v2 .container {
    padding-right: 0;
}
.hero-banner-v2 .row>* {
    margin-top: 20px;
    padding-right: 0;
}

.hero-banner-v2 .container {
    /* padding-right: 0; */
    width: 100%;
    max-width: 100%;
    display: block !important;
}

.hero-banner-v2 .container .row {
    
}

.hero-highlight-item {
    gap: 2px;
    font-size: 11px;
    padding: 8px 10px;
}

.hero-highlights {
    gap: 4px;
    align-items: center;
    justify-content: center;
}
.hero-banner-v2 .hero-title {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 13px;
}

.hero-badge {
    margin: 0 0 15px;
}
.who-we-are {
    text-align: center;
    padding-top: 50px;
}

.who-we-are .gold-line.line-drawn {
    right: 0;
    display: none;
}












}

@media (max-width: 767.98px) {
  .hero-trust-inner { grid-template-columns: 1fr; }
  .hero-trust-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .hero-trust-item:last-child { border-bottom: none; }
  .role-grid { grid-template-columns: 1fr; }
  .transparency-pillars { grid-template-columns: 1fr; }
  .corp-info-grid { grid-template-columns: 1fr; }
  .corp-info-cell { border-right: none !important; }
  .corp-info-cell:nth-child(3) { border-bottom: 1px solid var(--border); }
  .brand-split-content { padding: 2rem; }
  .cta-card { padding: 2.5rem 1.5rem; }
  .corp-panel-grid { grid-template-columns: 1fr; }
}
