/* =============================================
   RHINO 8 — MEDIALOGIC DUBAI  v4
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; }

:root {
  --rhinored:   #901010;
  --white:      #fff;
  --gray:       #f5f5f5;
  --dark:       #333;
  --bg:         #f0f0f0;
  --text:       #000;
  --grid-color: #82868B;
}

/* =============================================
   BASE
============================================= */
html, body {
  margin:0; padding:0;
  font-family:'Roboto',sans-serif;
  font-size:16px; line-height:1.5; font-weight:400;
  color:var(--text); background:var(--bg); overflow-x:hidden;
}
a           { color:var(--rhinored); text-decoration:none; }
a:hover     { text-decoration:underline; }
h1 { font-size:30px; font-weight:500; margin:15px 0 0; padding:0; line-height:1.1; }
h2 { font-size:22px; font-weight:500; margin:0; padding:0; line-height:1.1; }
h3 { font-size:18px; font-weight:500; margin:0; padding:0; line-height:1.1; }
h4,h5,h6 { font-weight:500; margin:0; padding:0; line-height:1.1; }
p  { margin:0 0 10px; }
blockquote { margin:0; padding:0; font-style:italic; }

/* =============================================
   LAYOUT
============================================= */
.content-container > *:not(.content-fullwidth) {
  max-width:1110px; margin-left:auto; margin-right:auto;
  padding-left:15px; padding-right:15px;
}
.content-fullwidth { width:100%; }
.white-soft-surface { background:#fff; border-radius:2px; }
.soft-shadow        { filter:drop-shadow(0 0 3px rgba(66,55,55,.2)); }
.flex-container     { display:flex; flex-wrap:wrap; gap:20px; }
.flex-container .column { flex:1 1 280px; }
.align-right { text-align:right; }
.align-left  { text-align:left; }

/* =============================================
   FULL-PAGE FIXED GRID
   - Fixed to viewport, behind all content
   - #82868B stripe pattern (matches rhino3d.com)
   - JS rotates via --grid-rot CSS var on scroll
   - Mask fades top transparent so content reads
============================================= */
#page-grid-bg {
  position: fixed;
  inset: 0;
  z-index: -100;
  pointer-events: none;
  overflow: hidden;
  /* fade: top quarter transparent, bottom fully visible */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 20%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0.5) 60%,
    rgba(0,0,0,0.85) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 20%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0.5) 60%,
    rgba(0,0,0,0.85) 100%
  );
}

#page-grid-bg::after {
  content: '';
  position: absolute;
  /* start a bit below centre so perspective vanishing point feels correct */
  top: 25%;
  left: -30%;
  width: 160%;
  height: 120%;
  background-color: var(--bg);
  background-image:
    linear-gradient(
      0deg,
      transparent 9%, var(--grid-color) 10%, var(--grid-color) 11%, transparent 12%,
      transparent 24%, var(--grid-color) 25%, var(--grid-color) 26%, transparent 27%,
      transparent 49%, var(--grid-color) 50%, var(--grid-color) 51%, transparent 52%,
      transparent 74%, var(--grid-color) 75%, var(--grid-color) 76%, transparent 77%,
      transparent 89%, var(--grid-color) 90%, var(--grid-color) 91%, transparent 92%
    ),
    linear-gradient(
      90deg,
      transparent 9%, var(--grid-color) 10%, var(--grid-color) 11%, transparent 12%,
      transparent 24%, var(--grid-color) 25%, var(--grid-color) 26%, transparent 27%,
      transparent 49%, var(--grid-color) 50%, var(--grid-color) 51%, transparent 52%,
      transparent 74%, var(--grid-color) 75%, var(--grid-color) 76%, transparent 77%,
      transparent 89%, var(--grid-color) 90%, var(--grid-color) 91%, transparent 92%
    );
  background-size: 40px 40px;
  transform-origin: 50% 100%;
  transform: perspective(300px) rotateX(var(--grid-rot, 52deg)) scale(2);
  transition: transform 0.08s linear;
}

