/* ═══════════════════════════════════════════════════
   PremiumWebsites.co — style.css v4
   Simplified · SEO-ready · Brand colours:
   Navy #0D3C5A | Light #F2F2F2 | Gold #b89a4e
   ═══════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --navy:       #0D3C5A;
  --navy-dark:  #091e2e;
  --navy-mid:   #154d72;

  --bg:         #F2F2F2;
  --bg-white:   #FFFFFF;
  --bg-off:     #EAEAEA;

  --text:       #111a24;
  --text-body:  #3a4a58;
  --text-mid:   #6b7f8e;
  --text-dim:   #9aaab6;

  --on-dk:      #f0ede8;
  --on-dk-mid:  #8fb3c9;
  --on-dk-dim:  #4a7a96;

  --gold:       #b89a4e;
  --gold-lt:    #d4b86a;
  --gold-dk:    #8a7138;
  --grad-gold:  linear-gradient(135deg, #b89a4e 0%, #d4b86a 55%, #9a7f38 100%);

  --border:     rgba(13,60,90,0.1);
  --border-nv:  rgba(255,255,255,0.1);

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Inter', system-ui, sans-serif;

  --r:  4px;
  --rm: 10px;

  --nav-h:  70px;
  --max-w:  1160px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --t:      0.26s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
img { display: block; max-width: 100%; }
input, select, button { font-family: var(--body); }

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

/* ── Section head ── */
.sec-tag {
  display: inline-block;
  font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(184,154,78,0.3);
  padding: 5px 14px; border-radius: var(--r); margin-bottom: 20px;
}
.sec-head { text-align: center; max-width: 660px; margin: 0 auto 64px; }
.sec-title {
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 400; line-height: 1.18;
  color: var(--text); margin-bottom: 16px;
}
.sec-title em { font-style: italic; color: var(--navy); }
.sec-sub { font-size: 0.93rem; color: var(--text-mid); line-height: 1.8; }

/* ── Buttons ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  background: var(--grad-gold);
  color: #07090f; font-size: 0.88rem; font-weight: 600;
  border: none; border-radius: var(--r); cursor: pointer;
  transition: opacity var(--t), transform var(--t), box-shadow var(--t);
}
.btn-gold:hover { opacity: 0.88; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(184,154,78,0.35); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px;
  background: rgba(255,255,255,0.08);
  color: var(--on-dk); font-size: 0.88rem; font-weight: 400;
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r); cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 900;
  background: var(--navy);
  border-bottom: 1px solid var(--border-nv);
  transition: box-shadow var(--t);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo-link { display: flex; align-items: center; position: relative; z-index: 1000; width: 260px; height: 100%; }
.nav-logo {
  height: 180px;            /* Significantly bigger, breaking out more */
  width: auto;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-40%); 
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: opacity var(--t), transform var(--t);
  transform-origin: left center;
}
.nav-logo:hover { transform: translateY(-40%) scale(1.05); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.83rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--on-dk-mid); transition: color var(--t);
}
.nav-links a:hover { color: var(--on-dk); }
.nav-cta {
  padding: 10px 22px;
  background: var(--grad-gold) !important;
  color: #07090f !important; font-weight: 600 !important;
  border-radius: var(--r);
  transition: opacity var(--t), transform var(--t) !important;
}
.nav-cta:hover { opacity: 0.9 !important; transform: translateY(-1px) !important; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 7px; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1px; background: var(--on-dk-mid); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative; 
  height: 100vh;            /* Force full height for centering */
  display: flex; align-items: center; justify-content: center;
  padding: 0 40px;
  overflow: hidden; background: var(--navy-dark);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(9,30,46,0.65) 0%, rgba(13,60,90,0.55) 60%, rgba(9,30,46,0.9) 100%);
}
.hero-overlay::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(0deg, var(--navy-dark) 0%, transparent 100%);
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; animation: ptcl linear infinite; }
@keyframes ptcl {
  0%   { opacity: 0; transform: translateY(0); }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-110vh); }
}

.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
}

