:root {
  --primary: #0077ff;
  --cta: #ff6a00;
  --bg: #ffffff;
  --text: #222;
  --muted: #666;
  --light: #f6f7fb;
  --accent: #e2f0ff;
}
* { box-sizing: border-box; }
body { margin:0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol"; color:var(--text); background:var(--bg); line-height:1.6; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1100px, 92%); margin: 0 auto; }c
.narrow { width: min(800px, 92%); }

/* Header */
.site-header { position: sticky; top:0; z-index: 999; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); border-bottom:1px solid #eee; transition: transform .25s ease; }
.site-header.chidden { transform: translateY(-100%); }
.header-inner { display:flex; align-items:center; gap: 1rem; padding: .75rem 0; }
.brand { font-weight: 700; font-size: 1.25rem; color: #111; }
.primary-nav .menu { display:flex; gap: 1rem; flex-wrap: wrap; list-style: none; margin:0; padding:0; }
.primary-nav .menu a { padding:.5rem .75rem; border-radius: 999px; color:black; }
.primary-nav .menu .current-menu-item > a { background: var(--accent); }
.header-actions { margin-left: auto; display:flex; align-items:center; gap:.75rem; }
.btn { display:inline-block; border:1px solid var(--primary); padding:.6rem 1rem; border-radius:999px; font-weight:600; }
.btn:hover {
  text-decoration: none;
}
.btn-outline {
  border: 2px solid white;
  color: white;
}
.btn-outline-orange {
  padding:.2rem 1rem;
  border: 2px solid var(--cta);
  color: var(--cta);
}
.btn-cta { background: var(--cta); border-color: var(--cta); color:#fff;}
.btn-cta:hover {
  text-decoration: none;
}

.burger { display:none; width:40px; height:40px; position:relative; border:0; background:transparent; }
.burger span { position:absolute; left:8px; right:8px; height:2px; background:#333; transition:all .2s ease; }
.burger span:nth-child(1){ top:12px;} .burger span:nth-child(2){ top:19px;} .burger span:nth-child(3){ top:26px;}

.offcanvas { display:none; position:fixed; inset:0; background:rgba(0,0,0,.5); z-index: 1;}
.offcanvas .offcanvas-container{ position:absolute; right:0; top:0; bottom:0; width:75%; background:#fff; padding-left:2rem; padding-right:2rem; padding-top:5rem; list-style:none; }
.offcanvas .menu-offcanvas{ list-style:none; }
.offcanvas .menu-offcanvas li { margin-bottom:.5rem; }
.offcanvas .menu-offcanvas li a {
  color: black;
}
.offcanvas .menu-offcanvas li a:hover {
  color: var(--cta);
  text-decoration: none;
}
.offcanvas .menu-offcanvas li.current-menu-item a {
  color: var(--cta);
}

@media (max-width: 980px){
  .primary-nav{ display:none; }
  .burger{ display:block; }
}

/* Hero */
.hero { background: url('https://images.unsplash.com/photo-1682310916704-8f91c1a1b66b?q=80&w=2048') center/cover no-repeat; color:#fff; padding: 18vh 0; }
.hero .hero-inner { display:flex; align-items:center; min-height: 40vh; }
.hero .hero-text { max-width: 600px; background: rgba(0,0,0,.35); padding:1rem 1.25rem; border-radius: 12px; }

/* Sections */
section { padding: 3rem 0; }
h1,h2 { line-height:1.25; }
h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h2 { font-size: clamp(1.3rem, 2.8vw, 1.8rem); }
.link-arrow::after { content:"→"; margin-left:.5ch; }
.link-arrow:hover {
  text-decoration: none;
}

/* Cards */
.cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.card { display:block; border:1px solid #eee; border-radius:14px; overflow:hidden; background:#fff; box-shadow: 0 1px 6px rgba(0,0,0,.04); transition: transform .15s ease; }
.card:hover{ transform: translateY(-2px); text-decoration: none; }
.card-image { aspect-ratio: 16/10; background: #eaf3ff; display:flex; align-items:center; justify-content:center; }
.card-body { padding:.9rem; }
.chip { display:inline-block; border:1px solid #ddd; padding:.3rem .6rem; border-radius:999px; margin-right:.4rem; margin-bottom:.4rem;}
.chip.active { background: var(--accent); }

/* Blog */
.post-card { display:flex; gap: 1rem; border:1px solid #eee; border-radius:12px; overflow:hidden; }
.post-card img { display:block; }
.post-card-body { padding: 0 2rem 2rem; }
.post-card-body a:first-child {
  font-size: 1rem;
  font-weight: bold;
  color: black;
}
.post-card-body a:hover {
  text-decoration: none;
}
.blog-list-front .wp-post-image {
  border-radius: 4px;
}

/* Marquee 
.logo-marquee { overflow:hidden; padding:.6rem; border-radius:12px; background:#fff; }
.logo-marquee .track { display:flex; gap:2rem; animation: scroll 25s linear infinite; align-items:center; }
.logo-marquee .logo { width: 150px; text-align:center; opacity:.8; flex-shrink: 0; }
.logo-marquee .logo img {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
*/

.logo-marquee {
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.marquee-inner:hover {
  animation-play-state: paused;
}

.track {
  display: flex;
}

.logo {
  flex: 0 0 180px;
  /*flex-shrink: 0;
  width: 150px;*/
  margin-right: 2rem;
}

.logo img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  display: block;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Testimonials */
.testimonial-row { display:flex; gap:1rem; overflow:auto; padding-bottom:.5rem; }
.testimonial-card { flex:0 0 320px; border:1px solid #eee; border-radius:12px; padding:1rem; background:#fff;}
.testimonial-card .avatar img { border-radius:999px; width: 150px; }
.stars { color: #f4b400; margin:.25rem 0; }

/* Forms */
.lamimo-form { display:grid; gap: .9rem; }
.lamimo-form fieldset { border:1px solid #eee; border-radius:12px; padding:1rem; }
.lamimo-form label { display:block; font-weight:600; }
.lamimo-form input[type=text],
.lamimo-form input[type=email],
.lamimo-form input[type=tel],
.lamimo-form input[type=date],
.lamimo-form input[type=number],
.lamimo-form textarea,
.lamimo-form select { width:100%; margin-top:.3rem; padding:.6rem .7rem; border-radius:10px; border:1px solid #ccc; font-weight:400; }
.notice.success { background:#e6ffed; border:1px solid #b7f7c4; padding:.8rem; border-radius:10px; }
.hidden-honeypot { position:absolute; left:-9999px; }

/* FAQ */
.faq-item { border-bottom:1px solid #eee; }
.faq-q { all:unset; display:block; width:100%; padding:.8rem 0; cursor:pointer; font-weight:600; }
.faq-a { padding: .2rem 0 1rem; color: var(--muted); }

/* Footer */
.site-footer { background: #f9fafb; color:#444; padding: 2rem 0; margin-top: 3rem; }
.site-footer a { color:#000; }
.footer-grid { display:grid; gap:1rem; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }
.legal { display:flex; gap:1rem; align-items:center; justify-content:space-between; border-top:1px solid #1f2937; margin-top:1rem; padding-top:1rem; }

/* GDPR Banner */
#gdpr-banner { position:fixed; bottom:12px; left:12px; right:12px; background:#fff; border:1px solid #ddd; border-radius:12px; padding:1rem; box-shadow:0 8px 30px rgba(0,0,0,.08); z-index:9999; }
#gdpr-banner .actions { display:flex; gap:.5rem; margin-top:.5rem; }
#gdpr-banner .btn { border-color:#222; }

/* Utilities */
.stats { display:flex; gap:2rem; list-style:none; padding:0; margin:1rem 0; }
.stats li strong { font-size:1.4rem; }
hr{ border:none; border-top:1px solid #eee; }

.lang-switcher {
  position: relative;
}
.lang-switcher ul {
  position: absolute;
  top:50px;
  border-radius: 0.25rem;
  background: white;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
.lang-switcher ul li {
  display: block;
  margin: 4px;
}
.lang-switcher ul li a {
  color: black;
}
.lang-switcher ul li a:hover {
  color: var(--cta);
  text-decoration: none;
}
.lang-switcher ul li.current-lang a {
  color: var(--cta);
}

.menu-burger ul li {
  display: block;
  margin: 4px;
}
.menu-burger ul li a {
  color: black;
}
.menu-burger ul li a:hover {
  color: var(--cta);
}
.menu-burger ul li.current-menu-item a {
  color: var(--cta);
}
.menu-footer li a:hover{
  color: var(--cta);
  text-decoration: none;
}
.page-content.theme p{
  margin: 4px 0 8px;
}
.page-content.theme tr:first-child td{
  background: #ccc;
  font-weight: bold;
}
.page-content.theme tr td:first-child{
  background: #ccc;
  font-weight: bold;
}
.page-content p{
  margin: 4px 0 8px;
}
.page h1, .page-content h4{
  margin: 24px 0 8px;
}
.pagination a {
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: black;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
.pagination a:hover {
  text-decoration: none;
  color: var(--cta);
}
.pagination .current {
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: var(--cta);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
.wp-block-list {
  padding-left: 20px;
}
.wp-block-list li {
  list-style: disc;
}
.confirmation_vform {
  color: green;
}
.vform-main-submit {
  color: white !important;
  background-color: var(--cta) !important;
  border-radius: 4px !important;
  width: auto !important;
  min-width: 25%;
}
@media (max-width: 512px){
  .vform-main-submit {
    width: 100% !important;
    min-width: 25%;
  }
}
.myallinone-vform input.vform-error:required:invalid, .myallinone-vform select.vform-error:required:invalid, .myallinone-vform textarea.vform-error:required:invalid {
  /* border-color: red;
  border-width: 2px;
  border-style: solid; */
}