/* ===========================
   CSS Variables & Reset
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,300;1,700&display=swap');

:root {
  --primary: #52018f;
  --primary-light: #7b00c0;
  --lavender: #dcb6ff;
  --lavender-pale: #f2e4ff;
  --lavender-muted: #a89cbf;
  --near-black: #231f20;
  --dark-bg: #1a1525;
  --dark-alt: #0f0c1a;
  --white: #ffffff;
  --off-white: #fafafa;
  --grey-light: #e8e0f0;
  --text-dark: #2a2535;
  --gold: #fbbf24;
  
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --transition: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body) !important;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: 16px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(82, 1, 143, 0.2);
}

.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 6px 20px rgba(82, 1, 143, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}

.btn-white:hover {
  background: var(--lavender-pale);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}

/* ===========================
   Navigation
   =========================== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all var(--transition);
}

.main-nav.scrolled {
  background: rgba(26, 21, 37, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: block;
  height: 40px;
}

.logo {
  height: 100%;
  width: auto;
  transition: opacity var(--transition);
}

.logo-light {
  opacity: 1;
}

.logo-dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.main-nav.light .logo-light {
  opacity: 0;
}

.main-nav.light .logo-dark {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--lavender);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--lavender);
}

.btn-nav {
  padding: 12px 24px;
  font-size: 15px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark-bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-link {
  color: var(--white);
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  transition: color var(--transition);
}

.mobile-link:hover {
  color: var(--lavender);
}

.btn-mobile {
  margin-top: 16px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-shapes {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-container {
  position: relative;
  z-index: 2;
  padding: 100px 24px;
}

.hero-content {
  max-width: 900px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 24px;
  display: inline-block;
}

.hero-title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title em {
  color: var(--lavender);
  font-style: italic;
  font-weight: 800;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--lavender-muted);
  margin-bottom: 40px;
  max-width: 700px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 18px 40px;
  font-size: 18px;
}

.trust-strip {
  border-top: 1px solid rgba(220, 182, 255, 0.2);
  padding-top: 32px;
}

.trust-text {
  font-size: 14px;
  color: #9480a8;
  margin: 0;
}

/* ===========================
   Marquee Section
   =========================== */
.marquee-section {
  background: var(--dark-alt);
  padding: 40px 0;
  overflow: hidden;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  font-size: 18px;
  font-weight: 600;
  color: rgba(220, 182, 255, 0.3);
  letter-spacing: 4px;
  padding: 0 40px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===========================
   Services Section
   =========================== */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 16px;
  max-width: 800px;
}

.section-subtitle {
  font-size: 18px;
  color: #6b5f7a;
  margin-bottom: 60px;
  max-width: 800px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all var(--transition);
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(82, 1, 143, 0.15);
  background: #fafaff;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 72px;
  font-weight: 800;
  color: var(--lavender-pale);
  line-height: 1;
  z-index: 1;
  transition: all var(--transition);
}

.service-card:hover .service-number {
  font-size: 80px;
  color: rgba(242, 228, 255, 0.8);
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--primary);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.service-desc {
  font-size: 15px;
  color: #6b5f7a;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.service-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  z-index: 2;
}

.service-link:hover {
  color: var(--primary-light);
  transform: translateX(4px);
  display: inline-block;
}

/* ===========================
   Why GetDigital Section
   =========================== */
.why-section {
  position: relative;
  padding: 100px 0;
  background: var(--primary);
  overflow: hidden;
}

.why-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 1;
}

.why-section .container {
  position: relative;
  z-index: 2;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 60px;
}

.why-block {
  color: var(--white);
}

.why-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.why-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--lavender);
  margin-bottom: 12px;
}

.why-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}

.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.checkmark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--lavender);
  margin-top: 2px;
}

/* ===========================
   Stats Section
   =========================== */
.stats-section {
  padding: 80px 0;
  background: var(--white);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #6b5f7a;
  font-weight: 500;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--grey-light);
}

/* ===========================
   Industries Section
   =========================== */
.industries-section {
  padding: 100px 0;
  background: #f5f0ff;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.industry-column {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.industry-column.luxury .industry-header {
  border-top: 3px solid var(--primary);
  padding-top: 24px;
}

.industry-column.service .industry-header {
  border-top: 3px solid var(--lavender);
  padding-top: 24px;
}

.industry-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 24px;
}

.industry-list {
  list-style: none;
  padding: 0;
}

.industry-list li {
  font-size: 16px;
  color: #6b5f7a;
  padding: 12px 0;
  border-bottom: 1px solid rgba(232, 224, 240, 0.5);
  transition: all var(--transition);
  cursor: pointer;
}

.industry-list li:last-child {
  border-bottom: none;
}

.industry-list li:hover {
  color: var(--primary);
  padding-left: 8px;
}

