
  :root {
    --adept-blue: #03a4ed;
    --adept-red: #fe3f40;
    --adept-dark: #111827;
    --adept-muted: #6b7280;
    --adept-soft: #f5faff;
    --adept-radius: 26px;
    --adept-shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
  }

  .web-service-section {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background:
      radial-gradient(circle at 12% 8%, rgba(3, 164, 237, 0.12), transparent 28%),
      radial-gradient(circle at 90% 14%, rgba(254, 63, 64, 0.1), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  }

  .web-service-section-alt {
    background:
      radial-gradient(circle at 16% 12%, rgba(254, 63, 64, 0.1), transparent 28%),
      radial-gradient(circle at 86% 18%, rgba(3, 164, 237, 0.12), transparent 28%),
      linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  }

  .web-service-hero {
    max-width: 890px;
    margin: 0 auto 26px;
    text-align: center;
  }

  .web-service-eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 15px;
    border-radius: 999px;
    color: var(--adept-blue);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    background: rgba(3, 164, 237, 0.1);
    border: 1px solid rgba(3, 164, 237, 0.14);
  }

  .web-service-hero h2 {
    margin: 0;
    color: var(--adept-dark);
    font-size: clamp(2.25rem, 5vw, 4.1rem);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -1.8px;
  }

  .web-service-hero h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--adept-blue), var(--adept-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .web-service-hero p {
    margin: 20px auto 0;
    max-width: 760px;
    color: var(--adept-muted);
    font-size: 1.12rem;
    line-height: 1.8;
  }

  .web-service-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 0 42px;
  }

  .web-service-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 999px;
    color: #1f2937;
    font-size: 0.93rem;
    font-weight: 850;
    background: #ffffff;
    border: 1px solid rgba(3, 164, 237, 0.13);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
  }

  .web-service-heading {
    margin: 36px 0 20px;
    text-align: center;
  }

  .web-service-heading h3 {
    margin: 0;
    color: var(--adept-dark);
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-weight: 950;
    letter-spacing: -0.8px;
  }

  .web-service-heading p {
    max-width: 780px;
    margin: 10px auto 0;
    color: var(--adept-muted);
    line-height: 1.75;
  }

  .web-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin: 24px 0 42px;
  }

  .web-service-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .web-service-card,
  .web-feature-card,
  .seo-page-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: var(--adept-radius);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(3, 164, 237, 0.14);
    box-shadow: var(--adept-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .web-service-card:hover,
  .web-feature-card:hover,
  .seo-page-card:hover {
    transform: translateY(-7px);
    border-color: rgba(254, 63, 64, 0.3);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
  }

  .web-service-card a {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
  }

  .web-service-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--adept-soft);
  }

  .web-service-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
  }

  .web-service-card:hover .web-service-card-image img {
    transform: scale(1.05);
  }

  .web-service-card-body,
  .web-feature-body {
    padding: 22px;
  }

  .web-service-tag {
    display: inline-flex;
    margin-bottom: 11px;
    padding: 6px 11px;
    border-radius: 999px;
    color: var(--adept-blue);
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(3, 164, 237, 0.1);
  }

  .web-service-card h4,
  .web-feature-card h4,
  .seo-page-card h4 {
    margin: 0;
    color: var(--adept-dark);
    font-size: 1.15rem;
    line-height: 1.35;
    font-weight: 950;
  }

  .web-service-card p,
  .web-feature-card p,
  .seo-page-card p {
    margin: 11px 0 0;
    color: var(--adept-muted);
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .web-service-card strong {
    display: inline-flex;
    margin-top: 16px;
    color: var(--adept-red);
    font-weight: 950;
  }

  .web-service-copy-panel {
    margin: 34px 0 46px;
    padding: 30px;
    border-radius: var(--adept-radius);
    color: #334155;
    line-height: 1.85;
    background:
      linear-gradient(#ffffff, #ffffff) padding-box,
      linear-gradient(135deg, rgba(3, 164, 237, 0.42), rgba(254, 63, 64, 0.36)) border-box;
    border: 2px solid transparent;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.09);
  }

  .web-service-copy-panel p:last-child {
    margin-bottom: 0;
  }

  .web-service-copy-panel strong {
    color: var(--adept-dark);
  }

  .web-feature-image {
    height: 170px;
    padding: 20px;
    background: linear-gradient(135deg, #f6fbff, #ffffff);
  }

  .web-feature-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .web-feature-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 15px;
    border-radius: 18px;
    color: #fff;
    font-size: 1.7rem;
    background: linear-gradient(135deg, var(--adept-blue), var(--adept-red));
    box-shadow: 0 14px 28px rgba(3, 164, 237, 0.22);
  }

  .seo-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 28px 0 42px;
  }

  .seo-page-card {
    padding: 26px;
  }

  .seo-page-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--adept-blue), var(--adept-red));
  }

  .seo-page-card h4 {
    padding-top: 8px;
  }

  .web-service-cta {
    margin-top: 34px;
    padding: 34px;
    border-radius: var(--adept-radius);
    text-align: center;
    color: #fff;
    background:
      radial-gradient(circle at 16% 20%, rgba(255, 255, 255, 0.22), transparent 24%),
      linear-gradient(135deg, var(--adept-blue), var(--adept-red));
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.18);
  }

  .web-service-cta h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    font-weight: 950;
  }

  .web-service-cta p {
    max-width: 650px;
    margin: 12px auto 22px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
  }

  .web-service-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    color: var(--adept-dark);
    font-weight: 950;
    text-decoration: none;
    background: #fff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .web-service-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.26);
  }

  @media (max-width: 991px) {
    .web-service-grid,
    .web-service-grid-two,
    .seo-page-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .web-service-section {
      padding: 72px 0;
    }
  }

  @media (max-width: 575px) {
    .web-service-grid,
    .web-service-grid-two,
    .seo-page-grid {
      grid-template-columns: 1fr;
    }

    .web-service-copy-panel,
    .web-service-cta {
      padding: 24px;
    }

    .web-service-hero h2 {
      letter-spacing: -1px;
    }
  }

  :root {
    --adept-blue: #03a4ed;
    --adept-red: #fe3f40;
    --adept-navy: #111827;
    --adept-dark: #1f2937;
    --adept-muted: #64748b;
    --adept-soft: #f6fbff;
    --adept-white: #ffffff;
    --adept-radius: 28px;
    --adept-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
    --adept-shadow-hover: 0 34px 90px rgba(15, 23, 42, 0.2);
  }

  .brighton-web-story,
  .brighton-service-tools {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 95px 0;
    background:
      radial-gradient(circle at 10% 10%, rgba(3, 164, 237, 0.13), transparent 30%),
      radial-gradient(circle at 90% 14%, rgba(254, 63, 64, 0.11), transparent 30%),
      linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  }

  .brighton-service-tools {
    padding-top: 70px;
    background:
      radial-gradient(circle at 16% 16%, rgba(254, 63, 64, 0.1), transparent 28%),
      radial-gradient(circle at 84% 14%, rgba(3, 164, 237, 0.13), transparent 30%),
      linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  }

  .brighton-web-story::before,
  .brighton-service-tools::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
      linear-gradient(rgba(3, 164, 237, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(3, 164, 237, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
  }

  .brighton-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 15px;
    border-radius: 999px;
    color: var(--adept-blue, #03a4ed);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    background: rgba(3, 164, 237, 0.1);
    border: 1px solid rgba(3, 164, 237, 0.16);
  }

  .brighton-web-heading {
    max-width: 940px;
    margin: 0 auto 42px;
    text-align: center;
  }

  .brighton-web-heading h2,
  .brighton-tracker-copy h2,
  .brighton-faq-intro h2 {
    margin: 0;
    color: var(--adept-navy, #111827);
    font-size: clamp(2.15rem, 4.5vw, 4rem);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -1.7px;
  }

  .brighton-web-heading h2 em,
  .brighton-tracker-copy h2 em,
  .brighton-faq-intro h2 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--adept-blue, #03a4ed), #147bd1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .brighton-web-heading h2 span,
  .brighton-tracker-copy h2 span,
  .brighton-faq-intro h2 span {
    background: linear-gradient(135deg, var(--adept-red, #fe3f40), #ff8a45);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .brighton-web-heading p {
    max-width: 780px;
    margin: 20px auto 0;
    color: var(--adept-muted, #64748b);
    font-size: 1.1rem;
    line-height: 1.85;
  }

  .brighton-story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.95fr;
    gap: 24px;
  }

  .brighton-story-card {
    position: relative;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 22px;
    align-items: start;
    min-height: 100%;
    padding: 30px;
    overflow: hidden;
    border-radius: var(--adept-radius, 28px);
    background:
      linear-gradient(#ffffff, #ffffff) padding-box,
      linear-gradient(135deg, rgba(3, 164, 237, 0.4), rgba(254, 63, 64, 0.3)) border-box;
    border: 2px solid transparent;
    box-shadow: var(--adept-shadow, 0 24px 70px rgba(15, 23, 42, 0.14));
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }

  .brighton-story-card-large {
    grid-row: span 2;
  }

  .brighton-story-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(3, 164, 237, 0.09);
  }

  .brighton-story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--adept-shadow-hover, 0 34px 90px rgba(15, 23, 42, 0.2));
  }

  .brighton-story-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 24px;
    color: #fff;
    font-size: 2.6rem;
    background: linear-gradient(135deg, var(--adept-blue, #03a4ed), var(--adept-red, #fe3f40));
    box-shadow: 0 18px 34px rgba(3, 164, 237, 0.24);
  }

  .brighton-story-content {
    position: relative;
    z-index: 1;
  }

  .brighton-card-label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--adept-blue, #03a4ed);
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(3, 164, 237, 0.1);
  }

  .brighton-story-card h3 {
    margin: 0 0 16px;
    color: var(--adept-navy, #111827);
    font-size: clamp(1.45rem, 2.5vw, 2.15rem);
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.7px;
  }

  .brighton-story-card h3 em {
    font-style: normal;
    color: var(--adept-blue, #03a4ed);
  }

  .brighton-story-card h3 span {
    color: var(--adept-red, #fe3f40);
  }

  .brighton-story-card p {
    margin: 0 0 14px;
    color: var(--adept-muted, #64748b);
    font-size: 1rem;
    line-height: 1.78;
  }

  .brighton-story-card p:last-child {
    margin-bottom: 0;
  }

  .brighton-proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
  }

  .brighton-proof-item {
    padding: 22px 18px;
    border-radius: 22px;
    text-align: center;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(3, 164, 237, 0.14);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.09);
    backdrop-filter: blur(14px);
  }

  .brighton-proof-item strong {
    display: block;
    color: var(--adept-blue, #03a4ed);
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 950;
  }

  .brighton-proof-item span {
    display: block;
    margin-top: 8px;
    color: var(--adept-muted, #64748b);
    font-size: 0.92rem;
    font-weight: 750;
  }

  .brighton-tracker-panel,
  .brighton-faq-panel {
    position: relative;
    padding: 34px;
    border-radius: var(--adept-radius, 28px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(3, 164, 237, 0.15);
    box-shadow: var(--adept-shadow, 0 24px 70px rgba(15, 23, 42, 0.14));
    backdrop-filter: blur(16px);
  }

  .brighton-tracker-panel {
    margin-bottom: 42px;
  }

  .brighton-tracker-copy p {
    color: var(--adept-muted, #64748b);
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .brighton-tracker-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    color: #fff;
    font-weight: 950;
    text-decoration: none;
    background: linear-gradient(135deg, var(--adept-red, #fe3f40), #ff7a59);
    box-shadow: 0 18px 36px rgba(254, 63, 64, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .brighton-tracker-button:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(254, 63, 64, 0.38);
  }

  .brighton-progress-card {
    padding: 26px;
    border-radius: 26px;
    background:
      radial-gradient(circle at top left, rgba(3, 164, 237, 0.12), transparent 38%),
      #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
  }

  .brighton-progress-row {
    margin-bottom: 24px;
  }

  .brighton-progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
  }

  .brighton-progress-top h3 {
    margin: 0;
    color: var(--adept-navy, #111827);
    font-size: 1.08rem;
    font-weight: 950;
  }

  .brighton-progress-top span {
    color: var(--adept-red, #fe3f40);
    font-weight: 950;
  }

  .brighton-progress-track {
    height: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: #e6edf7;
  }

  .brighton-progress-fill {
    width: var(--progress-width, 80%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--adept-blue, #03a4ed), var(--adept-red, #fe3f40));
    box-shadow: 0 10px 22px rgba(3, 164, 237, 0.22);
  }

  .brighton-tracker-mini-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 20px;
    background: #f5faff;
    border: 1px solid rgba(3, 164, 237, 0.12);
  }

  .brighton-tracker-mini-card i {
    color: var(--adept-blue, #03a4ed);
    font-size: 1.55rem;
  }

  .brighton-tracker-mini-card strong,
  .brighton-tracker-mini-card span {
    display: block;
  }

  .brighton-tracker-mini-card strong {
    color: var(--adept-navy, #111827);
    font-weight: 950;
  }

  .brighton-tracker-mini-card span {
    margin-top: 4px;
    color: var(--adept-muted, #64748b);
    line-height: 1.55;
  }

  .brighton-faq-icon {
    display: grid;
    place-items: center;
    width: 110px;
    height: 110px;
    margin-bottom: 22px;
    border-radius: 32px;
    color: #fff;
    font-size: 3.6rem;
    background: linear-gradient(135deg, var(--adept-blue, #03a4ed), var(--adept-red, #fe3f40));
    box-shadow: 0 20px 42px rgba(3, 164, 237, 0.24);
  }

  .brighton-faq-intro p {
    margin: 18px 0 0;
    color: var(--adept-muted, #64748b);
    line-height: 1.75;
  }

  .brighton-faq-accordion .accordion-item {
    overflow: hidden;
    margin-bottom: 14px;
    border: 0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  }

  .brighton-faq-accordion .accordion-button {
    padding: 20px 22px;
    color: var(--adept-navy, #111827);
    font-weight: 950;
    line-height: 1.35;
    background: #ffffff;
  }

  .brighton-faq-accordion .accordion-button:not(.collapsed) {
    color: #ffffff;
    background: linear-gradient(135deg, var(--adept-blue, #03a4ed), #147bd1);
    box-shadow: none;
  }

  .brighton-faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(3, 164, 237, 0.18);
  }

  .brighton-faq-accordion .accordion-body {
    padding: 22px;
    color: var(--adept-muted, #64748b);
    font-size: 1rem;
    line-height: 1.8;
  }

  @media (max-width: 991px) {
    .brighton-web-story,
    .brighton-service-tools {
      padding: 72px 0;
    }

    .brighton-story-grid {
      grid-template-columns: 1fr;
    }

    .brighton-story-card-large {
      grid-row: auto;
    }

    .brighton-proof-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brighton-faq-intro {
      margin-bottom: 28px;
      text-align: center;
    }

    .brighton-faq-icon,
    .brighton-kicker {
      margin-left: auto;
      margin-right: auto;
    }
  }

  @media (max-width: 575px) {
    .brighton-story-card {
      grid-template-columns: 1fr;
      padding: 24px;
      text-align: center;
    }

    .brighton-story-icon {
      margin: 0 auto;
    }

    .brighton-proof-strip {
      grid-template-columns: 1fr;
    }

    .brighton-tracker-panel,
    .brighton-faq-panel,
    .brighton-progress-card {
      padding: 22px;
    }

    .brighton-tracker-button {
      width: 100%;
      justify-content: center;
    }

    .brighton-web-heading h2,
    .brighton-tracker-copy h2,
    .brighton-faq-intro h2 {
      letter-spacing: -1px;
    }
  }