@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ======================================================================
   LOVEHOST PUBLIC SITE STYLESHEET
   Public-facing site only (outside HostShop)
   Consolidated from main site CSS plus page-level CSS blocks.
   ====================================================================== */

/* ======================================================================
   1) GLOBAL SETTINGS
   ====================================================================== */
:root{
  --navy:#0e1a2b;
  --green:#00ff84;
  --orange:#ff9900;
  --slate:#a0aec0;
  --light-bg:#f8fafc;

  --lh-dd-bg: rgba(64, 76, 102, 0.92);
  --lh-dd-border: rgba(255,255,255,0.10);

  --lh-shadow-page-bg:
    linear-gradient(to right, #0e1c2c, #1b273d, #29324e, #36405e, #434f6f, #36405e, #29324e, #1b273d, #0e1c2c),
    linear-gradient(to top,   #0e1c2c, #1b273d, #29324e, #36405e, #434f6f);

  --lh-green-1:#1fbf7a;
  --lh-green-2:#0f8b58;
  --lh-green-3:#0a5a3a;
  --lh-ink:#0e1a2b;
  --lh-card:#0f2339;
  --lh-border: rgba(255,255,255,.12);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:'Montserrat', sans-serif;
  background-color:var(--navy);
  color:#fff;
  overflow-x:hidden;
  line-height:1.6;
}

h1,h2,h3,h4{ font-weight:800; letter-spacing:-0.5px; }
input,select,textarea,button{ font-family:'Montserrat', sans-serif !important; }

.lh-text-orange{ color:var(--orange); }
.lh-text-green{ color:var(--green); }

body.lh-nav-open{
  overflow:hidden;
  height:100vh;
}

/* ======================================================================
   2) SHARED BUTTONS
   ====================================================================== */
.lh-btn-orange,
.lh-btn-outline,
.lh-home-buy-btn,
.lh-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  font-weight:700;
  transition:all .25s ease;
}

.lh-btn-orange,
.lh-btn-outline{
  padding:14px 26px;
  border-radius:999px;
  font-size:.98rem;
}

.lh-btn-orange,
.lh-home-buy-btn{
  background:var(--orange);
  color:#0e1a2b;
  border:2px solid var(--orange);
  box-shadow:0 10px 28px rgba(255,153,0,.18);
}
.lh-btn-orange:hover,
.lh-home-buy-btn:hover{
  background:#ffad33;
  border-color:#ffad33;
  color:#0e1a2b;
  transform:translateY(-2px);
}

.lh-btn-outline{
  background:transparent;
  color:#fff;
  border:2px solid rgba(255,255,255,.18);
}
.lh-btn-outline:hover{
  border-color:var(--orange);
  color:var(--orange);
  transform:translateY(-2px);
}

/* ======================================================================
   3) HEADER & NAVIGATION
   ====================================================================== */
header.lh-site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background-color:rgba(14,26,43,.4);
  backdrop-filter:blur(15px);
  -webkit-backdrop-filter:blur(15px);
  transition:all .4s ease;
  border-bottom:1px solid rgba(255,255,255,.05);
}
header.lh-site-header.scrolled{
  background-color:rgba(14,26,43,.9);
  box-shadow:0 5px 20px rgba(0,0,0,.30);
}
header.lh-site-header .lh-header-inner{
  padding:20px 5%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  transition:all .4s ease;
}
header.lh-site-header.scrolled .lh-header-inner{ padding:10px 5%; }
header.lh-site-header .logo{
  height:70px;
  width:auto;
  display:block;
  transition:.4s;
}
header.lh-site-header.scrolled .logo{ height:50px; }

header.lh-site-header .lh-nav{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
header.lh-site-header .lh-nav-left,
header.lh-site-header .lh-nav-right{
  display:flex;
  align-items:center;
  gap:12px;
}
header.lh-site-header .lh-nav a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:color .2s ease;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
}
header.lh-site-header .lh-nav a:hover{
  color:var(--orange);
  background:transparent;
}

.lh-nav-basket i{
  color:var(--orange);
  font-size:1.1rem;
  transition:transform .25s ease;
}
.lh-nav-basket:hover i{ transform:scale(1.08); }

.lh-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:22px;
  height:22px;
  padding:0 6px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  background:rgba(255,153,0,.18);
  border:1px solid rgba(255,153,0,.28);
  color:var(--orange);
}

.lh-nav-btn{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.10);
  border-radius:999px;
  padding:10px 16px;
  color:rgba(255,255,255,.95);
  font-weight:700;
}
.lh-nav-btn:hover{ color:var(--orange); }

.menu-toggle{
  display:none;
  cursor:pointer;
  color:var(--orange);
  font-size:28px;
  border:none;
  background:transparent;
  padding:10px 8px;
  line-height:1;
}

/* ======================================================================
   4) DROPDOWN (“MORE”)
   ====================================================================== */
.lh-dd{
  position:relative;
  display:flex;
  align-items:center !important;
  padding-bottom:0 !important;
}

header.lh-site-header .lh-nav-left{
  align-items:center !important;
}

header.lh-site-header .lh-dd-toggle{
  display:inline-flex !important;
  align-items:center !important;
  height:44px !important;
  line-height:1 !important;
}

/* Desktop hover runway so it doesn’t disappear */
@media (min-width:769px){
  .lh-dd::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    top:100%;
    height:14px;
  }
}

/* Dropdown panel */
.lh-dd-menu{
  position:absolute;
  left:0;
  top:calc(100% + 10px);

  min-width:340px;
  border-radius:14px;
  overflow:hidden;

  background:var(--lh-dd-bg);
  border:1px solid var(--lh-dd-border);
  border-top:3px solid var(--orange);
  box-shadow:0 14px 35px rgba(0,0,0,0.35);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);

  opacity:0;
  visibility:hidden;
  pointer-events:none;

  transform:translateY(10px) scale(0.98);
  transition:opacity 280ms ease, transform 280ms ease, visibility 0ms linear 280ms;

  z-index:2000;
}

.lh-dd:hover .lh-dd-menu,
.lh-dd:focus-within .lh-dd-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translateY(0) scale(1);
  transition:opacity 280ms ease, transform 280ms ease, visibility 0ms;
}

.lh-dd-menu a{
  display:flex;
  width:100%;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  color:rgba(255,255,255,0.95) !important;
  text-decoration:none !important;
  line-height:1.35;
  font-weight:600;
  background:transparent;
}

.lh-dd-menu a:last-child{
  border-bottom:none;
}

.lh-dd-menu a i{
  width:18px;
  text-align:center;
  color:var(--orange);
  flex:0 0 18px;
}

.lh-dd-menu a:hover{
  color:var(--orange) !important;
  background:transparent;
}

/* ======================================================================
   5) MOBILE NAV
   ====================================================================== */