.industry-list li span {
  color: var(--primary);
  margin-right: 8px;
  font-weight: 600;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section {
  padding: 100px 0;
  background: var(--near-black);
}

.testimonials-title {
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: #2a2535;
  border: 1px solid rgba(220, 182, 255, 0.15);
  border-radius: 12px;
  padding: 40px 32px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.stars svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.testimonial-quote {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid rgba(220, 182, 255, 0.15);
  padding-top: 20px;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.author-role {
  font-size: 14px;
  color: rgba(220, 182, 255, 0.7);
  margin: 0;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-text {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--near-black);
  color: var(--white);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(220, 182, 255, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(220, 182, 255, 0.6);
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lavender);
  margin-bottom: 8px;
}

.footer-column a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--lavender);
}

.footer-location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 182, 255, 0.1);
  border-radius: 8px;
  transition: all var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(220, 182, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ===========================
   Scroll Reveal Animations
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow);
}

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

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .services-section,
  .why-section,
  .stats-section,
  .industries-section,
  .testimonials-section {
    padding: 60px 0;
  }
  
  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }
  
  .hero-container {
    padding: 80px 24px 40px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  
  .industries-grid {
    gap: 24px;
  }
  
  .industry-column {
    min-width: auto;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    padding: 80px 0;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .service-card,
  .industry-column,
  .testimonial-card {
    padding: 32px 24px;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   Nav Dropdown
   =========================== */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: color var(--transition);
}

.dropdown-toggle:hover,
.nav-dropdown:hover .dropdown-toggle {
  color: var(--lavender);
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.nav-dropdown.open .dropdown-arrow,
.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 21, 37, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(220, 182, 255, 0.15);
  border-radius: 12px;
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--transition);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition);
}

.dropdown-item:hover {
  background: rgba(82, 1, 143, 0.3);
  color: var(--lavender);
  padding-left: 20px;
}

/* Mobile dropdown */
.mobile-dropdown {
  width: 100%;
  text-align: center;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: color var(--transition);
}

.mobile-dropdown-toggle:hover {
  color: var(--lavender);
}

.mobile-dropdown-toggle .dropdown-arrow {
  width: 20px;
  height: 20px;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  max-height: 400px;
  margin-top: 16px;
}

.mobile-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-sub-link {
  color: var(--lavender);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition);
}

.mobile-sub-link:hover {
  color: var(--white);
  background: rgba(82, 1, 143, 0.3);
}

/* ===========================
   Service Page Specific Styles
   =========================== */
/* Service page hero — slightly shorter than homepage */
.service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--dark-bg);
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.service-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.service-hero h1 em {
  color: var(--lavender);
  font-style: italic;
}

.service-hero .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--lavender-muted);
  margin-bottom: 40px;
  max-width: 700px;
  line-height: 1.7;
}

/* Back breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lavender-muted);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 32px;
  transition: color var(--transition);
}

.breadcrumb:hover {
  color: var(--lavender);
}

.breadcrumb svg {
  width: 16px;
  height: 16px;
}

/* What we do / Deliverables list */
.service-grid-section {
  padding: 100px 0;
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-light);
}

.service-detail-list li:last-child {
  border-bottom: none;
}

.service-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--lavender-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.service-detail-icon svg {
  width: 20px;
  height: 20px;
}

.service-detail-text strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 4px;
}

.service-detail-text span {
  font-size: 14px;
  color: #6b5f7a;
  line-height: 1.6;
}

/* Problem/insight callout block */
.insight-block {
  padding: 100px 0;
  background: #f5f0ff;
}

.insight-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.insight-inner .section-title {
  max-width: none;
}

.insight-inner p {
  font-size: 18px;
  color: #6b5f7a;
  line-height: 1.8;
}

/* Process steps */
.process-section {
  padding: 100px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.process-section .section-title,
.process-section .section-subtitle,
.process-section .section-label {
  color: var(--white);
}

.process-section .section-subtitle {
  color: var(--lavender-muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(50% + 30px);
  width: calc(100% - 60px);
  height: 2px;
  background: rgba(82, 1, 143, 0.4);
  z-index: 0;
}

.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--lavender);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.6;
}

/* Benchmarks / Results */
.results-section {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.result-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(220, 182, 255, 0.25);
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
}

.result-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--lavender);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

.result-label {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.results-section .section-title,
.results-section .section-label {
  color: var(--white);
}

/* FAQ Accordion */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--near-black);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lavender-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: all var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

.faq-answer p {
  font-size: 16px;
  color: #6b5f7a;
  line-height: 1.7;
  padding-bottom: 24px;
}

/* Why GetDigital inline block (on service pages) */
.why-inline {
  background: rgba(82, 1, 143, 0.06);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 32px 40px;
  margin-top: 60px;
}

.why-inline h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 12px;
}

.why-inline p {
  font-size: 16px;
  color: #6b5f7a;
  margin: 0;
  line-height: 1.7;
}

/* Use cases cards */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.use-case-card {
  background: #f5f0ff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(82, 1, 143, 0.1);
}

