﻿@import 'defaults.css';

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.eot);
    src: url(//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.woff) format('woff'), url(//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg');
}

:root {
    --primary: #f26922;
    --secondary:#78aede;
    --accent:#666;
    --darkblue: #0e1f3f;
}

html{
    font-size:62.5%;
	scroll-behavior: smooth;
}

#bgImage {
    overflow-x: hidden; /* Hides the horizontal scrollbar at the bottom of the screen */
}

#preHeader {
    font-size: 3.1rem;
    padding: 8px 0px;
}

    #preHeader a {
        color:#fff;
    }

/*this was 768 but increased for earlier hamburger breakpoint*/
@media screen and (min-width:1200px) {
    #preHeader {
        display: none;
    }
}

/* -------------------- Header -------------------- */
header {
    padding: 10px 0px;
}

#promoBanner {
    display:grid;
}

.promoBannerContent{
    display:grid;
}

    .promoBannerContent *{
        padding:0px;
        margin:0px;
    }

    #promoBanner .promoBannerContent {
        animation: rise;
        animation-duration: 9s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        transform: translateY(120%);
    }

@keyframes rise {
    0% {transform: translateY(120%)}
    10% {transform: translateY(120%)}
    20% {transform: translateY(0%)}
    80% {transform: translateY(0%)}
    90% {transform: translateY(-140%)}
    100% {transform: translateY(-140%)}
}

#phone {
    font-size: 2.4rem;
}


.AccountStatus { /* for sites that enable the account login in the config */
    font-size: 1rem;
    position: absolute;
    top: 0px;
    right: 0px;
}

/* -------------------- Nav -------------------- */
#mainNav {
    font-size:1.8rem;
    text-transform: none;
    font-weight: 300;
}

#mainNav.navbar-default {
    background-color: transparent;
    border-color: transparent;
}

nav#mainNav img {
    padding: 10px;
}


#mainNav.navbar{
    margin-bottom:unset;
}

#mainNav .navbar-nav > .open > a, #mainNav .navbar-nav > .open > a:focus, #mainNav .navbar-nav > .open > a:hover {
    color: #303030;
    background-color: #efefef;
}

#mainNav .dropdown-menu{
    border:none;
    border-radius:0px;
}

#mainNav .dropdown-menu>li>a{
    font-weight:300;
}

#mainNav .caret {
    margin-left: 5px;
}


#mainNav .navbar-collapse{
    border:none;
}

@media(min-width:768px) {
    #mainNav .navbar-nav {
        padding-right: 10px;
    }

    #mainNav #nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #mainNav .navbar-nav > li > a {
        color: #303030;
        border-bottom: solid 3px transparent;
    }

        #mainNav .navbar-nav > li > a:hover {
            color: #303030;
            border-bottom: solid 3px var(--primary);
        }
}

@media(max-width:767px){
    nav#mainNav {
        font-size: 2.5rem;
        font-weight:400;
    }

        nav#mainNav .navbar-nav {
            min-height: 100vh;
        }

        nav#mainNav li {
            padding: 10px 0px;
        }

        #logo img{
            margin:auto;
        }

    #mainNav .dropdown-menu {
        text-align: center;
        font-size:1.8rem;
        font-weight:300;
    }
}


/*this increases the breakpoint for the hamburger menu ---------------- */

/*added to fix dropdowns on early nav collapse*/
/*@media(max-width:1507px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    #mainNav .dropdown-menu {
        text-align: center;
        font-size: 1.8rem;
        font-weight: 300;
        background: #000;
    }
}*/

@media (max-width: 1200px) {
    #mainNav #nav-container {
        display: block;
        /*background: #161616;*/
    }

    .navbar-header {
        float: none;
    }

    .navbar-left, .navbar-right {
        float: none !important;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }

    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin-top: 7.5px;
    }

        .navbar-nav > li {
            float: none;
        }

            .navbar-nav > li > a {
                padding-top: 10px;
                padding-bottom: 10px;
            }

    .collapse.in {
        display: block !important;
    }

    nav .navbar-nav {
        float: none;
        text-align: center;
    }

    nav.navbar li a {
        padding: 14px 15px;
    }
}

/*end hamburger breakpoint modification ---------------------*/

/* -------------------- Page -------------------- */