/* Hero logo — large, centred */
.hero-logo-wrap { margin-bottom: 40px; }
.hero-logo {
  height: 280px;            /* Way, way bigger */
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300; line-height: 1.08;
  color: var(--on-dk); letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-desc {
  font-size: 1rem; color: var(--on-dk-mid);
  line-height: 1.8; max-width: 580px; margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }

/* Stats row */
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r); padding: 18px 32px;
  backdrop-filter: blur(10px);
}
.hstat { display: flex; flex-direction: column; align-items: center; padding: 0 28px; }
.hstat strong {
  font-family: var(--display); font-size: 1.8rem; font-weight: 400;
  background: var(--grad-gold); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; white-space: nowrap;
}
.hstat span { font-size: 0.72rem; color: var(--on-dk-dim); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 4px; }
.hstat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ══════════════════════════════════════
   SERVICES TILES
══════════════════════════════════════ */
#services { background: var(--bg-white); }

.services-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.svc-tile {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rm);
  padding: 32px 26px;
  position: relative; overflow: hidden;
  transition: border-color var(--t), transform 0.35s var(--ease), box-shadow var(--t);
}
.svc-tile::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.svc-tile:hover::before { transform: scaleX(1); }
.svc-tile:hover {
  border-color: rgba(13,60,90,0.18);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(13,60,90,0.09);
}
.svc-tile--featured {
  background: var(--bg);
  border-color: var(--border);
}
.svc-tile--featured::before { transform: scaleX(0); }
.svc-tile--featured h3 { color: var(--text); }
.svc-tile--featured p  { color: var(--text-mid); }
.svc-tile--featured .svc-tile-icon { background: rgba(13,60,90,0.07); border-color: rgba(13,60,90,0.13); color: var(--navy); }
.svc-tile--featured:hover { box-shadow: 0 8px 28px rgba(13,60,90,0.09); }

.svc-tile-icon {
  width: 48px; height: 48px;
  background: rgba(13,60,90,0.07);
  border: 1px solid rgba(13,60,90,0.13);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); margin-bottom: 18px;
}
.svc-tile h3 {
  font-family: var(--display);
  font-size: 1.2rem; font-weight: 400;
  color: var(--text); margin-bottom: 10px; line-height: 1.25;
}
.svc-tile p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.7; }
.svc-badge {
  display: inline-block; margin-top: 14px;
  font-size: 0.63rem; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gold-lt); border: 1px solid rgba(212,184,106,0.3);
  padding: 4px 10px; border-radius: var(--r);
}
.services-cta { text-align: center; margin-top: 48px; }

/* ══════════════════════════════════════
   WHY US – proof strip
══════════════════════════════════════ */
.why-section { background: var(--navy); padding: 72px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.why-proof {
  text-align: center; padding: 48px 36px;
  background: var(--navy);
  transition: background var(--t);
}
.why-proof:hover { background: var(--navy-mid); }
.why-proof strong {
  display: block;
  font-family: var(--display); font-size: 2.6rem; font-weight: 400;
  background: var(--grad-gold); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px; line-height: 1;
}
.why-proof span { font-size: 0.88rem; color: var(--on-dk-mid); line-height: 1.65; max-width: 220px; display: inline-block; }

/* ══════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════ */
.port-section { background: var(--bg); }
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}
.port-item { border-radius: var(--rm); overflow: hidden; }
.pi-wide  { grid-column: span 2; }
.pi-right { grid-column: 2 / span 2; }
.pi-bg {
  width: 100%; height: 100%; position: relative;
  transition: transform 0.8s var(--ease);
  cursor: pointer;
  background-size: cover;
  background-position: center;
}
.port-item:hover .pi-bg { transform: scale(1.08); }
.pi-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(9,30,46,0.96) 0%, rgba(9,30,46,0.15) 65%, transparent 100%);
  transition: opacity 0.4s var(--ease);
}
.port-item:hover .pi-bg::after { opacity: 0.8; }
.pb-1 { background-image: url('oge_real.jpg'); }
.pb-4 { background-image: url('eva_real.png'); }
.pi-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 24px 26px; }
.pi-tag {
  display: inline-block; font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(184,154,78,0.28);
  padding: 3px 10px; border-radius: var(--r); margin-bottom: 8px;
}
.pi-content h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 400; color: var(--on-dk); margin-bottom: 4px; }
.pi-content p  { font-size: 0.8rem; color: var(--on-dk-mid); }

