body{
  margin:0;
  font-family:'Lato',sans-serif;
  background:#f4f6f9;
  color:#1f2937;
  font-size:17px;
}

*{
  box-sizing:border-box;
}

.container{
  width:min(92%,1180px);
  margin:0 auto;
}

.content-narrow{
  max-width:980px;
  margin:0 auto;
}

.center{
  text-align:center;
}

/* HEADER */

.site-header{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
}

.logo img{
  display:block;
  max-height:60px;
}

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

.nav a{
  text-decoration:none;
  color:#1f2937;
  font-size:15px;
  font-weight:500;
}

.nav-item{
  position:relative;
}

.dropdown{
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  min-width:260px;
  display:none;
  border:1px solid #e5e7eb;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  z-index:999;
}

.nav-item:hover .dropdown{
  display:block;
}

.dropdown a{
  display:block;
  padding:12px 18px;
}

.nav-toggle{
  display:none;
}

/* SECTIONS */

.section{
  padding:90px 0;
}

.section.alt{
  background:#e9eef5;
}

h1,h2,h3,h4{
  line-height:1.25;
  color:#111827;
}

h1{
  font-size:48px;
  font-weight:300;
  margin:0 0 24px;
}

h2{
  font-size:34px;
  font-weight:600;
  margin:0 0 24px;
}

h3{
  font-size:22px;
  font-weight:600;
  margin:28px 0 12px;
}

h4{
  font-size:18px;
  margin:24px 0 10px;
}

p{
  line-height:1.75;
  margin:0 0 20px;
}

ul{
  line-height:1.7;
}

a{
  color:#0645d8;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
}

/* BUTTON */

.btn{
  display:inline-block;
  padding:13px 24px;
  background:#2563eb;
  color:#fff;
  text-decoration:none;
  border-radius:7px;
  font-size:15px;
  font-weight:600;
}

.btn:hover{
  opacity:.95;
}

.btn-secondary{
  background:#111827;
}

/* HOME HERO */

.hero-home{
  background:#e9eef5;
  padding:80px 0;
}

.hero-grid{
  align-items:center;
}

.hero-copy{
  max-width:560px;
}

.hero-copy h1{
  font-size:48px;
  font-weight:300;
}

.hero-copy p{
  max-width:520px;
}

.hero-video{
  width:100%;
}

.video-frame{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:10px;
  overflow:hidden;
  background:#111827;
  box-shadow:0 10px 28px rgba(0,0,0,.10);
}

.video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* PRODUCT PAGES */

.product-hero{
  background:#e9eef5;
  padding:55px 0 65px;
}

.product-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.product-hero-copy{
  max-width:520px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.product-hero-copy h1{
  font-size:48px;
  font-weight:300;
  margin:0 0 18px;
}

.product-kicker{
  font-size:22px;
  color:#374151;
  margin-bottom:22px;
}

.product-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:28px;
}

.product-hero-media{
  width:100%;
}

.product-video{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:14px;
  overflow:hidden;
  background:#111827;
  box-shadow:0 12px 32px rgba(0,0,0,.14);
}

.product-video video,
.product-video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  object-fit:cover;
}

.product-media-cta{
  margin-top:22px;
}

.product-section{
  padding:95px 0;
}

.product-section.alt{
  background:#e9eef5;
}

.product-narrow{
  max-width:900px;
  margin:0 auto;
}

.product-list{
  padding-left:24px;
  margin-bottom:26px;
}

.product-list li{
  margin-bottom:10px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:38px;
}

.product-card{
  background:#fff;
  border-radius:18px;
  padding:34px;
  border:1px solid #e5e7eb;
  box-shadow:0 10px 26px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  height:100%;
  transition:transform .25s ease,box-shadow .25s ease;
}

.product-card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(0,0,0,.10);
}

.product-card h3{
  margin-top:0;
  font-size:24px;
}

.product-price{
  font-size:30px;
  font-weight:700;
  color:#111827;
  margin:14px 0 20px;
}

.product-card ul{
  padding-left:22px;
  margin-bottom:22px;
}

.product-card li{
  margin-bottom:9px;
}

.paypal-form{
  margin-top:auto;
  text-align:center;
}

.paypal-form input[type="submit"]{
  display:inline-block;
  border:0;
  border-radius:8px;
  padding:13px 22px;
  background:#2563eb;
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}

.paypal-note{
  font-size:13px;
  color:#6b7280;
  margin-top:12px;
}

.subscribe-button{
  width:260px;
  max-width:100%;
  height:auto;
}

.faq-list{
  margin-top:30px;
  border:1px solid #d8dee8;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.faq-list details{
  border-bottom:1px solid #d8dee8;
}

