/* ============================================================
   QIRO — style.css
   ============================================================ */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box }
html { scroll-behavior:smooth }
body { font-family:'Open Sans',sans-serif; background:#fff; color:#333; overflow-x:hidden }

/* ══ HEADER ══ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: transparent;
  transition: background 0.35s ease,
              box-shadow  0.35s ease,
              transform   0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* White frosted glass after scrolling */
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

/* Slide up when scrolling down */
#site-header.hidden {
  transform: translateY(-100%);
}
#site-header.scrolled .logo-text { color: #1a1a1a }
#site-header.scrolled .nav-link    { color: #1a1a1a }
#site-header.scrolled .burger span { background: #333 }

.header-wrap {
  max-width:1440px; margin:0 auto; padding:0 36px; height:80px;
  display:flex; align-items:center;
}

/* LOGO */
.logo-link { display:flex; align-items:center; gap:10px; text-decoration:none; flex-shrink:0; margin-right:28px }
.logo-icon { width:42px; height:42px; flex-shrink:0 }
.logo-text { font-family:'Montserrat',sans-serif; font-size:26px; font-weight:900; letter-spacing:-1px; color:#fff; line-height:1; transition:color .3s }
.logo-text em { color:#e74c3c; font-style:italic }

/* NAV */
.site-nav { display:flex; align-items:center; flex:1; justify-content:center }
.nav-item { position:relative }
.nav-link {
  display:flex; align-items:center; gap:5px;
  padding:0 14px; height:80px;
  font-family:'Montserrat',sans-serif; font-size:13px; font-weight:700;
  color:#fff; text-decoration:none; text-transform:uppercase; letter-spacing:.04em;
  white-space:nowrap; position:relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 22px;
  width: calc(100% - 28px);
  height: 2px;
  background: rgba(255,255,255,0.55);
  transform: scaleX(1);
  transition: background .25s ease, transform .25s ease;
}
/* Highlight underline red on hover */
.nav-link:hover::after,
.dropdown:hover > .nav-link::after,
.nav-item:hover > .nav-link::after {
  background: #e74c3c;
}
/* Scrolled state — dark underline, turns red on hover */
#site-header.scrolled .nav-link::after { background: rgba(0,0,0,0.15) }
#site-header.scrolled .nav-link:hover::after,
#site-header.scrolled .dropdown:hover > .nav-link::after { background: #c0392b }
#site-header.scrolled .nav-link:hover,
#site-header.scrolled .dropdown:hover > .nav-link { color: #c0392b }

.caret { width:10px; height:6px; flex-shrink:0; stroke:currentColor; transition:transform .22s }
.dropdown:hover .caret { transform:rotate(180deg) }
.nav-item:hover .caret { transform:rotate(180deg) }

/* DROPDOWN */
/* ── Dropdown Menu (your exact code, themed for Qiro) ── */
.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 80px;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 230px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  pointer-events: none;
  border-radius: 0 0 0.5rem 0.5rem;
  overflow: hidden;
  z-index: 9999;
  border-top: 3px solid #c0392b;
  /* Bridge gap so cursor moving into dropdown keeps it open */
  padding-top: 0;
  margin-top: 0;
}

/* Invisible bridge between nav link and dropdown — fills the gap */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}