.mainJumbotron .container-fluid, .mainJumbotron {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: transparent;
}

.formTitle { /* Title element of forms */
    font-size: 2.7rem;
    font-weight: normal;
}

body {
    font-family: Montserrat, sans-serif;
    font-weight: 300;
    color: #383838;
}

/* Use this to change the default site font size for the site so it doesn't affect titanium admin interfaces*/
.module {
    font-size: 1.9rem;
}


h1, h2, h3, h4, h5, h6 {
    margin-bottom: .25em;
    margin-top: .5em;
}

.pageHeader h1, h1 {
    font-size: clamp(3.25rem, 2.1667rem + 3.5vw, 5.5rem);
}

h2 {
    font-size: clamp(2.5rem, 2.1389rem + 1.4815vw, 3.25rem);
}

h3 {
    font-size: clamp(2rem, 1.6148rem + 1.5802vw, 2.8rem);
}

h4 {
    font-size: clamp(1.7rem, 1.4593rem + 0.9877vw, 2.2rem);
}

h5 {
    font-size: clamp(1.55rem, 1.3333rem + 0.8889vw, 2rem);
}

h6 {
    font-size: clamp(1.5rem, 1.3556rem + 0.5926vw, 1.8rem);
}

a {
    color: var(--primary);
}

    a:hover {
        color: #000000;
    }


.btn{
    border-radius:20px;
    padding:.6em 2em .7em;
    text-transform: uppercase;
}

.btn-primary, .bg-primary { /* Set the primary colors for specific elements such as call to action button in header */
    color: #ffffff;
    background-color: var(--primary);
	border:none;
}

    .btn-primary:hover {
        background-color: #000;
        transition: .4s ease-in-out;
    }

.btn-secondary {
    background-color: var(--secondary);
    color: #fff;
    border: none;
}    

    .btn-secondary:hover {
        background-color: var(--accent);
        transition: .4s ease-in-out;
        color: #fff;
    }

.btn-default, .bg-default {
    color: #ffffff;
    background-color: #575757;
}

    .btn-default:hover {
        background-color: #000;
        transition: .4s ease-in-out;
    }

.btn-ghost-light {
	background-color: transparent;
	border: 1px solid #fff;
	color: #fff;
}

	.btn-ghost-light:hover {
		background-color: #fff;
		color: #000;
	}

.btn-ghost-dark {
	background-color: transparent;
	border: 1px solid var(--primary);
	color: var(--primary);
}

	.btn-ghost-dark:hover {
		background-color: var(--primary);
		color: #fff;
	}



/* ------------------ Custom Edges -----------------------------*/
.customEdge:after {
    content: "";
    width: 100%;
    position: absolute;
    aspect-ratio: 16/1;
    background-repeat: no-repeat;
    background-size: cover;
}

.bottom.customEdge:after{
    bottom:0px;
}

.top.customEdge:after{
    top:0px;
}

.customEdge {
    position: relative;
}

.editing .customEdge.module {
    position: static !important;
}

    .editing .customEdge.module:after {
        display: none;
    }


.customEdge.flipY:after {
    transform: rotateY(180deg);
}

.customEdge.flipX:after {
    transform: rotateX(180deg);
}

/*custom edge shapes*/

.bottom.wave:after {
    background-image: url(../../content/image/custom-edges/wave-bottom-right.svg);
    background-position: bottom center;
}

.top.wave:after {
    background-image: url(../../content/image/custom-edges/wave-top.svg);
    background-position: top center;
}

.bottom.curve:after {
    background-image: url(../../content/image/custom-edges/curve-bottom.svg);
    background-position: bottom center;
}

.top.curve:after {
    background-image: url(../../content/image/custom-edges/curve-top.svg);
    background-position: bottom center;
}

.bottom.arrow:after {
    background-image: url(../../content/image/custom-edges/arrow-bottom.svg);
    background-position: bottom center;
}

.top.arrow:after {
    background-image: url(../../content/image/custom-edges/arrow-top.svg);
    background-position: bottom center;
}

.bottom.angle:after {
    background-image: url(../../content/image/custom-edges/angle-bottom.svg);
    background-position: bottom center;
}

.top.angle:after {
    background-image: url(../../content/image/custom-edges/angle-top.svg);
    background-position: bottom center;
}

