:root {
  --navy: #082238;
  --navy-2: #071522;
  --dark: #101010;
  --yellow: #f6c431;
  --yellow-dark: #d59f00;
  --white: #ffffff;
  --muted: #d7e1ea;
  --light: #f5f8fb;
  --line: #e1e8ef;
  --text: #1d2935;
  --soft: #eef4f8;
  --green: #35d07f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
}

body.nav-open { overflow: hidden; }

a { color: inherit; }

img { max-width: 100%; height: auto; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  background: rgba(8,34,56,0.98);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img { width: 310px; max-width: 100%; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
}

.main-nav a {
  text-decoration: none;
  color: var(--white);
  opacity: 0.92;
}

.main-nav a:hover { color: var(--yellow); opacity: 1; }

.nav-button {
  padding: 11px 17px;
  background: var(--yellow);
  color: var(--dark) !important;
  border-radius: 999px;
  font-weight: 800;
  opacity: 1 !important;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(246,196,49,0.24), transparent 34%),
    radial-gradient(circle at bottom left, rgba(246,196,49,0.09), transparent 28%),
    linear-gradient(135deg, #082238 0%, #071522 100%);
  color: var(--white);
  padding: 94px 0 76px;
  overflow: hidden;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 880px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.035em;
}

h3 { font-size: 23px; margin-bottom: 12px; }

.hero-text {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary { background: var(--yellow); color: var(--dark); }
.button-primary:hover { background: var(--yellow-dark); }

.button-secondary {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.27);
}

.hero-card h2 { font-size: 30px; margin-bottom: 10px; }

.portal-links { display: grid; gap: 12px; margin-top: 20px; }

.portal-links a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  text-decoration: none;
}

.portal-links a:hover { background: var(--yellow); color: var(--dark); }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 54px;
}

.trust-pill {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 18px;
  color: var(--muted);
}

.trust-pill strong { display: block; color: var(--white); font-size: 20px; margin-bottom: 4px; }

.section { padding: 86px 0; }

.section-heading {
  max-width: 870px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card,
.price-card,
.work-card,
.testimonial-card {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  min-height: 260px;
}

.service-card.highlight {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.service-card p,
.price-card p,
.work-card p,
.testimonial-card p {
  line-height: 1.65;
}

.icon {
  width: 50px;
  height: 50px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 22px;
  font-size: 20px;
}

.dark {
  background:
    radial-gradient(circle at top left, rgba(246,196,49,0.15), transparent 26%),
    var(--dark);
  color: var(--white);
}

.dark p { color: var(--muted); line-height: 1.7; }

.benefit-list { display: grid; gap: 14px; }

.benefit-list div {
  background: rgba(255,255,255,0.08);
  border-radius: 17px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.55;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.price-grid,
.work-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  background: var(--white);
  box-shadow: 0 18px 45px rgba(8,34,56,0.08);
}

.price {
  font-size: 34px;
  font-weight: 900;
  color: var(--navy);
  margin: 12px 0;
}

.price span { font-size: 15px; color: #667; font-weight: 700; }

.smart-home-band {
  background:
    radial-gradient(circle at bottom right, rgba(246,196,49,0.18), transparent 32%),
    var(--navy);
  color: var(--white);
}

.smart-home-band p { color: var(--muted); line-height: 1.7; }

.smart-panel {
  display: grid;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 26px;
  padding: 26px;
}

.smart-panel div {
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.08);
}

.cta {
  text-align: center;
  background: var(--soft);
}

.cta p {
  font-size: 19px;
  margin-bottom: 28px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}

.contact-strip a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 17px;
  text-decoration: none;
  font-weight: 800;
}

.site-footer {
  background: #111;
  color: #ffffff;
  padding: 30px 20px;
}

.site-footer .footer-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
  text-align: center;
}

.site-footer .footer-column p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer a,
.site-footer a:visited {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--yellow);
}

.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  padding: 78px 0;
}

.page-hero p { color: var(--muted); max-width: 760px; line-height: 1.7; font-size: 19px; }

@media (max-width: 980px) {
  .brand img { width: 245px; }

  .menu-toggle { display: inline-flex; }

  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 25px 55px rgba(0,0,0,0.25);
  }

  body.nav-open .main-nav { display: flex; }

  .main-nav a { padding: 12px; }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

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

  .trust-row,
  .price-grid,
  .work-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }

  .hero { padding: 62px 0; }

  .section { padding: 58px 0; }

  .service-grid,
  .trust-row,
  .price-grid,
  .work-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}



/* Hosting page clean layout */
.hosting-plan-grid {
  align-items: stretch;
}

.hosting-plan-card {
  background: #ffffff;
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hosting-plan-card p {
  color: var(--text);
}

.hosting-plan-card .tick-list {
  margin-top: auto;
}

.hosting-features-section {
  background:
    radial-gradient(circle at top right, rgba(246,196,49,0.18), transparent 32%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #ffffff;
}

.centred-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hosting-features-section .section-heading p {
  color: var(--muted);
}

.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-strip-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 22px;
  min-height: 170px;
}

.feature-strip-item span {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--yellow);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 16px;
}

.feature-strip-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-strip-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hosting-benefits-light div {
  background: var(--light);
  border: 1px solid var(--line);
  color: var(--text);
}

@media (max-width: 980px) {
  .feature-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .feature-strip-grid {
    grid-template-columns: 1fr;
  }
}


/* Updated Yellow Arrow logo sizing */
.brand {
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .brand img {
    width: 215px;
  }
}


/* Final logo sizing */
.brand img{
  width: 360px !important;
  max-width: 100%;
  height: auto;
}

@media (max-width:980px){
  .brand img{
    width: 280px !important;
  }
}

@media (max-width:520px){
  .brand img{
    width: 220px !important;
  }
}


/* Header logo fix */
.site-header .brand {
  display: inline-flex;
  align-items: center;
  max-width: 260px;
}

.site-header .brand img {
  width: 245px !important;
  height: auto !important;
  display: block;
}

.site-header .nav {
  min-height: 72px;
}