.faq-list details:last-child{
  border-bottom:0;
}

.faq-list summary{
  cursor:pointer;
  padding:18px 22px;
  font-weight:700;
}

.faq-list details div{
  padding:0 22px 22px;
}

.product-section .btn{
  margin-top:20px;
}

/* HOME CONTENT */

.content-narrow .grid-2{
  gap:60px;
}

.content-narrow .grid-2 h3{
  margin-top:18px;
}

.content-narrow .grid-2 p{
  font-size:16px;
}

/* BLOG */

.blog-post-section{
  background:#f4f6f9;
}

.blog-layout{
  display:grid;
  grid-template-columns:3fr 1fr;
  gap:50px;
}

.blog-main{
  min-width:0;
}

.blog-article{
  background:#fff;
  padding:42px;
  border-radius:18px;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
}

.blog-meta{
  color:#6b7280;
  margin-bottom:28px;
}

.featured-image{
  width:100%;
  border-radius:18px;
  margin:20px 0 35px;
}

.card-clean,
.blog-example-box{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:28px;
  margin-top:35px;
}

.feature-list{
  padding-left:22px;
}

.feature-list li{
  margin-bottom:12px;
}

.blog-sidebar{
  position:sticky;
  top:100px;
}

.sidebar-block{
  background:#fff;
  border-radius:18px;
  padding:25px;
  margin-bottom:25px;
  box-shadow:0 4px 18px rgba(0,0,0,.05);
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.blog-card img{
  width:100%;
  display:block;
}

.blog-card h2,
.blog-card h3{
  margin:20px;
  font-size:22px;
}

.blog-card p{
  margin:0 20px 20px;
}

.read-more{
  display:inline-block;
  margin:0 20px 25px;
}

.blog-card a{
  color:inherit;
  text-decoration:none;
}

/* NEWS CATEGORY CARDS */

.category-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:2rem;
  max-width:1120px;
  margin:3rem auto 0;
}

.category-card{
  width:calc(33.333% - 1.35rem);
  background:#fff;
  border-radius:18px;
  padding:2rem;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  gap:1.5rem;
  min-height:210px;
}

.category-icon{
  width:86px;
  height:86px;
  border-radius:50%;
  background:#f3f7fb;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 86px;
  font-size:3rem;
}

.category-card-content{
  flex:1;
}

.category-card-content h3{
  margin:0 0 .75rem;
  line-height:1.25;
}

.category-card-content p{
  margin:0 0 1rem;
  line-height:1.6;
}

.category-card-content .read-more{
  display:inline-block;
  margin:0;
  font-weight:700;
  text-decoration:none;
}

@media(max-width:900px){
  .category-card{
    width:calc(50% - 1rem);
  }
}

@media(max-width:640px){
  .category-card{
    width:100%;
  }
}

/* VIDEO */

.video-embed{
  margin:35px 0;
}

.ratio{
  position:relative;
}

.ratio-16x9{
  padding-top:56.25%;
}

.ratio iframe,
.ratio video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:none;
  border-radius:16px;
  background:#111827;
}

/* IMAGES */

.image-centre{
  text-align:center;
}

.hero-image{
  width:100%;
  border-radius:18px;
}

.bottom-rounded{
  display:block;
  margin:20px auto 0;
  width:100%;
  max-width:820px;
  border-radius:42px;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
}

.image-caption{
  text-align:center;
  color:#6b7280;
  margin-top:18px;
  font-size:14px;
}

/* CONTACT */

.contact-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact-form input,
.contact-form textarea{
  padding:12px;
}

/* ABOUT */

.about-flex{
  display:flex;
  align-items:center;
  gap:60px;
}

.about-image{
  flex:0 0 360px;
}

.about-text{
  flex:1;
}

/* PROMO */

.promo-section{
  margin:30px 0;
  text-align:center;
}

.promo-section a{
  display:block;
  margin:0 auto 28px;
}

.promo-banner{
  display:block;
  width:100%;
  max-width:728px;
  margin:0 auto;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
  transition:transform .25s ease,box-shadow .25s ease;
}

.promo-banner:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 34px rgba(0,0,0,.12);
}

/* FOOTER */