.bottom.mountain:after {
    background-image: url(../../content/image/custom-edges/mountain-bottom.svg);
    background-position: bottom center;
}

.top.mountain:after {
    background-image: url(../../content/image/custom-edges/mountain-top.svg);
    background-position: bottom center;
}

/* ------------------ Accordion styles -----------------------------*/
.panel-heading a, .panel-default > .panel-heading {
    color: #fff;
    font-size: 1.4rem;
}

.panel-default > .panel-heading {
	background-color: #1d1e1c;
}


.module .panel-default {
	border: solid 1px #181817;
}

.pageHeader h1 { /* this is a class used for the page header h1 */
    font-weight: 100;
    max-width: 1170px;
    margin: auto;
    font-size: 5.5rem;
    padding-bottom: 2px;
}

/* -------------------- Footer -------------------- */
footer {
    background: #0e1f3f;
    color: #fff;
    padding: 30px 0px;
}

    footer a {
        color: #fff;
    }

        footer a:hover {
            color: #fff;
        }

    footer ul li {
        list-style: none;
        border-bottom: dotted 1px rgba(255,255,255,.3);
        padding: 1px 6px;
    }

footer {
    font-size: 1.4rem;
}

    footer h5 {
        text-transform: uppercase;
        color:#fff;
        border-bottom: dotted 1px rgba(255,255,255,.7);
        padding-bottom: 5px;
    }

    footer ul {
        padding: 0;
    }

    footer input.form-control, footer textarea.form-control {
        background: transparent;
        padding: 4px 4px;
        margin: 0px 0px 3px 0px;
        border-radius: 0px;
        line-height: 1.2em;
        height: unset;
        border: solid 1px rgba(255,255,255,.3);
    }

    footer button.btn {
        border-radius: 0;
        padding: 3px 15px 4px;
    }

.social i {
    border-radius: 50%; /*Makes the circle*/
    width: 46px; /*sets the width of the circle*/
    height: 46px; /*sets the height of the circle*/
    font-size: 30px; /*sets the size of the icon itself*/
    padding: 8px 3px; /*sets the positioning of the icon within the circle*/
    box-sizing: border-box; /*keeps the dimensions of the circle*/
    text-align: center; /*centers the icon in the circle*/
    margin: 0px 1px; /*gives spacing between the icons*/
}

footer .row:nth-child(2) {
    border-top: dotted 1px #6b737e;
    margin-top: 20px;
    padding-top: 15px;
}

/* ---------------- icon styles -------------------*/
.iconLink i {
    padding: 5px 6px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    border: solid 1px #cccccc;
    margin-right: 2px;
    transition:all .3s;
}

.iconLink .fa-file-excel {
    color: #3fa024;
}
a.iconLink:hover .fa-file-excel {
    background: #3fa024;
}


.iconLink .fa-file-pdf {
    color: #c70e0e;
}

a.iconLink:hover .fa-file-pdf {
    background: #c70e0e;
}


.iconLink .fa-file-word {
    color: #159ae8;
}
a.iconLink:hover .fa-file-word {
    background: #159ae8;
}


.iconLink .fa-file-powerpoint {
    color: #D24625;
}
a.iconLink:hover .fa-file-powerpoint {
    background: #D24625;
}

.iconLink .fa-file-audio {
    color: #34495E;
}
a.iconLink:hover .fa-file-audio {
    background: #34495E;
}

.iconLink .fa-file-video {
    color: #F39C12;
}
a.iconLink:hover .fa-file-video {
    background: #F39C12;
}

.iconLink .fa-file-archive {
    color: #8E44AD;
}
a.iconLink:hover .fa-file-archive {
    background: #8E44AD;
}

a.iconLink:hover .fas {
    color: #fff;
    border-color: transparent;
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

/* -------------------- Responsive Device CSS -------------------- */

/* Desktops */

@media screen and (min-width:768px) {
    ul.dropdown-menu li:hover > ul.dropdown-menu
    {
        display: block;
        position: absolute;
        top: -8px;
        left: 159px;
    }

    #phone .phoneIcon {
        display: none;
    }
}

@media screen and (min-width:1170px) {		
	nav .mainNav {		
		max-width:1170px;		
		margin:0px auto;		
	}		
}

