/*
  Brand colors:
  - Gradient (2 colors only): Navy #162D50 / #0F2342 ? Teal #007A8A. Use for hero + premium sections only.
  - Accent: Orange #F59E0B for primary CTAs (solid orange, white text). Construction vibe.
  - Errors/warnings: use standard semantic reds (e.g. #DC2626), not brand reds.
*/
:root{
  /* Gradient (2 colors only): hero + premium sections */
  --navy: #162D50;
  --navy-dark: #0F2342;
  --teal: #007A8A;
  /* Accent: primary CTAs, construction vibe */
  --accent: #F59E0B;
  --text: #F5F7FF;
  --muted: rgba(245,247,255,0.72);
  --border: rgba(245,247,255,0.12);
  --shadow: rgba(0,0,0,0.28);
  /* Semantic (errors/warnings): use standard reds */
  --error: #DC2626;
  --warning: #D97706;
  --maxw: 1200px;
  --radius: 18px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 45%, var(--teal) 100%);
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
.container{
  width:min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
}

.grain::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:0.07;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.04), transparent 40%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02), rgba(255,255,255,0.02) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: overlay;
  z-index:0;
}
main{ position:relative; z-index:1; }

/* ===== Navbar (glass pill) ===== */
.nav-wrap{
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--maxw), calc(100% - 24px));
  z-index: 999;
  border-radius: 20px;
  /* Full glass white appearance - more opaque for better text contrast */
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.60);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: background 320ms ease, border-color 320ms ease, box-shadow 320ms ease, -webkit-backdrop-filter 320ms ease, backdrop-filter 320ms ease;
}
.nav-wrap.scrolled{
  /* Takes page background color (navy/teal gradient) */
  background: rgba(15, 35, 66, 0.75);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(245, 247, 255, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.nav{
  height: 76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: Sora, Inter, system-ui;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-size: 16px;
  color: rgba(15, 35, 66, 0.95);
  transition: color 320ms ease;
}
.nav-wrap.scrolled .brand{
  color: rgba(245,247,255,0.95);
}
.logo-wrap{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(15, 35, 66, 0.08);
  border: 1px solid rgba(15, 35, 66, 0.15);
  transition: all 320ms ease;
}
.nav-wrap.scrolled .logo-wrap{
  background: rgba(255,255,255,0.06);
  border-color: rgba(245,247,255,0.12);
  box-shadow: 0 10px 20px rgba(0,0,0,0.22);
}
.logo{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display:block;
  filter: invert(1) brightness(0.2);
  transition: filter 320ms ease;
}
.nav-wrap.scrolled .logo{
  filter: invert(0) brightness(1);
}
.brand-text{ display:inline-block; line-height: 1; }

.nav-links{
  display:flex;
  align-items:center;
  gap: 18px;
  color: rgba(15, 35, 66, 0.80);
  font-weight: 500;
  font-size: 14px;
  transition: color 320ms ease;
}
.nav-links a:hover{ color: rgba(15, 35, 66, 1); }
.nav-wrap.scrolled .nav-links{
  color: rgba(245,247,255,0.85);
}
.nav-wrap.scrolled .nav-links a:hover{ color: rgba(245,247,255,1); }

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

/* Primary CTA: solid orange (#F59E0B), white text - same everywhere */
.cta{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 28px rgba(245,158,11,0.25);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.cta:hover{
  transform: translateY(-1px);
  filter: saturate(1.08) brightness(1.05);
  box-shadow: 0 18px 34px rgba(245,158,11,0.35);
}

.ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,247,255,0.12);
  color: rgba(245,247,255,0.88);
  font-weight: 600;
  transition: background 160ms ease, transform 160ms ease;
  white-space:nowrap;
}
.ghost:hover{ background: rgba(255,255,255,0.09); transform: translateY(-1px); }

.burger{
  display:none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(15, 35, 66, 0.15);
  background: rgba(15, 35, 66, 0.08);
  color: rgba(15, 35, 66, 0.9);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: all 320ms ease;
}
.nav-wrap.scrolled .burger{
  border-color: rgba(245,247,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(245,247,255,0.9);
}
.burger span{
  width: 18px; height: 2px;
  background: rgba(15, 35, 66, 0.9);
  display:block;
  position:relative;
  transition: background 320ms ease;
}
.nav-wrap.scrolled .burger span{
  background: rgba(245,247,255,0.9);
}
.burger span::before, .burger span::after{
  content:"";
  width: 18px; height: 2px;
  background: rgba(15, 35, 66, 0.9);
  position:absolute; left:0;
  transition: background 320ms ease;
}
.nav-wrap.scrolled .burger span::before,
.nav-wrap.scrolled .burger span::after{
  background: rgba(245,247,255,0.9);
}
.burger span::before{ top:-6px; }
.burger span::after{ top:6px; }

.mobile-menu{
  display:none;
  position:absolute;
  top: 88px;
  right: 12px;
  width: min(320px, calc(100% - 24px));
  border-radius: 18px;
  background: rgba(15, 35, 66, 0.96);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid rgba(245,247,255,0.18);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  padding: 10px;
}
.mobile-menu a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(245,247,255,0.95);
  font-weight: 600;
}
.mobile-menu a:hover{ background: rgba(255,255,255,0.10); }

/* ===== Page sections ===== */
section{
  padding: 84px 0;
  position:relative;
}
.section-title{
  font-family: Sora, Inter, system-ui;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.section-sub{
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
  margin: 0 0 26px;
}

/* ===== Hero (home): gradient Navy ? Teal only ===== */
.hero{
  min-height: 92vh;
  padding-top: 120px;
  display:flex;
  align-items:center;
  position:relative;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, var(--navy-dark) 0%, rgba(22,45,80,0.88) 40%, rgba(0,122,138,0.4) 75%, rgba(0,122,138,0.12) 100%),
    var(--hero-image, url('/assets/img/hero-nutritionist.jpg'));
  background-position: 0 0, var(--hero-pos-x, 70%) var(--hero-pos-y, 62%);
  background-size: auto, cover;
  filter: contrast(1.05) saturate(1.05);
  z-index:-2;
}
.hero::after{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(900px 450px at 20% 25%, rgba(0,122,138,0.12), transparent 55%);
  z-index:-1;
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: rgba(245,247,255,0.82);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(245,158,11,0.2);
}
h1{
  font-family: Sora, Inter, system-ui;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 14px 0 12px;
  color: rgba(245,247,255,0.96);
}
.subhead{
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 54ch;
  margin: 0 0 18px;
}
.hero-actions{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.trust{
  margin-top: 18px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(245,247,255,0.78);
  font-size: 13px;
}
.pill{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,247,255,0.10);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.hero-side{
  border-radius: 22px;
  background: rgba(22,45,80,0.55);
  border: 1px solid rgba(245,247,255,0.12);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 18px 40px rgba(0,0,0,0.30);
  padding: 18px;
}
.side-title{
  font-family: Sora, Inter, system-ui;
  letter-spacing: -0.02em;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 10px;
  color: rgba(245,247,255,0.92);
}
.side-item{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(245,247,255,0.10);
  background: rgba(255,255,255,0.04);
  margin-bottom: 10px;
}
/* Side icon: oval background container for SVG icons */
.side-icon{
  width: 34px; 
  height: 34px;
  border-radius: 14px;
  background: rgba(0,122,138,0.2);
  border: 1px solid rgba(245,247,255,0.10);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-icon svg {
  width: 18px;
  height: 18px;
  stroke: rgba(245,247,255,0.85);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.side-item h4{
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(245,247,255,0.9);
}
.side-item p{
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

/* ===== Cards and grids ===== */
.grid-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card{
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,247,255,0.10);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 18px 30px rgba(0,0,0,0.18);
  transition: transform 180ms ease, background 180ms ease;
}
.card:hover{ transform: translateY(-2px); background: rgba(255,255,255,0.055); }
/*
  ICON SYSTEM - Using inline SVGs with oval backgrounds
  ======================================================
  Icons are inline SVGs placed inside oval containers.
  Each container provides the teal background with border.
*/

/* Card icon: oval background container for SVG icons */
.card .mini{
  width: 40px; 
  height: 40px;
  border-radius: 16px;
  background: rgba(0,122,138,0.2);
  border: 1px solid rgba(245,247,255,0.10);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card .mini svg {
  width: 20px;
  height: 20px;
  stroke: rgba(245,247,255,0.85);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3{
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: rgba(245,247,255,0.92);
}
.card p{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.module{
  border-radius: 20px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(245,247,255,0.10);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  box-shadow: 0 22px 40px rgba(0,0,0,0.18);
}
.module h3{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(245,247,255,0.94);
}
.module p{ margin: 0 0 14px; color: var(--muted); line-height: 1.55; font-size: 13px; }
.link{
  color: rgba(245,247,255,0.9);
  font-weight: 700;
  font-size: 13px;
  display:inline-flex;
  gap: 8px;
  align-items:center;
}
.link span{
  display:inline-flex;
  width: 22px; height: 22px;
  border-radius: 10px;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,247,255,0.10);
}

/* ===== Panels (home) ===== */
.panels{ padding: 0; }
.panel{
  min-height: 60vh;
  display:flex;
  align-items:flex-end;
  position:relative;
  overflow:hidden;
  border-top: 1px solid rgba(245,247,255,0.08);
}

@media (min-width: 761px) {
  .panel{
    min-height: 65vh;
  }
}

/* Specific height adjustments for Delivery and Coaching panels */
.panel-delivery,
.panel-coaching {
  min-height: 75vh;
}

@media (min-width: 761px) {
  .panel-delivery,
  .panel-coaching {
    min-height: 80vh;
  }
}

@media (min-width: 1024px) {
  .panel-delivery,
  .panel-coaching {
    min-height: 85vh;
  }
}
.panel-bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 900ms ease;
  filter: contrast(1.05) saturate(1.05);
  z-index:0;
}

/* Dual image panel background */
.panel-bg-dual {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  z-index: 0;
}

.panel-bg-dual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,22,48,0.05), rgba(11,22,48,0.35));
  z-index: 1;
  pointer-events: none;
}

.panel-bg-img {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 900ms ease;
  filter: contrast(1.05) saturate(1.05);
}

.panel-dual-images.in-view .panel-bg-img {
  transform: scale(1.00);
}

@media (max-width: 760px) {
  .panel-bg-dual {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.panel-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(15,35,66,0.08) 0%, rgba(22,45,80,0.82) 65%, rgba(0,122,138,0.92) 100%);
  z-index:1;
}
.panel.in-view .panel-bg{ transform: scale(1.00); }
.panel-content{
  width:min(var(--maxw), calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.panel-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,247,255,0.10);
  color: rgba(245,247,255,0.86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.panel h2{
  font-family: Sora, Inter, system-ui;
  margin: 10px 0 10px;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.bullets{
  display:grid;
  gap: 8px;
  max-width: 70ch;
  color: rgba(245,247,255,0.84);
  margin: 0 0 12px;
  font-size: 14px;
}
.bullets div{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
/* Check icon: oval background container for SVG checkmark */
.check{
  width: 18px; 
  height: 18px;
  border-radius: 6px;
  background: rgba(0,122,138,0.2);
  border: 1px solid rgba(245,247,255,0.10);
  flex: 0 0 auto;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check svg {
  width: 10px;
  height: 10px;
  stroke: rgba(245,247,255,0.85);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== Steps ===== */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}
.step{
  border-radius: 20px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,247,255,0.10);
}
/* Step number: oval background with number text */
.step .num{
  width: 34px; 
  height: 34px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,122,138,0.2);
  border: 1px solid rgba(245,247,255,0.10);
  font-weight: 900;
  margin-bottom: 12px;
  color: rgba(245,247,255,0.92);
  font-size: 14px;
}
.step h4{ margin:0 0 8px; font-size: 14px; font-weight: 800; color: rgba(245,247,255,0.92); }
.step p{ margin:0; font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ===== Pricing / misc ===== */
.highlight{
  border-color: rgba(0,122,138,0.35) !important;
}

/* ===== Forms ===== */
.form{
  display:grid;
  gap: 10px;
}
.form-row-2{
  display:grid;
  gap:10px;
  grid-template-columns: 1fr 1fr;
}
.input, .textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(245,247,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 0 12px;
  font: inherit;
  outline: none;
}
.input{ height:44px; }
.textarea{
  padding: 10px 12px;
  resize: vertical;
}

/* ===== CTA Band (premium section: Navy ? Teal gradient) ===== */
.cta-band{
  padding: 64px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--teal) 100%);
  border-top: 1px solid rgba(245,247,255,0.08);
}
.cta-band .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
.cta-band h2{
  font-family: Sora, Inter, system-ui;
  margin:0;
  letter-spacing: -0.03em;
  font-size: clamp(22px, 3vw, 34px);
}
.cta-band p{ margin: 10px 0 0; color: var(--muted); line-height: 1.55; max-width: 70ch; }

/* ===== Footer ===== */
footer{
  padding: 40px 0;
  color: rgba(245,247,255,0.72);
  border-top: 1px solid rgba(245,247,255,0.08);
}
.footer-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 16px;
  flex-wrap:wrap;
  font-size: 13px;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:10px;
}

/* ===== Scroll reveal ===== */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}
.reveal.in-view{
  opacity:1;
  transform: translateY(0);
}

/* ===== Simple page hero (inner pages): gradient ===== */
.page-hero{
  padding-top: 132px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(245,247,255,0.08);
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 50%, var(--teal) 100%);
}
.page-hero h1{ margin-top: 10px; }
.page-hero p{ max-width: 70ch; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
  .grid-3{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .form-row-2{ grid-template-columns: 1fr; }
}
/* Mobile: single row ? logo | BetterWell Pro | Book a Demo | drawer icon */
@media (max-width: 760px){
  .nav-links{ display:none !important; }
  .burger{ 
    display:flex !important; 
    flex-shrink: 0;
  }
  .nav{
    height: 72px;
    flex-wrap: nowrap !important;
    justify-content: space-between;
    gap: 8px;
    padding: 0 12px;
  }
  .nav .brand{
    flex-shrink: 0;
    min-width: 0;
    font-size: 15px;
  }
  .nav .brand-text{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }
  .nav-actions{
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
  }
  .nav-actions .cta{
    flex-shrink: 0;
    padding: 0 10px;
    font-size: 13px;
    height: 38px;
  }
  .nav-actions .burger{
    flex-shrink: 0;
    width: 38px;
    height: 38px;
  }
  .hero{ padding-top: 116px; }
  .grid-4{ grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal, .panel-bg, .cta, .ghost{ transition: none !important; }
}
