/* Starcom Trading DMCC — site stylesheet */

:root {
  --navy: #0b1f3a;
  --navy-dark: #071527;
  --navy-soft: #14294a;
  --gold: #c9a24b;
  --gold-light: #e4c878;
  --gold-soft: rgba(201,162,75,0.12);
  --grey: #f6f7fa;
  --text: #2a2e37;
  --text-light: #6b7280;
  --white: #ffffff;
  --max-width: 1180px;
  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --shadow-sm: 0 4px 14px rgba(11,31,58,0.06);
  --shadow-md: 0 14px 34px rgba(11,31,58,0.1);
  --shadow-lg: 0 22px 55px rgba(11,31,58,0.16);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .brand, .btn, .btn-outline, .nav-toggle-label {
  font-family: var(--font-heading);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.top-bar {
  background: var(--navy-dark);
  color: var(--gold-light);
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.top-bar a { color: var(--gold-light); }
.top-bar span { display: inline-flex; align-items: center; gap: 6px; }

header.site-header {
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(201,162,75,0.15);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.brand {
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.brand span { color: var(--gold); }

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.brand-lockup img {
  height: 58px;
  width: auto;
  display: block;
}
.brand-lockup .brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
  text-align: center;
}
.brand-lockup .brand-text .brand-main {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.brand-lockup .brand-text .brand-sub {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1px;
}

.footer-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 14px;
}
.footer-brand-lockup img {
  height: 64px;
  width: auto;
}
.footer-brand-lockup .brand-text {
  display: flex;
  flex-direction: column;
}
.footer-brand-lockup .brand-text .brand-main {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}
.footer-brand-lockup .brand-text .brand-sub {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

nav.main-nav ul {
  display: flex;
  gap: 34px;
}

nav.main-nav a {
  position: relative;
  color: #cdd6e4;
  font-weight: 500;
  font-size: 0.93rem;
  letter-spacing: 0.2px;
  padding: 8px 2px;
  transition: color 0.25s var(--ease);
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.25s var(--ease);
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--white);
}
nav.main-nav a:hover::after,
nav.main-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
}

/* ---------- Hero / Page banner ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 100px 0 90px;
  text-align: center;
}
.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}
.hero p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: #cdd6e4;
  font-size: 1.05rem;
}

.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.page-banner h1 {
  font-size: 2.1rem;
  letter-spacing: 1px;
}
.page-banner .crumb {
  margin-top: 10px;
  color: var(--gold-light);
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #b78f3c);
  color: var(--navy-dark);
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  box-shadow: 0 8px 20px rgba(201,162,75,0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.btn::after { content: "\2192"; transition: transform 0.25s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201,162,75,0.38); }
.btn:hover::after { transform: translateX(3px); }

.btn-outline {
  display: inline-block;
  background: rgba(255,255,255,0.03);
  color: var(--white);
  border: 1px solid rgba(201,162,75,0.55);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-outline:hover { background: rgba(201,162,75,0.15); border-color: var(--gold); transform: translateY(-2px); }

/* ---------- Sections ---------- */
section { padding: 70px 0; }
section.alt { background: var(--grey); }

.section-title {
  text-align: center;
  margin-bottom: 46px;
}
.section-title .kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  font-weight: 700;
}
.section-title h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 10px;
  letter-spacing: -0.3px;
}
.section-title h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}
.section-title p.lead {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--text-light);
  font-size: 1.02rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col img {
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  position: relative;
  background: var(--white);
  border: 1px solid #eceef3;
  border-radius: 10px;
  padding: 32px 26px;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.12rem;
  font-weight: 600;
  text-transform: capitalize;
}
.card p { color: var(--text-light); font-size: 0.95rem; }

/* ---------- Team ---------- */
.team-note {
  background: var(--white);
  border: 1px solid #e7e9ee;
  border-radius: 6px;
  padding: 46px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.team-note p { color: var(--text-light); font-size: 1.02rem; }

/* ---------- Career ---------- */
.resume-box {
  background: var(--white);
  border: 1px solid #e7e9ee;
  border-radius: 8px;
  padding: 40px;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(11,31,58,0.06);
}
.resume-box h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.3rem; }
.resume-box .hint { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input[type=text],
.field input[type=email],
.field input[type=tel] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d8dbe2;
  border-radius: 4px;
  font-size: 0.95rem;
}

.attach-resume {
  border: 2px dashed #c7cede;
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  background: var(--grey);
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}
.attach-resume:hover,
.attach-resume.dragover {
  border-color: var(--gold);
  background: #fbf6ea;
}
.attach-resume input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.attach-resume .icon { font-size: 1.8rem; margin-bottom: 8px; }
.attach-resume .primary-text { color: var(--navy); font-weight: 600; }
.attach-resume .sub-text { color: var(--text-light); font-size: 0.82rem; margin-top: 4px; }
.attach-resume .file-name {
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a7a3d;
  display: none;
}
.attach-resume .file-name.show { display: block; }

.why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info .item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}
.contact-info .item .ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info .item h4 { color: var(--navy); margin-bottom: 4px; font-size: 1rem; }
.contact-info .item p, .contact-info .item a { color: var(--text-light); font-size: 0.95rem; }

.contact-form .field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d8dbe2;
  border-radius: 4px;
  font-size: 0.95rem;
  min-height: 130px;
  resize: vertical;
  font-family: inherit;
}