@media (max-width:768px){
  .menu-toggle{
    display:block;
  }

  header.lh-site-header .lh-header-inner{
    padding:14px 18px;
    gap:12px;
  }

  header.lh-site-header .logo{
    height:58px;
  }

  header.lh-site-header.scrolled .logo{
    height:48px;
  }

  /* Full-width dropdown panel under header */
  header.lh-site-header #nav-menu,
  header.lh-site-header .lh-nav{
    position:fixed;
    left:0;
    right:0;
    top:80px; /* JS can overwrite this if needed */
    width:100%;
    height:calc(100vh - 80px);
    background:var(--navy);

    display:none;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    padding:34px 18px 24px;
    gap:18px;

    z-index:1200;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }

  header.lh-site-header #nav-menu.active,
  header.lh-site-header #nav-menu.open,
  header.lh-site-header #nav-menu.is-open,
  header.lh-site-header .lh-nav.active,
  header.lh-site-header .lh-nav.open,
  header.lh-site-header .lh-nav.is-open,
  body.lh-nav-open header.lh-site-header #nav-menu,
  body.lh-nav-open header.lh-site-header .lh-nav{
    display:flex;
  }

  /* Hide overlay for this older menu style */
  .lh-mobile-overlay{
    display:none !important;
  }

  /* Stack groups */
  header.lh-site-header .lh-nav-left,
  header.lh-site-header .lh-nav-right{
    flex-direction:column;
    align-items:center;
    width:100%;
    gap:18px;
  }

  /* Bigger centred options */
  header.lh-site-header .lh-nav a{
    font-size:22px;
    font-weight:700;
    padding:10px 6px;
  }

  /* Centre the More row */
  header.lh-site-header .lh-dd{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  header.lh-site-header .lh-dd-toggle{
    justify-content:center;
    text-align:center;
    width:auto;
  }

  /* Mobile dropdown closed by default */
  header.lh-site-header .lh-dd-menu{
    position:static;
    min-width:0;
    width:min(360px, 92%);
    margin:10px auto 0;
    opacity:1;
    visibility:visible;
    transform:none;
    pointer-events:auto;
    transition:none;
    display:none;
    box-shadow:none;
  }

  header.lh-site-header .lh-dd.is-open .lh-dd-menu,
  header.lh-site-header .lh-dd.open .lh-dd-menu,
  header.lh-site-header .lh-dd.active .lh-dd-menu{
    display:block;
  }

  /* Mobile Sign in button */
  header.lh-site-header #nav-menu .lh-nav-right a.lh-nav-btn,
  header.lh-site-header .lh-nav .lh-nav-right a.lh-nav-btn{
    width:min(520px, 92%);
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    line-height:1 !important;

    padding:16px 18px;
    border-radius:999px;

    background:var(--orange);
    border:1px solid var(--orange);
    color:#fff;
    font-weight:800;
  }

  header.lh-site-header #nav-menu .lh-nav-right a.lh-nav-btn:hover,
  header.lh-site-header .lh-nav .lh-nav-right a.lh-nav-btn:hover{
    transform:translateY(-2px);
    box-shadow:
      0 14px 34px rgba(0,0,0,0.35),
      0 0 18px rgba(255,153,0,0.35);
    filter:brightness(1.02);
  }

  header.lh-site-header #nav-menu .lh-nav-right a.lh-nav-btn:active,
  header.lh-site-header .lh-nav .lh-nav-right a.lh-nav-btn:active{
    transform:translateY(0);
    box-shadow:0 8px 18px rgba(0,0,0,0.30);
    filter:brightness(0.98);
  }

  header.lh-site-header #nav-menu .lh-nav-right a.lh-nav-btn:focus-visible,
  header.lh-site-header .lh-nav .lh-nav-right a.lh-nav-btn:focus-visible{
    outline:none;
    box-shadow:
      0 0 0 3px rgba(255,153,0,0.28),
      0 14px 34px rgba(0,0,0,0.35);
  }
}

/* ======================================================================
   6) HERO / HOMEPAGE  /  Goodbye Page
   ====================================================================== */


.lh-goodbye{
  margin-top: 50px;
  min-height: calc(100vh - 220px); /* header+footer breathing room */
  padding: 90px 5% 80px;
  display: grid;
  place-items: center;
}

.lh-goodbye-wrap{
  width: 100%;
  max-width: 860px;
}

.lh-goodbye-card{
  position: relative;
  padding: 44px 34px 34px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 90px rgba(0,0,0,0.40);
  backdrop-filter: blur(12px);
  text-align: center;
}

.lh-goodbye-icon{
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: rgba(255,153,0,0.14);
  border: 1px solid rgba(255,153,0,0.22);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.lh-goodbye-icon i{
  font-size: 24px;
  color: var(--orange);
}

.lh-goodbye-title{
  margin: 10px 0 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
}

.lh-goodbye-text{
  margin: 0 auto 22px;
  max-width: 58ch;
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  line-height: 1.55;
}

.lh-goodbye-actions{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Buttons */
.lh-goodbye-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.lh-goodbye-btn-primary{
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #fff !important;
  box-shadow: 0 18px 50px rgba(0,0,0,0.30);
}

.lh-goodbye-btn-primary:hover{
  filter: brightness(0.98);
  transform: translateY(-1px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.34), 0 0 18px rgba(255,153,0,0.22);
}

.lh-goodbye-btn-ghost{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.94) !important;
}

.lh-goodbye-btn-ghost:hover{
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-1px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.28);
}

/* Quick links row */
.lh-goodbye-links{
  margin-top: 22px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
  font-size: 0.95rem;
}

.lh-goodbye-links a{
  color: rgba(255,255,255,0.82) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lh-goodbye-links a:hover{
  color: #fff !important;
  text-decoration: underline !important;
}

.lh-dot{
  opacity: 0.45;
}

/* Mobile tweaks */
@media (max-width: 520px){
  .lh-goodbye{
    padding: 72px 5% 60px;
  }
  .lh-goodbye-card{
    padding: 40px 18px 26px;
  }
  .lh-goodbye-btn{
    width: 100%;
    min-width: 0;
  }
}
  
.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:120px 20px 60px;
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(14,26,43,.75), rgba(14,26,43,.92)),
    url('/assets/img/hero-bg.webp') center/cover no-repeat;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top center, rgba(255,153,0,.10), transparent 40%);
  pointer-events:none;
}
.hero h1{
  font-size:clamp(2.2rem, 5vw, 4.8rem);
  max-width:900px;
  margin-bottom:16px;
  line-height:1.08;
  position:relative;
  z-index:1;
}
.hero .subtitle{
  font-size:1.1rem;
  color:#dbe4ef;
  margin-bottom:28px;
  position:relative;
  z-index:1;
}
.search-container{
  display:flex;
  gap:12px;
  width:min(100%, 760px);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  padding:10px;
  position:relative;
  z-index:1;
  box-shadow:0 18px 40px rgba(0,0,0,.20);
}
.search-container input{
  flex:1;
  min-width:0;
  border:none;
  background:transparent;
  color:#fff;
  font-size:1rem;
  padding:14px 18px;
  outline:none;
}
.search-container input::placeholder{ color:#cbd5e1; }
.search-btn{
  border:none;
  border-radius:999px;
  background:var(--orange);
  color:#0e1a2b;
  font-weight:800;
  padding:14px 24px;
  cursor:pointer;
  transition:all .25s ease;
}
.search-btn:hover{ background:#ffad33; transform:translateY(-1px); }

/* ======================================================================
   7) HOMEPAGE PRICING SECTION
   ====================================================================== */
.lh-home-pricing-section,
.pricing-container{
  background:var(--lh-shadow-page-bg);
  padding:80px 20px 90px;
  position:relative;
  overflow:hidden;
}
.lh-home-pricing-container,
.pricing-container{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}
.lh-home-pricing-header,
.pricing-header{
  text-align:center;
  margin-bottom:20px;
}
.lh-home-pricing-header h2,
.pricing-header h2{
  font-size:clamp(1.9rem, 4vw, 2.8rem);
  color:#ffffff;
  margin-bottom:12px;
}
.lh-home-pricing-header p,
.pricing-header p{
  color:#cbd5e1;
  max-width:760px;
  margin:0 auto;
  line-height:1.8;
  font-size:1.05rem;
}
.lh-home-trust-banner,
.trust-banner{
  margin:0 auto 34px;
  width:fit-content;
  max-width:100%;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:14px;
  padding:16px 24px;
  background:rgba(6,18,38,.88);
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  color:#ffffff;
}
.lh-home-trust-banner .divider,
.trust-banner .divider{ color:rgba(255,255,255,.22); }

.lh-home-plan-grid,
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  margin-top:35px;
}

.lh-home-card,
.price-card{
  position:relative;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:28px 28px 30px;
  box-shadow:0 14px 35px rgba(0,0,0,.16);
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display:flex;
  flex-direction:column;
  min-height:100%;
  color:#fff;
}
.lh-home-card:hover,
.price-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,153,0,.35);
  box-shadow:0 20px 40px rgba(0,0,0,.22);
}
.lh-home-card.popular,
.price-card.featured{
  border-color:rgba(255,153,0,.55);
  box-shadow:0 18px 42px rgba(255,153,0,.12);
}