/* 4k screens */
@media screen and (min-width:1920px) {
	.carousel-inner>.item>img, .carousel-inner>.item>a>img {
			width: 100%;
		}
}

/* Laptops */
@media screen and (max-width:1280px) {
}

/* Tablets */
@media screen and (max-width:980px) {
    .container {
        width: 100%;
    }

    /*This is to fix the horizontal scroll issue caused by the AOS (animate on scroll) framework that positions items off to the side before fading in*/
    html, body {
    max-width:100%;
    overflow-x:hidden;
    }
    /*end aos horizontal scroll fix*/
}

/* Portrait Tablets */
@media screen and (max-width:768px) {
    nav .navbar-nav {
        float: none;
		text-align:center;
    }

    #phone .phoneNo{
        display: none;
    }
}

/* Smartphones */
@media screen and (max-width:360px) {
    header {
        text-align: center;
    }

    nav.navbar-nav {
        float: none;
    }
}

/* -- End Device CSS -- */

/* ======= this overrides the jqueryui modal width in titanium admin ==========*/
.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-draggable {
    width: 90% !important;
    left: 5% !important;
}
/* ======= end override for the jqueryui modal width in titanium admin ==========*/

/*======================== local seo pages =====================================*/
/* --------------------------------------------------------------------------
   1. Design variables
   -------------------------------------------------------------------------- */
:root {
  /* Brand core (sampled from the live home page + Visual Systems Guide) */
  --navy:        #0C1D42;  /* primary dark — headers, deep bands, trust */
  --navy-deep:   #08142E;  /* gradient floor / footer-dark */
  --navy-soft:   #16294F;  /* raised surfaces on dark, hairlines on dark */
  --orange:      #F06820;  /* the one accent — CTAs, markers, emphasis only */
  --orange-dark: #D2571A;  /* CTA hover / active */
  --gold:        #E8A200;  /* star ratings only */

  /* Ink + neutrals */
  --ink:         #1E293B;  /* body copy on light */
  --ink-soft:    #475569;  /* secondary copy */
  --muted:       #6B7280;  /* captions, meta, trust lines */
  --line:        #E4E8EE;  /* hairline dividers on light */

  /* Surfaces */
  --surface:      #FFFFFF; /* base white band */
  --surface-alt:  #F4F6F9; /* quiet gray band */
  --surface-tint: #EAF1F8; /* soft cool-blue band (services feel) */

  /* Light text used on navy bands */
  --on-navy:        #F2F5FA;
  --on-navy-soft:   rgba(226, 233, 244, 0.78);
  --on-navy-muted:  rgba(226, 233, 244, 0.55);

  /* Shape + depth (restrained, consistent radius language) */
  --radius:    10px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 2px rgba(12, 29, 66, 0.06), 0 2px 6px rgba(12, 29, 66, 0.05);
  --shadow-md: 0 6px 18px rgba(12, 29, 66, 0.08), 0 2px 6px rgba(12, 29, 66, 0.05);
  --shadow-lg: 0 18px 44px rgba(8, 20, 46, 0.16);

  /* Rhythm — generous, fluid vertical spacing */
  --section-y: clamp(56px, 7.5vw, 104px);
  --measure:   68ch; /* readable line length for prose */
}


/* -------------------- service menu module  --------------------------------*/
.serviceMenu ul {
    display: grid;
    list-style: none;
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    text-align: center;
    gap:8px;
    max-width:1200px;
    margin-inline:auto;
    margin-bottom:30px;
    
}

.serviceMenu ul a{
    display:block;
    background:#ebebeb;
    color:#161616;
    font-size:12px;
    padding-block:15px;
    border-radius:5px;
    font-weight:400;
}

.serviceMenu ul a:hover{
        background-color:var(--secondary);
    text-decoration:none;
        color:#fff;
    
    }

.serviceMenu:before{
    content:"Our Services";
    text-align:center;
    display:block;
    font-size:clamp(21px, 3.5vw,31px);
    margin-block:15px;;
}

/* --------------------------------------------------------------------------
   2. Base — typography + resets over Bootstrap 3 defaults
   -------------------------------------------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

strong, b { font-weight: 700; color: inherit; }

small { font-size: 0.82em; }

.text-muted { color: var(--muted) !important; }

hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 2.4em 0;
}

img.img-responsive { display: block; }

/* Accessibility: always-visible keyboard focus */
a:focus-visible,
.btn:focus-visible,
.panel-title a:focus-visible {
  outline: 3px solid rgba(240, 104, 32, 0.55);
  outline-offset: 3px;
}