/* ---------- Footer ---------- */
footer.site-footer {
  position: relative;
  background: var(--navy-dark);
  color: #b8c0cf;
  padding: 56px 0 24px;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)) 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 34px;
}
.footer-grid h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; font-family: var(--font-heading); font-weight: 600; }
.footer-grid p { font-size: 0.9rem; }
.footer-grid ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid ul a:hover { color: var(--gold-light); }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 34px; height: 34px;
  border: 1px solid #2c3e5c;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.social-row a:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #1c2c47;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #7f8aa0;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  background: #eaf7ee;
  color: #1a7a3d;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-status.show { display: block; }

/* ---------- Live market widgets ---------- */
.ticker-bar {
  background: var(--navy-dark);
  border-bottom: 1px solid #1c2c47;
  padding: 6px 0;
}
.market-widget-card {
  background: var(--white);
  border: 1px solid #e7e9ee;
  border-radius: 10px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

/* ---------- News & Research ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.news-grid .news-card:first-child {
  grid-column: 1 / -1;
}
.news-card {
  position: relative;
  background: var(--white);
  border: 1px solid #eceef3;
  border-radius: 10px;
  padding: 28px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.news-card .news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.news-card .news-tag {
  display: inline-block;
  background: var(--gold-soft);
  color: #8a6a24;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.news-card .news-date {
  color: var(--text-light);
  font-size: 0.8rem;
}
.news-card h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
}
.news-card:first-child h3 { font-size: 1.4rem; }
.news-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.news-card .news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.news-card .news-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.news-card .news-source {
  color: var(--text-light);
  font-size: 0.78rem;
  margin-top: 4px;
}
@media (max-width: 860px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ---------- Price board (LME / MCX / Gold / Silver) ---------- */
.price-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--white);
  border: 1px solid #e7e9ee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.price-card .price-card-label {
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 14px;
}
.price-card .price-card-body {
  padding: 4px;
}
@media (max-width: 860px) {
  .price-board { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .price-board { grid-template-columns: 1fr; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Bull / Bear panels ---------- */
.mood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mood-card {
  position: relative;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.mood-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,21,39,0.05) 0%, rgba(7,21,39,0.9) 100%);
  transition: background 0.4s var(--ease);
}
.mood-card .mood-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: var(--white);
}
.mood-card .mood-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.mood-card.bull .mood-tag { background: #1a7a3d; color: var(--white); }
.mood-card.bear .mood-tag { background: #b3261e; color: var(--white); }
.mood-card h3 { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 700; margin-bottom: 8px; }
.mood-card p { color: #d3dae7; font-size: 0.92rem; max-width: 90%; }
.mood-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

/* ---------- Home page extras ---------- */
.hero-home {
  position: relative;
  background:
    linear-gradient(100deg, rgba(7,21,39,0.88) 0%, rgba(11,31,58,0.68) 48%, rgba(11,31,58,0.5) 100%),
    linear-gradient(90deg, transparent 49.5%, rgba(7,21,39,0.55) 49.5%, rgba(7,21,39,0.55) 50.5%, transparent 50.5%),
    url('https://images.unsplash.com/photo-1640459958548-56c1c6717a40?w=1200&q=80') right center / 52% 100% no-repeat,
    url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1200&q=80') left center / 52% 100% no-repeat;
  color: var(--white);
  padding: 150px 0 124px;
  overflow: hidden;
}
.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,162,75,0.35) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.12;
  pointer-events: none;
}
.hero-home .container { position: relative; z-index: 2; }
.hero-home .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,75,0.14);
  border: 1px solid rgba(201,162,75,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}
.hero-home .badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #38c976;
  box-shadow: 0 0 0 3px rgba(56,201,118,0.25);
}
.hero-home .eyebrow {
  color: var(--gold-light);
  letter-spacing: 3px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-home h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3.1rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  max-width: 700px;
}
.hero-home p.sub {
  max-width: 620px;
  color: #d3dae7;
  font-size: 1.08rem;
  margin-bottom: 36px;
}
.hero-home .btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  margin-top: -64px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-stats .stat {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid #eceef2;
  transition: background 0.25s var(--ease);
}
.hero-stats .stat:hover { background: var(--grey); }
.hero-stats .stat:last-child { border-right: none; }
.hero-stats .stat .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
}
.hero-stats .stat .num span { color: var(--gold); }
.hero-stats .stat .lbl {
  color: var(--text-light);
  font-size: 0.83rem;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid #e7e9ee;
  border-radius: 10px;
  padding: 34px 24px;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-card .fi {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 18px rgba(11,31,58,0.22);
  transition: transform 0.3s var(--ease);
}
.feature-card:hover .fi { transform: scale(1.08) rotate(-4deg); }
.feature-card h3 { color: var(--navy); font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 0.9rem; }

.markets-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.markets-row span {
  background: var(--white);
  border: 1px solid #dde1e9;
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
}
.markets-row span:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.cta-banner {
  position: relative;
  background:
    linear-gradient(120deg, rgba(7,21,39,0.94), rgba(11,31,58,0.88)),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 88px 0;
  text-align: center;
}
.cta-banner h2 { font-family: var(--font-heading); font-size: 2.1rem; font-weight: 700; margin-bottom: 14px; }
.cta-banner p { color: #d3dae7; max-width: 560px; margin: 0 auto 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .cards, .why-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
  .hero-stats .stat:nth-child(2) { border-right: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-home h1 { font-size: 2.2rem; }
  .mood-grid { grid-template-columns: 1fr; }
  nav.main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    display: none;
    flex-direction: column;
    padding: 10px 24px 20px;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav ul { flex-direction: column; gap: 4px; }
  .nav-toggle { display: flex; }
  .top-bar .container { justify-content: center; flex-wrap: wrap; gap: 14px; }
}