.lh-home-badge,
.price-card .badge{
  position:absolute;
  top:-18px;
  right:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:9px 16px;
  background:var(--orange);
  color:#0e1a2b;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
  border-radius:999px;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
  white-space:nowrap;
  z-index:5;
}

.lh-home-plan-name,
.price-card h3{
  font-size:1.45rem;
  font-weight:700;
  color:#ffffff;
  margin-bottom:6px;
}
.lh-home-plan-tag{ color:#a0aec0; font-size:.96rem; line-height:1.6; margin-bottom:24px; max-width:280px; }

.lh-home-price,
.price-card .price{
  margin-bottom:24px;
  color:#ffffff;
  font-weight:800;
  line-height:1;
}
.lh-home-price .currency{ font-size:1.3rem; vertical-align:top; position:relative; top:6px; margin-right:4px; }
.lh-home-price .amount,
.price-card .price{ font-size:3.1rem; }
.lh-home-price .term,
.price-card .price span{
  font-size:1rem;
  color:#a0aec0;
  font-weight:600;
  margin-left:6px;
}

.lh-home-plan-features,
.price-card ul{
  list-style:none;
  padding:0;
  margin:0 0 28px 0;
}
.lh-home-plan-features li,
.price-card ul li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:14px;
  color:#dbe4ef;
  line-height:1.55;
  font-size:1rem;
}
.lh-home-plan-features li i{ color:var(--orange); margin-top:4px; min-width:18px; }
.lh-home-plan-features strong,
.price-card ul strong{ color:#ffffff; font-weight:700; }

.lh-home-buy-btn,
.buy-btn,
.buy-btn-featured{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  margin-top:auto;
  padding:16px 26px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  font-size:1rem;
  transition:all .25s ease;
  background:var(--orange);
  color:#0e1a2b;
  border:2px solid var(--orange);
  box-shadow:0 10px 28px rgba(255,153,0,.18);
}
.buy-btn:hover,
.buy-btn-featured:hover,
.lh-home-buy-btn:hover{
  background:#ffad33;
  border-color:#ffad33;
  color:#0e1a2b;
  transform:translateY(-2px);
}

/* ==========================================================================
   5) COMPARISON TABLE
   ========================================================================== */
.comparison-section{
  padding:80px 5%;
  background-color: #0b1421;
  text-align:center;
}

.comparison-title{
  font-size: 2rem;
  margin-bottom: 10px;
}

.comparison-subtitle{
  color: #a0aec0;
}

.comparison-wrapper{
  overflow-x:auto;
  margin-top:40px;
  border-radius:15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.comparison-table{
  width:100%;
  max-width:1000px;
  margin:0 auto;
  border-collapse: collapse;
  background: rgba(255,255,255,0.02);
}

.comparison-table th,
.comparison-table td{
  padding:20px;
  text-align:center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color:#fff;
}

.comparison-table th{
  background-color: rgba(255,153,0,0.1);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
}

.comparison-table tr:last-child td{ border-bottom:none; }

.comparison-table .feature-col{
  text-align:left;
  font-weight:600;
  color:#a0aec0;
  width:30%;
}
.comparison-table .competitor-col{ color:#ff6b6b; width:35%; }
.comparison-table .lovehost-col{
  color: var(--green);
  font-weight:700;
  background-color: rgba(0,255,132,0.05);
  width:35%;
  font-size: 1.1rem;
}

/* ======================================================================
   9) HOMEPAGE FEATURE STRIP
   ====================================================================== */
.features-section{
  padding:80px 20px;
  background:#ffffff;
}
.features-grid{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.feature-box{
  background:#f8fafc;
  border:1px solid #e9eef5;
  border-radius:22px;
  padding:30px 26px;
  box-shadow:0 14px 35px rgba(15,23,42,.06);
  text-align:center;
  color:#0e1a2b;
}
.feature-icon{ font-size:2rem; margin-bottom:14px; }
.feature-box h3{ margin-bottom:10px; color:#0e1a2b; }
.feature-box p{ color:#5b6878; }

/* ======================================================================
   10) NEWSLETTER CTA
   ====================================================================== */
.newsletter-cta{
  padding:80px 20px;
  background:var(--lh-shadow-page-bg);
}
.newsletter-content{
  width:min(1000px, calc(100% - 40px));
  margin:0 auto;
  text-align:center;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  padding:40px 30px;
  box-shadow:0 14px 35px rgba(0,0,0,.16);
}
.newsletter-content h2{
  font-size:clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom:12px;
}
.newsletter-content p{ color:#dbe4ef; margin-bottom:22px; }
.newsletter-form{
  display:flex;
  gap:12px;
  justify-content:center;
  max-width:760px;
  margin:0 auto;
}
.newsletter-form input[type="email"]{
  flex:1;
  min-width:0;
  border:none;
  border-radius:999px;
  padding:16px 18px;
  font-size:1rem;
  background:#fff;
  color:#0e1a2b;
  outline:none;
}
.newsletter-form button{
  border:none;
  border-radius:999px;
  background:var(--orange);
  color:#0e1a2b;
  font-weight:800;
  padding:16px 24px;
  cursor:pointer;
  transition:all .25s ease;
}
.newsletter-form button:hover{ background:#ffad33; transform:translateY(-1px); }

/* ======================================================================
   11) SHARED INNER-PAGE FRAMEWORK
   ====================================================================== */
.lh-wh-page,
.lh-vps-page,
.lh-mc-page,
.lh-em-page,
.lh-wp-page,
.lh-dom-page,
.lh-mig-page,
.lh-why-page,
.lh-green-page,
.legal-doc-wrap{
  background:var(--lh-shadow-page-bg);
  color:#e2e8f0;
  padding-top:135px;
  padding-bottom:70px;
}

.lh-wh-container,
.lh-vps-container,
.lh-mc-container,
.lh-em-container,
.lh-wp-container,
.lh-dom-container,
.lh-mig-container,
.lh-why-container,
.lh-green-container,
.legal-doc{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

.lh-wh-hero,
.lh-vps-hero,
.lh-mc-hero,
.lh-em-hero,
.lh-wp-hero,
.lh-dom-hero,
.lh-mig-hero,
.lh-why-hero,
.lh-green-hero{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
  align-items:center;
  margin-bottom:55px;
}

.lh-wh-eyebrow,
.lh-vps-eyebrow,
.lh-mc-eyebrow,
.lh-em-eyebrow,
.lh-wp-eyebrow,
.lh-dom-eyebrow,
.lh-mig-eyebrow,
.lh-why-eyebrow,
.lh-green-eyebrow{
  display:inline-block;
  font-size:.85rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--orange);
  margin-bottom:15px;
}

.lh-wh-hero h1,
.lh-vps-hero h1,
.lh-mc-hero h1,
.lh-em-hero h1,
.lh-wp-hero h1,
.lh-dom-hero h1,
.lh-mig-hero h1,
.lh-why-hero h1,
.lh-green-hero h1{
  font-size:clamp(2.3rem, 5vw, 4.2rem);
  line-height:1.08;
  margin:0 0 18px 0;
  color:#ffffff;
}

.lh-wh-hero p,
.lh-vps-hero p,
.lh-mc-hero p,
.lh-em-hero p,
.lh-wp-hero p,
.lh-dom-hero p,
.lh-mig-hero p,
.lh-why-hero p,
.lh-green-hero p,
.legal-doc p,
.legal-doc li{
  font-size:1.08rem;
  line-height:1.8;
  color:#cbd5e1;
}

.lh-wh-hero-buttons,
.lh-vps-hero-buttons,
.lh-mc-hero-buttons,
.lh-em-hero-buttons,
.lh-wp-hero-buttons,
.lh-dom-hero-buttons,
.lh-mig-hero-buttons,
.lh-why-hero-buttons,
.lh-green-hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.lh-wh-summary,
.lh-vps-summary,
.lh-mc-summary,
.lh-em-summary,
.lh-wp-summary,
.lh-dom-summary,
.lh-mig-summary,
.lh-why-summary,
.lh-green-summary{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:28px;
  box-shadow:0 14px 40px rgba(0,0,0,.16);
}

.lh-wh-summary h3,
.lh-vps-summary h3,
.lh-mc-summary h3,
.lh-em-summary h3,
.lh-wp-summary h3,
.lh-dom-summary h3,
.lh-mig-summary h3,
.lh-why-summary h3,
.lh-green-summary h3,
.legal-doc h2,
.legal-doc h3{
  color:#ffffff;
  margin-top:0;
}
.legal-doc h2{
  font-size:2.2rem;
  color:var(--orange);
  border-bottom:1px solid rgba(255,255,255,.1);
  padding-bottom:15px;
  margin-bottom:30px;
}
.legal-doc h3{
  font-size:1.25rem;
  color:var(--orange);
  margin-bottom:10px;
  margin-top:26px;
}

.lh-wh-summary-list,
.lh-vps-summary-list,
.lh-mc-summary-list,
.lh-em-summary-list,
.lh-wp-summary-list,
.lh-dom-summary-list,
.lh-mig-summary-list,
.lh-why-summary-list,
.lh-green-summary-list,
.legal-doc ul{
  list-style:none;
  padding:0;
  margin:0;
}

.lh-wh-summary-list li,
.lh-vps-summary-list li,
.lh-mc-summary-list li,
.lh-em-summary-list li,
.lh-wp-summary-list li,
.lh-dom-summary-list li,
.lh-mig-summary-list li,
.lh-why-summary-list li,
.lh-green-summary-list li,
.legal-doc ul li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:14px;
  color:#dbe4ef;
  line-height:1.6;
}

.lh-wh-summary-list i,
.lh-vps-summary-list i,
.lh-mc-summary-list i,
.lh-em-summary-list i,
.lh-wp-summary-list i,
.lh-dom-summary-list i,
.lh-mig-summary-list i,
.lh-why-summary-list i,
.lh-green-summary-list i{
  color:var(--orange);
  margin-top:4px;
  min-width:18px;
}

.lh-wh-section-title,
.lh-vps-section-title,
.lh-mc-section-title,
.lh-em-section-title,
.lh-wp-section-title,
.lh-dom-section-title,
.lh-mig-section-title,
.lh-why-section-title,
.lh-green-section-title{
  text-align:center;
  margin-bottom:18px;
}

.lh-wh-section-title h2,
.lh-vps-section-title h2,
.lh-mc-section-title h2,
.lh-em-section-title h2,
.lh-wp-section-title h2,
.lh-dom-section-title h2,
.lh-mig-section-title h2,
.lh-why-section-title h2,
.lh-green-section-title h2{
  font-size:clamp(1.9rem, 4vw, 2.8rem);
  color:#ffffff;
  margin-bottom:12px;
}

.lh-wh-section-title p,
.lh-vps-section-title p,
.lh-mc-section-title p,
.lh-em-section-title p,
.lh-wp-section-title p,
.lh-dom-section-title p,
.lh-mig-section-title p,
.lh-why-section-title p,
.lh-green-section-title p{
  color:#cbd5e1;
  max-width:760px;
  margin:0 auto;
  line-height:1.8;
}

/* ======================================================================
   12) SHARED PLAN CARDS / FEATURE CARDS / FAQ CARDS
   ====================================================================== */
.lh-wh-plan-wrap,
.lh-vps-plan-wrap,
.lh-mc-plan-wrap,
.lh-em-plan-wrap,
.lh-wp-plan-wrap,
.lh-dom-plan-wrap,
.lh-mig-plan-wrap,
.lh-green-plan-wrap,
.lh-why-reasons,
.lh-why-values,
.lh-why-promise{
  margin-top:60px;
  margin-bottom:70px;
}

.lh-wh-plan-grid,
.lh-vps-plan-grid,
.lh-mc-plan-grid,
.lh-em-plan-grid,
.lh-wp-plan-grid,
.lh-dom-plan-grid,
.lh-mig-plan-grid,
.lh-green-plan-grid,
.lh-why-reason-grid,
.lh-why-promise-grid,
.lh-wh-feature-grid,
.lh-vps-feature-grid,
.lh-mc-feature-grid,
.lh-em-feature-grid,
.lh-wp-feature-grid,
.lh-dom-feature-grid,
.lh-mig-feature-grid,
.lh-green-feature-grid,
.lh-wh-faq-grid,
.lh-vps-faq-grid,
.lh-mc-faq-grid,
.lh-em-faq-grid,
.lh-wp-faq-grid,
.lh-dom-faq-grid,
.lh-mig-faq-grid,
.lh-why-faq-grid{
  display:grid;
  gap:22px;
  margin-top:35px;
}
.lh-wh-plan-grid,
.lh-vps-plan-grid,
.lh-mc-plan-grid,
.lh-em-plan-grid,
.lh-wp-plan-grid,
.lh-dom-plan-grid,
.lh-mig-plan-grid,
.lh-green-plan-grid{ grid-template-columns:repeat(4, 1fr); }
.lh-wh-feature-grid,
.lh-vps-feature-grid,
.lh-mc-feature-grid,
.lh-em-feature-grid,
.lh-wp-feature-grid,
.lh-dom-feature-grid,
.lh-mig-feature-grid,
.lh-green-feature-grid,
.lh-why-reason-grid,
.lh-why-promise-grid,
.lh-wh-faq-grid,
.lh-vps-faq-grid,
.lh-mc-faq-grid,
.lh-em-faq-grid,
.lh-wp-faq-grid,
.lh-dom-faq-grid,
.lh-mig-faq-grid,
.lh-why-faq-grid{ grid-template-columns:repeat(3, 1fr); }
.lh-why-values-grid{ display:grid; grid-template-columns:repeat(2, 1fr); gap:22px; margin-top:35px; }

.lh-wh-card,
.lh-vps-card,
.lh-mc-card,
.lh-em-card,
.lh-wp-card,
.lh-dom-card,
.lh-mig-card,
.lh-green-card,
.lh-wh-feature-card,
.lh-vps-feature-card,
.lh-mc-feature-card,
.lh-em-feature-card,
.lh-wp-feature-card,
.lh-dom-feature-card,
.lh-mig-feature-card,
.lh-green-feature-card,
.lh-wh-faq-card,
.lh-vps-faq-card,
.lh-mc-faq-card,
.lh-em-faq-card,
.lh-wp-faq-card,
.lh-dom-faq-card,
.lh-mig-faq-card,
.lh-why-reason-card,
.lh-why-value-card,
.lh-why-promise-card,
.lh-why-faq-card,
.lh-green-faq-card,
.lh-green-step-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:28px 24px;
  box-shadow:0 14px 35px rgba(0,0,0,.14);
}

.lh-wh-card,
.lh-vps-card,
.lh-mc-card,
.lh-em-card,
.lh-wp-card,
.lh-dom-card,
.lh-mig-card,
.lh-green-card{
  position:relative;
  padding:28px 24px;
  box-shadow:0 14px 35px rgba(0,0,0,.16);
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}
.lh-wh-card:hover,
.lh-vps-card:hover,
.lh-mc-card:hover,
.lh-em-card:hover,
.lh-wp-card:hover,
.lh-dom-card:hover,
.lh-mig-card:hover,
.lh-green-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,153,0,.35);
  box-shadow:0 20px 40px rgba(0,0,0,.22);
}
.lh-wh-card.popular,
.lh-vps-card.popular,
.lh-mc-card.popular,
.lh-em-card.popular,
.lh-wp-card.popular,
.lh-dom-card.popular,
.lh-mig-card.popular,
.lh-green-card.popular{
  border-color:rgba(255,153,0,.55);
  box-shadow:0 18px 42px rgba(255,153,0,.12);
}

.lh-wh-badge,
.lh-vps-badge,
.lh-mc-badge,
.lh-em-badge,
.lh-wp-badge,
.lh-dom-badge,
.lh-mig-badge,
.lh-green-badge{
  position:absolute;
  top:-18px;
  right:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:9px 16px;
  background:var(--orange);
  color:#0e1a2b;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
  border-radius:999px;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
  white-space:nowrap;
  z-index:5;
}

.lh-wh-plan-name,
.lh-vps-plan-name,
.lh-mc-plan-name,
.lh-em-plan-name,
.lh-wp-plan-name,
.lh-dom-plan-name,
.lh-mig-plan-name,
.lh-green-plan-name{
  font-size:1.45rem;
  font-weight:700;
  color:#ffffff;
  margin-bottom:6px;
}
.lh-dom-plan-name{ font-size:1.65rem; }
.lh-wh-plan-tag,
.lh-vps-plan-tag,
.lh-mc-plan-tag,
.lh-em-plan-tag,
.lh-wp-plan-tag,
.lh-dom-plan-tag,
.lh-mig-plan-tag,
.lh-green-plan-tag{
  color:#a0aec0;
  font-size:.96rem;
  margin-bottom:22px;
}

.lh-wh-price,
.lh-vps-price,
.lh-mc-price,
.lh-em-price,
.lh-wp-price,
.lh-dom-price,
.lh-green-price{
  margin-bottom:22px;
  color:#ffffff;
  font-weight:800;
  line-height:1;
}
.lh-mig-price{
  margin-bottom:22px;
  color:#ffffff;
  font-weight:800;
  line-height:1;
}
.lh-wh-price .currency,
.lh-vps-price .currency,
.lh-mc-price .currency,
.lh-em-price .currency,
.lh-wp-price .currency,
.lh-dom-price .currency,
.lh-green-price .currency{
  font-size:1.3rem;
  vertical-align:top;
  position:relative;
  top:6px;
  margin-right:4px;
}
.lh-wh-price .amount,
.lh-vps-price .amount,
.lh-mc-price .amount,
.lh-em-price .amount,
.lh-wp-price .amount,
.lh-dom-price .amount,
.lh-green-price .amount{ font-size:3rem; }
.lh-mig-price .amount{ display:inline-block; font-size:2.5rem; }
.lh-wh-price .term,
.lh-vps-price .term,
.lh-mc-price .term,
.lh-em-price .term,
.lh-wp-price .term,
.lh-dom-price .term,
.lh-green-price .term{
  font-size:1rem;
  color:#a0aec0;
  font-weight:600;
  margin-left:6px;
}
.lh-mig-price .term{ display:block; font-size:.95rem; color:#a0aec0; font-weight:600; margin-top:8px; }

.lh-wh-plan-features,
.lh-vps-plan-features,
.lh-mc-plan-features,
.lh-em-plan-features,
.lh-wp-plan-features,
.lh-dom-plan-features,
.lh-mig-plan-features,
.lh-green-plan-features{
  list-style:none;
  padding:0;
  margin:0 0 24px 0;
}
.lh-wh-plan-features li,
.lh-vps-plan-features li,
.lh-mc-plan-features li,
.lh-em-plan-features li,
.lh-wp-plan-features li,
.lh-dom-plan-features li,
.lh-mig-plan-features li,
.lh-green-plan-features li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:13px;
  color:#dbe4ef;
  line-height:1.55;
}
.lh-wh-plan-features i,
.lh-vps-plan-features i,
.lh-mc-plan-features i,
.lh-em-plan-features i,
.lh-wp-plan-features i,
.lh-dom-plan-features i,
.lh-mig-plan-features i,
.lh-green-plan-features i,
.lh-wh-feature-card i,
.lh-vps-feature-card i,
.lh-mc-feature-card i,
.lh-em-feature-card i,
.lh-wp-feature-card i,
.lh-dom-feature-card i,
.lh-mig-feature-card i,
.lh-green-feature-card i,
.lh-why-reason-card i,
.lh-why-promise-card i{
  color:var(--orange);
  margin-top:4px;
  min-width:18px;
}
.lh-wh-feature-card i,
.lh-vps-feature-card i,
.lh-mc-feature-card i,
.lh-em-feature-card i,
.lh-wp-feature-card i,
.lh-dom-feature-card i,
.lh-mig-feature-card i,
.lh-green-feature-card i,
.lh-why-reason-card i,
.lh-why-promise-card i{ font-size:1.4rem; margin-bottom:16px; min-width:0; }

.lh-wh-card .lh-btn-orange,
.lh-vps-card .lh-btn-orange,
.lh-mc-card .lh-btn-orange,
.lh-em-card .lh-btn-orange,
.lh-wp-card .lh-btn-orange,
.lh-dom-card .lh-btn-orange,
.lh-mig-card .lh-btn-orange,
.lh-green-card .lh-btn-orange{ width:100%; margin-top:auto; text-align:center; }

.lh-wh-feature-card h3,
.lh-vps-feature-card h3,
.lh-mc-feature-card h3,
.lh-em-feature-card h3,
.lh-wp-feature-card h3,
.lh-dom-feature-card h3,
.lh-mig-feature-card h3,
.lh-green-feature-card h3,
.lh-wh-faq-card h4,
.lh-vps-faq-card h4,
.lh-mc-faq-card h4,
.lh-em-faq-card h4,
.lh-wp-faq-card h4,
.lh-dom-faq-card h4,
.lh-mig-faq-card h4,
.lh-why-reason-card h3,
.lh-why-value-card h3,
.lh-why-promise-card h3,
.lh-why-faq-card h4,
.lh-green-faq-card h4,
.lh-green-step-card h3{
  color:#ffffff;
  margin-bottom:10px;
}
.lh-wh-feature-card p,
.lh-vps-feature-card p,
.lh-mc-feature-card p,
.lh-em-feature-card p,
.lh-wp-feature-card p,
.lh-dom-feature-card p,
.lh-mig-feature-card p,
.lh-green-feature-card p,
.lh-wh-faq-card p,
.lh-vps-faq-card p,
.lh-mc-faq-card p,
.lh-em-faq-card p,
.lh-wp-faq-card p,
.lh-dom-faq-card p,
.lh-mig-faq-card p,
.lh-why-reason-card p,
.lh-why-value-card p,
.lh-why-promise-card p,
.lh-why-faq-card p,
.lh-green-faq-card p,
.lh-green-step-card p{
  color:#cbd5e1;
  line-height:1.75;
  margin:0;
}

/* ======================================================================
   13) SHARED CTA BLOCKS
   ====================================================================== */
.lh-wh-cta,
.lh-vps-cta,
.lh-mc-cta,
.lh-em-cta,
.lh-wp-cta,
.lh-dom-cta,
.lh-mig-cta,
.lh-why-cta,
.lh-green-cta{
  margin-top:25px;
  background:linear-gradient(135deg, rgba(255,153,0,.14), rgba(255,255,255,.04));
  border:1px solid rgba(255,153,0,.2);
  border-radius:28px;
  padding:34px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  box-shadow:0 14px 35px rgba(0,0,0,.14);
}
.lh-wh-cta h3,
.lh-vps-cta h3,
.lh-mc-cta h3,
.lh-em-cta h3,
.lh-wp-cta h3,
.lh-dom-cta h3,
.lh-mig-cta h3,
.lh-why-cta h3,
.lh-green-cta h3{
  margin:0 0 10px 0;
  color:#ffffff;
  font-size:1.7rem;
}
.lh-wh-cta p,
.lh-vps-cta p,
.lh-mc-cta p,
.lh-em-cta p,
.lh-wp-cta p,
.lh-dom-cta p,
.lh-mig-cta p,
.lh-why-cta p,
.lh-green-cta p{
  margin:0;
  color:#dbe4ef;
  line-height:1.7;
  max-width:760px;
}

/* ======================================================================
   14) GREEN HOSTING PAGE EXTRAS
   ====================================================================== */
.lh-green-features,
.lh-green-faq,
.lh-wh-features,
.lh-wh-faq,
.lh-vps-features,
.lh-vps-faq,
.lh-mc-features,
.lh-mc-faq,
.lh-em-features,
.lh-em-faq,
.lh-wp-features,
.lh-wp-faq,
.lh-dom-features,
.lh-dom-faq,
.lh-mig-features,
.lh-mig-faq,
.lh-why-faq{ margin-top:70px; }

.lh-green-steps,
.lh-mig-steps{ margin-top:20px; margin-bottom:70px; }
.lh-green-steps-grid,
.lh-mig-steps-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; margin-top:35px; }
.lh-green-step-number,
.lh-mig-step-number{
  width:42px;
  height:42px;
  border-radius:999px;
  background:var(--orange);
  color:#0e1a2b;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}

/* ======================================================================
   15) FOOTER
   ====================================================================== */
.main-footer{
  background:#070d16;
  color:#ffffff;
  padding:80px 0 20px 0;
  border-top:1px solid rgba(255,255,255,0.05);
  position:relative !important;
  z-index:10 !important;
  font-family:'Montserrat', sans-serif !important;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:40px;
  max-width:1200px;
  margin:0 auto;
  padding:0 5%;
}

.footer-brand{
  flex:2;
  min-width:250px;
}

.footer-links{
  flex:1;
  min-width:150px;
}

.green-badge-link{
  display:inline-block;
  margin-top:12px;
}

.green-badge{
  display:block;
  max-width:300px;
  width:100%;
  height:auto;
}

.footer-links h4{
  margin-bottom:20px;
  font-size:1.1rem;
  color:#ffffff;
}

.footer-links ul{
  list-style:none;
  padding-left:0;
  margin:0;
}

.footer-links li{
  margin-bottom:12px;
}

.footer-links a{
  color:var(--slate) !important;
  font-size:0.9rem;
  text-decoration:none !important;
  display:inline-block !important;
}

.footer-links a:hover{
  color:var(--orange) !important;
}

.footer-bottom{
  width:min(1024px, calc(100% - 40px));
  max-width:1024px;
  margin:60px auto 0;
  padding:28px 0 30px;
  border-top:1px solid rgba(255,255,255,0.05);
  text-align:center;
  color:var(--slate);
}

.footer-legal{
  width:100%;
  max-width:1024px;
  margin:0 auto;
  text-align:center;
  color:#aebed3;
  font-size:14px;
  line-height:2;
  font-weight:500;
  opacity:0.95;
  letter-spacing:0.01em;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:8px 18px;
}

.footer-legal span{
  display:inline-block;
}

.social-icons{
  margin-top:20px;
  display:flex;
  justify-content:center;
  gap:15px;
}

.social-icons a,
.social-icons i{
  color:#ffffff !important;
  text-decoration:none !important;
  background:transparent !important;
  display:inline-block !important;
  transition:color 0.3s ease !important;
}

.social-icons a:hover,
.social-icons a:hover i{
  color:var(--orange) !important;
}

/* ======================================================================
   LOVEHOST FOOTER - MOBILE LEGAL TEXT ONLY
   ====================================================================== */
@media (max-width: 768px){

  .footer-bottom{
    width:calc(100% - 40px);
    max-width:420px;
    margin:42px auto 0;
    padding:24px 0 22px;
  }

  .footer-legal{
    max-width:360px;
    margin:0 auto;
    font-size:0.78rem;
    line-height:1.65;
    letter-spacing:0;
    text-align:center;
  }

  .footer-legal br{
    display:none;
  }

  .footer-legal span{
    display:block;
    margin-bottom:7px;
  }

  .social-icons{
    margin-top:18px;
  }
}

@media (max-width: 430px){

  .footer-bottom{
    width:calc(100% - 34px);
    max-width:360px;
  }

  .footer-legal{
    max-width:320px;
    font-size:0.75rem;
    line-height:1.6;
  }
}

/* ======================================================================
   16) RESPONSIVE
   ====================================================================== */
@media (max-width:1100px){
  .lh-home-plan-grid,
  .pricing-grid,
  .features-grid,
  .lh-wh-hero,
  .lh-vps-hero,
  .lh-mc-hero,
  .lh-em-hero,
  .lh-wp-hero,
  .lh-dom-hero,
  .lh-mig-hero,
  .lh-why-hero,
  .lh-green-hero,
  .lh-wh-plan-grid,
  .lh-vps-plan-grid,
  .lh-mc-plan-grid,
  .lh-em-plan-grid,
  .lh-wp-plan-grid,
  .lh-dom-plan-grid,
  .lh-mig-plan-grid,
  .lh-green-plan-grid,
  .lh-wh-feature-grid,
  .lh-vps-feature-grid,
  .lh-mc-feature-grid,
  .lh-em-feature-grid,
  .lh-wp-feature-grid,
  .lh-dom-feature-grid,
  .lh-mig-feature-grid,
  .lh-green-feature-grid,
  .lh-wh-faq-grid,
  .lh-vps-faq-grid,
  .lh-mc-faq-grid,
  .lh-em-faq-grid,
  .lh-wp-faq-grid,
  .lh-dom-faq-grid,
  .lh-mig-faq-grid,
  .lh-why-reason-grid,
  .lh-why-promise-grid,
  .lh-why-faq-grid,
  .lh-green-steps-grid,
  .lh-mig-steps-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:768px){
  .hero{ padding:110px 18px 50px; min-height:auto; }
  .search-container,
  .newsletter-form{ flex-direction:column; border-radius:22px; }
  .search-btn,
  .newsletter-form button,
  .newsletter-form input[type="email"]{ width:100%; }

  .lh-home-pricing-section,
  .pricing-container,
  .comparison-section,
  .features-section,
  .newsletter-cta{ padding-left:16px; padding-right:16px; }

  .lh-home-pricing-container,
  .pricing-container,
  .comparison-section .container,
  .features-grid,
  .newsletter-content,
  .lh-wh-container,
  .lh-vps-container,
  .lh-mc-container,
  .lh-em-container,
  .lh-wp-container,
  .lh-dom-container,
  .lh-mig-container,
  .lh-why-container,
  .lh-green-container,
  .legal-doc,
  .footer-content,
  .footer-bottom{ width:min(100% - 10px, 1200px); }

  .lh-home-trust-banner,
  .trust-banner{ border-radius:20px; padding:14px 18px; gap:10px; }
  .lh-home-trust-banner .divider,
  .trust-banner .divider{ display:none; }

  .lh-home-plan-grid,
  .pricing-grid,
  .features-grid,
  .lh-wh-hero,
  .lh-vps-hero,
  .lh-mc-hero,
  .lh-em-hero,
  .lh-wp-hero,
  .lh-dom-hero,
  .lh-mig-hero,
  .lh-why-hero,
  .lh-green-hero,
  .lh-wh-plan-grid,
  .lh-vps-plan-grid,
  .lh-mc-plan-grid,
  .lh-em-plan-grid,
  .lh-wp-plan-grid,
  .lh-dom-plan-grid,
  .lh-mig-plan-grid,
  .lh-green-plan-grid,
  .lh-wh-feature-grid,
  .lh-vps-feature-grid,
  .lh-mc-feature-grid,
  .lh-em-feature-grid,
  .lh-wp-feature-grid,
  .lh-dom-feature-grid,
  .lh-mig-feature-grid,
  .lh-green-feature-grid,
  .lh-wh-faq-grid,
  .lh-vps-faq-grid,
  .lh-mc-faq-grid,
  .lh-em-faq-grid,
  .lh-wp-faq-grid,
  .lh-dom-faq-grid,
  .lh-mig-faq-grid,
  .lh-why-values-grid,
  .lh-why-reason-grid,
  .lh-why-promise-grid,
  .lh-why-faq-grid,
  .lh-green-steps-grid,
  .lh-mig-steps-grid{
    grid-template-columns:1fr;
  }

  .lh-wh-page,
  .lh-vps-page,
  .lh-mc-page,
  .lh-em-page,
  .lh-wp-page,
  .lh-dom-page,
  .lh-mig-page,
  .lh-why-page,
  .lh-green-page,
  .legal-doc-wrap{ padding-top:120px; padding-bottom:55px; }

  .lh-home-card,
  .price-card,
  .lh-wh-card,
  .lh-vps-card,
  .lh-mc-card,
  .lh-em-card,
  .lh-wp-card,
  .lh-dom-card,
  .lh-mig-card,
  .lh-green-card,
  .lh-wh-feature-card,
  .lh-vps-feature-card,
  .lh-mc-feature-card,
  .lh-em-feature-card,
  .lh-wp-feature-card,
  .lh-dom-feature-card,
  .lh-mig-feature-card,
  .lh-green-feature-card,
  .lh-wh-faq-card,
  .lh-vps-faq-card,
  .lh-mc-faq-card,
  .lh-em-faq-card,
  .lh-wp-faq-card,
  .lh-dom-faq-card,
  .lh-mig-faq-card,
  .lh-why-reason-card,
  .lh-why-value-card,
  .lh-why-promise-card,
  .lh-why-faq-card,
  .lh-green-faq-card,
  .lh-green-step-card,
  .newsletter-content,
  .comparison-wrapper{
    border-radius:20px;
  }


  .lh-home-badge,
  .price-card .badge,
  .lh-wh-badge,
  .lh-vps-badge,
  .lh-mc-badge,
  .lh-em-badge,
  .lh-wp-badge,
  .lh-dom-badge,
  .lh-mig-badge,
  .lh-green-badge{
    top:-14px;
    right:14px;
    min-height:32px;
    padding:8px 14px;
    font-size:11px;
  }

  .lh-home-price .amount,
  .price-card .price,
  .lh-wh-price .amount,
  .lh-vps-price .amount,
  .lh-mc-price .amount,
  .lh-em-price .amount,
  .lh-wp-price .amount,
  .lh-dom-price .amount,
  .lh-green-price .amount{ font-size:2.6rem; }
  .lh-mig-price .amount{ font-size:2.2rem; }

  .lh-wh-cta,
  .lh-vps-cta,
  .lh-mc-cta,
  .lh-em-cta,
  .lh-wp-cta,
  .lh-dom-cta,
  .lh-mig-cta,
  .lh-why-cta,
  .lh-green-cta{
    flex-direction:column;
    align-items:flex-start;
    padding:28px 22px;
  }

  .footer-content{
    flex-direction:column;
    text-align:center;
  }
}
/* Public page hero button spacing */
[class$="-hero-buttons"]{
  margin-top: 14px;
}
/* Public page summary heading spacing */
[class$="-summary"] h3{
  margin-bottom: 28px !important;
}

[class$="-summary-list"]{
  margin-top: 0 !important;
}
/* ======================================================================
   LOVEHOST FOOTER - FINAL MOBILE LEGAL OVERRIDE
   Must stay at the very bottom of the file
   ====================================================================== */
@media (max-width: 768px){

  .main-footer .footer-bottom{
    width:calc(100% - 40px) !important;
    max-width:420px !important;
    margin:42px auto 0 !important;
    padding:24px 0 22px !important;
    text-align:center !important;
  }

  .main-footer .footer-legal{
    display:block !important;
    width:100% !important;
    max-width:360px !important;
    margin:0 auto !important;
    text-align:center !important;
    font-size:0.78rem !important;
    line-height:1.65 !important;
    letter-spacing:0 !important;
  }

  .main-footer .footer-legal br{
    display:none !important;
  }

  .main-footer .footer-legal span{
    display:block !important;
    margin:0 0 7px 0 !important;
  }

  .main-footer .social-icons{
    margin-top:18px !important;
    justify-content:center !important;
  }
}

@media (max-width: 430px){

  .main-footer .footer-bottom{
    width:calc(100% - 34px) !important;
    max-width:360px !important;
  }

  .main-footer .footer-legal{
    max-width:320px !important;
    font-size:0.75rem !important;
    line-height:1.6 !important;
  }
}
/* ======================================================================
   LOVEHOST FOOTER - FINAL MOBILE LEGAL POLISH
   Keep this at the very bottom of the CSS file
   ====================================================================== */

@media (max-width: 768px){

  .main-footer .footer-bottom{
    width:calc(100% - 24px) !important;
    max-width:560px !important;
    margin:42px auto 0 !important;
    padding:24px 0 22px !important;
    text-align:center !important;
  }

  .main-footer .footer-legal{
    display:block !important;
    width:100% !important;
    max-width:560px !important;
    margin:0 auto !important;
    text-align:center !important;
    color:#aebed3 !important;
    font-size:0.72rem !important;
    line-height:1.7 !important;
    letter-spacing:0 !important;
  }

  .main-footer .footer-legal span{
    display:block !important;
    width:100% !important;
    margin:0 0 6px 0 !important;
    white-space:normal !important;
  }

  .main-footer .footer-legal br{
    display:none !important;
  }

  .main-footer .social-icons{
    margin-top:18px !important;
    justify-content:center !important;
  }
}

@media (max-width: 430px){

  .main-footer .footer-bottom{
    width:calc(100% - 18px) !important;
    max-width:430px !important;
  }

  .main-footer .footer-legal{
    max-width:430px !important;
    font-size:0.68rem !important;
    line-height:1.65 !important;
  }
}

/* ======================================================================
   LOVEHOST FOOTER - DESKTOP COLUMN FIX
   Keeps Brand + Hosting + Support + Company + Legal on one row
   Keep this below the footer/mobile overrides
   ====================================================================== */

@media (min-width: 1101px){

  .main-footer .footer-content{
    display:grid !important;
    grid-template-columns:minmax(270px, 1.45fr) repeat(4, minmax(135px, 1fr)) !important;
    gap:clamp(34px, 3.2vw, 58px) !important;
    width:min(1280px, calc(100% - 48px)) !important;
    max-width:1280px !important;
    margin:0 auto !important;
    padding:0 !important;
    align-items:start !important;
  }

  .main-footer .footer-brand,
  .main-footer .footer-links{
    flex:none !important;
    min-width:0 !important;
  }

  .main-footer .footer-brand{
    max-width:320px !important;
  }
}

@media (min-width: 769px) and (max-width: 1100px){

  .main-footer .footer-content{
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:34px 48px !important;
    width:min(920px, calc(100% - 48px)) !important;
    max-width:920px !important;
    margin:0 auto !important;
    padding:0 !important;
    align-items:start !important;
  }

  .main-footer .footer-brand,
  .main-footer .footer-links{
    flex:none !important;
    min-width:0 !important;
  }

  .main-footer .footer-brand{
    grid-column:1 / -1 !important;
    max-width:420px !important;
  }
}

