/* ============================================
   EVENTZ7 – SHARED STYLESHEET
   style.css
============================================ */

/* ---- Variables ---- */
:root {
  --navy: #0D2856;
  --navy-mid: #1A3E7E;
  --navy-light: #254FA0;
  --gold: #C9A44A;
  --gold-lt: #E2C06E;
  --gold-dk: #A8832A;
  --gold-pale: #FBF3E0;
  --cream: #FDFAF5;
  --white: #fff;
  --gray-50: #F8F7F4;
  --gray-100: #F0EDE6;
  --gray-200: #DDD8CC;
  --gray-400: #9A9488;
  --gray-600: #5A554E;
  --gray-800: #252220;
  --shadow-xs: 0 1px 4px rgba(13,40,86,.07);
  --shadow-sm: 0 2px 10px rgba(13,40,86,.1);
  --shadow-md: 0 6px 24px rgba(13,40,86,.13);
  --shadow-lg: 0 16px 48px rgba(13,40,86,.17);
  --shadow-gold: 0 4px 18px rgba(201,164,74,.28);
  --r: 10px;
  --r-lg: 16px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- Layout ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-sm { padding: 36px 0; }
.section-lg { padding: 72px 0; }
.section-dark { background: linear-gradient(145deg, var(--navy), var(--navy-mid)); }
.section-gray { background: var(--gray-50); }
.section-cream { background: var(--cream); }

/* ---- Typography ---- */
.cinzel { font-family: 'Cinzel', serif; }
.label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); background: rgba(201,164,74,.1); border: 1px solid rgba(201,164,74,.28);
  padding: 5px 14px; border-radius: 40px; margin-bottom: 10px;
}
.label.dark { color: var(--gold-lt); background: rgba(201,164,74,.12); border-color: rgba(201,164,74,.3); }
.sh { font-family: 'Cinzel', serif; font-size: clamp(1.5rem, 2.8vw, 2.3rem); font-weight: 700; color: var(--navy); line-height: 1.22; letter-spacing: .01em; }
.sh span { color: var(--gold); }
.sh.white { color: var(--white); }
.sh.white span { color: var(--gold-lt); }
.sh-sm { font-family: 'Cinzel', serif; font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 700; color: var(--navy); line-height: 1.25; }
.sh-sm span { color: var(--gold); }
.sdesc { font-size: .92rem; color: var(--gray-600); line-height: 1.7; max-width: 580px; }
.sdesc.center { margin: 0 auto; text-align: center; }
.sdesc.white { color: rgba(255,255,255,.7); }
.divider { width: 44px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); border-radius: 2px; margin: 10px 0 18px; }
.divider.center { margin-left: auto; margin-right: auto; }

/* ---- Section Header ---- */
.sec-header { text-align: center; margin-bottom: 36px; }
.sec-header .sdesc { margin: 8px auto 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 26px; border-radius: 50px; font-weight: 600; font-size: .88rem;
  border: none; transition: all .28s var(--ease); white-space: nowrap; cursor: pointer;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-dk), var(--gold)); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(201,164,74,.42); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-wa { background: linear-gradient(135deg, #25D366, #1EB854); color: var(--white); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(37,211,102,.4); }
.btn-lg { padding: 13px 30px; font-size: .93rem; }
.btn-sm { padding: 8px 18px; font-size: .8rem; }

/* ---- Cards ---- */
.card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs); transition: all .3s var(--ease); overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(201,164,74,.35); }

