@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300,400,600&family=Raleway:wght@400,700&display=swap");

/* Font Awesome 5 Free — local fonts */
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal; font-weight: 400; font-display: block;
  src: url("/assets/webfonts/fa-regular-400.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal; font-weight: 900; font-display: block;
  src: url("/assets/webfonts/fa-solid-900.woff2") format("woff2");
}
.far { font-family: "Font Awesome 5 Free"; font-weight: 400; font-style: normal; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; display: inline-block; font-variant: normal; text-rendering: auto; line-height: 1; }
.fas { font-family: "Font Awesome 5 Free"; font-weight: 900; font-style: normal; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; display: inline-block; font-variant: normal; text-rendering: auto; line-height: 1; }
.far::before, .fas::before { display: inline-block; }
.fa-hdd::before          { content: "\f0a0"; }
.fa-credit-card::before  { content: "\f09d"; }
.fa-envelope::before     { content: "\f0e0"; }
.fa-chevron-up::before   { content: "\f077"; }
.fa-chevron-down::before { content: "\f078"; }

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body { font-family: 'Open Sans', sans-serif; font-size: 14px; line-height: 1.6; color: #333; background: #fff; }
a { color: #25a2c7; text-decoration: none; }
a:hover { text-decoration: underline; color: #0e88b0; }
ul { list-style: none; padding: 0; margin: 0; }
p { margin-top: 0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 15px; }
.hidden-xs { display: block; }
.visible-xs { display: none; }
@media (max-width: 767px) { .hidden-xs { display: none !important; } .visible-xs { display: block !important; } }

/* ─── HEADER (#header) — white, like original ─── */
#header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0 10px;
  position: relative;
}
#header .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
#header .logo.logo-text {
  font-family: Raleway, 'Open Sans', sans-serif;
  font-weight: 400; font-size: 2em;
  color: #25a2c7; text-decoration: none;
  flex-shrink: 0;
}
#header .logo.logo-text:hover { text-decoration: none; color: #0e88b0; }
#header .top-nav {
  display: flex; align-items: center; gap: 12px;
  list-style: none; padding: 0; margin: 0;
}
#header .top-nav li { position: relative; }
#header .top-nav a { color: #555; font-size: 14px; padding: 4px 8px; display: block; }
#header .primary-action .btn {
  background: #043d5f; color: #fff;
  padding: 7px 18px; border-radius: 4px;
  font-size: 14px; font-weight: 600;
  white-space: nowrap; text-decoration: none; display: inline-block;
  transition: background 0.2s;
}
#header .primary-action .btn:hover { background: #032d47; text-decoration: none; color: #fff; }
/* btn-cta class alias for QA */
.btn-cta { background: #043d5f !important; color: #fff !important; padding: 7px 18px; border-radius: 4px; font-size: 14px; font-weight: 600; white-space: nowrap; display: inline-block; }

/* Language dropdown */
#header .dropdown { position: relative; }
#header .dropdown-menu {
  display: none; position: absolute; right: 0; top: 100%;
  background: #fff; border: 1px solid #ddd; min-width: 130px;
  z-index: 999; padding: 4px 0; list-style: none; margin: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
#header .dropdown:hover .dropdown-menu { display: block; }
#header .dropdown-menu li a { padding: 7px 14px; color: #555; display: block; font-size: 13px; }
#header .dropdown-menu li a:hover { background: #f5f5f5; text-decoration: none; }
#header .dropdown-toggle { display: flex; align-items: center; gap: 5px; }

/* ─── MAIN-MENU navbar — dark strip like original ─── */
#main-menu { background: #043d5f; }
#main-menu .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
#main-menu .navbar-toggle {
  display: none; background: none; border: 1px solid rgba(255,255,255,.5);
  padding: 6px 10px; cursor: pointer; border-radius: 4px; margin: 8px 0;
}
#main-menu .navbar-toggle .icon-bar {
  display: block; width: 22px; height: 2px; background: #fff;
  margin: 4px 0; border-radius: 1px;
}
#main-menu .navbar-collapse { display: flex; align-items: center; width: 100%; }
#main-menu .navbar-nav { display: flex; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
#main-menu .navbar-nav li a {
  color: rgba(255,255,255,.85); padding: 12px 14px;
  display: block; font-size: 14px; transition: color 0.2s;
}
#main-menu .navbar-nav li a:hover { color: #fff; text-decoration: none; background: rgba(255,255,255,.08); }
#main-menu .navbar-right { margin-left: auto; }
#main-menu .navbar-right li a { color: rgba(255,255,255,.7); font-size: 13px; padding: 12px 10px; }
#main-menu .navbar-right li a:hover { color: #fff; text-decoration: none; }