::selection { background: rgba(240, 104, 32, 0.22); }

/* --------------------------------------------------------------------------
   3. Section rhythm — every generated section is a full-bleed band
   Backgrounds alternate to create structure without decoration.
   -------------------------------------------------------------------------- */
.hero,
.trust-bar,
.transformation,
.social-proof,
.process,
.faq,
.cta-final,
.prose {
  position: relative;
  display: block;
  width: 100%;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  background: var(--surface);
}

.trust-bar { padding-top: clamp(26px, 3vw, 40px); padding-bottom: clamp(26px, 3vw, 40px); }

.social-proof { background: var(--surface-alt); }
.faq          { background: var(--surface-alt); }
.transformation { background: var(--surface); }
.prose        { background: var(--surface); }



/* --------------------------------------------------------------------------
   5. Section-title treatment — the recurring "structure" motif:
   a short orange rule that reads as alignment, not decoration.
   -------------------------------------------------------------------------- */
.transformation h2,
.social-proof h2,
.process h2,
.faq h2,
.prose > .container > h2 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.transformation h2::after,
.social-proof h2::after,
.process h2::after,
.faq h2::after,
.prose > .container > h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
}
/* centered titles get a centered rule */
h2.text-center { padding-bottom: 20px; margin-bottom: 44px; }
.text-center > h2::after,
h2.text-center::after { left: 50%; transform: translateX(-50%); }

/* Optional eyebrow label (small uppercase kicker) if the generator emits it */
.eyebrow,
.text-uppercase.small {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6em;
}

/* --------------------------------------------------------------------------
   6. HERO — dark, composed, the thesis of the page
   Works with or without a background image (images are swapped in manually).
   -------------------------------------------------------------------------- */
.hero {
  background-color: var(--navy);
  background-image: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  background-size: cover;
  background-position: center;
  color: var(--on-navy);
  padding-top: clamp(72px, 9vw, 132px);
  padding-bottom: clamp(72px, 9vw, 132px);
  overflow: hidden;
}
/* readability overlay so text survives whatever photo is dropped behind it */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,20,46,0.85) 0%, rgba(8,20,46,0.62) 58%, rgba(8,20,46,0.46) 100%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero .row { display: flex; flex-wrap: wrap; align-items: center; }

.hero h1, .hero h2 { color: #fff; letter-spacing: -0.02em; }
.hero h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); line-height: 1.08; margin-bottom: .5em; }
.hero p  { color: var(--on-navy-soft); font-size: clamp(1.02rem, 1.4vw, 1.2rem); max-width: 42ch; }
.hero .text-center p { margin-left: auto; margin-right: auto; }
.hero .btn { margin-top: 1.4em; }

.hero img.img-responsive {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Any benefit list dropped into the hero reads as ticked benefits */
.hero ul {
  list-style: none;
  padding: 0;
  margin: 1.5em 0 0.5em;
}
.hero ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--on-navy);
}
.hero ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.0);
}
.hero ul li::after {
  content: "";
  position: absolute;
  left: 6px; top: 9px;
  width: 8px; height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   7. TRUST BAR — instant, quiet legitimacy
   -------------------------------------------------------------------------- */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-bar img {
  display: inline-block;
  max-height: 46px;
  width: auto;
  margin: 10px 0;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity .15s ease, filter .15s ease;
}
.trust-bar img:hover { filter: grayscale(0); opacity: 1; }
.trust-bar .text-muted { letter-spacing: 0.02em; }
/* trust-ratings: rating number + stars */
.trust-bar strong { color: var(--navy);}
.trust-bar p { font-size: 1.05rem; margin-bottom: 0; }

/* --------------------------------------------------------------------------
   8. TRANSFORMATION — features mapped to outcomes
   three-up (.col-md-4) vs before/after (.col-md-6) matched structurally.
   -------------------------------------------------------------------------- */
/* equal-height columns / cards */
.transformation .row { display: flex; flex-wrap: wrap; }
.transformation .row > [class*="col-"] { display: flex; flex-direction: column; }
.transformation .col-md-6 ul { flex: 1 1 auto; }

/* three-up outcome columns */
.transformation .col-md-4 {
  padding-top: 8px;
}
.transformation .col-md-4 h3 {
  position: relative;
  padding-top: 20px;
  color: var(--navy);
}
.transformation .col-md-4 h3::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 34px; height: 3px;
  border-radius: 2px;
  background: var(--orange);
}
.transformation .col-md-4 p { color: var(--ink-soft); }