/* ---- Fade-in ---- */
.fi { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fi.vis { opacity: 1; transform: none; }

/* ============================================
   TOP BAR
============================================ */
#topbar {
  background: linear-gradient(90deg, var(--navy), var(--navy-mid));
  padding: 9px 0; overflow: hidden; position: relative; z-index: 1001;
}
.topbar-track {
  display: flex; align-items: center; gap: 48px;
  animation: ticker 26s linear infinite; white-space: nowrap; width: max-content;
}
.topbar-item { display: flex; align-items: center; gap: 8px; font-size: .79rem; font-weight: 500; color: var(--gold-lt); letter-spacing: .04em; }
.topbar-badge { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: var(--navy); font-weight: 800; font-size: .65rem; padding: 2px 9px; border-radius: 20px; text-transform: uppercase; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   NAVBAR
============================================ */
#navbar {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-xs);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 8px 20px; max-width: 1160px; margin: 0 auto; gap: 16px; }
.nav-logo img { height: 72px; width: auto; max-width: 220px; object-fit: contain; mix-blend-mode: multiply; display: block; }
.nav-menu { display: flex; align-items: center; gap: 24px; }
.nav-menu a { font-size: .86rem; font-weight: 500; color: var(--gray-600); position: relative; padding: 4px 0; transition: color .22s; }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); border-radius: 2px; transition: width .28s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--navy); }
.nav-menu a.active::after, .nav-menu a:hover::after { width: 100%; }
.nav-end { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 21px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .28s; }
#mob-nav { display: none; flex-direction: column; background: var(--white); border-top: 1px solid var(--gray-100); padding: 10px 20px 18px; }
#mob-nav a { padding: 11px 0; font-size: .92rem; font-weight: 500; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); transition: color .2s; }
#mob-nav a:hover { color: var(--gold); }
#mob-nav.open { display: flex; }

/* ============================================
   HERO
============================================ */
.hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 55%, #1E4A96 100%);
  padding: 56px 0 48px; position: relative; overflow: hidden; display: flex; align-items: center;
}
.hero::before { content: ''; position: absolute; top: -140px; right: -140px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(201,164,74,.14) 0%, transparent 68%); border-radius: 50%; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 2; }
.hero-lbl { display: inline-flex; align-items: center; gap: 7px; background: rgba(201,164,74,.13); border: 1px solid rgba(201,164,74,.35); color: var(--gold-lt); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: 40px; margin-bottom: 16px; }
.hero-h1 { font-family: 'Cinzel', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.18; margin-bottom: 14px; letter-spacing: .015em; }
.hero-h1 span { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,.82); line-height: 1.62; margin-bottom: 8px; }
.hero-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 26px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,.07); border: 1px solid rgba(201,164,74,.2); color: rgba(255,255,255,.8); font-size: .77rem; font-weight: 500; padding: 5px 12px; border-radius: 40px; }
.chip-ck { color: var(--gold); }
.hero-img-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.3); border: 1px solid rgba(201,164,74,.18); animation: float 6.5s ease-in-out infinite; }
.hero-img-card img { width: 100%; height: 400px; object-fit: cover; }
.float-badge { position: absolute; background: var(--white); border-radius: var(--r); padding: 12px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; }
.fb-tl { top: -18px; left: -18px; }
.fb-br { bottom: 24px; right: -18px; }
.fb-icon { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.fb-gold { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); }
.fb-navy { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--gold-lt); }
.fb-num { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.fb-txt { font-size: .67rem; color: var(--gray-400); font-weight: 500; margin-top: 1px; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================
   TRUST STRIP
============================================ */
.trust-strip { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); padding: 14px 0; }
.trust-strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.ts-item { display: flex; align-items: center; gap: 8px; padding: 6px 22px; border-right: 1px solid rgba(13,40,86,.16); font-size: .82rem; font-weight: 600; color: var(--navy); white-space: nowrap; }
.ts-item:last-child { border-right: none; }
.ts-icon { font-size: 1rem; }

/* ============================================
   CLIENT LOGO SLIDER
============================================ */
.logo-slider { padding: 32px 0; background: var(--cream); border-bottom: 1px solid var(--gray-100); }
.logo-slider-label { text-align: center; font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 20px; }
.logo-track-wrap { overflow: hidden; position: relative; }
.logo-track-wrap::before, .logo-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 72px; z-index: 2; pointer-events: none; }
.logo-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.logo-track-wrap::after { right: 0; background: linear-gradient(-90deg, var(--cream), transparent); }
.logo-track { display: flex; align-items: center; gap: 36px; animation: logoScroll 22s linear infinite; width: max-content; }
.logo-track:hover { animation-play-state: paused; }
.logo-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r); padding: 12px 22px; font-family: 'Cinzel', serif; font-size: .88rem; font-weight: 700; color: var(--navy); white-space: nowrap; box-shadow: var(--shadow-xs); transition: all .28s; flex-shrink: 0; }
.logo-item:hover { border-color: var(--gold); color: var(--gold-dk); }
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   WHY CARDS
============================================ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why-card { padding: 28px 22px; text-align: center; position: relative; overflow: hidden; }
.why-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.why-card:hover::after { transform: scaleX(1); }
.why-icon { width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.6rem; background: var(--gray-50); border: 1px solid var(--gray-200); transition: all .3s; }
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); }
.why-title { font-family: 'Cinzel', serif; font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: .03em; }
.why-desc { font-size: .82rem; color: var(--gray-600); line-height: 1.62; }

