/*
  Ascent Digital UK — shared stylesheet, SERVICE/INFO-PAGE family.

  Covers the non-geographic service pages: google-business-profile,
  website-design-small-business, website-care-plans, local-seo.
  Verified byte-identical across all 4 before extraction.

  This is a further distinct variant from both styles-location.css and
  styles-location-v2.css — same lineage (nav/hero/cta/footer/mobile
  menu shell) but different section class names again: .benefits-grid/
  .benefit-card/.benefit-icon (not .services-grid/.service-card) and
  .different-grid/.different-item (not .values-grid/.value-card). Do
  NOT repoint these pages at styles-location.css or v2 — the class
  names in their HTML won't match either.
*/

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 100000;
  background: #1D9E75;
  color: #050505;
  padding: 12px 20px;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; outline: 2px solid #fff; outline-offset: 2px; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #050505;
  --card: #0a0a0a;
  --surface: #0e0e0e;
  --border: #1a1a1a;
  --teal: #1D9E75;
  --teal-bright: #25c28e;
  --teal-glow: rgba(29,158,117,0.15);
  --white: #ffffff;
  --dim: rgba(255,255,255,0.75);
  --muted: rgba(255,255,255,0.65);
  --ghost: rgba(255,255,255,0.07);
  --outfit: 'Outfit', system-ui, sans-serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) transparent;
}

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}

a { text-decoration: none; color: inherit; }

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(29,158,117,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s, transform 0.1s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor.hover {
  width: 50px;
  height: 50px;
  background: rgba(29,158,117,0.1);
  border-color: var(--teal);
}

.cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
}

@media (hover: none) {
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }
}










nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 48px);
  background: transparent;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

nav.scrolled {
  background: rgba(5,5,5,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: var(--outfit);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-text span { color: var(--teal); }

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
}

.nav-links a {
  font-family: var(--outfit);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--outfit);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: transparent;
  color: var(--teal);
  border: 1px solid rgba(29,158,117,0.3);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--teal);
  color: var(--black);
  box-shadow: 0 0 30px rgba(29,158,117,0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 clamp(24px, 4vw, 48px);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(29,158,117,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(29,158,117,0.14) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  animation: heroGlow 14s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-gradient { animation: none; }
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 64px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--outfit);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--teal);
}

.hero-title {
  font-family: var(--outfit);
  font-weight: 800;
  font-size: clamp(52px, 10vw, 140px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-bottom: 48px;
  color: var(--white);
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
  transform: translateY(110%);
}

.hero-title .accent {
  color: var(--teal);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.8;
  max-width: 500px;
}

.hero-desc strong {
  color: var(--white);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-main {
  font-family: var(--outfit);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 40px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(29,158,117,0.4), 0 0 80px rgba(29,158,117,0.15);
}

.btn-main:hover::before { transform: translateX(100%); }

.btn-line {
  font-family: var(--outfit);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s, gap 0.3s;
}

.btn-line:hover { color: var(--white); gap: 14px; }
.btn-line svg { transition: transform 0.3s; }
.btn-line:hover svg { transform: translateX(4px); }

/* SECTIONS */
.section {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
  max-width: 1300px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--outfit);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--teal);
}

.section-title {
  font-family: var(--outfit);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
}

.section-title .thin {
  font-weight: 200;
  color: var(--dim);
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--dim);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 56px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* KEY BENEFITS - 5 CARDS */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.benefit-card {
  background: var(--card);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: center;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit-card:hover {
  background: var(--surface);
}

.benefit-card:hover::before { width: 100%; }

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(29,158,117,0.08);
  border: 1px solid rgba(29,158,117,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
  background: rgba(29,158,117,0.15);
  border-color: rgba(29,158,117,0.25);
  box-shadow: 0 0 24px rgba(29,158,117,0.15);
}

.benefit-title {
  font-family: var(--outfit);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--white);
}

.benefit-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.7;
}

/* WHAT MAKES US DIFFERENT */
.different-section {
  border-top: 1px solid var(--border);
  background: var(--card);
}

.different-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
}

.different-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.different-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.different-item:hover {
  border-color: rgba(29,158,117,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.different-num {
  font-family: var(--outfit);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, rgba(29,158,117,0.3) 0%, rgba(29,158,117,0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.different-title {
  font-family: var(--outfit);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--white);
}

.different-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.7;
}

/* FAQ */
.faq-section {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 48px);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--outfit);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--teal); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 14px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.8;
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(29,158,117,0.08) 0%, transparent 70%);
  animation: ctaGlow 11s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .cta-bg { animation: none; }
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(100px, 12vw, 180px) 24px;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--outfit);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 24px;
}

.cta-title .accent { color: var(--teal); }

.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--dim);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 48px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-email {
  font-family: var(--outfit);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 32px;
}

.cta-email a {
  color: var(--teal);
  border-bottom: 1px solid rgba(29,158,117,0.3);
  transition: border-color 0.3s;
}

.cta-email a:hover { border-color: var(--teal); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 48px clamp(24px, 4vw, 48px);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left {
  font-family: var(--outfit);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-left span { color: var(--teal); }

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-family: var(--outfit);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--teal); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(20px);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--outfit);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--teal); }

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 32px;
  font-weight: 200;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .different-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-title {
    font-size: clamp(36px, 9vw, 64px);
    line-height: 0.92;
    margin-bottom: 32px;
  }
  .benefits-grid { grid-template-columns: 1fr; }
  .different-grid { grid-template-columns: 1fr; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
}