@media (max-width: 980px) {
  .site-header .brand {
    max-width: 230px;
  }

  .site-header .brand img {
    width: 225px !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand {
    max-width: 190px;
  }

  .site-header .brand img {
    width: 185px !important;
  }
}


/* Definitive compact header logo */
.site-header .brand {
  max-width: 245px !important;
  width: 245px !important;
  overflow: hidden;
}

.site-header .brand img {
  width: 245px !important;
  max-width: 245px !important;
  height: auto !important;
  display: block !important;
}

.site-header .nav {
  min-height: 72px !important;
}

@media (max-width: 980px) {
  .site-header .brand,
  .site-header .brand img {
    width: 220px !important;
    max-width: 220px !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand,
  .site-header .brand img {
    width: 185px !important;
    max-width: 185px !important;
  }
}


/* Approved logo artwork */
.site-header .brand {
  width: 360px !important;
  max-width: 360px !important;
  height: auto !important;
  overflow: visible !important;
}

.site-header .brand img {
  width: 360px !important;
  max-width: 360px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.site-header .nav {
  min-height: 86px !important;
}

@media (max-width: 1100px) {
  .site-header .brand,
  .site-header .brand img {
    width: 300px !important;
    max-width: 300px !important;
  }
}

@media (max-width: 980px) {
  .site-header .brand,
  .site-header .brand img {
    width: 285px !important;
    max-width: 285px !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand,
  .site-header .brand img {
    width: 230px !important;
    max-width: 230px !important;
  }
}


/* Colour-matched approved logo header */
.site-header {
  background: #082238 !important;
}

.site-header .brand {
  width: 300px !important;
  max-width: 300px !important;
  overflow: visible !important;
}

.site-header .brand img {
  width: 300px !important;
  max-width: 300px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.site-header .nav {
  min-height: 86px !important;
}

@media (max-width: 1100px) {
  .site-header .brand,
  .site-header .brand img {
    width: 270px !important;
    max-width: 270px !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand,
  .site-header .brand img {
    width: 220px !important;
    max-width: 220px !important;
  }
}


/* Final header/logo correction */
.site-header {
  background: #010f1d !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.site-header .nav {
  min-height: 112px !important;
}

.site-header .brand {
  width: 460px !important;
  max-width: 460px !important;
  overflow: visible !important;
}

.site-header .brand img {
  width: 460px !important;
  max-width: 460px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

@media (max-width: 1200px) {
  .site-header .brand,
  .site-header .brand img {
    width: 390px !important;
    max-width: 390px !important;
  }
}

@media (max-width: 980px) {
  .site-header .brand,
  .site-header .brand img {
    width: 300px !important;
    max-width: 300px !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand,
  .site-header .brand img {
    width: 235px !important;
    max-width: 235px !important;
  }
}


/* Final balanced header sizing */
.site-header {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.site-header .nav {
  min-height: 92px !important;
  gap: 34px !important;
}

.site-header .brand {
  width: 395px !important;
  max-width: 395px !important;
  display: flex !important;
  align-items: center !important;
}

.site-header .brand img {
  width: 395px !important;
  max-width: 395px !important;
  height: auto !important;
  display: block !important;
}

.site-header nav ul {
  gap: 34px !important;
}

.site-header nav a {
  font-size: 16px !important;
}

@media (max-width: 1200px) {
  .site-header .brand,
  .site-header .brand img {
    width: 345px !important;
    max-width: 345px !important;
  }

  .site-header .nav,
  .site-header nav ul {
    gap: 24px !important;
  }
}

@media (max-width: 980px) {
  .site-header .brand,
  .site-header .brand img {
    width: 290px !important;
    max-width: 290px !important;
  }

  .site-header .nav {
    min-height: 82px !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand,
  .site-header .brand img {
    width: 225px !important;
    max-width: 225px !important;
  }
}


/* Updated hosting pricing */

.hosting-plan-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
  .hosting-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .hosting-plan-grid {
    grid-template-columns: 1fr;
  }
}


/* Improved annual billing banner */
.annual-saving-banner {
  margin-top: 34px;
  padding: 18px 24px;
  border-radius: 16px;
  background: #f6c431;
  border: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  color: #061a2b;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.annual-saving-banner span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}





/* Hosting feature grid refinement */
.feature-strip-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

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

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


/* Final fixed hosting feature card grid */
.hosting-features-section .feature-strip-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.hosting-features-section .feature-strip-item {
  width: auto !important;
  min-width: 0 !important;
  min-height: 210px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.hosting-features-section .feature-strip-item span {
  flex-shrink: 0 !important;
}

@media (max-width: 980px) {
  .hosting-features-section .feature-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .hosting-features-section .feature-strip-grid {
    grid-template-columns: 1fr !important;
  }
}




/* Final logo and Via/HostShop alignment updates */
.site-header .brand {
  width: 360px !important;
  max-width: 360px !important;
  overflow: visible !important;
}

.site-header .brand img {
  width: 360px !important;
  max-width: 360px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.site-header .nav {
  min-height: 94px !important;
}

.main-nav a[href*="cp.yellowarrow.co.uk"],
.main-nav a[href*="webmail.yellowarrow.co.uk"] {
  font-weight: 800 !important;
}

.wordpress-support-section {
  background: #ffffff;
}

.wordpress-support-section .benefit-list div {
  background: var(--light, #f5f8fb);
  border: 1px solid var(--line, #e1e8ef);
  color: var(--text, #1d2935);
}

@media (max-width: 1200px) {
  .site-header .brand,
  .site-header .brand img {
    width: 310px !important;
    max-width: 310px !important;
  }
}

@media (max-width: 980px) {
  .site-header .brand,
  .site-header .brand img {
    width: 260px !important;
    max-width: 260px !important;
  }

  .site-header .nav {
    min-height: 84px !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand,
  .site-header .brand img {
    width: 220px !important;
    max-width: 220px !important;
  }
}



/* =========================================================
   Yellow Arrow - Light Via/HostShop aligned theme fix
   ========================================================= */
:root {
  --ya-navy: #061a2b;
  --ya-navy-2: #0d2f4d;
  --ya-yellow: #f6c431;
  --ya-yellow-dark: #d59f00;
  --ya-blue: #1498c7;
  --ya-light: #f5f7fa;
  --ya-panel: #ffffff;
  --ya-border: #dfe5eb;
  --ya-text: #182636;
  --ya-muted: #64748b;
}

body {
  background: var(--ya-light) !important;
  color: var(--ya-text) !important;
}

/* Via-style light header */
.site-header {
  background: #ffffff !important;
  color: var(--ya-text) !important;
  border-bottom: 1px solid var(--ya-border) !important;
  box-shadow: 0 2px 14px rgba(6,26,43,0.06) !important;
}

.site-header .nav {
  min-height: 92px !important;
}

.site-header .brand {
  width: 355px !important;
  max-width: 355px !important;
  overflow: visible !important;
}

.site-header .brand img {
  width: 355px !important;
  max-width: 355px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.main-nav a {
  color: var(--ya-text) !important;
  font-weight: 700 !important;
}

.main-nav a:hover {
  color: var(--ya-blue) !important;
}

.nav-button,
.button-primary {
  background: var(--ya-yellow) !important;
  color: var(--ya-navy) !important;
  box-shadow: 0 8px 18px rgba(246,196,49,0.25) !important;
}

.nav-button:hover,
.button-primary:hover {
  background: var(--ya-yellow-dark) !important;
  color: var(--ya-navy) !important;
}

/* Light page heroes, closer to HostShop/Via */
.hero,
.page-hero {
  background:
    radial-gradient(circle at 76% 22%, rgba(246,196,49,0.13), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%) !important;
  color: var(--ya-text) !important;
  border-bottom: 1px solid var(--ya-border) !important;
}

.hero h1,
.page-hero h1,
.hero h2,
.page-hero h2 {
  color: var(--ya-navy) !important;
}

.hero-text,
.hero p,
.page-hero p {
  color: #405166 !important;
}

.eyebrow {
  color: var(--ya-yellow-dark) !important;
}

/* Hero customer links card */
.hero-card {
  background: #ffffff !important;
  color: var(--ya-text) !important;
  border: 1px solid var(--ya-border) !important;
  box-shadow: 0 16px 40px rgba(6,26,43,0.08) !important;
}

.hero-card h2 {
  color: var(--ya-navy) !important;
}

.hero-card p {
  color: #405166 !important;
}

.portal-links a,
.hero-card a {
  background: #eef3f7 !important;
  color: var(--ya-navy) !important;
  border: 1px solid var(--ya-border) !important;
}

.portal-links a:hover,
.hero-card a:hover {
  background: var(--ya-yellow) !important;
  color: var(--ya-navy) !important;
}

.button-secondary {
  background: #ffffff !important;
  color: var(--ya-navy) !important;
  border: 1px solid var(--ya-border) !important;
}

.button-secondary:hover {
  border-color: var(--ya-blue) !important;
  color: var(--ya-blue) !important;
}

/* Main sections and cards */
.section {
  background: #ffffff !important;
}

.section-heading h2,
.section h2,
h2 {
  color: var(--ya-navy) !important;
}

.section-heading p,
.section p {
  color: #405166 !important;
}

.service-card,
.price-card,
.work-card,
.testimonial-card {
  background: #ffffff !important;
  color: var(--ya-text) !important;
  border: 1px solid var(--ya-border) !important;
  box-shadow: 0 14px 35px rgba(6,26,43,0.07) !important;
}

.service-card h3,
.price-card h3,
.work-card h3,
.testimonial-card h3 {
  color: var(--ya-navy) !important;
}

.service-card p,
.price-card p,
.work-card p,
.testimonial-card p {
  color: #405166 !important;
}

.icon {
  background: var(--ya-navy) !important;
  color: var(--ya-yellow) !important;
  border: 2px solid rgba(246,196,49,0.35) !important;
}

.service-card.highlight {
  background: var(--ya-navy) !important;
  border-color: var(--ya-navy) !important;
}

.service-card.highlight h3,
.service-card.highlight p,
.service-card.highlight a {
  color: #ffffff !important;
}

/* Keep feature/smart sections dark navy as a premium contrast */
.dark,
.smart-home-band,
.hosting-features-section {
  background:
    radial-gradient(circle at top right, rgba(246,196,49,0.12), transparent 34%),
    linear-gradient(135deg, var(--ya-navy) 0%, var(--ya-navy-2) 100%) !important;
  color: #ffffff !important;
}

.dark h2,
.smart-home-band h2,
.hosting-features-section h2 {
  color: #ffffff !important;
}

.dark p,
.smart-home-band p,
.hosting-features-section p {
  color: #d8e3ed !important;
}

.feature-strip-item,
.benefit-list div,
.smart-panel,
.smart-panel div {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  color: #ffffff !important;
}

.feature-strip-item strong {
  color: #ffffff !important;
}

.price {
  color: var(--ya-navy) !important;
}

.annual-price {
  color: var(--ya-yellow-dark) !important;
}

.annual-saving-banner {
  background: var(--ya-yellow) !important;
  color: var(--ya-navy) !important;
  border: 1px solid rgba(6,26,43,0.08) !important;
  box-shadow: 0 10px 24px rgba(6,26,43,0.12) !important;
}

/* Footer */
.site-footer {
  background: var(--ya-navy) !important;
  color: #ffffff !important;
}

.site-footer a:hover {
  color: var(--ya-yellow) !important;
}

/* Feature grid consistency */
.hosting-features-section .feature-strip-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.hosting-features-section .feature-strip-item {
  min-height: 205px !important;
  display: flex !important;
  flex-direction: column !important;
}

@media (max-width: 1200px) {
  .site-header .brand,
  .site-header .brand img {
    width: 310px !important;
    max-width: 310px !important;
  }
}

@media (max-width: 980px) {
  .site-header .brand,
  .site-header .brand img {
    width: 260px !important;
    max-width: 260px !important;
  }

  .site-header .nav {
    min-height: 82px !important;
  }

  .hosting-features-section .feature-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .site-header .brand,
  .site-header .brand img {
    width: 220px !important;
    max-width: 220px !important;
  }

  .hosting-features-section .feature-strip-grid {
    grid-template-columns: 1fr !important;
  }
}




/* =========================================================
   Common header, nav and font standardisation
   ========================================================= */

:root {
  --ya-navy: #061a2b;
  --ya-navy-2: #0d2f4d;
  --ya-yellow: #f6c431;
  --ya-yellow-dark: #d59f00;
  --ya-blue: #1498c7;
  --ya-light: #f5f7fa;
  --ya-border: #dfe5eb;
  --ya-text: #182636;
  --ya-muted: #64748b;
}

/* Site-wide font consistency */
html,
body,
button,
input,
select,
textarea,
a,
p,
li,
span,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Common header */
.site-header {
  background: #ffffff !important;
  color: var(--ya-text) !important;
  border-bottom: 1px solid var(--ya-border) !important;
  box-shadow: 0 2px 14px rgba(6, 26, 43, 0.06) !important;
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .nav {
  min-height: 92px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
}

.site-header .brand {
  width: 355px !important;
  max-width: 355px !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.site-header .brand img {
  width: 355px !important;
  max-width: 355px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.main-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 20px !important;
  font-size: 15px !important;
  line-height: 1 !important;
}

.main-nav a {
  color: var(--ya-text) !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  opacity: 1 !important;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ya-blue) !important;
}

.main-nav .nav-button,
.nav-button {
  background: var(--ya-yellow) !important;
  color: var(--ya-navy) !important;
  padding: 14px 22px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  box-shadow: 0 8px 18px rgba(246,196,49,0.25) !important;
}

.main-nav .nav-button:hover,
.nav-button:hover {
  background: var(--ya-yellow-dark) !important;
  color: var(--ya-navy) !important;
}

/* Mobile menu consistency */
.menu-toggle {
  display: none;
  border: 0;
  background: var(--ya-yellow);
  color: var(--ya-navy);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 14px !important;
    font-size: 14px !important;
  }

  .site-header .brand,
  .site-header .brand img {
    width: 300px !important;
    max-width: 300px !important;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex !important;
  }

  .site-header .brand,
  .site-header .brand img {
    width: 255px !important;
    max-width: 255px !important;
  }

  .site-header .nav {
    min-height: 82px !important;
  }

  .main-nav {
    position: fixed !important;
    left: 20px !important;
    right: 20px !important;
    top: 92px !important;
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    background: #ffffff !important;
    padding: 18px !important;
    border-radius: 18px !important;
    border: 1px solid var(--ya-border) !important;
    box-shadow: 0 25px 55px rgba(6,26,43,0.18) !important;
  }

  body.nav-open .main-nav {
    display: flex !important;
  }

  .main-nav a {
    padding: 12px !important;
  }
}

@media (max-width: 520px) {
  .site-header .brand,
  .site-header .brand img {
    width: 220px !important;
    max-width: 220px !important;
  }
}




/* =========================================================
   Navigation typography consistency fix
   ========================================================= */

.site-header .main-nav,
.site-header .main-nav a,
.site-header .main-nav .nav-button {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.2 !important;
  font-style: normal !important;
}

.site-header .main-nav a {
  display: inline-flex !important;
  align-items: center !important;
  height: 44px !important;
  color: #182636 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.site-header .main-nav a:hover,
.site-header .main-nav a.active {
  color: #1498c7 !important;
}

.site-header .main-nav .nav-button {
  background: #f6c431 !important;
  color: #061a2b !important;
  border-radius: 999px !important;
  padding: 0 22px !important;
  height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 18px rgba(246,196,49,0.22) !important;
}

.site-header .main-nav .nav-button:hover {
  background: #d59f00 !important;
  color: #061a2b !important;
}





/* Contact email + WhatsApp actions */
.whatsapp-button {
  background: #25D366 !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px 28px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  margin-left: 14px !important;
  box-shadow: 0 10px 22px rgba(37,211,102,0.22) !important;
}

.whatsapp-button:hover {
  background: #1ebe5b !important;
  color: #ffffff !important;
}

.whatsapp-button::before {
  content: "💬";
  margin-right: 10px;
}

@media (max-width: 640px) {
  .whatsapp-button {
    margin-left: 0 !important;
    margin-top: 14px !important;
    display: flex !important;
  }
}




/* Contact action buttons */
.contact-action-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin: 24px 0 !important;
}

.contact-email-button,
.whatsapp-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border-radius: 999px !important;
  padding: 16px 26px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  line-height: 1 !important;
  min-height: 52px !important;
}

.contact-email-button {
  background: #f6c431 !important;
  color: #061a2b !important;
  box-shadow: 0 10px 22px rgba(246,196,49,0.22) !important;
}

.contact-email-button:hover {
  background: #d59f00 !important;
  color: #061a2b !important;
}

.whatsapp-button {
  background: #25D366 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(37,211,102,0.22) !important;
}

.whatsapp-button:hover {
  background: #1ebe5b !important;
  color: #ffffff !important;
}

.contact-icon,
.whatsapp-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

@media (max-width: 640px) {
  .contact-action-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .contact-email-button,
  .whatsapp-button {
    width: 100% !important;
  }
}




/* Global contact CTA section */
.global-contact-cta {
  text-align: center !important;
  padding: 20px 0 !important;
}

.global-contact-cta h2 {
  font-size: 58px !important;
  line-height: 1.05 !important;
  margin-bottom: 20px !important;
  color: #061a2b !important;
}

.global-contact-cta p {
  font-size: 18px !important;
  color: #405166 !important;
  margin-bottom: 28px !important;
}

.global-contact-cta .contact-action-row {
  justify-content: center !important;
}

.global-contact-cta .contact-email-button,
.global-contact-cta .whatsapp-button {
  min-width: 280px !important;
}

@media (max-width: 768px) {
  .global-contact-cta h2 {
    font-size: 42px !important;
  }

  .global-contact-cta .contact-email-button,
  .global-contact-cta .whatsapp-button {
    width: 100% !important;
    min-width: unset !important;
  }
}




/* =========================================================
   Contact CTA polish
   ========================================================= */

.global-contact-cta p {
  font-size: 20px !important;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  color: #405166 !important;
}

.contact-email-button,
.whatsapp-button {
  
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.15 !important;
  text-transform: none !important;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

/* Proper WhatsApp-style icon */
.whatsapp-icon {
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #25D366 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

/* Email icon consistency */
.contact-icon {
  width: 22px !important;
  height: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}




/* =========================================================
   Professional contact buttons - final polish
   ========================================================= */

/* Remove previous emoji/icon injections */
.whatsapp-button::before,
.contact-email-button::before {
  content: none !important;
  display: none !important;
}

.contact-action-row {
  gap: 18px !important;
  margin-top: 28px !important;
}

.contact-email-button,
.whatsapp-button {
  min-height: 54px !important;
  padding: 0 28px !important;
  border-radius: 14px !important;
  
  font-size: 16px !important;
  font-weight: 750 !important;
  letter-spacing: -0.01em !important;
  line-height: 1 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 11px !important;
  border: 1px solid transparent !important;
  box-shadow: 0 8px 18px rgba(6, 26, 43, 0.10) !important;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, border-color 0.16s ease !important;
}

.contact-email-button {
  background: #f6c431 !important;
  color: #061a2b !important;
  border-color: #e0ad16 !important;
}

.contact-email-button:hover {
  background: #e8b323 !important;
  color: #061a2b !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 22px rgba(6, 26, 43, 0.14) !important;
}

.whatsapp-button {
  background: #1fbe63 !important;
  color: #ffffff !important;
  border-color: #18a957 !important;
}

.whatsapp-button:hover {
  background: #18a957 !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 22px rgba(6, 26, 43, 0.14) !important;
}

.button-icon {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  display: inline-block !important;
}

.whatsapp-svg {
  width: 22px !important;
  height: 22px !important;
  flex-basis: 22px !important;
}

.contact-icon,
.whatsapp-icon {
  display: none !important;
}

@media (max-width: 640px) {
  .contact-action-row {
    gap: 12px !important;
  }

  .contact-email-button,
  .whatsapp-button {
    width: 100% !important;
    min-width: 0 !important;
  }
}


/* CTA positioned above footer */
.cta-before-footer {
  padding-bottom: 80px !important;
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
}

.site-footer {
  margin-top: 0 !important;
}


/* Final CTA/footer ordering fix */
.section.cta,
.section.cta-before-footer {
  position: relative !important;
  z-index: 2 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 70px !important;
}

.site-footer {
  position: relative !important;
  z-index: 1 !important;
  margin-top: 0 !important;
}




/* Footer location / incorporation update */
.site-footer .footer-inner {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  align-items: center !important;
  gap: 24px !important;
}

.site-footer p {
  margin: 0 !important;
}

.site-footer .footer-location {
  margin-top: 6px !important;
  font-size: 13px !important;
  opacity: 0.82 !important;
}

.footer-column-left {
  text-align: left !important;
}

.footer-column-centre {
  text-align: center !important;
}

.footer-column-right {
  text-align: right !important;
}

@media (max-width: 760px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .footer-column-left,
  .footer-column-centre,
  .footer-column-right {
    text-align: center !important;
  }
}



/* IT Support page */
.service-card .icon {
  font-size: 15px;
  font-weight: 900;
}




/* =========================================================
   Unified button typography
   ========================================================= */

.button,
button,
input[type="submit"],
.contact-email-button,
.whatsapp-button,
.hero-actions .button,
.portal-links a,
.nav-cta,
.header-actions .button,
a.button {
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  font-style: normal !important;
  line-height: 1.1 !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: geometricPrecision !important;
}

/* Match header Contact button sizing */
.button,
.contact-email-button,
.whatsapp-button,
.hero-actions .button,
a.button {
  font-size: 16px !important;
}

/* Navigation consistency */
header nav a,
.site-header nav a {
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}




/* Portfolio / recent projects */
.portfolio-section {
  background: #f5f7fa !important;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.project-card {
  background: #ffffff;
  border: 1px solid #dfe5eb;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(6, 26, 43, 0.08);
}

.project-thumb {
  display: block;
  background: #eef3f7;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid #dfe5eb;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.025);
}

.project-card-content {
  padding: 26px;
}

.project-card-content h3 {
  margin: 0 0 8px;
  color: #061a2b;
  font-size: 24px;
}

.project-location {
  margin: 0 0 14px !important;
  color: #d59f00 !important;
  font-weight: 800;
  font-size: 14px;
}

.project-card-content p {
  color: #405166;
  line-height: 1.65;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eef3f7;
  color: #061a2b;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 800;
}

.project-link {
  display: inline-flex;
  color: #061a2b;
  font-weight: 900;
  text-decoration: none;
}

.project-link:hover {
  color: #1498c7;
}

.portfolio-error {
  background: #ffffff;
  border: 1px solid #dfe5eb;
  border-radius: 16px;
  padding: 18px;
}

@media (max-width: 800px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}




/* =========================================================
   Promotional annual billing banner typography
   ========================================================= */

.annual-offer-banner,
.offer-banner,
.pricing-offer-banner,
.save-banner,
.billing-banner {
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: geometricPrecision !important;
}

.annual-offer-banner *,
.offer-banner *,
.pricing-offer-banner *,
.save-banner *,
.billing-banner * {
  font-family: inherit !important;
}

.annual-offer-banner strong,
.offer-banner strong,
.pricing-offer-banner strong,
.save-banner strong,
.billing-banner strong {
  font-weight: 800 !important;
}




/* Fallback targeting for annual billing banner text */
[class*="offer"] h3,
[class*="offer"] p,
[class*="billing"] h3,
[class*="billing"] p,
[class*="banner"] h3,
[class*="banner"] p {
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}




/* =========================================================
   Portfolio typography consistency
   ========================================================= */

.project-link,
.project-tag,
.project-card h3,
.project-card p,
.project-location {
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: geometricPrecision !important;
}

.project-link {
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
}

.project-tag {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: -0.005em !important;
}

.project-card h3 {
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

.project-card p,
.project-location {
  font-weight: 500 !important;
  line-height: 1.65 !important;
}


/* Portfolio thumbnail positioning fix */
.project-thumb {
  aspect-ratio: 16 / 9 !important;
}

.project-thumb img {
  object-position: top center !important;
}


/* Web design service copy section */
.web-design-copy {
  max-width: 1080px;
  margin: 0 auto;
}

.web-design-copy p {
  font-size: 18px;
  line-height: 1.8;
  color: #405166;
  margin-bottom: 24px;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
}

.web-design-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #dfe5eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 35px rgba(6, 26, 43, 0.06);
}

.feature-card h3 {
  margin: 0 0 14px;
  color: #061a2b;
  font-size: 24px;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  font-size: 16px;
}

.web-design-highlight {
  margin-top: 36px;
  padding: 24px 28px;
  background: linear-gradient(135deg, #061a2b 0%, #0d3556 100%);
  border-radius: 22px;
}

.web-design-highlight p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 800px) {
  .web-design-feature-grid {
    grid-template-columns: 1fr;
  }
}


/* Portfolio desktop + mobile preview */
.project-thumb-composite {
  position: relative;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden;
  background: #eef3f7;
}

.project-desktop-image {
  object-position: top center !important;
}

.project-phone-preview {
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 23%;
  min-width: 82px;
  max-width: 128px;
  aspect-ratio: 9 / 18;
  background: #061a2b;
  border: 4px solid #061a2b;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(6, 26, 43, 0.28);
  overflow: hidden;
  display: block;
}

.project-phone-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center !important;
  display: block;
}

.project-phone-speaker {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 30%;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(255,255,255,0.55);
  z-index: 2;
}

.project-phone-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
  pointer-events: none;
}

@media (max-width: 520px) {
  .project-phone-preview {
    right: 12px;
    bottom: 10px;
    width: 25%;
    min-width: 72px;
    border-width: 3px;
    border-radius: 14px;
  }
}


/* =========================================================
   Inline mobile preview layout
   ========================================================= */

.project-thumb-composite {
  position: relative;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden;
  background: #eef3f7;
}

.project-card-lower {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

.project-card-lower-left {
  flex: 1;
  min-width: 0;
}

.project-mobile-inline {
  flex-shrink: 0;
  text-align: center;
}

.project-mobile-label {
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7b8794;
  margin-bottom: 8px;
}

.project-phone-preview {
  position: relative;
  width: 82px;
  aspect-ratio: 9 / 18;
  background: #061a2b;
  border: 3px solid #061a2b;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(6, 26, 43, 0.18);
  overflow: hidden;
  display: block;
}

.project-phone-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center !important;
  display: block;
}

.project-phone-speaker {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 26px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(255,255,255,0.55);
  z-index: 2;
}

.project-phone-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  pointer-events: none;
}

@media (max-width: 640px) {
  .project-card-lower {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-mobile-inline {
    margin-top: 10px;
  }
}


/* =========================================================
   Portfolio mobile preview full-width row
   ========================================================= */

.project-card-lower,
.project-mobile-inline {
  display: contents !important;
}

.project-mobile-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 22px !important;
  padding: 18px 26px !important;
  background: #f5f7fa !important;
  border-bottom: 1px solid #dfe5eb !important;
}

.project-mobile-copy {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif !important;
}

.project-mobile-copy strong {
  color: #061a2b !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
}

.project-mobile-copy span {
  color: #64748b !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}

.project-mobile-row .project-phone-preview {
  position: relative !important;
  width: 74px !important;
  min-width: 74px !important;
  aspect-ratio: 9 / 18 !important;
  background: #061a2b !important;
  border: 3px solid #061a2b !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 20px rgba(6, 26, 43, 0.16) !important;
  overflow: hidden !important;
  display: block !important;
  inset: auto !important;
  right: auto !important;
  bottom: auto !important;
  max-width: none !important;
}

.project-mobile-row .project-phone-preview img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
}

.project-card-content {
  padding-top: 24px !important;
}

@media (max-width: 520px) {
  .project-mobile-row {
    padding: 16px 20px !important;
  }

  .project-mobile-row .project-phone-preview {
    width: 64px !important;
    min-width: 64px !important;
  }
}


/* =========================================================
   Portfolio responsive design strip + optional device previews
   ========================================================= */

.project-responsive-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 26px;
  background: #f5f7fa;
  border-bottom: 1px solid #dfe5eb;
}

.project-responsive-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
}

.project-responsive-copy strong {
  color: #061a2b;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.project-responsive-copy span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.project-responsive-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.project-responsive-badges span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfe5eb;
  color: #061a2b;
  padding: 7px 10px;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.project-device-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 22px 26px;
  background: #ffffff;
  border-bottom: 1px solid #dfe5eb;
}

.project-device-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.project-device-frame {
  position: relative;
  background: #061a2b;
  border: 3px solid #061a2b;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(6, 26, 43, 0.16);
}

.project-device-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.project-device-speaker {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 28%;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(255,255,255,0.55);
  z-index: 2;
}

.project-device-tablet .project-device-frame {
  width: 120px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
}

.project-device-mobile .project-device-frame {
  width: 72px;
  aspect-ratio: 9 / 18;
  border-radius: 14px;
}

@media (max-width: 700px) {
  .project-responsive-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-responsive-badges {
    justify-content: flex-start;
  }

  .project-device-row {
    justify-content: flex-start;
  }
}


/* Portfolio preview refinements */
.project-thumb {
  cursor: default !important;
}

.project-device-row {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 32px !important;
  padding: 24px 26px !important;
  background: #ffffff !important;
  border-bottom: 1px solid #dfe5eb !important;
}

.project-device-tablet .project-device-frame {
  width: 150px !important;
  aspect-ratio: 3 / 4 !important;
  border-radius: 16px !important;
}

.project-device-mobile .project-device-frame {
  width: 82px !important;
  aspect-ratio: 9 / 18 !important;
  border-radius: 16px !important;
}

.project-device-preview > span {
  margin-top: 8px !important;
  display: block !important;
}

@media (max-width: 640px) {
  .project-device-row {
    gap: 22px !important;
  }

  .project-device-tablet .project-device-frame {
    width: 125px !important;
  }

  .project-device-mobile .project-device-frame {
    width: 70px !important;
  }
}


/* Device preview loading/fallback polish */
.project-device-frame {
  background: #f5f7fa !important;
}

.project-device-frame img {
  background: #f5f7fa !important;
}

.project-device-frame img[alt=""] {
  color: transparent !important;
}

.device-fallback-image {
  object-position: top center !important;
  opacity: 0.94 !important;
}


/* =========================================================
   Managed JSON portfolio system
   ========================================================= */

.project-thumb {
  cursor: default !important;
}

.project-thumb-placeholder {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3f7;
  color: #64748b;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.project-responsive-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 26px;
  background: #f5f7fa;
  border-bottom: 1px solid #dfe5eb;
}

.project-responsive-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
}

.project-responsive-copy strong {
  color: #061a2b;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.project-responsive-copy span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.project-responsive-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.project-responsive-badges span {
  display: inline-flex;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dfe5eb;
  color: #061a2b;
  padding: 7px 10px;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.project-device-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  padding: 24px 26px;
  background: #ffffff;
  border-bottom: 1px solid #dfe5eb;
}

.project-device-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.project-device-frame {
  position: relative;
  background: #f5f7fa;
  border: 3px solid #061a2b;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(6, 26, 43, 0.16);
}

.project-device-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.project-device-speaker {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 28%;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(255,255,255,0.55);
  z-index: 2;
}

.project-device-tablet .project-device-frame {
  width: 150px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
}

.project-device-mobile .project-device-frame {
  width: 82px;
  aspect-ratio: 9 / 18;
  border-radius: 16px;
}

.project-admin-gallery {
  margin: 22px 0;
}

.project-admin-gallery strong {
  display: block;
  margin-bottom: 10px;
  color: #061a2b;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.project-admin-images {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.project-admin-images a {
  display: block;
  width: 110px;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dfe5eb;
  background: #eef3f7;
}

.project-admin-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-portfolio-section {
  background: #f5f7fa !important;
}

.admin-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.admin-note {
  background: #ffffff;
  border: 1px solid #dfe5eb;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 28px;
}

.project-editor-list {
  display: grid;
  gap: 24px;
}

.admin-project-card {
  background: #ffffff;
  border: 1px solid #dfe5eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(6, 26, 43, 0.06);
}

.admin-project-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-project-card-head h2 {
  margin: 0;
  font-size: 26px;
}

.admin-project-card-head button {
  background: #fff0f0;
  border: 1px solid #ffd0d0;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #061a2b;
}

.admin-form-grid input,
.admin-form-grid select,
.admin-form-grid textarea {
  width: 100%;
  border: 1px solid #dfe5eb;
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  font-weight: 600;
}

.admin-form-grid textarea {
  min-height: 96px;
  resize: vertical;
}

.admin-wide {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .project-responsive-strip,
  .admin-project-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-device-row {
    gap: 22px;
  }

  .project-device-tablet .project-device-frame {
    width: 125px;
  }

  .project-device-mobile .project-device-frame {
    width: 70px;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }
}


/* Portfolio device preview quality and orientation */
.project-device-frame {
  display: block;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.project-device-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(6, 26, 43, 0.22);
}

.project-device-tablet-landscape .project-device-frame {
  width: 190px !important;
  aspect-ratio: 4 / 3 !important;
  border-radius: 16px !important;
}

.project-device-tablet-portrait .project-device-frame {
  width: 145px !important;
  aspect-ratio: 3 / 4 !important;
  border-radius: 16px !important;
}

.project-device-mobile .project-device-frame {
  width: 125px !important;
  aspect-ratio: 9 / 18 !important;
  border-radius: 18px !important;
}

.project-device-frame img {
  image-rendering: auto;
}

@media (max-width: 760px) {
  .project-device-row {
    gap: 18px !important;
  }

  .project-device-tablet-landscape .project-device-frame {
    width: 160px !important;
  }

  .project-device-tablet-portrait .project-device-frame {
    width: 120px !important;
  }

  .project-device-mobile .project-device-frame {
    width: 105px !important;
  }
}


/* Portfolio simplified desktop-only previews */
.project-responsive-strip,
.project-device-row,
.project-device-preview {
  display: none !important;
}

.project-thumb {
  cursor: default !important;
  aspect-ratio: 16 / 9 !important;
}

.project-thumb img,
.project-desktop-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: top center !important;
}


/* Portfolio behind-the-scenes lightbox */
.project-admin-images button,
.project-lightbox-trigger {
  display: block;
  width: 110px;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dfe5eb;
  background: #eef3f7;
  padding: 0;
  cursor: pointer;
}

.project-lightbox-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.18s ease;
}

.project-lightbox-trigger:hover img {
  transform: scale(1.04);
}

body.lightbox-open {
  overflow: hidden;
}

.ya-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.ya-lightbox.is-open {
  display: block;
}

.ya-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 43, 0.86);
  backdrop-filter: blur(4px);
}

.ya-lightbox-panel {
  position: absolute;
  inset: 34px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.ya-lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  background: #ffffff;
  pointer-events: auto;
}

.ya-lightbox-caption {
  margin-top: 14px;
  color: #ffffff;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  pointer-events: auto;
}

.ya-lightbox-close,
.ya-lightbox-nav {
  position: absolute;
  border: 0;
  background: #ffffff;
  color: #061a2b;
  cursor: pointer;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  pointer-events: auto;
}

.ya-lightbox-close {
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 30px;
  line-height: 1;
}

.ya-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 62px;
  border-radius: 16px;
  font-size: 42px;
  line-height: 1;
}

.ya-lightbox-prev {
  left: 0;
}

.ya-lightbox-next {
  right: 0;
}

@media (max-width: 700px) {
  .ya-lightbox-panel {
    inset: 18px;
  }

  .ya-lightbox-image {
    max-width: 94vw;
    max-height: 76vh;
  }

  .ya-lightbox-nav {
    width: 42px;
    height: 52px;
    font-size: 34px;
  }
}




/* =========================================================
   FINAL UI + TYPOGRAPHY CONSISTENCY PASS
   Standard site font: Segoe UI / Inter / Arial / sans-serif
   ========================================================= */

:root {
  --ya-font: "Segoe UI", Inter, Arial, Helvetica, sans-serif;
  --ya-text: #061a2b;
  --ya-muted: #405166;
  --ya-soft-muted: #64748b;
  --ya-yellow: #f6c431;
  --ya-yellow-dark: #d59f00;
  --ya-green: #1fbe63;
  --ya-border: #dfe5eb;
  --ya-light: #f5f7fa;
}

/* One global font stack */
html,
body,
body *,
button,
input,
select,
textarea {
  font-family: var(--ya-font) !important;
  -webkit-font-smoothing: antialiased !important;
  text-rendering: geometricPrecision !important;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
.page-hero h1,
.section-heading h2,
.global-contact-cta h2,
.project-card h3,
.admin-card h2,
.admin-topbar h1 {
  font-family: var(--ya-font) !important;
  color: var(--ya-text) !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.06 !important;
}

/* Body text */
p,
li,
.project-card p,
.web-design-copy p,
.admin-card p,
.admin-help,
.footer-inner p {
  font-family: var(--ya-font) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.68 !important;
}

/* Eyebrows / small labels */
.eyebrow,
.project-location,
.project-admin-gallery strong,
.project-responsive-copy strong,
.project-device-preview > span,
.screenshot-label strong,
.screenshot-label span,
.footer-location {
  font-family: var(--ya-font) !important;
  letter-spacing: 0.01em !important;
}

/* Main navigation */
.site-header .main-nav a,
.site-header nav a,
.main-nav a,
header nav a {
  font-family: var(--ya-font) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

/* All button-like UI */
.button,
a.button,
button,
input[type="submit"],
.nav-button,
.main-nav .nav-button,
.contact-email-button,
.whatsapp-button,
.project-link,
.project-tag,
.project-responsive-badges span,
.admin-small-button,
.admin-topbar a,
.admin-login-card button,
.admin-danger,
.portal-links a,
.hero-actions .button {
  font-family: var(--ya-font) !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  line-height: 1.15 !important;
}

/* Standard pill/button shape */
.button,
a.button,
.contact-email-button,
.whatsapp-button,
.nav-button,
.main-nav .nav-button,
.hero-actions .button,
.portal-links a,
.admin-small-button,
.admin-topbar a,
.admin-login-card button {
  border-radius: 14px !important;
}

/* Header contact remains pill-shaped */
.main-nav .nav-button,
.nav-button {
  border-radius: 999px !important;
}

/* Contact CTA buttons */
.contact-email-button,
.whatsapp-button {
  font-size: 16px !important;
  font-weight: 700 !important;
  min-height: 54px !important;
  padding: 0 28px !important;
  box-shadow: 0 8px 18px rgba(6, 26, 43, 0.10) !important;
}

/* Portfolio cards */
.project-card-content h3 {
  font-size: 25px !important;
  margin-bottom: 8px !important;
}

.project-card-content p {
  color: var(--ya-muted) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}

.project-location {
  color: var(--ya-soft-muted) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.project-tag {
  font-size: 13px !important;
  font-weight: 700 !important;
  background: #eef3f7 !important;
  color: var(--ya-text) !important;
  padding: 7px 11px !important;
  border-radius: 999px !important;
}

.project-link {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--ya-text) !important;
  text-decoration: none !important;
}

.project-link:hover {
  color: #1498c7 !important;
}

/* Behind-the-scenes block */
.project-admin-gallery {
  margin: 20px 0 18px !important;
}

.project-admin-gallery strong {
  display: block !important;
  color: var(--ya-text) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 10px !important;
}

.project-admin-images {
  gap: 10px !important;
}

.project-lightbox-trigger,
.project-admin-images button {
  border-radius: 10px !important;
}

/* Forms / admin */
.admin-body,
.admin-body * {
  font-family: var(--ya-font) !important;
}

.admin-card h2,
.admin-login-card h1 {
  font-weight: 800 !important;
}

.admin-edit-form label,
.admin-login-card label,
.admin-table th {
  font-weight: 700 !important;
  letter-spacing: -0.005em !important;
}

.admin-edit-form input,
.admin-edit-form select,
.admin-edit-form textarea,
.admin-login-card input {
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

/* Footer */
.site-footer,
.site-footer * {
  font-family: var(--ya-font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.site-footer .footer-location {
  font-size: 13px !important;
  font-weight: 400 !important;
  opacity: 0.85 !important;
}

/* Annual / offer banners */
[class*="offer"],
[class*="offer"] *,
[class*="billing"],
[class*="billing"] *,
[class*="banner"],
[class*="banner"] * {
  font-family: var(--ya-font) !important;
}

/* Keep icon SVGs aligned */
.button-icon {
  flex-shrink: 0 !important;
}


/* Web Design page merged hero/introduction */
.web-design-main-intro {
  padding-top: 96px !important;
  padding-bottom: 88px !important;
  background:
    radial-gradient(circle at top right, rgba(246, 196, 49, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  border-bottom: 1px solid #dfe5eb;
}

.web-design-main-intro .section-heading {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.web-design-main-intro .section-heading h1 {
  margin: 0;
  color: #061a2b;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.web-design-main-intro .web-design-copy {
  max-width: 1080px;
}

.web-design-main-intro .web-design-copy .lead {
  margin-top: 32px;
  color: #23374d;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 500;
}

.web-design-main-intro .web-design-feature-grid {
  margin-top: 46px;
}

.web-design-main-intro .feature-card {
  border-radius: 22px;
}

@media (max-width: 760px) {
  .web-design-main-intro {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .web-design-main-intro .section-heading h1 {
    font-size: 42px;
  }

  .web-design-main-intro .web-design-copy .lead {
    font-size: 19px;
  }
}


/* =========================================================
   Web Design page intro balance fix
   Brings merged intro back in line with the rest of the site
   ========================================================= */

.web-design-main-intro {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
  background:
    radial-gradient(circle at top right, rgba(246, 196, 49, 0.10), transparent 32%),
    #ffffff !important;
  border-bottom: 1px solid #dfe5eb !important;
}

.web-design-main-intro .container {
  max-width: 1180px !important;
}

.web-design-main-intro .section-heading {
  max-width: 820px !important;
  margin: 0 !important;
  text-align: left !important;
}

.web-design-main-intro .eyebrow {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 18px !important;
}

.web-design-main-intro .section-heading h1 {
  max-width: 840px !important;
  font-size: clamp(40px, 4.6vw, 58px) !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  margin-bottom: 26px !important;
}

.web-design-main-intro .web-design-copy {
  max-width: 1040px !important;
  margin: 0 !important;
}

.web-design-main-intro .web-design-copy .lead {
  max-width: 780px !important;
  margin-top: 0 !important;
  margin-bottom: 24px !important;
  color: #23374d !important;
  font-size: 20px !important;
  line-height: 1.6 !important;
  font-weight: 500 !important;
}

.web-design-main-intro .web-design-copy p {
  max-width: 980px !important;
  font-size: 17px !important;
  line-height: 1.72 !important;
  color: #405166 !important;
  margin-bottom: 20px !important;
}

.web-design-main-intro .web-design-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-top: 38px !important;
  max-width: 920px !important;
}

.web-design-main-intro .feature-card {
  padding: 24px !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 26px rgba(6, 26, 43, 0.055) !important;
}

.web-design-main-intro .feature-card h3 {
  font-size: 20px !important;
  line-height: 1.18 !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.025em !important;
}

.web-design-main-intro .feature-card p {
  font-size: 15px !important;
  line-height: 1.62 !important;
  margin: 0 !important;
}

.web-design-main-intro .web-design-highlight {
  max-width: 920px !important;
  margin-top: 28px !important;
  padding: 20px 24px !important;
  border-radius: 18px !important;
  background: #061a2b !important;
}

.web-design-main-intro .web-design-highlight p {
  max-width: none !important;
  color: #ffffff !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  font-weight: 500 !important;
  margin: 0 !important;
}

@media (max-width: 800px) {
  .web-design-main-intro {
    padding-top: 54px !important;
    padding-bottom: 56px !important;
  }

  .web-design-main-intro .section-heading h1 {
    font-size: 38px !important;
  }

  .web-design-main-intro .web-design-copy .lead {
    font-size: 18px !important;
  }

  .web-design-main-intro .web-design-feature-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   Web Design page section consistency
   ========================================================= */

body.web-design-page main,
body main {
  background: #ffffff;
}

.web-design-main-intro,
.web-design-intro,
.web-design-page .section,
.web-design-page section.section {
  border-bottom: 1px solid #dfe5eb;
}

.web-design-main-intro {
  background:
    radial-gradient(circle at top right, rgba(246, 196, 49, 0.08), transparent 34%),
    #ffffff !important;
}

.web-design-page .section,
.web-design-page section.section {
  background: #ffffff !important;
}

.web-design-page .portfolio-section {
  background: #f5f7fa !important;
}

.web-design-page .cta,
.web-design-page section.cta,
.web-design-page .cta-before-footer {
  background: #ffffff !important;
  border-bottom: 0 !important;
}

/* Match spacing rhythm across web design page */
.web-design-page .section,
.web-design-page section.section {
  padding-top: 76px !important;
  padding-bottom: 76px !important;
}

.web-design-page .web-design-main-intro {
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.web-design-page .section-heading {
  margin-bottom: 34px !important;
}

/* Keep portfolio heading aligned with other page sections */
.web-design-page .portfolio-section .section-heading {
  text-align: left !important;
  max-width: 820px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Portfolio API error box polish */
.portfolio-error {
  background: #ffffff !important;
  border: 1px solid #dfe5eb !important;
  border-radius: 14px !important;
  padding: 18px 20px !important;
  color: #405166 !important;
  font-family: "Segoe UI", Inter, Arial, Helvetica, sans-serif !important;
}

/* Avoid the page looking like separate unmatched strips */
.web-design-page .section + .section {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  .web-design-page .section,
  .web-design-page section.section,
  .web-design-page .web-design-main-intro {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
}




/* =========================================================
   SITE-WIDE PAGE CONSISTENCY PASS
   Applies common rhythm across Home, Hosting, Web Design and IT Support.
   ========================================================= */

:root {
  --ya-page-max: 1180px;
  --ya-section-y: 82px;
  --ya-section-y-tight: 70px;
  --ya-hero-y: 84px;
  --ya-border-soft: #dfe5eb;
  --ya-page-white: #ffffff;
  --ya-page-soft: #f5f7fa;
  --ya-page-cream: rgba(246, 196, 49, 0.10);
  --ya-navy: #061a2b;
  --ya-muted: #405166;
}

/* Consistent full-width page canvas */
.home-page main,
.hosting-page main,
.web-design-page main,
.it-support-page main {
  background: #ffffff !important;
}

/* Consistent content container */
.home-page .container,
.hosting-page .container,
.web-design-page .container,
.it-support-page .container {
  max-width: var(--ya-page-max) !important;
}

/* Consistent hero treatment */
.home-page .page-hero,
.hosting-page .page-hero,
.web-design-page .page-hero,
.it-support-page .page-hero,
.home-page .hero,
.hosting-page .hero,
.web-design-page .hero,
.it-support-page .hero,
.web-design-main-intro {
  background:
    radial-gradient(circle at 74% 12%, rgba(246, 196, 49, 0.16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  border-bottom: 1px solid var(--ya-border-soft) !important;
}

/* Ensure Web Design merged hero matches the others */
.web-design-main-intro {
  padding-top: var(--ya-hero-y) !important;
  padding-bottom: var(--ya-hero-y) !important;
}

/* Consistent section defaults */
.home-page section.section,
.hosting-page section.section,
.web-design-page section.section,
.it-support-page section.section {
  background: #ffffff !important;
  padding-top: var(--ya-section-y) !important;
  padding-bottom: var(--ya-section-y) !important;
  border-bottom: 1px solid var(--ya-border-soft) !important;
}

/* Soft alternating sections: same colour across site */
.home-page section.section-soft,
.hosting-page section.section-soft,
.web-design-page section.section-soft,
.it-support-page section.section-soft,
.home-page .portfolio-section,
.hosting-page .portfolio-section,
.web-design-page .portfolio-section,
.it-support-page .portfolio-section {
  background: var(--ya-page-soft) !important;
}

/* Dark feature bands: consistent dark/navy treatment */
.home-page section.dark-section,
.hosting-page section.dark-section,
.web-design-page section.dark-section,
.it-support-page section.dark-section,
.home-page .platform-section,
.hosting-page .platform-section,
.web-design-page .platform-section,
.it-support-page .platform-section,
.home-page .feature-band,
.hosting-page .feature-band,
.web-design-page .feature-band,
.it-support-page .feature-band {
  background:
    linear-gradient(135deg, #061a2b 0%, #0d3556 100%) !important;
  color: #ffffff !important;
  border-bottom: 0 !important;
}

/* Common section heading rhythm */
.home-page .section-heading,
.hosting-page .section-heading,
.web-design-page .section-heading,
.it-support-page .section-heading {
  margin-bottom: 36px !important;
  max-width: 860px !important;
}

.home-page .section-heading h2,
.hosting-page .section-heading h2,
.web-design-page .section-heading h2,
.it-support-page .section-heading h2 {
  font-size: clamp(34px, 4vw, 48px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  margin-bottom: 16px !important;
}

.home-page .section-heading p,
.hosting-page .section-heading p,
.web-design-page .section-heading p,
.it-support-page .section-heading p {
  font-size: 17px !important;
  line-height: 1.68 !important;
  color: var(--ya-muted) !important;
  max-width: 820px !important;
}

/* Common hero heading scale */
.home-page .page-hero h1,
.hosting-page .page-hero h1,
.web-design-page .page-hero h1,
.it-support-page .page-hero h1,
.home-page .hero h1,
.hosting-page .hero h1,
.web-design-page .hero h1,
.it-support-page .hero h1,
.web-design-main-intro .section-heading h1 {
  font-size: clamp(42px, 5.1vw, 64px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.045em !important;
  max-width: 850px !important;
}

.home-page .page-hero p,
.hosting-page .page-hero p,
.web-design-page .page-hero p,
.it-support-page .page-hero p,
.home-page .hero p,
.hosting-page .hero p,
.web-design-page .hero p,
.it-support-page .hero p {
  font-size: 18px !important;
  line-height: 1.68 !important;
  max-width: 780px !important;
}

/* Web Design main intro refinements to match other pages */
.web-design-main-intro .section-heading {
  max-width: 850px !important;
  margin: 0 0 28px !important;
}

.web-design-main-intro .web-design-copy {
  max-width: 1040px !important;
  margin: 0 !important;
}

.web-design-main-intro .web-design-copy .lead {
  max-width: 760px !important;
  margin: 0 0 22px !important;
  font-size: 18px !important;
  line-height: 1.68 !important;
  color: #23374d !important;
}

.web-design-main-intro .web-design-copy p {
  font-size: 16px !important;
  line-height: 1.72 !important;
  max-width: 960px !important;
  margin-bottom: 18px !important;
}

/* Web Design card rhythm made consistent with other cards */
.web-design-main-intro .web-design-feature-grid {
  max-width: 920px !important;
  gap: 22px !important;
  margin-top: 36px !important;
}

.web-design-main-intro .feature-card,
.home-page .feature-card,
.hosting-page .feature-card,
.it-support-page .feature-card,
.web-design-page .feature-card {
  border: 1px solid var(--ya-border-soft) !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 30px rgba(6, 26, 43, 0.06) !important;
}

.web-design-main-intro .feature-card {
  padding: 24px !important;
}

.web-design-main-intro .feature-card h3 {
  font-size: 20px !important;
  line-height: 1.2 !important;
  margin-bottom: 10px !important;
}

.web-design-main-intro .feature-card p {
  font-size: 15px !important;
  line-height: 1.62 !important;
}

/* Highlight bar consistency */
.web-design-main-intro .web-design-highlight {
  max-width: 920px !important;
  margin-top: 28px !important;
  padding: 20px 24px !important;
  border-radius: 18px !important;
  background: #061a2b !important;
}

.web-design-main-intro .web-design-highlight p {
  color: #ffffff !important;
  font-size: 15px !important;
  line-height: 1.62 !important;
  margin: 0 !important;
}

/* Portfolio section should feel like a native page section */
.web-design-page .portfolio-section {
  background: var(--ya-page-soft) !important;
  border-top: 0 !important;
  border-bottom: 1px solid var(--ya-border-soft) !important;
}

.web-design-page .portfolio-section .section-heading {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.web-design-page .project-grid {
  margin-top: 8px !important;
}

/* CTA section consistent before footer */
.home-page .global-contact-cta,
.hosting-page .global-contact-cta,
.web-design-page .global-contact-cta,
.it-support-page .global-contact-cta,
.home-page .cta,
.hosting-page .cta,
.web-design-page .cta,
.it-support-page .cta {
  background: #ffffff !important;
  border-bottom: 0 !important;
  padding-top: 76px !important;
  padding-bottom: 76px !important;
}

/* Footer divider consistency */
.site-footer {
  border-top: 0 !important;
}

/* Remove mismatched accidental yellow/grey blocks */
.web-design-page section:not(.portfolio-section):not(.dark-section):not(.platform-section):not(.feature-band) {
  background-color: #ffffff !important;
}

/* Page-to-page divider consistency */
.home-page section + section,
.hosting-page section + section,
.web-design-page section + section,
.it-support-page section + section {
  margin-top: 0 !important;
}

/* Portfolio API error message */
.portfolio-error {
  background: #ffffff !important;
  border: 1px solid var(--ya-border-soft) !important;
  border-radius: 16px !important;
  padding: 18px 20px !important;
  color: var(--ya-muted) !important;
  max-width: 520px !important;
}

@media (max-width: 800px) {
  :root {
    --ya-section-y: 58px;
    --ya-hero-y: 60px;
  }

  .home-page .page-hero h1,
  .hosting-page .page-hero h1,
  .web-design-page .page-hero h1,
  .it-support-page .page-hero h1,
  .home-page .hero h1,
  .hosting-page .hero h1,
  .web-design-page .hero h1,
  .it-support-page .hero h1,
  .web-design-main-intro .section-heading h1 {
    font-size: 40px !important;
  }

  .web-design-main-intro .web-design-feature-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   Targeted wash-out and section contrast repair
   Restores intended contrast without changing layout spacing.
   ========================================================= */
.home-page .section.dark,
.it-support-page .section.dark,
.hosting-page .section.dark,
.web-design-page .section.dark,
.smart-home-band,
.hosting-features-section {
  background: linear-gradient(135deg, #061a2b 0%, #0d3556 100%) !important;
  color: #ffffff !important;
  border-bottom: 0 !important;
}

.home-page .section.dark h1,
.home-page .section.dark h2,
.home-page .section.dark h3,
.it-support-page .section.dark h1,
.it-support-page .section.dark h2,
.it-support-page .section.dark h3,
.hosting-page .section.dark h1,
.hosting-page .section.dark h2,
.hosting-page .section.dark h3,
.web-design-page .section.dark h1,
.web-design-page .section.dark h2,
.web-design-page .section.dark h3,
.smart-home-band h1,
.smart-home-band h2,
.smart-home-band h3,
.hosting-features-section h1,
.hosting-features-section h2,
.hosting-features-section h3 {
  color: #ffffff !important;
}

.home-page .section.dark p,
.home-page .section.dark li,
.it-support-page .section.dark p,
.it-support-page .section.dark li,
.hosting-page .section.dark p,
.hosting-page .section.dark li,
.web-design-page .section.dark p,
.web-design-page .section.dark li,
.smart-home-band p,
.smart-home-band li,
.hosting-features-section p,
.hosting-features-section li {
  color: #d8e3ed !important;
}

.home-page .section.dark .benefit-list div,
.it-support-page .section.dark .benefit-list div,
.hosting-page .section.dark .benefit-list div,
.web-design-page .section.dark .benefit-list div,
.smart-home-band .smart-panel,
.smart-home-band .smart-panel div,
.hosting-features-section .feature-strip-item {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  color: #ffffff !important;
}

.home-page section:not(.dark):not(.smart-home-band):not(.hosting-features-section) .benefit-list div,
.it-support-page section:not(.dark):not(.smart-home-band):not(.hosting-features-section) .benefit-list div,
.hosting-page section:not(.dark):not(.smart-home-band):not(.hosting-features-section) .benefit-list div,
.web-design-page section:not(.dark):not(.smart-home-band):not(.hosting-features-section) .benefit-list div {
  background: #f5f7fa !important;
  border: 1px solid #dfe5eb !important;
  color: #061a2b !important;
}

.home-page section:not(.dark):not(.smart-home-band):not(.hosting-features-section) .benefit-list div *,
.it-support-page section:not(.dark):not(.smart-home-band):not(.hosting-features-section) .benefit-list div *,
.hosting-page section:not(.dark):not(.smart-home-band):not(.hosting-features-section) .benefit-list div *,
.web-design-page section:not(.dark):not(.smart-home-band):not(.hosting-features-section) .benefit-list div * {
  color: inherit !important;
}

/* =========================================================
   Index page contrast repair only
   Keeps existing layout/spacing; fixes washed-out sections.
   ========================================================= */
.home-page .hero .trust-row .trust-pill {
  background: #ffffff !important;
  border: 1px solid #dfe5eb !important;
  color: #405166 !important;
  box-shadow: 0 12px 30px rgba(6,26,43,0.06) !important;
}

.home-page .hero .trust-row .trust-pill strong {
  color: #061a2b !important;
}

.home-page .smart-home-band {
  background: linear-gradient(135deg, #061a2b 0%, #0d3556 100%) !important;
  color: #ffffff !important;
}

.home-page .smart-home-band .eyebrow,
.home-page .smart-home-band h2,
.home-page .smart-home-band h3 {
  color: #ffffff !important;
}

.home-page .smart-home-band p,
.home-page .smart-home-band li {
  color: #d8e3ed !important;
}

.home-page .smart-home-band .smart-panel,
.home-page .smart-home-band .smart-panel div {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.14) !important;
  color: #ffffff !important;
}


/* Yellow Arrow service-page standardisation patch - 2026-05-21 */
:root {
  --ya-navy: #061a2b;
  --ya-text: #13283d;
  --ya-muted: #405166;
  --ya-yellow: #f6c431;
  --ya-yellow-dark: #d59f00;
  --ya-border: #dfe7ef;
  --ya-soft: #f8fafc;
}

.hosting-page .page-hero,
.web-design-page .page-hero,
.it-support-page .page-hero {
  background:
    radial-gradient(circle at 74% 12%, rgba(246,196,49,0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  color: var(--ya-text) !important;
  border-bottom: 1px solid var(--ya-border) !important;
  padding: 86px 0 !important;
}

.hosting-page .page-hero h1,
.web-design-page .page-hero h1,
.it-support-page .page-hero h1 {
  color: var(--ya-navy) !important;
  font-size: clamp(42px, 5.2vw, 72px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
  font-weight: 900 !important;
  max-width: 900px !important;
}

.hosting-page .page-hero p,
.web-design-page .page-hero p,
.it-support-page .page-hero p {
  color: var(--ya-muted) !important;
  font-size: 19px !important;
  line-height: 1.65 !important;
  max-width: 850px !important;
}

.hosting-page .page-hero .eyebrow,
.web-design-page .page-hero .eyebrow,
.it-support-page .page-hero .eyebrow,
.hosting-page .section-heading .eyebrow,
.web-design-page .section-heading .eyebrow,
.it-support-page .section-heading .eyebrow {
  color: var(--ya-muted) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.hosting-page .section,
.web-design-page .section,
.it-support-page .section {
  background: #ffffff !important;
  border-bottom: 1px solid var(--ya-border) !important;
}

.web-design-page .web-design-options {
  padding-top: 70px !important;
}

.web-design-page .web-design-feature-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 26px !important;
  margin-top: 0 !important;
}

.web-design-page .feature-card,
.hosting-page .price-card,
.it-support-page .service-card {
  background: #ffffff !important;
  border: 1px solid var(--ya-border) !important;
  box-shadow: 0 18px 45px rgba(6,26,43,0.06) !important;
}

.web-design-page .web-design-highlight {
  display: none !important;
}

@media (max-width: 980px) {
  .hosting-page .page-hero,
  .web-design-page .page-hero,
  .it-support-page .page-hero {
    padding: 64px 0 !important;
  }

  .hosting-page .page-hero h1,
  .web-design-page .page-hero h1,
  .it-support-page .page-hero h1 {
    font-size: clamp(38px, 9vw, 54px) !important;
  }

  .web-design-page .web-design-feature-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================================
   Shropshire Smart Home imagery patch - page-specific only
   ========================================================= */
.smart-home-page .page-hero {
  background:
    radial-gradient(circle at 72% 16%, rgba(246,196,49,0.22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  border-bottom: 1px solid var(--ya-border, #dfe7ef) !important;
  padding: 76px 0 !important;
}

.smart-home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 54px;
  align-items: center;
}

.smart-home-page .page-hero h1 {
  color: var(--ya-navy, #061a2b) !important;
  font-size: clamp(42px, 5.2vw, 68px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
  font-weight: 900 !important;
  max-width: 900px !important;
}

.smart-home-page .page-hero .eyebrow,
.smart-home-page .section-heading .eyebrow {
  color: var(--ya-muted, #405166) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.smart-home-page .page-hero p {
  color: var(--ya-muted, #405166) !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
  max-width: 760px !important;
}

.smart-home-page .page-hero p.lead {
  color: #13283d !important;
  font-weight: 700 !important;
}

.smart-home-hero-image {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--ya-border, #dfe7ef);
  box-shadow: 0 28px 70px rgba(6,26,43,0.14);
  background: #ffffff;
}

.smart-home-hero-image img,
.smart-home-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smart-home-hero-image img {
  min-height: 420px;
}

.smart-home-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.smart-home-image-card {
  background: #ffffff;
  border: 1px solid var(--ya-border, #dfe7ef);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(6,26,43,0.06);
}

.smart-home-image-card img {
  aspect-ratio: 16 / 9;
}

.smart-home-image-card div {
  padding: 24px;
}

.smart-home-image-card h3 {
  color: var(--ya-navy, #061a2b);
  font-size: 23px;
  line-height: 1.15;
  margin: 0 0 10px;
}

.smart-home-image-card p {
  color: var(--ya-muted, #405166);
  line-height: 1.62;
  margin: 0;
}

.smart-home-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
}

.smart-home-brand-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.smart-home-brand-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 54px;
  padding: 10px 20px;
  border-radius: 16px;
  background: #f5f7fa;
  border: 1px solid var(--ya-border, #dfe7ef);
  color: var(--ya-navy, #061a2b);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.smart-home-local-card {
  background:
    radial-gradient(circle at 92% 0%, rgba(246,196,49,0.18), transparent 38%),
    #ffffff !important;
}

@media (max-width: 980px) {
  .smart-home-page .page-hero {
    padding: 58px 0 !important;
  }

  .smart-home-hero-grid,
  .smart-home-image-grid,
  .smart-home-trust-grid {
    grid-template-columns: 1fr;
  }

  .smart-home-hero-image img {
    min-height: 280px;
  }
}