/* ============================================
   COLLECTION CARDS
============================================ */
.coll-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.coll-grid-3 { grid-template-columns: repeat(3, 1fr); }
.coll-card { cursor: pointer; }
.coll-img { position: relative; overflow: hidden; height: 200px; }
.coll-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.coll-card:hover .coll-img img { transform: scale(1.07); }
.coll-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,40,86,.68) 0%, transparent 55%); opacity: 0; transition: opacity .32s; display: flex; align-items: flex-end; padding: 14px; }
.coll-card:hover .coll-overlay { opacity: 1; }
.coll-ovr-btn { background: var(--gold); color: var(--navy); font-size: .74rem; font-weight: 700; padding: 5px 14px; border-radius: 40px; }
.coll-badge { position: absolute; top: 10px; left: 10px; background: var(--gold); color: var(--navy); font-size: .65rem; font-weight: 800; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .06em; }
.coll-body { padding: 16px 18px; }
.coll-title { font-family: 'Cinzel', serif; font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; letter-spacing: .02em; }
.coll-desc { font-size: .8rem; color: var(--gray-600); line-height: 1.55; margin-bottom: 10px; }
.coll-arrow { display: flex; align-items: center; gap: 4px; color: var(--gold-dk); font-size: .76rem; font-weight: 600; transition: gap .2s; }
.coll-card:hover .coll-arrow { gap: 8px; }

/* ============================================
   STATS (DARK SECTION)
============================================ */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.stat-card { background: rgba(255,255,255,.06); border: 1px solid rgba(201,164,74,.2); border-radius: var(--r-lg); padding: 26px 18px; text-align: center; transition: all .3s; backdrop-filter: blur(4px); }
.stat-card:hover { background: rgba(201,164,74,.1); border-color: rgba(201,164,74,.4); transform: translateY(-4px); }
.stat-num { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 900; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.68); margin-top: 6px; font-weight: 500; }

/* ============================================
   STEPS
============================================ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.steps-line { position: absolute; top: 46px; left: calc(16.67% + 14px); right: calc(16.67% + 14px); height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); z-index: 0; }
.step-card { padding: 30px 22px; text-align: center; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: var(--gold); font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 2.5px solid var(--gold); box-shadow: var(--shadow-gold); transition: transform .3s; }
.step-card:hover .step-num { transform: scale(1.08); }
.step-icon { font-size: 1.5rem; margin-bottom: 12px; }
.step-title { font-family: 'Cinzel', serif; font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: .03em; }
.step-desc { font-size: .81rem; color: var(--gray-600); line-height: 1.62; }

/* ============================================
   INDUSTRIES
============================================ */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ind-chip { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r); padding: 14px 18px; font-size: .84rem; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-xs); transition: all .28s; }
.ind-chip:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateY(-2px); }
.ind-ic { font-size: 1.1rem; flex-shrink: 0; }

