/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg:        #09090b;
  --bg2:       #18181b;
  --surface:   #27272a;
  --border:    #3f3f46;
  --border-lt: rgba(255,255,255,0.06);

  --brand:     #FF5C00;
  --brand-h:   #ff7a29;
  --brand-dim: rgba(255,92,0,0.12);

  --white:  #ffffff;
  --text:   #d4d4d8;
  --muted:  #a1a1aa;
  --muted2: #71717a;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r:    12px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-brand: 0 8px 32px rgba(255, 92, 0, 0.22);
  --shadow-card:  0 1px 3px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.3);
}

/* ============================================================
   BASE
   ============================================================ */
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; background: var(--bg); }
.section-dark { background: #000; }
.section-black { background: #000; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.active { opacity: 1; transform: none; }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.20s; }
.d4 { transition-delay: 0.28s; }
.d5 { transition-delay: 0.36s; }

/* ============================================================
   NAVBAR
   ============================================================ */

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 28px;
  transition: padding 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  padding: 14px 28px;
  background: rgba(9,9,11,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--border-lt);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links .nl {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links .nl:hover,
.nav-links .nl.active { color: var(--white); }

.nav-cta {
  padding: 10px 20px;
  border-radius: 99px;
  background: var(--white);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: #e4e4e7; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  color: var(--muted);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border-lt);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}
.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
  padding: 16px 24px 24px;
}
.mobile-menu .ml {
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  padding: 10px 0;
}
.mob-cta {
  margin-top: 12px;
  display: block;
  text-align: center;
  padding: 14px 0;
  border-radius: 14px;
  background: var(--brand);
  color: #000 !important;
  font-weight: 700 !important;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  padding: 180px 0 128px;
  overflow: hidden;
  background: var(--bg);
}

.hero-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,92,0,0.22) 0%, rgba(255,170,50,0.12) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}

.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 99px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-lt);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.badge-icon { color: var(--brand); flex-shrink: 0; }

.hero-title {
  font-size: clamp(42px, 6.5vw, 72px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title .brand { color: var(--brand); }

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   SHARED BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 99px;
  background: var(--brand);
  color: #000;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--brand-h);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(255,92,0,0.3);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 99px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--muted);
  background: var(--bg2);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 99px;
  background: var(--white);
  color: #000;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-white:hover { background: #e4e4e7; }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 16px; }
.section-header p  { font-size: 17px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  padding: 32px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-lt);
  transition: border-color 0.25s, background 0.25s;
}
.service-card:hover {
  border-color: rgba(255,92,0,0.4);
  background: var(--bg2);
}
.service-card:hover .svc-icon { transform: scale(1.1); }

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--brand);
  transition: transform 0.25s;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
.portfolio-header h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 12px; }
.portfolio-header > div p { font-size: 17px; color: var(--muted); max-width: 520px; }

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s, gap 0.2s;
}
.view-all-link:hover { color: var(--brand-h); gap: 10px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pcard { cursor: pointer; }

.pcard-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  background: var(--bg2);
  margin-bottom: 20px;
}

.pcard-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.pcard:hover .pcard-img-wrap img { transform: scale(1.05); }

.pcard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.pcard:hover .pcard-overlay { opacity: 1; }

.pcard-arrow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transform: translateY(12px);
  transition: transform 0.3s;
}
.pcard:hover .pcard-arrow { transform: translateY(0); }

.pcard-category {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand);
  margin-bottom: 6px;
}
.pcard-title { font-size: 24px; font-weight: 700; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout {
  display: flex;
  align-items: center;
  gap: 72px;
}

.about-img-col { width: 50%; }

.about-img-wrap {
  position: relative;
}

.about-img-wrap > img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  max-width: 180px;
}
.about-badge-num  { font-size: 40px; font-weight: 800; color: var(--brand); line-height: 1; margin-bottom: 4px; }
.about-badge-label { font-size: 13px; color: var(--muted); line-height: 1.4; }

.about-text-col { width: 50%; }
.about-text-col h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; }
.about-text-col > p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }

.benefits-list { margin-bottom: 40px; }
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-lt);
}
.benefits-list li:last-child { border-bottom: none; }
.benefits-list svg { color: var(--brand); flex-shrink: 0; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-step { position: relative; }

.step-connector {
  display: none;
  position: absolute;
  top: 32px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.step-inner h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-inner p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border-lt);
  border-radius: var(--r-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--brand);
  margin-bottom: 20px;
}

.testi-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 28px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testi-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-author strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); }
.testi-author span  { font-size: 13px; color: var(--muted2); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-card {
  display: flex;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid var(--border-lt);
  background: rgba(255,255,255,0.02);
}

.contact-info {
  width: 42%;
  background: var(--bg2);
  padding: 56px 48px;
  border-right: 1px solid var(--border-lt);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(255,92,0,0.08);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.contact-info-inner { position: relative; z-index: 1; }
.contact-info h2 { font-size: clamp(22px, 2.8vw, 34px); margin-bottom: 14px; }
.contact-info > .contact-info-inner > p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; }

.citem-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-dim);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.citem-label { display: block; font-size: 12px; color: var(--muted2); margin-bottom: 2px; }
.citem-value { display: block; font-size: 15px; font-weight: 500; color: #d4d4d8; line-height: 1.5; }

/* Form */
.contact-form-wrap {
  width: 58%;
  padding: 56px 48px;
  background: rgba(9,9,11,0.5);
}

.fmsg {
  display: none;
  padding: 14px 18px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.fmsg.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; }
.fmsg.error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #f87171; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }

.form-group { margin-bottom: 20px; }
.form-row .form-group { margin-bottom: 0; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,92,0,0.12);
}

.form-group textarea { resize: none; }

.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: var(--brand);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--brand-h); transform: translateY(-1px); }
.btn-submit svg { transition: transform 0.2s; }
.btn-submit:hover svg { transform: translateX(4px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #000;
  border-top: 1px solid var(--border-lt);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand > p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }

.social-links { display: flex; gap: 14px; }
.social-links a {
  color: var(--muted2);
  transition: color 0.2s;
  display: flex;
}
.social-links a:hover { color: var(--white); }

.footer-col h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--brand); }

.footer-col > p { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }

.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--white);
  outline: none;
}
.newsletter-form input:focus { border-color: var(--brand); }
.newsletter-form button {
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--brand);
  color: #000;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--brand-h); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-lt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p  { font-size: 13px; color: var(--muted2); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--muted2); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  box-shadow: var(--shadow-brand);
  z-index: 90;
}
#btt.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#btt:hover { background: var(--brand-h); }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .about-layout  { gap: 48px; }
  .step-connector { display: none !important; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Navbar */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero */
  #hero { padding: 140px 0 96px; }

  /* Portfolio */
  .portfolio-header { flex-direction: column; align-items: flex-start; }
  .portfolio-grid   { grid-template-columns: 1fr; }

  /* About */
  .about-layout { flex-direction: column; gap: 48px; }
  .about-img-col { width: 100%; }
  .about-text-col { width: 100%; }
  .about-badge { right: 0; bottom: -20px; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-card { flex-direction: column; border-radius: 28px; }
  .contact-info { width: 100%; border-right: none; border-bottom: 1px solid var(--border-lt); padding: 40px 28px; }
  .contact-form-wrap { width: 100%; padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-group { margin-bottom: 20px; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .services-grid { grid-template-columns: 1fr; }
  .process-grid  { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }

  .hero-ctas { flex-direction: column; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .about-badge { position: static; margin-top: 20px; max-width: 100%; }
}