/* ══════════════════════════════════════
   CTA / CONTACT
══════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  background: var(--navy);
}
.cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 300; color: var(--on-dk);
  line-height: 1.18; margin-bottom: 16px;
}
.cta-inner > p { font-size: 0.95rem; color: var(--on-dk-mid); margin-bottom: 40px; }
.cta-form {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 18px;
}
.cta-inp {
  flex: 1; min-width: 150px; max-width: 210px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--r); color: var(--on-dk);
  font-size: 0.86rem; outline: none;
  transition: border-color var(--t);
}
.cta-inp::placeholder { color: var(--on-dk-dim); }
.cta-inp:focus { border-color: rgba(184,154,78,0.45); }
.cta-note { display: block; font-size: 0.73rem; color: var(--on-dk-dim); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--navy-dark); padding: 68px 0 36px; border-top: 1px solid var(--border-nv); }
.ft-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 52px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ft-logo {
  height: 90px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8; margin-bottom: 18px;
  transition: opacity var(--t);
}
.ft-logo:hover { opacity: 1; }
.ft-brand p { font-size: 0.82rem; color: var(--on-dk-dim); line-height: 1.8; max-width: 270px; margin-bottom: 22px; }
.ft-social { display: flex; gap: 8px; }
.ft-social a {
  width: 34px; height: 34px; border: 1px solid var(--border-nv);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  font-size: 0.74rem; font-weight: 600; color: var(--on-dk-dim);
  transition: color var(--t), border-color var(--t);
}
.ft-social a:hover { color: var(--gold); border-color: rgba(184,154,78,0.3); }
.ft-col h4 {
  font-size: 0.67rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dk); margin-bottom: 18px;
}
.ft-col ul { display: flex; flex-direction: column; gap: 10px; }
.ft-col a  { font-size: 0.82rem; color: var(--on-dk-dim); transition: color var(--t); }
.ft-col a:hover { color: var(--on-dk); }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.ft-bottom p { font-size: 0.74rem; color: var(--on-dk-dim); }

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════ */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
[data-reveal].vis { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   AI CHATBOT
══════════════════════════════════════ */
.chat-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 1000;
  display: flex; align-items: center; gap: 10px; cursor: pointer; user-select: none;
}
.chat-bubble-icon {
  width: 54px; height: 54px; background: var(--grad-gold);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: #07090f; box-shadow: 0 4px 20px rgba(184,154,78,0.4);
  transition: transform var(--t), box-shadow var(--t); position: relative; z-index: 2;
}
.chat-bubble:hover .chat-bubble-icon { transform: scale(1.06); box-shadow: 0 8px 30px rgba(184,154,78,0.5); }
/* Removed gold flash animation as requested */
/* .chat-pulse {
  position: absolute; width: 54px; height: 54px; background: var(--gold);
  border-radius: var(--r); animation: cpulse 2.5s ease-out infinite; right: 0; bottom: 0;
}
@keyframes cpulse { 0% { transform: scale(1); opacity: 0.4; } 100% { transform: scale(1.65); opacity: 0; } } */
.chat-label {
  background: var(--navy); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); padding: 7px 14px;
  font-size: 0.78rem; font-weight: 500; color: var(--on-dk); white-space: nowrap;
}
.chat-window {
  position: fixed; bottom: 96px; right: 28px; width: 355px; max-height: 560px;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--rm); box-shadow: 0 20px 60px rgba(13,60,90,0.2);
  z-index: 999; display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; pointer-events: none;
  transform: translateY(14px) scale(0.97); transform-origin: bottom right;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}
