:root{
  --ink: #0f172a;
  --ink-muted: #64748b;

  --navy-900: #0b1c2d;
  --navy-800: #112a44;
  --navy-700: #1b3a57;

  --white: #ffffff;
  --bg: #ffffff;
  --alt: #f8fafc;

  --line: rgba(15,23,42,.15);
  --overlay: rgba(255,255,255,.92);

  --radius: 14px;
  --shadow: 0 20px 60px rgba(0,0,0,.18);

  --wrap: 1040px;
}

html {
  scroll-behavior: smooth;
}

*{ box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
}

.wrap{
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header{
  background: var(--navy-800);
}
.header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -.04em;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.brand:hover{
  text-decoration: none;
  color: #ffffff;
}

/* Nav */
.nav{
  display: flex;
  gap: 26px;
}
.nav a{
  color: rgb(255, 255, 255);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
}
.nav a.is-active,
.nav a:hover{
  color: #ffffff;
  text-decoration: none;
}

/* Gold CTA in navigation */
.nav-cta{
  background: linear-gradient(
    180deg,
    #d6b45c 0%,
    #e6c978 100%
  );
  color: #0b1c2d;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(11,28,45,.25);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  transition:
    transform .16s ease,
    box-shadow .16s ease,
    background .16s ease;
}
.nav{
  align-items: center;
}

/* Hover state */
.nav-cta:hover{
  background: linear-gradient(
    180deg,
    #edd38a 0%,
    #e2b030 100%
  );
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0,0,0,.32);
  text-decoration: none;
}
/* focus state */
.nav a:focus,
.hero-btn:focus,
.btn-gold:focus,
.nav-cta:focus {
  outline: 3px solid rgba(230, 201, 120, 0.5);
  outline-offset: 2px;
}

/* Hero */
.hero{
  position: relative;
  min-height: 520px;
  background: url("hero.png") center / cover no-repeat;
}
.hero__scrim{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      360deg,
      rgba(11,28,45,.55) 0%,
      rgba(11,28,45,.35) 35%,
      rgba(11,28,45,.15) 70%,
      rgba(11,28,45,.25) 100%
    );
}