/* before / after two-column contrast */
.transformation .col-md-6 {
  margin-top: 14px;
}
.transformation .col-md-6 > h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}
.transformation .col-md-6 ul {
  list-style: none;
  padding: 24px 26px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--surface-alt);
  border: 1px solid var(--line);
}
.transformation .col-md-6 ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.transformation .col-md-6 ul li:last-child { margin-bottom: 0; }
/* "Before" (first column): neutral, muted markers */
.transformation .col-md-6:first-child ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 12px; height: 2px;
  background: var(--muted);
  border-radius: 2px;
}
/* "After" (second column): affirmative orange checks + accent card */
.transformation .col-md-6:last-child ul {
  background: #FFF7F2;
  border-color: rgba(240, 104, 32, 0.22);
}
.transformation .col-md-6:last-child ul li { color: var(--ink); }
.transformation .col-md-6:last-child ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 6px;
  width: 8px; height: 5px;
  border-left: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   9. SOCIAL PROOF — validation
   Cards (columns) and one featured blockquote.
   -------------------------------------------------------------------------- */
.social-proof .col-md-4,
.social-proof .col-md-6 { margin-top: 20px; }
/* equal-height testimonial cards */
.social-proof .row { display: flex; flex-wrap: wrap; }
.social-proof .row > [class*="col-"] { display: flex; }
.social-proof .row > .col-md-8 { display: block; } /* featured stays block */
.social-proof blockquote { width: 100%; }
.social-proof blockquote {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px 30px 26px;
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}
.social-proof blockquote p { font-size: inherit; line-height: 1.6; }
.social-proof blockquote::before {
  content: "\201C";
  position: absolute;
  top: 6px; left: 18px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(240, 104, 32, 0.18);
  font-family: Georgia, 'Times New Roman', serif;
}
.social-proof blockquote footer,
.social-proof blockquote small {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
  margin-top: 14px;
}
.social-proof blockquote footer strong,
.social-proof blockquote cite { color: var(--navy); font-style: normal; }

/* featured single quote */
.social-proof .col-md-8.text-center blockquote {
  border-left: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  line-height: 1.45;
  padding: 20px 10px;
}
.social-proof .col-md-8.text-center blockquote::before {
  left: 50%; transform: translateX(-50%); top: -14px;
}
.social-proof .col-md-8.text-center blockquote footer { text-align: center; margin-top: 18px; }

/* headshots */
.social-proof img {
  border-radius: 50%;
  width: 56px; height: 56px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   10. PROCESS — 3 low-friction steps
   three-steps (.col-md-4 with <strong>1.</strong>) + numbered <ol> variant.
   -------------------------------------------------------------------------- */
.process .row { display: flex; flex-wrap: wrap; }
.process .col-md-4 { padding: 12px 18px; }
.process .col-md-4 p:first-child {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.process .col-md-4 p:first-child strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(240, 104, 32, 0.12);
  color: var(--orange);
  font-size: 1.15rem;
  font-weight: 800;
  vertical-align: middle;
}
.process .col-md-4 p:not(:first-child) { color: var(--ink-soft); }

/* vertical numbered list variant */
.process ol {
  list-style: none;
  counter-reset: step;
  padding: 0;
  max-width: var(--measure);
}
.process ol li {
  counter-increment: step;
  position: relative;
  padding: 4px 0 22px 66px;
  color: var(--ink-soft);
}
.process ol li:last-child { padding-bottom: 0; }
.process ol li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}
/* connecting line between numbers */
.process ol li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px; top: 52px; bottom: 6px;
  width: 2px;
  background: var(--line);
}
.process ol li strong { color: var(--navy); display: inline; }

/* --------------------------------------------------------------------------
   11. FAQ — objection handling (Bootstrap 3 panel-group accordion)
   Clean bars, hairline separation, orange indicator.
   -------------------------------------------------------------------------- */