.chat-window.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.cw-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: var(--navy); border-bottom: 1px solid var(--border-nv); flex-shrink: 0;
}
.cw-agent { display: flex; align-items: center; gap: 10px; }
.cw-av {
  width: 32px; height: 32px; background: var(--grad-gold);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 1rem; color: #07090f; font-weight: 600;
}
.cw-agent strong { display: block; font-size: 0.84rem; color: var(--on-dk); }
.cw-status { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; color: var(--on-dk-dim); }
.cw-dot { width: 6px; height: 6px; background: #34D399; border-radius: 50%; display: inline-block; }
.cw-close { background: none; border: none; cursor: pointer; color: var(--on-dk-dim); padding: 4px; transition: color var(--t); }
.cw-close:hover { color: var(--on-dk); }
.cw-messages {
  flex: 1; overflow-y: auto; padding: 14px 12px;
  display: flex; flex-direction: column; gap: 10px;
  background: var(--bg); scroll-behavior: smooth;
}
.cw-messages::-webkit-scrollbar { width: 3px; }
.cw-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.msg {
  max-width: 88%; font-size: 0.83rem; line-height: 1.55;
  border-radius: 6px; padding: 9px 12px; animation: mpop 0.2s var(--ease);
}
@keyframes mpop { from { opacity: 0; transform: translateY(5px); } }
.msg-agent { background: var(--bg-white); border: 1px solid var(--border); color: var(--text-body); align-self: flex-start; border-radius: 2px 8px 8px 8px; }
.msg-user  { background: var(--grad-gold); color: #07090f; align-self: flex-end; border-radius: 8px 2px 8px 8px; font-weight: 500; }
.msg-typing { padding: 11px 12px; }
.typing-dots { display: flex; gap: 4px; }
.typing-dots span { width: 5px; height: 5px; background: var(--text-dim); border-radius: 50%; animation: tdot 1.2s ease-in-out infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes tdot { 0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; } 40% { transform: scale(1.2); opacity: 1; } }
.quote-card {
  background: var(--bg); border: 1px solid rgba(13,60,90,0.13);
  border-radius: 6px; padding: 12px; margin-top: 5px; font-size: 0.8rem;
}
.qc-title { font-family: var(--display); font-size: 0.95rem; color: var(--text); margin-bottom: 8px; }
.qc-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.qc-row:last-of-type { border-bottom: none; }
.qc-total { display: flex; justify-content: space-between; margin-top: 8px; font-weight: 600; color: var(--text); font-size: 0.88rem; }
.qc-total span:last-child { color: var(--navy); }
.cw-options { padding: 0 12px 12px; display: flex; flex-wrap: wrap; gap: 6px; flex-shrink: 0; background: var(--bg); }
.cw-opt {
  padding: 6px 12px; background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r); color: var(--text-body); font-size: 0.77rem;
  cursor: pointer; transition: border-color var(--t), color var(--t);
}
.cw-opt:hover { border-color: var(--navy); color: var(--navy); }
.cw-input-row {
  display: flex; gap: 8px; padding: 10px 12px;
  border-top: 1px solid var(--border); background: var(--bg-white); flex-shrink: 0;
}
.cw-input {
  flex: 1; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); padding: 9px 12px;
  color: var(--text); font-size: 0.83rem; outline: none; transition: border-color var(--t);
}
.cw-input::placeholder { color: var(--text-dim); }
.cw-input:focus { border-color: rgba(13,60,90,0.3); }
.cw-send {
  width: 34px; height: 34px; background: var(--navy);
  border: none; border-radius: var(--r); color: white;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: opacity var(--t);
}
.cw-send:hover { opacity: 0.85; }