.dropdown-content a {
  color: #374151;
  padding: 0.6rem 1rem;
  text-decoration: none;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover {
  background: #f3f4f6;
  color: #c0392b;
  padding-left: 1.4rem;
}

/* HEADER RIGHT */
.header-right { display:flex; align-items:center; gap:14px; flex-shrink:0; margin-left:20px }

.btn-contact {
  display:inline-flex; align-items:center; gap:8px;
  background:#c0392b; color:#fff;
  padding:13px 28px;
  font-family:'Montserrat',sans-serif; font-size:13px; font-weight:700;
  text-transform:uppercase; letter-spacing:.06em;
  border:none; cursor:pointer; white-space:nowrap;
  position:relative; overflow:hidden; z-index:0;
  transition:transform .3s ease, box-shadow .3s ease;
}
.btn-contact::before {
  content:''; position:absolute; inset:0; background:#922b21;
  transform:translateX(-101%);
  transition:transform .35s cubic-bezier(.4,0,.2,1); z-index:-1;
}
.btn-contact:hover::before { transform:translateX(0) }
.btn-contact:hover { transform:translateY(-3px); box-shadow:0 10px 25px rgba(0,0,0,.2) }
.btn-contact:active { transform:scale(.97) }
.btn-contact svg { transition:transform .3s ease; flex-shrink:0; position:relative; z-index:1 }
.btn-contact:hover svg { transform:translate(4px,-4px) }

.burger {
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:5px; width:38px; height:38px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.burger span { display:block; width:24px; height:2px; background:#fff; border-radius:1px; transition:background .3s }
#site-header.scrolled .burger span { background:#333 }

/* ══ CONTACT OVERLAY ══ */
.contact-overlay {
  position:fixed; inset:0; background:#111; z-index:9500;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .35s, visibility .35s; overflow-y:auto;
}
.contact-overlay.open { opacity:1; visibility:visible; pointer-events:auto }
.co-close {
  position:fixed; top:28px; right:36px;
  background:none; border:none; color:#999; font-size:28px;
  line-height:1; cursor:pointer; z-index:9600; transition:color .2s;
}
.co-close:hover { color:#fff }
.co-inner {
  max-width:1400px; margin:0 auto; padding:80px 60px 60px;
  display:grid; grid-template-columns:340px 1px 1fr;
  min-height:100vh; align-items:flex-start;
}
.co-nav { padding-top:20px; padding-right:50px }
.co-nav a {
  display:block;
  font-family:'Montserrat',sans-serif; font-size:clamp(26px,3vw,38px); font-weight:700;
  color:#fff; text-decoration:none; padding:13px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:color .2s, padding-left .2s;
}
.co-nav a:hover { color:#e74c3c; padding-left:12px }
.co-nav a:first-child { border-top:1px solid rgba(255,255,255,.08) }
.co-lang { display:flex; align-items:center; gap:12px; margin-top:22px; font-family:'Montserrat',sans-serif; font-size:16px; color:#aaa }
.co-lang-btn { color:#fff; font-weight:600 }
.co-lang-toggle { background:none; border:1px solid #555; color:#aaa; width:28px; height:28px; border-radius:50%; cursor:pointer; font-size:14px }
.co-divider { background:rgba(255,255,255,.12); width:1px; align-self:stretch }
.co-contact { padding-top:20px; padding-left:60px }
.co-title { font-family:'Montserrat',sans-serif; font-size:clamp(20px,2vw,26px); font-weight:800; color:#fff; margin-bottom:34px }
.co-contact-body { display:grid; grid-template-columns:1fr 380px; gap:50px; align-items:start }
.co-fields { min-width:0 }
.co-field { margin-bottom:26px }
.co-label { font-family:'Montserrat',sans-serif; font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.15em; color:#555; display:block; margin-bottom:10px }
.co-field p { font-size:15px; color:#bbb; line-height:1.75 }
.co-field a { color:#bbb; text-decoration:none }
.co-field a:hover { color:#e74c3c }
.co-phone { font-family:'Montserrat',sans-serif; font-size:clamp(22px,2.2vw,30px); font-weight:700; color:#fff !important; margin-bottom:6px }
.co-hours { font-size:13px; color:#555 }
.co-social { display:flex; gap:10px; margin-top:30px }
.co-social a {
  width:42px; height:42px; border-radius:50%; border:1px solid #2a2a2a;
  display:flex; align-items:center; justify-content:center;
  color:#888; text-decoration:none;
  transition:border-color .2s, color .2s, transform .3s;
}
.co-social a:hover { border-color:#e74c3c; color:#e74c3c; transform:translateY(-4px) scale(1.1) }
.co-img-wrap { grid-column:2; grid-row:1; align-self:start }
.co-img { width:100%; height:400px; border-radius:16px; display:block; object-fit:cover }

/* ══ HERO ══ */
.hero { position:relative; min-height:680px; background:#111; display:flex; align-items:center; overflow:hidden }
.hero-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0 }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(to right,rgba(0,0,0,.68) 50%,rgba(0,0,0,.22)); z-index:1 }
.hero-content { position:relative; z-index:2; max-width:1440px; margin:0 auto; padding:180px 36px 100px; width:100% }
.hero-eyebrow { font-family:'Montserrat',sans-serif; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.22em; color:#e74c3c; margin-bottom:18px }
.hero-title { font-family:'Montserrat',sans-serif; font-size:clamp(28px,4.8vw,56px); font-weight:800; color:#fff; line-height:1.15; max-width:680px; margin-bottom:36px }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap }

.btn-red {
  display:inline-flex; align-items:center; gap:8px;
  color:#fff; padding:14px 32px;
  font-family:'Montserrat',sans-serif; font-size:13px; font-weight:700;
  text-decoration:none; text-transform:uppercase; letter-spacing:.06em;
  position:relative; overflow:hidden; background:#c0392b;
  transition:transform .3s ease, box-shadow .3s ease; z-index:0;
}
.btn-red::before {
  content:''; position:absolute; inset:0; background:#922b21;
  transform:translateX(-101%);
  transition:transform .35s cubic-bezier(.4,0,.2,1); z-index:-1;
}
.btn-red:hover::before { transform:translateX(0) }
.btn-red:hover { transform:translateY(-3px); box-shadow:0 10px 25px rgba(0,0,0,.2) }
.btn-red:active { transform:scale(.97) }
.btn-red svg { transition:transform .3s ease; flex-shrink:0; position:relative; z-index:1 }
.btn-red:hover svg { transform:translate(4px,-4px) }

/* ══ 4 CARDS with hover reveal ══ */
.cards-section { background:#fff; padding:60px 0 40px }
.cards-grid {
  max-width:1440px; margin:0 auto; padding:0 36px;
  display:grid; grid-template-columns:repeat(4,1fr); gap:28px;
}
.card {
  background:#fff; text-decoration:none; display:block;
  overflow:hidden; border-radius:14px;
  height:310px;
  transition:height .45s ease, transform .35s ease, box-shadow .35s ease;
}
.card:hover { height:430px; transform:translateY(-6px); box-shadow:0 24px 60px rgba(0,0,0,.13) }

.card .card-img-wrap { overflow:hidden; border-radius:14px; margin-bottom:18px }
.card .card-img-wrap img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; transition:transform .45s ease }
.card:hover .card-img-wrap img { transform:scale(1.06) }

.card-body { padding:0 8px }
.card-title-row {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:10px; transition:opacity .25s ease;
}
.card:hover .card-title-row { opacity:0 }
.card-title-row h3 { font-family:'Montserrat',sans-serif; font-size:15px; font-weight:800; color:#1a1a1a }
.card-icon { width:40px; height:40px; flex-shrink:0 }

.card-desc {
  font-size:13px; color:#555; line-height:1.7; margin-bottom:14px;
  max-height:0; overflow:hidden; opacity:0; visibility:hidden;
  transition:max-height .45s ease, opacity .35s ease .1s, visibility .35s ease .1s;
}
.card:hover .card-desc { max-height:120px; opacity:1; visibility:visible }
.card-divider { height:1px; background:#e0e0e0; width:100% }

/* ══ ABOUT ══ */
.about-section { padding:90px 0; background:#fff }
.about-inner {
  max-width:1440px; margin:0 auto; padding:0 36px;
  display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:start;
}
.about-img { width:100%; display:block; box-shadow:0 12px 50px rgba(0,0,0,.13) }

.fade-in { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease }
.fade-in.animate { opacity: 0; transform: translateY(30px) }
.fade-in.animate.visible { opacity: 1; transform: translateY(0) }

.eyebrow {
  font-family:'Montserrat',sans-serif; font-size:11px; font-weight:700;
  text-transform:uppercase; letter-spacing:.22em; color:#c0392b;
  margin-bottom:12px; display:flex; align-items:center; gap:10px;
}
.eyebrow::before { content:''; width:28px; height:2px; background:#c0392b; flex-shrink:0 }
.sec-title { font-family:'Montserrat',sans-serif; font-size:clamp(20px,2.8vw,30px); font-weight:800; color:#1a1a1a; line-height:1.25; margin-bottom:18px }
.about-lead { font-family:'Montserrat',sans-serif; font-size:14px; font-weight:600; color:#333; line-height:1.75; margin-bottom:14px }
.about-p { font-size:13.5px; color:#666; line-height:1.85; margin-bottom:13px }

/* TABS */
.tabs { margin-top: 28px }
.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #e8e8e8;
  margin-bottom: 22px;
}
.tab-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 11px 20px;
  background: #f0f0f0;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  color: #999;
  border-radius: 6px 6px 0 0;
  transition: color .2s, background .2s, border-color .2s;
}
.tab-btn:hover { color: #c0392b; background: #fff }
.tab-btn.active { color: #c0392b; background: #fff; border-bottom-color: #c0392b; }
.tab-pane { display: none; font-size: 14px; color: #555; line-height: 1.9; padding: 2px 0 }
.tab-pane.active { display: block; animation: fadeTab .3s ease forwards }
@keyframes fadeTab { from { opacity:0; transform:translateY(5px) } to { opacity:1; transform:translateY(0) } }

/* ══ SOLUTIONS ══ */
.sol-section { padding:70px 0 90px; background:#f8f8f8 }
.sol-header { max-width:1440px; margin:0 auto; padding:0 36px 40px }
.sol-grid {
  max-width:1440px; margin:0 auto; padding:0 36px;
  display:grid; grid-template-columns:repeat(2,1fr); gap:20px;
}
.sol-card {
  text-decoration: none;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.sol-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}

/* ── Image mask hover effect ── */
.sol-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.sol-img-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  /* Mask corners effect */
  --_g: 12%/48% 48% no-repeat conic-gradient(#000 0 0);
  mask:
    left   var(--_i,) top    var(--_g),
    bottom var(--_i,) left   var(--_g),
    top    var(--_i,) right  var(--_g),
    right  var(--_i,) bottom var(--_g);
  -webkit-mask:
    left   var(--_i,) top    var(--_g),
    bottom var(--_i,) left   var(--_g),
    top    var(--_i,) right  var(--_g),
    right  var(--_i,) bottom var(--_g);
  filter: grayscale(1);
  transition: --_i .4s linear, filter .4s linear;
}
.sol-card:hover .sol-img-wrap img {
  --_i: 12%;
  filter: grayscale(0);
}

/* Gradient overlay for label readability */
.sol-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 0 0 16px 16px;
  transition: opacity .4s ease;
}
.sol-card:hover .sol-img-wrap::after {
  opacity: 1;
}

.sol-label {
  position: absolute;
  bottom: 22px; left: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
  transition: letter-spacing .3s ease;
}
.sol-card:hover .sol-label {
  letter-spacing: 0.04em;
}

/* ══ BLOG ══ */
.blog-section { padding:90px 0; background:#fff }
.blog-inner { max-width:1440px; margin:0 auto; padding:0 36px }
.blog-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:50px }

.blog-card { text-decoration:none; display:flex; flex-direction:column; background:#f4f4f4; border-radius:14px; overflow:hidden; transition:box-shadow .3s ease, transform .3s ease }
.blog-card:hover { box-shadow:0 12px 40px rgba(0,0,0,.13); transform:translateY(-4px) }
.blog-img-wrap { overflow:hidden; position:relative; border-radius:14px 14px 0 0 }
.blog-img-wrap img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; transition:transform .45s ease }
.blog-card:hover .blog-img-wrap img { transform:scale(1.05) }

.date-badge { position:absolute; bottom:14px; right:14px; background:#c0392b; color:#fff; padding:8px 14px; text-align:center; min-width:54px; border-radius:8px }
.date-badge b { display:block; font-family:'Montserrat',sans-serif; font-size:26px; font-weight:800; line-height:1.1 }
.date-badge span { font-family:'Montserrat',sans-serif; font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.06em }

.blog-body { padding:18px 20px 22px; flex:1; display:flex; flex-direction:column }
.blog-cat { font-family:'Open Sans',sans-serif; font-size:12px; color:#999; margin-bottom:12px }
.blog-cat span { color:#c0392b }
.blog-body h3 { font-family:'Montserrat',sans-serif; font-size:15px; font-weight:700; color:#1a1a1a; line-height:1.5; flex:1; padding-bottom:16px }
.read-more-row { display:flex; flex-direction:column; align-items:flex-start; margin-top:auto; gap:8px }
.read-more-txt { font-family:'Montserrat',sans-serif; font-size:13px; font-weight:600; color:#555; display:inline-flex; align-items:center; gap:5px; transition:color .2s }
.read-more-line { width:100%; height:1px; background:#ddd }
.blog-card:hover .read-more-txt { color:#c0392b }

/* ══ FOOTER ══ */
footer { background:#1c1c1c; padding:65px 0 0 }
.footer-top { max-width:1440px; margin:0 auto; padding:0 36px; display:grid; grid-template-columns:1.7fr 1fr 1fr 1.5fr; gap:44px }
.footer-logo { display:flex; align-items:center; gap:10px; text-decoration:none; margin-bottom:14px }
.footer-logo-text { font-family:'Montserrat',sans-serif; font-size:26px; font-weight:900; color:#fff; letter-spacing:-1px }
.footer-logo-text em { color:#e74c3c; font-style:italic }
.f-tagline { font-family:'Montserrat',sans-serif; font-size:12px; color:#888; line-height:1.65; margin-bottom:22px }
.f-call-btn {
  display:inline-block; background:#c0392b; color:#fff; padding:10px 22px;
  font-family:'Montserrat',sans-serif; font-size:12px; font-weight:700;
  text-decoration:none; text-transform:uppercase; letter-spacing:.08em;
  position:relative; overflow:hidden; z-index:0;
  transition:transform .3s ease, box-shadow .3s ease;
}
.f-call-btn::before {
  content:''; position:absolute; inset:0; background:#922b21;
  transform:translateX(-101%);
  transition:transform .35s cubic-bezier(.4,0,.2,1); z-index:-1;
}
.f-call-btn:hover::before { transform:translateX(0) }
.f-call-btn:hover { transform:translateY(-3px); box-shadow:0 10px 25px rgba(0,0,0,.2) }
.f-col-title { font-family:'Montserrat',sans-serif; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.2em; color:#fff; margin-bottom:18px; padding-bottom:12px; border-bottom:2px solid #c0392b; display:inline-block }
.f-col ul { list-style:none }
.f-col ul li { margin-bottom:9px }
.f-col ul li a { font-size:13px; color:#999; text-decoration:none; display:block; transition:color .2s, padding-left .2s }
.f-col ul li a:hover { color:#c0392b; padding-left:5px }
.f-row { display:flex; gap:10px; align-items:flex-start; margin-bottom:11px }
.f-row svg { flex-shrink:0; margin-top:2px }
.f-row span { font-size:13px; color:#999; line-height:1.65 }
.f-row small { display:block; font-size:11px; color:#666 }
.footer-bottom { background:#141414; margin-top:55px }
.footer-bottom p { max-width:1440px; margin:0 auto; padding:18px 36px; font-size:12px; color:#666 }
.footer-bottom a { color:#c0392b; text-decoration:none }

/* BACK TO TOP */
#btt { position:fixed; bottom:26px; right:26px; background:#c0392b; color:#fff; width:44px; height:44px; display:flex; align-items:center; justify-content:center; text-decoration:none; font-size:20px; font-weight:700; opacity:0; visibility:hidden; transition:opacity .3s, visibility .3s; z-index:9999; border-radius:50% }
#btt.show { opacity:1; visibility:visible }
#btt:hover { background:#a93226 }

/* ══ RESPONSIVE ══ */
@media(max-width:1100px) {
  .sol-grid { grid-template-columns:repeat(2,1fr) }
  .blog-grid { grid-template-columns:repeat(2,1fr) }
  .footer-top { grid-template-columns:1fr 1fr; gap:30px }
  .cards-grid { grid-template-columns:repeat(2,1fr) }
}
@media(max-width:900px) {
  .site-nav { display:none }
  .about-inner { grid-template-columns:1fr; gap:36px }
  .sol-grid { grid-template-columns:1fr }
  .blog-grid { grid-template-columns:1fr }
  .footer-top { grid-template-columns:1fr }
  .header-wrap { padding:0 20px }
  .hero-content { padding:140px 20px 80px }
  .co-inner { grid-template-columns:1fr; padding:70px 24px 40px }
  .co-nav { padding-right:0; padding-bottom:30px }
  .co-divider { width:100%; height:1px }
  .co-nav a { font-size:28px }
  .co-contact { padding-left:0 }
  .co-contact-body { grid-template-columns:1fr }
  .co-img-wrap { grid-column:1; grid-row:auto }
  .co-img { height:220px }
}
@media(max-width:520px) {
  .cards-grid { grid-template-columns:1fr }
  .hero-btns { flex-direction:column; align-items:flex-start }
  .co-nav a { font-size:22px; padding:10px 0 }
}