.use-case-card p {
  font-size: 15px;
  color: #4a3d6b;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

/* Target audience callout */
.audience-section {
  padding: 80px 0;
  background: #f5f0ff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.audience-item {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--grey-light);
  font-size: 15px;
  color: var(--near-black);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

.audience-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step:not(:last-child)::after {
    display: none;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .service-grid-section,
  .insight-block,
  .process-section,
  .results-section,
  .faq-section,
  .audience-section {
    padding: 60px 0;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   NEW HEADER LOGO
   ============================================================ */
.logo-link {
  display: block;
  line-height: 0;
}

.logo-header-img {
  width: 200px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-header-img {
    width: 130px;
  }
}

/* ============================================================
   FOOTER LOGO
   ============================================================ */
.footer-logo {
  width: 140px;
  height: auto;
  margin-bottom: 16px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 0 0 100px;
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(220, 182, 255, 0.12);
  border-radius: 20px;
  padding: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
}

.required-star {
  color: var(--lavender);
}

.form-group input,
.form-group textarea,
.country-code-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(220, 182, 255, 0.2);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus,
.country-code-select:focus {
  border-color: var(--lavender);
  background: rgba(220, 182, 255, 0.06);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.phone-input-group {
  display: flex;
  gap: 0;
  border: 1px solid rgba(220, 182, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color var(--transition);
}

.phone-input-group:focus-within {
  border-color: var(--lavender);
  background: rgba(220, 182, 255, 0.06);
}

.country-code-select {
  background: rgba(255, 255, 255, 0.04);
  border: none;
  border-right: 1px solid rgba(220, 182, 255, 0.2);
  border-radius: 0;
  width: auto;
  min-width: 120px;
  padding: 14px 12px;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  appearance: auto;
}

.country-code-select option {
  background: #1a1025;
  color: var(--white);
}

.phone-input-group input {
  border: none;
  border-radius: 0;
  background: transparent;
  flex: 1;
}

.phone-input-group input:focus {
  border: none;
  background: transparent;
}

.field-error {
  font-size: 12px;
  color: #ff6b6b;
  display: none;
  margin-top: 2px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
  padding: 16px 32px;
  font-size: 16px;
  cursor: pointer;
  border: none;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.btn-submit:hover:not(:disabled) .btn-arrow {
  transform: translateX(4px);
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 60px 40px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(82, 1, 143, 0.2);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  color: var(--lavender);
}

.form-success h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 16px;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(82, 1, 143, 0.2);
  border: 1px solid rgba(220, 182, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--lavender);
}

.contact-info-block h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}

.contact-info-block a,
.contact-info-block p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin: 0;
  line-height: 1.5;
}

.contact-info-block a:hover {
  color: var(--lavender);
}

.contact-social-row {
  border-top: 1px solid rgba(220, 182, 255, 0.1);
  padding-top: 28px;
}

.contact-social-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-card {
    padding: 32px 24px;
  }

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

  .contact-info {
    padding-top: 0;
  }
}

/* ============================================================
   START A PROJECT / BOOKING PAGE
   ============================================================ */
.booking-section {
  padding: 0 0 100px;
  background: var(--bg);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.booking-calendar-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(220, 182, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  min-height: 700px;
}

.booking-iframe {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.booking-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.booking-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(82, 1, 143, 0.2);
  border: 1px solid rgba(220, 182, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--lavender);
}

.booking-info-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
}

.booking-info-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}

.booking-prefer-email {
  border-top: 1px solid rgba(220, 182, 255, 0.1);
  padding-top: 28px;
}

.booking-prefer-email p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

/* Booking CTA (replaces blocked iframe) */
.booking-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  background: linear-gradient(135deg, rgba(82,1,143,0.18) 0%, rgba(35,31,32,0.6) 100%);
}

.booking-cta-inner {
  text-align: center;
  padding: 60px 48px;
  max-width: 480px;
}

.booking-cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(82,1,143,0.25);
  border: 1.5px solid rgba(220,182,255,0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.booking-cta-icon svg {
  width: 36px;
  height: 36px;
  color: var(--lavender);
}

.booking-cta-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--white);
}

.booking-cta-title em {
  font-style: italic;
  color: var(--lavender);
}

.booking-cta-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 32px;
}

.booking-cta-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.booking-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1px solid rgba(220, 182, 255, 0.4);
  border-radius: 8px;
  color: var(--lavender);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: rgba(220, 182, 255, 0.08);
  border-color: var(--lavender);
}

 /* ===== Footer ===== */
        .footer {
            padding: 48px 0 24px;
            border-top: 1px solid #e5e7eb;
            margin-top: 40px;
        }
        .footer p {
            color: #6b7280;
            font-size: 0.9rem;
            margin: 0;
        }

@media (max-width: 960px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-calendar-wrap {
    min-height: 600px;
  }

  .booking-iframe {
    height: 600px;
  }

  .booking-info {
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .booking-calendar-wrap {
    min-height: 500px;
  }
  .booking-iframe {
    height: 500px;
  }
}