.hero__overlay{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.hero-card{
  background: var(--overlay);
  padding: 48px 44px;
  max-width: 520px;
  text-align: center;
  box-shadow: var(--shadow);
  border-radius: 14px;
}
.hero-card__title{
  font-family: "Inter", system-ui, sans-serif;  
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 550;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0 0 10px;
}

.hero-card__sub{
  font-size: 16px;
  line-height: 1.6;
  color: rgba(15,23,42,.7);
}

.hero-card::after{
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 18px auto 0;
  background: rgba(15,23,42,.18);
}
/* Internal page header (service pages) */
.page-hero{
  background: var(--navy-900);
  color: #ffffff;
  padding: 64px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.page-hero__inner{
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.page-hero__kicker{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

.page-hero__title{
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.page-hero__lead{
  margin: 0 auto;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
}

/* Services v2 page layout */
.services-v2{
  background: #ffffff;
  padding: 64px 0 80px;
}

.services-v2__inner{
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

/* Module panel */
.module{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 34px;
  border-radius: 20px;

  background:
    radial-gradient(
      1200px 320px at 0% 0%,
      rgba(255,255,255,.08),
      rgba(255,255,255,0) 55%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,.06),
      rgba(255,255,255,.02)
    ),
    linear-gradient(
      180deg,
      #0b1c2d,
      #112a44
    );

  border: 1px solid rgba(15,23,42,.18);
  box-shadow: 0 22px 60px rgba(0,0,0,.30);
}

/* Left column */
.module__icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;

  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.14);
  color: #ffffff;
  margin-bottom: 14px;
}

.module-icon{
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module__title{
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.module__tag{
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

/* Right column */
.module__right p{
  margin: 0 0 12px;
  color: rgba(255,255,255,.88);
  line-height: 1.8;
}

.module__right strong{
  color: #ffffff;
  font-weight: 600;
}

.module__list{
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,.86);
}

.module__list li{
  margin: 8px 0;
}

.services-cta-section {
  padding: 80px 0 20px;
  display: flex;
  justify-content: center;
}

.services-cta-card {
  background: 
    radial-gradient(
      1200px 320px at 50% 0%,
      rgba(230, 201, 120, 0.15),
      rgba(230, 201, 120, 0) 60%
    ),
    linear-gradient(180deg, #0b1c2d, #112a44);
  
  border: 1px solid rgba(230, 201, 120, 0.25);
  border-radius: 24px;
  padding: 48px 56px;
  text-align: center;
  max-width: 680px;
  box-shadow: 
    0 32px 80px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.services-cta__title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.services-cta__text {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
}

.hero-btn--large {
  padding: 15px 32px;
  font-size: 15px;
}

@media (max-width: 720px) {
  .services-cta-card {
    padding: 36px 28px;
  }
  
  .services-cta__title {
    font-size: 26px;
  }
}

/* Responsive */
@media (max-width: 920px){
  .module{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
  }
  .module__title{
    font-size: 26px;
  }
}

/* Content wrapper for inner pages */
.page{
  padding: 64px 0;
}

.page__inner{
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
  max-width: 900px;
}

/* Gold CTA button */
.hero-btn{
  background: linear-gradient(
    180deg,
    #e6c978 0%,
    #d6b45c 100%
  );
  color: #0b1c2d; /* deep navy text for contrast */
  padding: 12px 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(11,28,45,.25);
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.hero-btn:hover{
  background: linear-gradient(
    180deg,
    #edd38a 0%,
    #e2b030 100%
  );
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(0,0,0,.34);
  text-decoration: none;
}
/* Gold CTA button (services + hero reuse) */
.btn-gold{
  display: inline-block;
  padding: 13px 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, #e6c978, #d9b85f);
  color: var(--navy-900);
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-gold:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0,0,0,.35);
  background: linear-gradient(180deg, #f0d88e, #d9b85f);
}

/* Positioning inside service modules */
.module__cta{
  margin-top: 18px;
}

/* Intro */
.intro{
  background: var(--navy-900);
  color: #ffffff;
  text-align: center;
  padding: 56px 16px;
}
.intro__inner{
  max-width: 800px;
  margin: 0 auto;
}
.intro__heading {
  font-size: 32px; /* up from 26px */
  font-weight: 600; /* up from 500 */
  letter-spacing: -0.01em;
}
.intro-cta{
  padding-top: 12px;
  display: flex;
  justify-content: center;
}

/* Sections */
.section{
  padding: 72px 0;
}
.section--alt{
  background: var(--alt);
}
.section__header{
  text-align: center;
  margin-bottom: 32px;
}
.section__title {
  font-size: 36px; /* explicit size */
  font-weight: 700; /* bolder */
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
/* Dark section variant (used for Process) */
.section--dark{
  background: var(--navy-900);
  color: #ffffff;
}
/* Reset text colours inside white cards on dark sections */
.section--dark .step{
  background: #ffffff;
  color: var(--ink);
}

.section--dark .step__title{
  color: var(--ink);
}

.section--dark .step__text{
  color: var(--ink-muted);
}

/* Services */
.services{
  background: #f1f5f9; /* soft neutral, works with navy elsewhere */
}

/* Services grid */
.services-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

/* Default state: dark blue with subtle gradient */
.svc-card{
  position: relative;
  border-radius: 24px;
  padding: 34px 34px 30px;

  background:
    radial-gradient(
      1200px 260px at 0% 0%,
      rgba(255,255,255,.08),
      rgba(255,255,255,0) 55%
    ),
    linear-gradient(
      180deg,
      #132f4a 0%,
      #0f263d 100%
    );

  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 22px 60px rgba(0,0,0,.28);

  color: #ffffff;
  transition:
    background .22s ease,
    color .22s ease,
    transform .18s ease,
    box-shadow .18s ease,
    border-color .22s ease;
}

/* Hover: white card, dark blue text */
.svc-card:hover {
  background: #ffffff;
  color: var(--navy-900);
  border-color: rgba(15,23,42,.18);
  transform: translateY(-3px) scale(1.01); /* added scale */
  box-shadow: 0 28px 80px rgba(0,0,0,.28); /* deeper shadow */
}

/* Icon badge - updated for Material Icons */
.svc-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 22px;
  border: none;
  transition: transform .22s ease, box-shadow .22s ease;
}

/* Color variants for icons */
.svc-card__icon--blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.svc-card__icon--green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.svc-card__icon--purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

.svc-card__icon--orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

/* Enhanced hover effect for icons */
.svc-card:hover .svc-card__icon {
  transform: translateY(-2px) scale(1.12);
}

/* Title */
.svc-card__title{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .01em;
  color: inherit;
  position: relative;
  display: inline-block;
  transition: transform .22s ease .02s;
}

/* Animated underline (starts hidden) */
.svc-card__title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 2px;
  width: 100%;
  background: currentColor;
  opacity: .0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .26s ease .08s, opacity .18s ease .08s;
}

/* On hover, underline draws in */
.svc-card:hover .svc-card__title::after{
  opacity: .35;
  transform: scaleX(1);
}

/* Optional: tiny lift for the title on hover */
.svc-card:hover .svc-card__title{
  transform: translateY(-1px);
}

/* Body text */
.svc-card__text{
  margin: 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  transition: color .22s ease;
}

/* Body text becomes dark on hover */
.svc-card:hover .svc-card__text{
  color: rgba(15,23,42,.85);
}

/* Responsive */
@media (max-width: 900px){
  .services-grid{
    grid-template-columns: 1fr;
  }
  .svc-card{
    padding: 28px 24px 24px;
    border-radius: 20px;
  }
}

/* Process */
.steps{
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  display: grid;
  gap: 14px;
}
.step{
  display: flex;
  gap: 16px;
  align-items: center; /* centres the number vertically */
  background: #ffffff;
  border-radius: var(--radius);
  padding: 18px;
  transition: transform .16s ease, box-shadow .16s ease;
}
.step:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
}
.step__num{
  width: 38px;
  height: 38px;
  background: linear-gradient(180deg, #0b1c2d 0%, #112a44 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  border: 2px solid rgba(255, 255, 255, 0.219);  color: #ffffff;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-weight: 600;
}
.step__title{
  margin: 0 0 4px;
}

.step__text{
  margin: 0;
}
/* Accent underline (designed, not default) */
.accent-underline{
  position: relative;
  display: inline-block;
  z-index: 1;
}

.accent-underline::after{
  content: "";
  position: absolute;
  left: -2%;
  bottom: .06em;
  width: 104%;
  height: .20em;

  background: linear-gradient(
    180deg,
    rgba(228, 194, 102, 0.65),
    rgba(230,201,120,.45)
  );

  z-index: -1;
  border-radius: 4px;
}

/* Form */
.form{
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  gap: 14px;

  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(11,28,45,.35); /* dark blue outline */
  background: #ffffff;
}
input, textarea{
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.btn{
  background: var(--navy-900);
  color: #ffffff;
  padding: 12px 18px;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}
.btn:hover{
  background: var(--navy-800);
}
.form{
  box-shadow:
    0 32px 72px rgba(0,0,0,.18),
    0 6px 18px rgba(0,0,0,.10);
}
.form:focus-within{
  border-color: rgba(11,28,45,.6);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form__success {
  padding: 16px;
  background: #10b981;
  color: white;
  border-radius: 10px;
  text-align: center;
  margin-top: 12px;
}

/* Footer */
.footer{
  background: var(--navy-900);
  color: rgba(255,255,255,.85);
  padding: 22px 0;
  text-align: center;
}


/* Hamburger menu button (hidden on desktop) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hamburger animation when open */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive */
@media (max-width: 720px) {
  .menu-toggle {
    display: block;
  }
  
@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-900);
    flex-direction: column;

    /* key changes */
    gap: 12px;              /* controls vertical spacing */
    align-items: center;    /* keep the pills centred */
    justify-content: flex-start;

    padding: 80px 24px 24px;
    box-shadow: -4px 0 12px rgba(0,0,0,.3);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav a {
    /* key changes */
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 200px;       /* keeps the buttons tidy */

    margin: 0;              /* remove margin-bottom spacing */
    padding: 14px 16px;
    border-radius: 10px;

    background: rgba(255,255,255,0.06);
    transition: background 0.2s ease;
  }

  .nav a:hover,
  .nav a.is-active {
    background: rgba(255,255,255,0.12);
  }

  .nav a.nav-cta {
    margin-top: 6px;        /* smaller, controlled separation */
  }
}

  /* Gold CTA in mobile menu */
  .nav a.nav-cta{
    background: linear-gradient(
      180deg,
      #e6c978 0%,
      #d6b45c 100%
    );
    color: var(--navy-900);
    border: 1px solid rgba(11,28,45,.25);
    box-shadow: 0 10px 28px rgba(0,0,0,.25);
  }

  .nav a.nav-cta:hover{
    background: linear-gradient(
      180deg,
      #edd38a 0%,
      #e2b030 100%
    );
    color: var(--navy-900);
  }
}
  
  /* Overlay when menu is open */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }
  
  .nav-overlay.active {
    display: block;
  }

@media (max-width: 920px) {
  .module {
    grid-template-columns: 1fr;
    gap: 20px; /* up from 18px */
    padding: 32px; /* up from 26px */
  }
  
  .module__left {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  
  .module__icon {
    margin-bottom: 0; /* remove bottom margin when horizontal */
  }
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px; /* up from default */
  }
}

/* Add intermediate breakpoint for better tablet experience */
@media (min-width: 601px) and (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Case study add-on styles for SME Software Help */

.case-study h2{
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 26px;
  letter-spacing: -0.01em;
}

.case-study h3{
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.case-study p{
  margin: 0 0 14px;
  color: rgba(15,23,42,.88);
}

.case-study ul{
  margin: 0 0 14px;
  padding-left: 18px;
}

.case-study li{
  margin: 8px 0;
}

.case-study__note{
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-muted);
}

/* Meta block */
.case-study__meta{
  background: var(--alt);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  padding: 18px 18px 10px;
  margin-bottom: 22px;
}

.meta-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin: 0;
}

.meta-item{
  margin: 0;
}

.meta-item dt{
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(15,23,42,.65);
  margin: 0 0 6px;
}

.meta-item dd{
  margin: 0;
  font-weight: 500;
  color: rgba(15,23,42,.92);
}

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

/* Cards (max three in the article) */
.cs-card{
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 20px;
  padding: 22px 22px 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  margin: 22px 0 22px;
}

.cs-card--alt{
  background: var(--alt);
}

.cs-card--cta{
  background:
    radial-gradient(
      1200px 320px at 50% 0%,
      rgba(230, 201, 120, 0.12),
      rgba(230, 201, 120, 0) 60%
    ),
    #ffffff;
  border-color: rgba(230, 201, 120, 0.40);
}

.cs-card__title{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cs-card__lead{
  margin: 0 0 12px;
  color: rgba(15,23,42,.80);
}

.cs-card__actions{
  margin: 14px 0 0;
}

/* MOBILE FIX - Better mobile responsiveness for services page */
@media (max-width: 720px) {
  /* Fix hero title and accent underline breaking */
  .page-hero__title {
    font-size: 26px !important;
    line-height: 1.35;
  }
  
  /* Hide the decorative underline on mobile to prevent breaking */
  .accent-underline::after {
    display: none;
  }
  
  .page-hero__lead {
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Better mobile spacing for service modules */
  .module {
    padding: 22px 18px !important;
    gap: 16px !important;
  }
  
  .module__title {
    font-size: 22px !important;
  }
  
  .module__tag {
    font-size: 14px;
  }
  
  .module__right p {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .module__list {
    font-size: 14px;
  }
  
  /* Icon adjustments */
  .svc-card__icon {
    width: 48px !important;
    height: 48px !important;
  }
  
  .svc-card__icon .material-symbols-outlined {
    font-size: 26px !important;
  }
  
  /* CTA card on services page */
  .services-cta-card {
    padding: 32px 24px !important;
  }
  
  .services-cta__title {
    font-size: 24px !important;
  }
  
  .services-cta__text {
    font-size: 15px;
  }
}

/* Extra small screens (iPhone SE, etc) */
@media (max-width: 375px) {
  .page-hero__title {
    font-size: 24px !important;
  }
  
  .brand {
    font-size: 28px !important;
  }
  
  .module {
    padding: 18px 16px !important;
  }
}