/* ============================================
   TESTIMONIALS
============================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi-card { padding: 26px 24px; position: relative; }
.testi-card::before { content: '\201C'; position: absolute; top: 14px; right: 20px; font-family: 'Cinzel', serif; font-size: 4rem; color: var(--gold-pale); line-height: 1; pointer-events: none; }
.testi-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: .88rem; }
.testi-text { font-size: .86rem; color: var(--gray-600); line-height: 1.72; font-style: italic; margin-bottom: 18px; }
.testi-auth { display: flex; align-items: center; gap: 11px; }
.auth-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: 'Cinzel', serif; font-size: .95rem; font-weight: 700; border: 2px solid var(--gold); flex-shrink: 0; }
.auth-name { font-weight: 700; font-size: .88rem; color: var(--navy); }
.auth-role { font-size: .74rem; color: var(--gray-400); margin-top: 1px; }

/* ============================================
   MOQ TABLE & TIMELINE
============================================ */
.moq-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.moq-table th { background: var(--navy); color: var(--gold-lt); font-family: 'Cinzel', serif; font-size: .78rem; font-weight: 700; padding: 12px 18px; text-align: left; letter-spacing: .06em; }
.moq-table td { background: var(--white); padding: 11px 18px; font-size: .84rem; color: var(--gray-800); border-bottom: 1px solid var(--gray-100); }
.moq-table tr:last-child td { border-bottom: none; }
.moq-table tr:hover td { background: var(--gold-pale); }
.moq-badge { display: inline-block; background: var(--gold-pale); color: var(--gold-dk); font-size: .7rem; font-weight: 700; padding: 2px 9px; border-radius: 20px; }