/* ── Marketplace ───────────────────────────────────── */
.market-section { background: var(--bg); border-top: 1px solid var(--border); }
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.market-tile {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--rm); overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.market-tile:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(13,60,90,0.12); }
.mt-img {
  width: 100%; height: 200px; position: relative; overflow: hidden;
  background: var(--navy);
}
.mt-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.market-tile:hover .mt-img img { transform: scale(1.05); }
.mt-price {
  position: absolute; top: 12px; right: 12px;
  background: var(--grad-gold); color: #07090f;
  padding: 6px 14px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.mt-content { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.mt-content h3 { font-family: var(--display); font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; }
.mt-content p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.55; margin-bottom: 20px; flex: 1; }
.mt-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.mt-dur { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.btn-mt-order {
  padding: 8px 16px; background: var(--navy); color: white;
  border-radius: var(--r); font-size: 0.82rem; font-weight: 600; text-decoration: none;
  transition: all var(--t);
}
.btn-mt-order:hover { background: var(--grad-gold); color: #07090f; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
/* Industries Section */
.ind-section { background: var(--bg-white); padding: 80px 0; border-top: 1px solid var(--border); }
.ind-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
.ind-tag {
  padding: 8px 20px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 50px; font-size: 0.88rem; color: var(--text-body);
  transition: all var(--t);
}
.ind-tag:hover { background: var(--navy); color: white; border-color: var(--navy); transform: translateY(-2px); }

/* Hero Form */
.hero-main-layout {
  display: flex; align-items: center; gap: 80px;
  width: 100%; max-width: 1300px; margin: 0 auto;
}
.hero-text-side { flex: 1.1; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero-form-side { flex: 1.1; width: 100%; }

.hero-lead-card {
  background: var(--bg-white); padding: 48px; border-radius: var(--rm);
  box-shadow: 0 50px 100px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  text-align: left; color: var(--text);
  width: 100%;
}
.hero-lead-card h3 { font-family: var(--display); font-size: 1.5rem; margin-bottom: 8px; color: var(--navy); }
.hero-lead-card p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 24px; }
.hero-field { margin-bottom: 16px; }
.hero-field label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dim); margin-bottom: 6px; font-weight: 600; }
.hero-field input, .hero-field select {
  width: 100%; padding: 12px 14px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); font-size: 0.9rem; outline: none; transition: border-color var(--t);
}
.hero-field input:focus { border-color: var(--navy); }
.hero-form-btn { width: 100%; margin-top: 8px; }

@media (max-width: 1024px) {
  .hero-main-layout { flex-direction: column; text-align: center; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .nav-logo { height: 62px; top: 50%; transform: translateY(-50%); } 
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .hero { height: auto; min-height: 100vh; padding-top: 100px; padding-bottom: 60px; }
  .nav-links {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--navy); flex-direction: column;
    padding: 24px 20px; gap: 20px;
    border-bottom: 1px solid var(--border-nv); z-index: 800;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-logo { height: 120px; max-width: 100%; }
  .hero-h1 { font-size: 2.2rem; }
  .services-tiles { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-proof { padding: 36px 24px; }
  .port-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .port-item { height: 360px; grid-column: auto !important; }
  .pi-wide, .pi-right { grid-column: auto !important; }
  .pi-bg::after { background: linear-gradient(0deg, rgba(9,30,46,0.92) 0%, rgba(9,30,46,0.6) 100%); opacity: 1 !important; }
  .pi-content { padding: 32px; }
  .ft-top { grid-template-columns: 1fr; gap: 28px; }
  .cta-form { flex-direction: column; }
  .cta-inp { max-width: 100%; }
  .chat-window {
    bottom: 0; right: 0; left: 0; width: 100%; height: 100%; max-height: 100%;
    border-radius: 0; border: none; transform: translateY(100%);
    z-index: 2000;
  }
  .chat-window.open { transform: translateY(0); }
  .chat-bubble { width: 56px; height: 56px; border-radius: 50%; bottom: 20px; right: 20px; padding: 0; justify-content: center; }
  .chat-bubble span { display: none; }
  .cw-header { padding: 18px 20px; }
  .cw-messages { padding: 20px 16px; }
  .cw-input-row { padding: 16px 20px 32px; } /* Safe area for modern phones */
  .hero-ctas { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-logo { height: 120px; }
  .hero-h1 { font-size: 2.2rem; }
  .ft-bottom { flex-direction: column; text-align: center; }
  .sec-title { font-size: 1.9rem; }
}