/* =============================================
   NAVBAR
   - MUST be outside .content-container OR
     .content-container must not be a block that
     traps the stacking context.
   - We make #navbar position:fixed width:100%
     and push body down by its height via padding.
============================================= */
#navbar {
  position: fixed;           /* fixed — never leaves viewport */
  top: 0; left: 0; right: 0;
  z-index: 2000;
  background: #fff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
  transition: box-shadow .3s;
  width: 100%;
}
body.nav-shrunk #navbar {
  box-shadow: 0 2px 14px rgba(0,0,0,.15);
}

/* push page content below fixed navbar */
.navbar-spacer {
  height: 100px; /* logo-row + links-row; JS keeps this in sync */
  transition: height .35s ease;
}
body.nav-shrunk .navbar-spacer { height: 72px; }

/* ---- LOGO ROW ---- */
#nav-top {
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 68px;
  overflow: hidden;
  transition: height .35s ease;
}
body.nav-shrunk #nav-top { height: 40px; }

/* logo wrapper — row direction always */
#logo-inner-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* logo image */
#site-nav-logo {
  width: 52px; height: auto; flex-shrink: 0;
  transition: width .35s ease, opacity .35s ease;
}
body.nav-shrunk #site-nav-logo {
  width: 28px;
}

/* logo text block */
#logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* "Rhinoceros®" — sits on one line */
#logo-title-text {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
  font-weight: 700;
}
#logo-title-text a { text-decoration: none; display: flex; align-items: baseline; }

#logo-title-text-primary {
  font-family: Arial, Helvetica, sans-serif;  
  font-size: 26px; font-weight: 700; color: var(--rhinored);
  letter-spacing: -.5px;
  transition: font-size .35s ease;
}
#logo-title-text-secondary {
  font-size: 26px; font-weight: 400; color: #858585;
  display: inline;
  transition: font-size .35s ease, opacity .35s ease, max-width .35s ease;
  overflow: hidden;
  max-width: 200px; opacity: 1;
}
#protected-mark {
  font-size: 10px; color: var(--rhinored);
  vertical-align: super; line-height: 1;
  transition: opacity .35s ease;
}

/* subtitle line */
#logo-subtitle {
  overflow: hidden;
  max-height: 18px; opacity: 1;
  transition: max-height .35s ease, opacity .25s ease;
  margin-top: 2px;
}
#logo-subtitle a, .logo-text-secondary {
  color: #888; font-size: 11px; text-decoration: none;
}

/* SHRUNK STATE — only "Rhino" (primary) remains */
body.nav-shrunk #logo-title-text-primary  { font-size: 18px; }
body.nav-shrunk #logo-title-text-secondary{ max-width: 0; opacity: 0; }
body.nav-shrunk #protected-mark           { opacity: 0; }
body.nav-shrunk #logo-subtitle            { max-height: 0; opacity: 0; }

/* ---- NAV LINKS ROW ---- */
.menu-items {
  width: 100%;
  padding: 0 24px;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  border-top: 1px solid #eee;
  height: 32px;
  align-items: center;
}
.menu-item {
  color: #333; font-size: 14px; padding: 4px 12px;
  text-decoration: none; cursor: pointer;
  transition: color .2s; line-height: 1; white-space: nowrap;
}
.menu-item:hover { color: var(--rhinored); text-decoration: none; }

/* student btn — right side of logo row */
.student-teacher-btn {
  display: inline-block; margin-left: auto;
  background: var(--rhinored); color: #fff !important;
  padding: 6px 14px; border-radius: 3px;
  font-size: 13px; font-weight: 500;
  text-decoration: none; white-space: nowrap;
  flex-shrink: 0;
  transition: padding .35s, font-size .35s, opacity .35s;
}
.student-teacher-btn:hover { background: #7a0d0d; text-decoration: none; }
body.nav-shrunk .student-teacher-btn { padding: 4px 10px; font-size: 12px; }

/* hamburger (mobile) */
.overlayMenuIcon { display: none; cursor: pointer; margin-left: auto; }

/* =============================================
   HERO
============================================= */
.hero-wrapper {
  width: 100%; height: 420px;
  overflow: hidden; position: relative; 
}
#imageFade-0 {
  width: 100%; height: 100%;
  overflow: hidden; position: relative; background: transparent;
}
#imageFade-0 > div {
  width: 75%; height: 100%;
  background-size: contain; background-repeat: no-repeat; background-position: center;
  position: absolute; opacity: 0;
}
.caption {
  color: #858585; position: absolute; bottom: 6px; left: 10px; font-size: 12px;
}
.caption:hover { text-decoration: underline; }