@media (max-width: 767px) {
  #main-menu .navbar-toggle { display: block; }
  #main-menu .navbar-collapse { display: none; flex-direction: column; align-items: flex-start; }
  #main-menu .navbar-collapse.open { display: flex; }
  #main-menu .navbar-nav { flex-direction: column; width: 100%; }
  #main-menu .navbar-right { margin-left: 0; width: 100%; }
  #main-menu .navbar-right li.mobile-cta { text-align: center; padding: 8px 0; }
  #main-menu .navbar-right li.mobile-cta a { margin: 0 auto; display: inline-block; }
  #header .lang-switcher { display: none; }
}

/* ─── HOME BANNER (#home-banner) — dark navy #043d5f ─── */
#home-banner {
  margin: 0; padding: 50px 0 60px;
  background-color: #043d5f; color: #fff;
  text-align: center;
}
#home-banner h2 {
  margin: 0; padding: 0 25px 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300; font-size: 28px; color: #fff;
}

/* ─── HOME SHORTCUTS (#home-shortcuts) — cyan #25a2c7 ─── */
#home-shortcuts { margin: 0; background: #25a2c7; color: #fff; }
#home-shortcuts .container { padding: 0; max-width: 100%; }
.sc-row { display: flex; align-items: stretch; width: 100%; }
.sc-lead {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 5px 20px; border-right: 1px solid #0e88b0;
}
.sc-lead-text { margin: 0; font-size: 1.1em; color: #fff; font-weight: 300; line-height: 1.4; text-align: center; width: 100%; }
.sc-list { list-style: none; margin: 0; padding: 0; display: flex; flex: 3; }
.sc-list li {
  flex: 1; padding: 5px 3px;
  border-right: 1px solid #0e88b0;
  font-size: .9em; text-align: center;
  cursor: pointer;
}
.sc-list li:last-child { border-right: 1px solid #0e88b0; }
.sc-list li a { display: block; color: #fff; text-decoration: none; padding: 10px 0; }
.sc-list li a:hover { background: rgba(0,0,0,.08); text-decoration: none; }
.sc-list li i { font-size: 22px; display: block; margin-bottom: 4px; }
.sc-list li p { margin: 2px 0 0; text-transform: uppercase; font-size: 11px; font-weight: 600; letter-spacing: .3px; }
.sc-list li span { display: none; }
.sc-list li:hover span { display: inline-block; }

@media (max-width: 991px) {
  .sc-lead { display: none; }
}
@media (max-width: 767px) {
  .sc-list { flex-direction: column; }
  .sc-list li { border-right: none; border-bottom: 1px solid #0e88b0; }
  .sc-list li:last-child { border-right: none; border-bottom: none; }
}

/* ─── MAIN BODY (#main-body) — white content area ─── */
#main-body { background: #fff; padding: 24px 0; min-height: 300px; }
.main-content { padding: 0 15px; }
.announcement-single { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid #e5e5e5; }
.announcement-single:last-child { border-bottom: none; }
.announcement-single h3 { font-size: 16px; margin: 0 0 8px; font-weight: 600; }
.announcement-single h3 a { color: #25a2c7; }
.announcement-single h3 a:hover { color: #0e88b0; }
.announcement-single p { color: #626262; font-size: 14px; line-height: 1.65; margin-bottom: 6px; }
.announcement-single a { color: #25a2c7; }

/* ─── PAGE HERO (for inner pages) ─── */
.page-hero {
  background: #043d5f; color: #fff;
  padding: 40px 0 50px; text-align: center;
}
.page-hero h1 { font-family: 'Open Sans', sans-serif; font-weight: 300; font-size: 28px; margin: 0 0 8px; color: #fff; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,.85); margin: 0 auto; max-width: 560px; }

/* ─── INNER PAGE CONTENT ─── */
.section { padding: 36px 0; }
.section-alt { background: #f8f8f8; }
.section-title { font-family: Raleway, sans-serif; font-size: 26px; font-weight: 700; margin: 0 0 10px; }
.section-sub { color: #666; font-size: 15px; margin-bottom: 28px; }
.text-center { text-align: center; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.feature-card { background: #fff; border: 1px solid #e5e5e5; border-radius: 6px; padding: 20px; }
.feature-card h3 { font-size: 15px; font-weight: 600; margin: 0 0 6px; }
.feature-card p { font-size: 13px; color: #666; margin: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; }
.pricing-card { background: #fff; border: 1px solid #e5e5e5; border-radius: 6px; padding: 20px; text-align: center; }
.pricing-card.popular { border-color: #4ab98b; border-width: 2px; }
.pricing-name { font-size: 12px; font-weight: 700; text-transform: uppercase; color: #888; margin-bottom: 8px; }
.pricing-price { font-size: 36px; font-weight: 800; line-height: 1; }
.pricing-price sup { font-size: 18px; vertical-align: top; margin-top: 6px; display: inline-block; }
.pricing-period { font-size: 12px; color: #888; margin-bottom: 12px; }
.pricing-features { margin: 12px 0; text-align: left; }
.pricing-features li { padding: 4px 0; font-size: 13px; display: flex; gap: 8px; }
.pricing-features li::before { content: "✓"; color: #4ab98b; font-weight: 700; flex-shrink: 0; }
.pricing-cta { display: block; width: 100%; padding: 10px; background: #4ab98b; color: #fff; border: none; border-radius: 4px; font-size: 14px; font-weight: 600; cursor: pointer; margin-top: 12px; text-align: center; text-decoration: none; transition: background .2s; }
.pricing-cta:hover { background: #38926d; color: #fff; text-decoration: none; }

.check-list { margin: 12px 0 20px; list-style: none; padding: 0; }
.check-list li { padding: 6px 0; display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.check-list li::before { content: "✓"; color: #4ab98b; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split-row.reverse { direction: rtl; }
.split-row.reverse > * { direction: ltr; }

.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e5e5; }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 14px 0; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #333; font-family: 'Open Sans', sans-serif; }
.faq-a { display: none; padding: 0 0 14px; font-size: 14px; color: #666; }
.faq-item.open .faq-a { display: block; }

.platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px,1fr)); gap: 16px; }
.platform-card { text-align: center; padding: 18px 12px; border: 1px solid #e5e5e5; border-radius: 6px; }
.platform-card i { font-size: 32px; color: #25a2c7; margin-bottom: 10px; }
.platform-card span { font-size: 13px; font-weight: 600; display: block; }

.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 13px; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select { padding: 10px 14px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #25a2c7; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-submit { background: #4ab98b; color: #fff; border: none; cursor: pointer; padding: 12px 28px; border-radius: 4px; font-size: 15px; font-weight: 600; transition: background .2s; }
.form-submit:hover { background: #38926d; }

.prose { max-width: 800px; margin: 0 auto; font-size: 14px; line-height: 1.8; }
.prose h2 { font-size: 20px; margin-top: 32px; }
.prose p { color: #555; margin-bottom: 14px; }
.prose ul { margin: 10px 0 14px 22px; list-style: disc; }
.prose ul li { color: #555; margin-bottom: 5px; }
.prose-inner { padding: 40px 15px; }

/* ─── FOOTER (#footer) — like original ─── */
#footer {
  background: #f8f8f8;
  border-top: 1px solid #e5e5e5;
  padding: 16px 0;
  font-size: 13px; color: #666;
}
#footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
#footer p { margin: 0; font-size: 13px; color: #666; }
#footer .back-to-top {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: #ddd; border-radius: 4px;
  color: #666; font-size: 12px; text-decoration: none; transition: background .2s;
}
#footer .back-to-top:hover { background: #ccc; text-decoration: none; }
.footer-nav { display: flex; gap: 20px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.footer-nav li a { color: #25a2c7; font-size: 13px; }
.footer-nav li a:hover { text-decoration: underline; }

@media (max-width: 767px) {
  .split-row { grid-template-columns: 1fr; }
  .split-row.reverse { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; }
  #footer .container { flex-direction: column; text-align: center; align-items: center; }
  .footer-nav { justify-content: center; }
  .pricing-cta, .btn-primary-lg { display: block; margin: 0 auto; text-align: center; }
}

/* §14 fix — mobile CTA centering */
@media (max-width: 767px) {
  .btn-cta { display: block !important; margin: 8px auto !important; text-align: center !important; width: fit-content !important; }
  #main-menu .navbar-right { width: 100%; text-align: center; }
  #main-menu .navbar-right li { display: block; width: 100%; text-align: center; }
}