.site-footer{
  background:#111827;
  color:#fff;
  padding:60px 0 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.footer-grid a{
  color:#fff;
  text-decoration:none;
}

.footer-bottom{
  text-align:center;
  margin-top:40px;
  opacity:.7;
  font-size:14px;
}

/* MOBILE */

@media(max-width:900px){

  .nav{
    display:none;
  }

  .grid-2,
  .blog-layout,
  .footer-grid,
  .blog-grid,
  .product-hero-grid,
  .product-grid{
    grid-template-columns:1fr;
  }

  .category-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .category-card,
  .category-card:nth-child(4),
  .category-card:nth-child(5){
    grid-column:auto;
  }

  .section,
  .product-section{
    padding:60px 0;
  }

  .hero-home,
  .product-hero{
    padding:55px 0;
  }

  h1,
  .hero-copy h1,
  .product-hero-copy h1{
    font-size:36px;
  }

  h2{
    font-size:28px;
  }

  .blog-article,
  .product-card{
    padding:28px;
  }

}

@media(max-width:640px){

  .category-grid{
    grid-template-columns:1fr;
  }

  .category-card{
    min-height:auto;
    padding:1.5rem;
  }

  .category-icon{
    width:64px;
    height:64px;
    flex-basis:64px;
    font-size:2.4rem;
  }

}

/* FORCE NEWS CATEGORY GRID */

.category-grid{
  display:grid !important;
  grid-template-columns:repeat(6,1fr) !important;
  gap:2rem !important;
  max-width:1120px !important;
  margin:3rem auto 0 !important;
}

.category-card{
  grid-column:span 2 !important;
  display:flex !important;
  align-items:center !important;
  gap:1.5rem !important;
  min-height:210px !important;
}

.category-card:nth-child(4){
  grid-column:2 / span 2 !important;
}

.category-card:nth-child(5){
  grid-column:4 / span 2 !important;
}

@media(max-width:900px){
  .category-grid{
    grid-template-columns:repeat(2,1fr) !important;
  }

  .category-card,
  .category-card:nth-child(4),
  .category-card:nth-child(5){
    grid-column:auto !important;
  }
}

@media(max-width:640px){
  .category-grid{
    grid-template-columns:1fr !important;
  }
}

/* BEM NEWS TOPIC GRID */

.bem-topic-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:28px;
  max-width:1120px;
  margin:3rem auto 0;
}

.bem-topic-card{
  width:calc(33.333% - 20px);
  background:#fff;
  border-radius:18px;
  padding:32px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  gap:24px;
  min-height:210px;
}

.bem-topic-icon{
  width:82px;
  height:82px;
  border-radius:50%;
  background:#f3f7fb;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 82px;
  font-size:42px;
}

.bem-topic-content{
  flex:1;
}

.bem-topic-content h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.25;
}

.bem-topic-content p{
  margin:0 0 14px;
  font-size:16px;
  line-height:1.55;
}

.bem-topic-link{
  display:inline-block;
  font-weight:700;
  text-decoration:none;
}

@media(max-width:900px){
  .bem-topic-card{
    width:calc(50% - 14px);
  }
}

@media(max-width:640px){
  .bem-topic-card{
    width:100%;
  }
}

```css id="u8b6gf"
.consultation-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.consultation-form {
  position: relative;
}

.form-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.form-card h2 {
  margin-top: 0;
}

.form-card p {
  margin-bottom: 20px;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 16px;
}

.form-card input[type="submit"] {
  background: var(--primary);
  color: #ffffff;
  border: 0;
  cursor: pointer;
  transition: 0.3s ease;
}

.form-card input[type="submit"]:hover {
  opacity: 0.9;
}

@media (max-width: 900px) {

  .consultation-grid {
    grid-template-columns: 1fr;
  }

}

.consultation-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.consultation-content {
  min-width: 0;
}

.consultation-form {
  min-width: 0;
}

.form-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.form-card h2 {
  margin-top: 0;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
}

@media (max-width: 900px) {

  .consultation-grid {
    grid-template-columns: 1fr;
  }

}

/* MARKETING CONSULTATION */

.consultation-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(500px,.9fr);
  gap:60px;
  align-items:start;
}

.consultation-content{
  min-width:0;
}

.consultation-form{
  min-width:0;
}

.form-card{
  background:#fff;
  padding:36px;
  border-radius:20px;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.form-card h2{
  margin-top:0;
  margin-bottom:12px;
}

.form-card p{
  margin-bottom:24px;
}

.contact-form label{
  display:block;
  margin-bottom:6px;
  font-weight:600;
}

.contact-form input{
  width:100%;
  padding:15px 16px;
  margin-bottom:18px;
  border:1px solid #d8d8d8;
  border-radius:10px;
  font-size:16px;
}

.contact-form .btn{
  width:100%;
  margin-top:8px;
}

.form-honeypot{
  position:absolute;
  left:-9999px;
  top:-9999px;
}

@media(max-width:980px){

  .consultation-grid{
    grid-template-columns:1fr;
  }

}