/* ============================================================
   SBS MEDIA — Shared Design System
   Strats By SeveN (content) · Business By SeveN (web & marketing)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;700&display=swap');

:root {
  --black:    #0D0D0D;
  --charcoal: #1C1C1E;
  --coal:     #2A2A2A;
  --burnt:    #7A2800;
  --rust:     #A83A00;
  --mid:      #C94E10;
  --sunset:   #E2622A; /* primary accent */
  --orange:   #F4872A;
  --amber:    #F5AC1A;
  --grey1:    #888888;
  --grey2:    #555555;
  --white:    #F5F0EB;
  --wrap:     1140px;
  --grad:     linear-gradient(90deg, var(--amber), var(--orange), var(--sunset));
}

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

html { scroll-behavior: smooth; background: #0D0D0D; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* subtle blueprint grid + right-side glow (brand: glow comes from the right) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--coal) 1px, transparent 1px),
    linear-gradient(90deg, var(--coal) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  top: -15%; right: -15%;
  width: 60%; height: 75%;
  background: radial-gradient(circle, rgba(122,40,0,0.38) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { position: relative; z-index: 1; max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.grad-v { background: linear-gradient(180deg, var(--amber), var(--sunset)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ── NAV ───────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,13,13,0.82);
  backdrop-filter: blur(12px);
  border-bottom: .5px solid var(--coal);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 68px; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-brand img { width: 30px; height: auto; }
.nav-brand .bn { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 3px; line-height: 1; }
.nav-brand .bn small { display: block; font-family: 'DM Sans', sans-serif; font-size: 8px; letter-spacing: 3px; color: var(--grey1); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 13px; letter-spacing: 1px; color: var(--grey1); font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: .25s; }

/* ── BUTTONS ───────────────────────────────────────── */
.btn { display: inline-block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; text-decoration: none; padding: 14px 28px; border-radius: 2px; cursor: pointer; transition: .25s; white-space: nowrap; }
.btn-sm { padding: 11px 20px; font-size: 11px; }
.btn-p { background: linear-gradient(90deg, var(--orange), var(--sunset)); color: var(--black); border: none; }
.btn-p:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-g { border: .5px solid var(--coal); color: var(--white); }
.btn-g:hover { border-color: var(--sunset); color: var(--sunset); }

/* ── SECTION SCAFFOLDING ───────────────────────────── */
.section { padding: 84px 0; position: relative; }
.section + .section { border-top: .5px solid var(--coal); }
.eyebrow { font-size: 11px; letter-spacing: 4px; color: var(--sunset); text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 2px; line-height: 1; margin-bottom: 18px; }
.lead { font-size: 16px; font-weight: 300; color: var(--grey1); max-width: 640px; line-height: 1.75; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.diamond { display: inline-block; width: 9px; height: 9px; background: var(--sunset); transform: rotate(45deg); }

/* ── DIVISION BADGE ────────────────────────────────── */
.divbadge { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; padding: 6px 12px; border: .5px solid var(--coal); border-radius: 2px; margin-bottom: 18px; }
.divbadge::before { content: ''; width: 7px; height: 7px; transform: rotate(45deg); }
.divbadge.strats { color: var(--amber); } .divbadge.strats::before { background: var(--amber); }
.divbadge.biz { color: var(--sunset); } .divbadge.biz::before { background: var(--sunset); }

/* ── HERO ──────────────────────────────────────────── */
.hero { padding: 96px 0 88px; }
.hero-inner { display: flex; align-items: center; gap: 52px; flex-wrap: wrap; }
.hero-logo { flex-shrink: 0; }
.hero-logo img { width: 132px; }
.hero-text { flex: 1; min-width: 320px; }
.hero-brand { font-family: 'Bebas Neue', sans-serif; font-size: 88px; line-height: .86; letter-spacing: 3px; margin-bottom: 18px; }
.hero-brand .by { display: block; font-size: 38px; letter-spacing: 8px; color: var(--grey2); -webkit-text-fill-color: var(--grey2); }
.hero-tag { font-size: 13px; letter-spacing: 3px; color: var(--grey1); text-transform: uppercase; margin-bottom: 20px; }
.hero-desc { font-size: 18px; font-weight: 300; color: var(--grey1); line-height: 1.75; max-width: 580px; margin-bottom: 30px; }
.hero-desc strong { color: var(--white); font-weight: 500; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* page hero (compact, for inner pages) */
.phero { padding: 72px 0 56px; }
.phero h1 { font-family: 'Bebas Neue', sans-serif; font-size: 68px; letter-spacing: 2px; line-height: .95; margin-bottom: 16px; }
.phero .lead { font-size: 17px; }

/* ── STAT STRIP ────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.stat { background: var(--charcoal); padding: 32px 24px; text-align: center; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey1); }

/* ── CARDS GRID (who / divisions) ──────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 32px; }
.card { background: var(--charcoal); padding: 30px 26px; position: relative; overflow: hidden; transition: .3s; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--burnt), var(--sunset)); opacity: 0; transition: .3s; }
.card:hover::before { opacity: 1; }
.card-num { font-family: 'Bebas Neue', sans-serif; font-size: 50px; line-height: 1; opacity: .32; margin-bottom: 10px; }
.card-title { font-size: 16px; font-weight: 700; margin-bottom: 9px; letter-spacing: .5px; }
.card-desc { font-size: 13px; font-weight: 300; color: var(--grey1); line-height: 1.7; }

/* division feature cards */
.divcard { background: var(--charcoal); padding: 40px 34px; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.divcard.strats { background: linear-gradient(160deg, rgba(122,40,0,.32) 0%, var(--charcoal) 60%); }
.divcard.biz { background: linear-gradient(160deg, rgba(226,98,42,.20) 0%, var(--charcoal) 60%); }
.divcard h3 { font-family: 'Bebas Neue', sans-serif; font-size: 38px; letter-spacing: 1.5px; line-height: 1; margin: 14px 0 12px; }
.divcard p { font-size: 14px; font-weight: 300; color: var(--grey1); line-height: 1.75; margin-bottom: 18px; flex: 1; }
.divcard ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.divcard li { font-size: 13px; color: var(--white); display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.divcard li::before { content: ''; width: 7px; height: 7px; background: var(--sunset); transform: rotate(45deg); flex-shrink: 0; margin-top: 6px; }

/* ── SERVICE ROWS ──────────────────────────────────── */
.svc { display: grid; grid-template-columns: 54px 1fr auto; align-items: start; gap: 24px; padding: 34px 0; border-bottom: .5px solid var(--coal); }
.svc:first-of-type { border-top: .5px solid var(--coal); }
.svc-num { font-family: 'Bebas Neue', sans-serif; font-size: 40px; line-height: 1; padding-top: 2px; }
.svc-title { font-size: 20px; font-weight: 700; margin-bottom: 9px; }
.svc-desc { font-size: 14px; font-weight: 300; color: var(--grey1); line-height: 1.75; max-width: 600px; }
.svc-desc strong { color: var(--white); font-weight: 500; }
.tags { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; padding-top: 4px; }
.tag { font-size: 10px; letter-spacing: 2px; padding: 5px 11px; border: .5px solid var(--coal); color: var(--grey2); text-transform: uppercase; white-space: nowrap; }
.tag.hot { border-color: var(--sunset); color: var(--sunset); }

/* ── PRICING ───────────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; align-items: stretch; }
.price-card { background: var(--charcoal); border: .5px solid var(--coal); padding: 34px 28px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: .3s; }
.price-card:hover { transform: translateY(-4px); border-color: var(--rust); }
.price-card.feat { background: linear-gradient(160deg, var(--burnt) 0%, var(--charcoal) 55%); border-color: var(--sunset); }
.price-card.feat::after { content: 'MOST POPULAR'; position: absolute; top: 24px; right: -40px; background: var(--amber); color: var(--black); font-size: 9px; font-weight: 700; letter-spacing: 2px; padding: 6px 50px; transform: rotate(45deg); text-align: center; }
.p-type { font-size: 10px; letter-spacing: 3px; color: var(--sunset); text-transform: uppercase; margin-bottom: 14px; }
.p-name { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 1.5px; line-height: 1; margin-bottom: 16px; }
.p-amt { font-family: 'Bebas Neue', sans-serif; font-size: 50px; line-height: 1; margin-bottom: 4px; }
.p-amt small { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300; color: var(--grey1); letter-spacing: 0; }
.p-amt .pre { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300; color: var(--grey1); letter-spacing: 1px; }
.p-sub { font-size: 12px; color: var(--grey1); margin-bottom: 22px; font-weight: 300; }
.p-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.p-list li { font-size: 13px; color: var(--grey1); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.price-card.feat .p-list li { color: var(--white); }
.p-list li::before { content: ''; width: 7px; height: 7px; background: var(--sunset); transform: rotate(45deg); flex-shrink: 0; margin-top: 6px; }
.p-btn { display: block; text-align: center; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; text-decoration: none; padding: 14px; border-radius: 2px; transition: .25s; border: .5px solid var(--sunset); color: var(--amber); }
.p-btn:hover { background: var(--sunset); color: var(--black); }
.price-card.feat .p-btn { background: linear-gradient(90deg, var(--orange), var(--amber)); color: var(--black); border: none; }
.price-card.feat .p-btn:hover { filter: brightness(1.1); }
.p-note { text-align: center; font-size: 13px; color: var(--grey1); font-weight: 300; margin-top: 28px; font-style: italic; }

/* ── PROCESS STEPS ─────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 34px; }
.step { background: var(--charcoal); padding: 28px 20px; }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 3px; color: var(--sunset); margin-bottom: 12px; }
.step-title { font-size: 14px; font-weight: 700; margin-bottom: 9px; line-height: 1.3; }
.step-desc { font-size: 12px; font-weight: 300; color: var(--grey2); line-height: 1.6; }

/* ── FAQ ───────────────────────────────────────────── */
.faq-item { border-bottom: .5px solid var(--coal); padding: 22px 0; }
.faq-q { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 8px; display: flex; gap: 12px; align-items: baseline; }
.faq-q span { color: var(--sunset); font-family: 'Bebas Neue', sans-serif; font-size: 18px; flex-shrink: 0; }
.faq-a { font-size: 14px; font-weight: 300; color: var(--grey1); line-height: 1.75; padding-left: 30px; }

/* ── PORTFOLIO ─────────────────────────────────────── */
.case { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 34px; }
.browser { background: var(--charcoal); border: .5px solid var(--coal); border-radius: 6px; overflow: hidden; }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #151517; border-bottom: .5px solid var(--coal); }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--coal); display: inline-block; }
.browser-bar .url { margin-left: 10px; font-size: 11px; color: var(--grey1); background: var(--black); padding: 4px 12px; border-radius: 20px; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.browser-frame { position: relative; width: 100%; height: 420px; overflow: hidden; background: var(--black); }
.browser-frame iframe { position: absolute; top: 0; left: 0; width: 1280px; height: 1050px; border: 0; transform: scale(.55); transform-origin: 0 0; }
.case-label { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--charcoal); }
.case-label .tag-lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.case-label.before .tag-lbl { color: var(--grey1); }
.case-label.after .tag-lbl { color: var(--amber); }

.live-embed { margin-top: 34px; border: .5px solid var(--coal); border-radius: 6px; overflow: hidden; }
.live-embed .browser-bar { background: #151517; }
.live-embed iframe { width: 100%; height: 640px; border: 0; background: var(--black); display: block; }

/* ── DISCORD / COMMUNITY EMBED ─────────────────────── */
.community { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.discord-card { background: linear-gradient(160deg, #1e2024 0%, var(--charcoal) 70%); border: .5px solid var(--coal); border-radius: 10px; padding: 30px; position: relative; overflow: hidden; }
.discord-card .dc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.discord-card .dc-dot { width: 11px; height: 11px; border-radius: 50%; background: #3ba55d; box-shadow: 0 0 8px #3ba55d; }
.discord-card .dc-server { font-size: 15px; font-weight: 700; }
.discord-card .dc-meta { font-size: 12px; color: var(--grey1); }
.discord-card .dc-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: .5px solid var(--coal); }
.discord-card .dc-avatar { width: 38px; height: 38px; border-radius: 10px; background: var(--grad); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.discord-card .dc-avatar img { width: 26px; }
.discord-card .dc-join { display: block; text-align: center; margin-top: 20px; background: #5865F2; color: #fff; text-decoration: none; font-weight: 700; font-size: 13px; letter-spacing: 1px; padding: 14px; border-radius: 6px; transition: .2s; }
.discord-card .dc-join:hover { filter: brightness(1.08); }

/* ── SOCIAL ICONS ──────────────────────────────────── */
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials a { width: 44px; height: 44px; border: .5px solid var(--coal); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: .25s; color: var(--grey1); }
.socials a:hover { border-color: var(--sunset); color: var(--white); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; fill: currentColor; }

/* ── CTA BAND ──────────────────────────────────────── */
.cta { text-align: center; padding: 92px 0; }
.cta h2 { font-family: 'Bebas Neue', sans-serif; font-size: 60px; letter-spacing: 2px; line-height: 1; margin-bottom: 16px; }
.cta p { font-size: 16px; color: var(--grey1); font-weight: 300; max-width: 540px; margin: 0 auto 30px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────────────── */
.footer { border-top: .5px solid var(--coal); padding: 56px 0 32px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 40px; }
.footer-brand-mark { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-mark img { width: 34px; }
.footer-brand-mark .bn { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 3px; }
.footer-blurb { font-size: 13px; color: var(--grey1); font-weight: 300; line-height: 1.7; max-width: 300px; }
.footer h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--sunset); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { text-decoration: none; font-size: 13px; color: var(--grey1); transition: color .2s; }
.footer ul a:hover { color: var(--white); }
.footer-bottom { border-top: .5px solid var(--coal); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: var(--grey2); }
.footer-bottom .grad { font-family: 'Bebas Neue', sans-serif; font-size: 16px; letter-spacing: 2px; }

/* ── PAGE TRANSITIONS + SCROLL REVEAL ──────────────── */
/* Smooth fade-in on every page load (CSS-only, so it works even if JS fails) */
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
html.js-anim body { animation: pageIn .55s ease both; }
/* Fade-out before navigating to another page (class added by script.js) */
html.js-anim body.page-leave { animation: none; opacity: 0; transition: opacity .34s ease; }

/* Sections gently rise into view as you scroll (class added by script.js) */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
html.js-anim .reveal { opacity: 0; transform: translateY(22px); }
html.js-anim .reveal.in { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }

/* Subtle lift on the nav once the user scrolls */
.nav { transition: background .3s ease, box-shadow .3s ease, border-color .3s ease; }
.nav.scrolled { background: rgba(13,13,13,0.94); box-shadow: 0 8px 30px rgba(0,0,0,.45); border-color: #333; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js-anim body,
  html.js-anim body.page-leave { animation: none !important; opacity: 1 !important; transition: none !important; }
  html.js-anim .reveal,
  html.js-anim .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 940px) {
  .nav-links { position: fixed; inset: 68px 0 auto 0; background: var(--black); flex-direction: column; gap: 0; padding: 8px 0; border-bottom: .5px solid var(--coal); transform: translateY(-120%); transition: transform .3s; }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 16px 32px; font-size: 15px; }
  .nav-toggle { display: flex; }
  .nav .nav-cta .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .community { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 820px) {
  .hero-brand { font-size: 64px; }
  .hero-desc { font-size: 16px; }
  .h2 { font-size: 40px; }
  .phero h1 { font-size: 48px; }
  .grid-3, .stats { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .case { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 40px 1fr; }
  .tags { flex-direction: row; flex-wrap: wrap; grid-column: 1 / -1; align-items: flex-start; padding-top: 10px; }
  .cta h2 { font-size: 42px; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-brand { font-size: 52px; }
}

/* ── MOBILE CENTERING ──────────────────────────────────
   On phones, center the hero and every section's intro
   (eyebrow / heading / lead / badge / button row) so the
   page feels balanced. Card and service-row body copy stays
   left-aligned for readability. */
@media (max-width: 640px) {
  .hero { padding: 64px 0 60px; }
  .hero-inner { flex-direction: column; text-align: center; gap: 28px; }
  .hero-text { min-width: 0; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-brand .by { display: block; }

  .section > .wrap > .eyebrow,
  .section > .wrap > .h2,
  .section > .wrap > .lead,
  .phero > .wrap > .eyebrow,
  .phero > .wrap > h1,
  .phero > .wrap > .lead { text-align: center; }

  .section > .wrap > .lead,
  .phero > .wrap > .lead { margin-left: auto; margin-right: auto; }

  .section > .wrap > .divbadge,
  .phero > .wrap > .divbadge { display: flex; width: fit-content; margin-left: auto; margin-right: auto; }

  .section > .wrap > .hero-btns,
  .phero > .wrap > .hero-btns,
  .section > .wrap > div:last-child > .btn { justify-content: center; }

  /* center the standalone "See all services" button row */
  .section > .wrap > div[style*="margin-top"] { text-align: center; }
}