.faq .panel-group { margin: 0; max-width: 860px; }
.faq .panel-group,
.faq .panel { box-shadow: none; }
.faq .panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq .panel + .panel { margin-top: 14px; }
.faq .panel-heading {
  background: #fff;
  padding: 0;
  border: 0;
  border-radius: var(--radius) !important;
}
.faq .panel-title { font-size: 1.02rem; line-height: 1.4; }
.faq .panel-title > a {
  display: block;
  position: relative;
  padding: 20px 56px 20px 24px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}
.faq .panel-title > a:hover { background: var(--surface-alt); color: var(--navy); }
/* +/- indicator: collapsed shows a plus, open shows a minus */
.faq .panel-title > a::after {
  content: "";
  position: absolute;
  right: 24px; top: 50%;
  width: 14px; height: 14px;
  margin-top: -7px;
  background:
    linear-gradient(var(--orange), var(--orange)) center/14px 2px no-repeat,  /* horizontal bar */
    linear-gradient(var(--orange), var(--orange)) center/2px 14px no-repeat;   /* vertical bar */
  transition: opacity .2s ease;
}
/* open row: drop the vertical bar (plus -> minus) and tint the question */
.faq .panel-title > a:not(.collapsed) { color: var(--orange); }
.faq .panel-title > a:not(.collapsed)::after {
  background:
    linear-gradient(var(--orange), var(--orange)) center/14px 2px no-repeat;
}
.faq .panel-body {
  padding: 4px 24px 24px;
  border-top: 0 !important;
  color: var(--ink-soft);
}
.faq .panel-body p:first-child { margin-top: 0; }

/* --------------------------------------------------------------------------
   12. FINAL CTA — the closer, high-contrast navy band
   band (centered) + split-guarantee (.col-md-7 / .col-md-5).
   -------------------------------------------------------------------------- */
.cta-final {
  background: var(--navy);
  background-image: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--on-navy);
  overflow: hidden;
}
/* faint structural line motif — extremely subtle, per the guide */
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100% 46px;
  pointer-events: none;
}
.cta-final > .container { position: relative; z-index: 1; }
.cta-final .row { display: flex; flex-wrap: wrap; align-items: center; }
.cta-final h2 { color: #fff; }
.cta-final h2::after { background: var(--orange); }
.cta-final p { color: var(--on-navy-soft); }
.cta-final .text-muted { color: var(--on-navy-muted) !important; }
.cta-final .btn { margin-top: 0.6em; }

/* split-guarantee list on the right */
.cta-final .col-md-5 ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}
.cta-final .col-md-5 ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--on-navy);
}
.cta-final .col-md-5 ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(240, 104, 32, 0.18);
  box-shadow: inset 0 0 0 1px rgba(240,104,32,0.5);
}
.cta-final .col-md-5 ul li::after {
  content: "";
  position: absolute;
  left: 6px; top: 8px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   13. PROSE — calm fallback copy
   -------------------------------------------------------------------------- */
.prose > .container > p,
.prose > .container > ul,
.prose > .container > ol { max-width: var(--measure); color: var(--ink-soft); }
.prose h3 { margin-top: 1.6em; }

/* --------------------------------------------------------------------------
   14. Small shared niceties
   -------------------------------------------------------------------------- */
.container { padding-left: 20px; padding-right: 20px; }
blockquote { border-left-color: var(--orange); }

/* generic checklist utility the generator may opt into */
.check-list { list-style: none; padding: 0; margin: 1em 0; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.check-list li::before {
  content: "";
  position: absolute; left: 3px; top: 6px;
  width: 8px; height: 5px;
  border-left: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   15. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .transformation .col-md-6 { margin-top: 16px; }
  .social-proof .col-md-4,
  .social-proof .col-md-6 { margin-top: 16px; }
  .cta-final .col-md-5 { margin-top: 28px; }
}
@media (max-width: 767px) {
  body { font-size: 16px; }
  .hero { text-align: left; }
  .hero p { max-width: none; }
  .process .col-md-4 { padding: 10px 0 22px; }
  .faq .panel-group { max-width: 100%; }
  .btn-lg { display: block; width: 100%; text-align: center; }
}

/* --------------------------------------------------------------------------
   16. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