/* hero right panel */
.home-headline-container-transparent {
  position: absolute; top: 0; right: 0;
  height: 100%; min-width: 290px; max-width: 360px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 24px 32px;
  background-color: #f0f0f0;
  box-shadow: 0 0 1em 1em #f0f0f0;
}
.home-headline { font-size: 46px !important; font-weight: 900 !important; color: var(--rhinored); margin: 4px 0 0 !important; }
.home-headline a { color: var(--rhinored); text-decoration: none; }
.home-subtitle { font-size: 19px; font-weight: 500; color: #333; margin: 4px 0; }
.home-short-description { font-size: 13px; color: #555; max-width: 260px; margin: 4px auto; }
.home-link { font-size: 13px; margin: 8px 0; }
.home-link a { color: var(--rhinored); font-weight: 500; }
.home-download-button {
  display: inline-block;
  background: var(--rhinored); color: #fff !important;
  padding: 9px 20px; border-radius: 3px;
  font-size: 14px; font-weight: 500; text-decoration: none; margin-top: 10px;
}
.home-download-button:hover { background: #7a0d0d; text-decoration: none; }

/* =============================================
   UPGRADE / FEATURES
============================================= */
.section-upgrade { padding: 30px; }
.gallery-container { display: flex; flex-wrap: wrap; gap: 16px; margin: 16px 0; }
.card {
  background: #fff; border-radius: 2px; overflow: hidden;
  flex: 1 1 180px; max-width: 260px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.card img { width: 100%; display: block; }
.card-container { padding: 10px; }
.card-container h1 { font-size: 16px; margin: 0 0 4px; }
.card-container h1 a { color: var(--rhinored); }
.card-container p { font-size: 13px; color: #555; margin: 0; }
.video-player { margin: 16px 0; }
.video-player video { width: 100%; border-radius: 2px; }
.caption-locator { text-align: center; padding: 4px 0; min-height: 24px; }
.rma-caption { font-weight: 700; color: #333; font-size: 14px; }

/* =============================================
   FEATURES GRID
============================================= */
#features-section { padding: 40px 15px; max-width: 1110px; margin: 0 auto; }
#features-section h1 { margin-bottom: 6px; }
#features-section > p { color: #555; margin-bottom: 24px; font-size: 15px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px; margin-top: 20px;
}
.feature-card {
  background: #fff; border-radius: 6px; padding: 22px 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,.09);
  transition: box-shadow .25s, transform .25s;
  border-top: 3px solid var(--rhinored);
}
.feature-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.15); transform: translateY(-2px); }
.feature-card .fc-icon { font-size: 26px; color: var(--rhinored); margin-bottom: 10px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: #222; }
.feature-card p  { font-size: 13px; color: #555; margin: 0; line-height: 1.55; }

/* =============================================
   DOWNLOAD SECTION
============================================= */
#download-section { padding: 40px 15px; max-width: 1110px; margin: 0 auto; }
#download-section h1 { margin-bottom: 6px; }
#download-section > p { color: #555; margin-bottom: 24px; font-size: 15px; }
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 20px; margin-top: 20px;
}
.download-card {
  background: #fff; border-radius: 6px; padding: 22px 20px;
  box-shadow: 0 1px 6px rgba(0,0,0,.09);
  display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow .25s;
}
.download-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.15); }
.download-card .dc-badge {
  display: inline-block; background: var(--rhinored); color: #fff;
  font-size: 11px; font-weight: 700; padding: 2px 8px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; width: fit-content;
}
.download-card .dc-badge.free { background: #2a7d2a; }
.download-card h3 { font-size: 16px; font-weight: 700; color: #222; margin: 0; }
.download-card p  { font-size: 13px; color: #666; margin: 0; line-height: 1.5; flex: 1; }
.download-card .dc-btn {
  display: inline-block; margin-top: 6px;
  padding: 8px 18px; border-radius: 3px;
  background: var(--rhinored); color: #fff !important;
  font-size: 13px; font-weight: 500; text-decoration: none;
  text-align: center; transition: background .2s;
}
.download-card .dc-btn:hover { background: #7a0d0d; text-decoration: none; }
.download-card .dc-btn.outline {
  background: transparent; color: var(--rhinored) !important;
  border: 1.5px solid var(--rhinored);
}
.download-card .dc-btn.outline:hover { background: var(--rhinored); color: #fff !important; }

/* =============================================
   PRICING
============================================= */
#pricing { display: flex; flex-direction: column; padding: 30px; gap: 24px; }
.segmented-controls {
  display: flex; margin: 0 auto;
  position: relative; overflow: hidden; transition: all .3s ease;
  width: 300px; max-width: 100%; z-index: 0;
  border-radius: .5rem; background: #e2e2e9; height: 2rem; padding: .125rem;
}
.segmented-controls input {
  position: absolute !important; height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.segmented-controls label {
  display: flex; justify-content: center; align-items: center;
  text-align: center; cursor: pointer; flex: 1 1 0px;
  position: relative; z-index: 2; transition: all .3s ease;
  font-size: .8125rem; font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500; line-height: 1;
}
.segmented-controls label:last-of-type { z-index: 1; }
.segmented-controls label:last-of-type::after {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: white; border-radius: .4275rem;
  border: .5px solid rgba(0,0,0,.04);
  box-shadow: 0 3px 1px rgba(0,0,0,.04), 0 3px 8px rgba(0,0,0,.12);
  transition: all .3s ease;
}
.segmented-controls input:nth-last-of-type(2):checked ~ label:last-of-type::after {
  transform: translateX(-100%);
}
.segmented-controls input:checked + label { font-weight: 600; font-size: .875rem; }
.segmented-controls label:not(:first-of-type)::before {
  content: ""; position: absolute; z-index: -3;
  top: .5rem; left: 0; bottom: .5rem; width: 1px;
  background: rgba(0,0,0,.15); transition: all .3s ease;
}
.segmented-controls input:checked + label::before,
.segmented-controls input:checked + label + input + label::before { opacity: 0; }
.price-card-container { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.plan {
  border-radius: 2em; padding: 1em; background: #fff; width: 260px;
  box-shadow: 0 1px 20px rgba(0,0,0,.1);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: box-shadow .3s;
}
.plan:hover { box-shadow: 0 1px 20px rgba(0,0,0,.3); }
.plan-title    { font-weight: 700; text-align: center; font-size: 1.1em; text-transform: uppercase; margin: 0 0 4px; }
.plan-subtitle { text-align: center; font-size: 1em; font-weight: 500; margin: 0 0 6px; color: #555; }
.plan-price    { text-align: center; font-size: 1.3em; font-weight: 700; color: var(--rhinored); margin: 6px 0; }
.plan-details  { padding: 6px 10px; font-weight: 300; font-size: 14px; }
.plan-details p{ text-align: center; margin: 3px 0; color: #444; }
.plan-details a{ color: var(--rhinored); }
.plan-btn {
  display: block; padding: .7em; border-radius: 2.5em;
  text-align: center; cursor: pointer;
  background: var(--gray); color: var(--rhinored);
  text-decoration: none; font-weight: 500; font-size: 14px;
  margin-top: 10px; transition: background .2s, color .2s;
}
.plan-btn:hover { background: var(--rhinored); color: #fff; text-decoration: none; }
.featured-ribbon {
  width: 200px; background: var(--rhinored);
  position: absolute; top: 15px; left: -65px;
  line-height: 37px; font-size: .75em; text-align: center;
  letter-spacing: .01em; font-weight: 700; color: #fff;
  text-transform: uppercase; transform: rotate(-45deg);
}
.multiuser-table-wrapper { overflow-x: auto; margin: 10px 0; }
.multiuser-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.multiuser-table th { background: var(--rhinored); color: #fff; padding: 10px 14px; text-align: left; font-weight: 500; }
.multiuser-table td { padding: 9px 14px; border-bottom: 1px solid #eee; color: #333; }
.multiuser-table tr:hover td { background: #faf0f0; }
.table-btn {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  background: var(--gray); color: var(--rhinored); font-size: 13px; font-weight: 500;
  text-decoration: none; transition: background .2s, color .2s;
}
.table-btn:hover { background: var(--rhinored); color: #fff; text-decoration: none; }
.pricing-disclaimer {
  background: #fafafa; border: 1px solid #e0e0e0; border-radius: 6px;
  padding: 16px 20px; font-size: 13px; color: #555; line-height: 1.7;
  max-width: 800px; margin: 0 auto;
}
.pricing-disclaimer p { margin: 0 0 6px; }
.pricing-disclaimer p:last-child { margin: 0; }
.pricing-disclaimer strong { color: #333; }

/* =============================================
   WHO USES RHINO
============================================= */
.home-market { padding: 30px 15px; }
.home-market h2.large-font { font-size: 30px; font-weight: 500; margin-bottom: 8px; }
.card-market {
  background: #fff; border-radius: 2px; overflow: hidden;
  flex: 1 1 160px; max-width: 210px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.card-market img { width: 100%; display: block; }
.card-container-market { padding: 8px 10px; }
.card-title-market { font-size: 14px; font-weight: 500; }
.card-title-market a { color: var(--rhinored); }
.home-quote {
  background: #fff; border-left: 4px solid var(--rhinored);
  padding: 16px 20px; border-radius: 0 4px 4px 0; margin-bottom: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.home-quote blockquote { font-size: 14px; color: #444; line-height: 1.6; }
.home-quote .name { margin-top: 8px; font-weight: 500; font-style: normal; font-size: 13px; }
.home-quote .name a { color: var(--rhinored); }

/* =============================================
   GRASSHOPPER
============================================= */
.home-grasshopper { background: #2a2a2a; color: #fff; padding: 30px; }
.home-grasshopper h1 { color: #fff; }
.home-grasshopper p  { color: #ccc; font-size: 15px; }
.home-grasshopper a  { color: #fff; }
.home-grasshopper img{ width: 100%; border-radius: 4px; }

/* =============================================
   ECOSYSTEM
============================================= */
.ecosystem-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.ecosystem-item img { width: 60px; height: 60px; object-fit: contain; flex-shrink: 0; }
.ecosystem-item h3  { margin-bottom: 4px; }
.ecosystem-item p   { font-size: 14px; color: #555; margin: 0; }
.appstore-btn       { float: right; }
.appstore-btn:hover { opacity: .5; }

/* =============================================
   SOFTWARE YOU OWN
============================================= */
.section-own { padding: 30px; }

/* =============================================
   LEARN RHINO
============================================= */
.section-learn { padding: 30px 15px; }

/* =============================================
   FOOTER STICKY GRID (original rhino3d.com element)
============================================= */
.rhino-grid-container {
  -webkit-mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.2));
          mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.2));
  z-index: -50; overflow: hidden;
}
.rhino-bg { width: 100%; height: 100%; background: var(--bg); }
.rhino-grid {
  background-image:
    linear-gradient(
      0deg,
      transparent 9%, #82868B 10%, #82868B 11%, transparent 12%,
      transparent 24%, #82868B 25%, #82868B 26%, transparent 27%,
      transparent 49%, #82868B 50%, #82868B 51%, transparent 52%,
      transparent 74%, #82868B 75%, #82868B 76%, transparent 77%,
      transparent 89%, #82868B 90%, #82868B 91%, transparent 92%
    ),
    linear-gradient(
      90deg,
      transparent 9%, #82868B 10%, #82868B 11%, transparent 12%,
      transparent 24%, #82868B 25%, #82868B 26%, transparent 27%,
      transparent 49%, #82868B 50%, #82868B 51%, transparent 52%,
      transparent 74%, #82868B 75%, #82868B 76%, transparent 77%,
      transparent 89%, #82868B 90%, #82868B 91%, transparent 92%
    );
  background-size: 40px 40px;
  overflow: hidden;
}

/* =============================================
   MEDIALOGIC BADGE
============================================= */
.medialogic-badge {
  background: linear-gradient(135deg, #901010 0%, #6b0c0c 100%);
  color: #fff; padding: 22px 30px; text-align: center;
}
.medialogic-badge h3     { color: #fff; font-size: 13px; margin-bottom: 2px; font-weight: 400; letter-spacing: .5px; text-transform: uppercase; }
.medialogic-badge .ml-name    { font-size: 24px; font-weight: 700; letter-spacing: .5px; }
.medialogic-badge .ml-tagline { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 4px; }
.medialogic-badge .ml-link {
  display: inline-block; margin-top: 10px; padding: 7px 20px;
  border: 1.5px solid rgba(255,255,255,.6); border-radius: 3px;
  color: #fff; font-size: 13px; text-decoration: none; transition: background .2s;
}
.medialogic-badge .ml-link:hover { background: rgba(255,255,255,.15); text-decoration: none; }

/* =============================================
   FOOTER
============================================= */
.site-footer { background: #fff; border-top: 1px solid #ddd; padding: 16px 15px 12px; font-size: 13px; color: #666; }
.footer-top {
  max-width: 1110px; margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: flex-start; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid #eee;
}
.footer-top a { color: var(--rhinored); }
.footer-social { display: flex; justify-content: center; gap: 18px; padding: 8px 0; }
.footer-social a { color: #555; font-size: 22px; transition: color .2s; }
.footer-social a:hover { color: var(--rhinored); }
.footer-sub { text-align: center; font-size: 12px; padding-top: 4px; color: #888; }
.footer-sub a { color: var(--rhinored); }


/* =============================================
   .RHINO-BTN — original rhino3d.com button style
============================================= */
.rhino-btn {
  box-shadow: inset 0 1px #d01010;
  background: linear-gradient(180deg, #d01010 5%, #990000 100%);
  background-color: #d01010;
  border-radius: 6px;
  border: 1px solid #d02718;
  color: #fff;
  font-family: Verdana, 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 6px 14px;
  text-decoration: none;
  text-shadow: 1px 1px 0 #810e05;
  z-index: 100;
  display: inline-block;
  cursor: pointer;
}
.rhino-btn:hover {
  background: linear-gradient(180deg, #b80e0e 5%, #7a0000 100%);
  text-decoration: none;
  color: #fff;
}

/* =============================================
   CONTACT SECTION
============================================= */
#contact-section h1 { color: var(--rhinored); }
#contact-section iframe { display: block; }

/* =============================================
   SYSTEM REQUIREMENTS MODAL
============================================= */
#sysreq-modal { font-family: 'Roboto', sans-serif; }
#sysreq-modal h2,
#sysreq-modal h3,
#sysreq-modal h4 { font-family: 'Roboto', sans-serif; }
/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 768px) {
  .home-headline-container-transparent {
    right: 50%; transform: translateX(50%);
    top: auto; bottom: 0; width: 100%; max-width: 100%;
    box-shadow: none; padding: 10px 15px;
  }
  .hero-wrapper { height: 300px; }
  .overlayMenuIcon { display: block; }
  .menu-items { display: none; }
  .menu-items.open { display: flex; flex-direction: column; background: #fff; height: auto; }
  .card { max-width: 100%; }
  .plan { width: 100%; max-width: 320px; }
  .features-grid, .download-grid { grid-template-columns: 1fr; }
  #nav-top { padding: 0 12px; }
  .menu-items { padding: 0 12px; }
}
@media (max-width: 480px) {
  .hero-wrapper { height: 240px; }
  .home-headline { font-size: 28px !important; }
}