.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 14px; padding-bottom: 22px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item:last-child .tl-line { display: none; }
.tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.tl-dot { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.tl-line { flex: 1; width: 2px; background: linear-gradient(180deg, var(--gold), rgba(201,164,74,.12)); margin: 3px auto; min-height: 22px; }
.tl-content { padding-top: 5px; }
.tl-title { font-family: 'Cinzel', serif; font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; letter-spacing: .02em; }
.tl-desc { font-size: .79rem; color: var(--gray-600); line-height: 1.58; }

/* ============================================
   CUSTOMIZATION
============================================ */
.custom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.custom-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.custom-img img { width: 100%; height: 400px; object-fit: cover; }
.custom-tag { position: absolute; bottom: -16px; right: -16px; background: var(--white); border-radius: var(--r); padding: 14px 18px; box-shadow: var(--shadow-md); border-left: 4px solid var(--gold); }
.custom-tag-h { font-family: 'Cinzel', serif; font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.custom-tag-s { font-size: .72rem; color: var(--gray-400); }
.feat-list { display: flex; flex-direction: column; gap: 11px; margin: 20px 0 26px; }
.feat-item { display: flex; align-items: center; gap: 12px; }
.feat-icon { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--gold), var(--gold-lt)); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.feat-text { font-size: .88rem; font-weight: 500; color: var(--gray-800); }

/* ============================================
   CONTACT / FORM
============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-box { background: linear-gradient(145deg, var(--navy), var(--navy-mid)); border-radius: var(--r-lg); padding: 30px; color: var(--white); margin-top: 24px; }
.ci-title { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--gold-lt); margin-bottom: 18px; letter-spacing: .03em; }
.ci-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: .85rem; color: rgba(255,255,255,.8); }
.ci-ic { width: 32px; height: 32px; border-radius: 9px; background: rgba(201,164,74,.16); border: 1px solid rgba(201,164,74,.25); display: flex; align-items: center; justify-content: center; font-size: .88rem; flex-shrink: 0; }
.catalog-box { margin-top: 22px; background: rgba(201,164,74,.1); border: 1px solid rgba(201,164,74,.25); border-radius: var(--r); padding: 16px; text-align: center; }
.catalog-txt { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 12px; line-height: 1.58; }
.form-card { background: var(--white); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.form-title { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.form-sub { font-size: .82rem; color: var(--gray-400); margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1/-1; }
.flabel { font-size: .78rem; font-weight: 600; color: var(--navy); letter-spacing: .02em; }
.finput, .ftextarea { padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--r); font-size: .87rem; font-family: 'Inter', sans-serif; color: var(--gray-800); background: var(--white); transition: border-color .22s, box-shadow .22s; outline: none; }
.finput:focus, .ftextarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,164,74,.12); }
.finput::placeholder, .ftextarea::placeholder { color: var(--gray-400); }
.ftextarea { resize: vertical; min-height: 100px; }
.fsubmit { margin-top: 6px; width: 100%; padding: 13px; font-size: .92rem; }

/* ============================================
   ABOUT
============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-img-box { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.about-img-box img { width: 100%; height: 170px; object-fit: cover; transition: transform .45s; }
.about-img-box:hover img { transform: scale(1.04); }
.about-img-box.wide { grid-column: span 2; }
.about-img-box.wide img { height: 155px; }
.about-vals { display: flex; flex-direction: column; gap: 16px; margin: 20px 0 26px; }
.about-val { display: flex; gap: 13px; align-items: flex-start; }
.av-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--gold-pale); border: 1px solid rgba(201,164,74,.28); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.av-title { font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: 2px; }
.av-desc { font-size: .79rem; color: var(--gray-600); line-height: 1.58; }

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 44px 0 40px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(201,164,74,.14) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Cinzel', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin: 10px 0 10px; letter-spacing: .02em; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: .92rem; color: rgba(255,255,255,.7); max-width: 540px; margin: 0 auto; line-height: 1.65; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ============================================
   CTA BANNER
============================================ */
.cta-banner { background: linear-gradient(145deg, var(--navy), var(--navy-mid)); padding: 56px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: 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'%3E%3Cg fill='%23C9A44A' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; }
.cta-title { font-family: 'Cinzel', serif; font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin: 10px 0; letter-spacing: .02em; }
.cta-title span { color: var(--gold); }
.cta-desc { font-size: .9rem; color: rgba(255,255,255,.68); line-height: 1.7; max-width: 500px; margin: 0 auto 28px; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============================================
   FOOTER
============================================ */
#footer { background: var(--navy); padding: 48px 0 0; color: rgba(255,255,255,.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo-box { display: inline-block; background: var(--white); border-radius: 9px; padding: 5px 11px; margin-bottom: 14px; }
.footer-logo-box img { height: 46px; width: auto; object-fit: contain; }
.footer-desc { font-size: .82rem; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 8px; }
.fsoc { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .88rem; transition: all .28s; cursor: pointer; }
.fsoc:hover { background: var(--gold); border-color: var(--gold); }
.fcol-title { font-size: .76rem; font-weight: 700; color: var(--white); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.fcol-title::after { content: ''; display: block; width: 22px; height: 2px; background: var(--gold); margin-top: 6px; }
.flinks { display: flex; flex-direction: column; gap: 10px; }
.flinks a { font-size: .82rem; color: rgba(255,255,255,.52); transition: color .22s; }
.flinks a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; font-size: .78rem; gap: 12px; flex-wrap: wrap; }
.fbot-links { display: flex; gap: 18px; }
.fbot-links a { font-size: .78rem; color: rgba(255,255,255,.34); transition: color .2s; }
.fbot-links a:hover { color: var(--gold); }

/* ============================================
   FLOATING ELEMENTS
============================================ */
#wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 9999; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #1EB854); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 5px 20px rgba(37,211,102,.4); cursor: pointer; text-decoration: none; transition: transform .3s, box-shadow .3s; }
#wa-float:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 10px 28px rgba(37,211,102,.52); }
.wa-ping { position: absolute; top: -3px; right: -3px; width: 15px; height: 15px; background: #FF3B30; border-radius: 50%; border: 2px solid var(--white); animation: ping 2.2s ease-in-out infinite; }
@keyframes ping { 0%, 100% { transform: scale(1); opacity: 1; } 55% { transform: scale(1.32); opacity: .65; } }
#sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: var(--white); border-top: 1px solid var(--gray-200); padding: 10px 14px; box-shadow: 0 -3px 16px rgba(13,40,86,.1); flex-direction: row; gap: 9px; }
#sticky-cta .btn { flex: 1; padding: 11px 10px; font-size: .82rem; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu, .nav-end .btn-lg { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { height: 60px; max-width: 180px; }
  .nav-wrap { padding: 8px 14px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-img-card img { height: 280px; }
  .fb-tl, .fb-br { display: none; }
  .hero-btns { flex-direction: column; }
  .custom-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { justify-content: flex-start; overflow-x: auto; padding: 0 16px; }
  .ts-item { border-right: none; padding: 6px 16px; }
  #sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  .form-grid { grid-template-columns: 1fr; }
  .coll-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .coll-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 22px 16px; }
  .why-grid { grid-template-columns: 1fr; }
}
