
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:    #080d1a;
  --navy2:   #0d1425;
  --navy3:   #111c33;
  --blue:    #4840cf;
  --blue2:   #1d4ed8;
  --blue-t:  rgba(37,99,235,0.1);
  --blue-t2: rgba(37,99,235,0.06);
  --teal:    #0891b2;
  --white:   #ffffff;
  --text:    #0f172a;
  --muted:   #64748b;
  --light:   #f8fafc;
  --border:  #e2e8f0;
  --border2: rgba(255,255,255,0.07);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}

/* ═══════════════════════════════
   HERO — DARK
═══════════════════════════════ */
.ag-services-hero {
  background: var(--navy);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Deco circles */
.ag-services-hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.ag-services-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Dot grid */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}

/* Glow line top */
.hero-glow-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.6), rgba(8,145,178,0.4), transparent);
}

.ag-hero-inner {
  max-width: 1280px; 
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding: 5px 14px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 20px;
}

.hero-eyebrow span {
  width: 6px; height: 6px;
  background: #60a5fa;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
}

.hero-title em {
  font-style: normal;
  color: #60a5fa;
}

.hero-desc {
  font-size: 16.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  transition: background 0.18s, transform 0.14s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,99,235,0.4);
}

.btn-primary svg { width: 15px; height: 15px; transition: transform 0.18s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.18s, color 0.18s;
}



.ag-services-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}



.btn-ghost:hover { border-color: rgba(255,255,255,0.25); color: #fff; }

/* Hero stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid var(--border2);
  padding-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 3rem;
  border-right: 1px solid var(--border2);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.hero-stat-num em { font-style: normal; color: #60a5fa; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 500; }

/* ═══════════════════════════════
   SERVICES GRID — LIGHT
═══════════════════════════════ */
.services-section {
  background: var(--light);
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-top {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--blue);
  opacity: 0.5;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.section-title em { font-style: normal; color: var(--blue); }

.section-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Service Card */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  cursor: default;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.09);
  border-color: rgba(37,99,235,0.2);
}

/* Top color bar */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before { transform: scaleX(1); }

/* Each card accent */
.card-seo::before       { background: linear-gradient(90deg, #4840cf, #3b82f6); }
.card-social::before    { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.card-paid::before      { background: linear-gradient(90deg, #ea580c, #fb923c); }
.card-content::before   { background: linear-gradient(90deg, #059669, #34d399); }
.card-web::before       { background: linear-gradient(90deg, #0891b2, #22d3ee); }
.card-branding::before  { background: linear-gradient(90deg, #db2777, #f472b6); }
.card-email::before     { background: linear-gradient(90deg, #d97706, #fbbf24); }
.card-youtube::before   { background: linear-gradient(90deg, #dc2626, #f87171); }
.card-app::before       { background: linear-gradient(90deg, #7c3aed, #4840cf); }

/* Card icon */
.card-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.service-card:hover .card-icon-wrap { transform: scale(1.08); }

.card-icon-wrap svg { width: 24px; height: 24px; fill: none; stroke-width: 1.8; }

/* Icon colors per card */
.card-seo .card-icon-wrap       { background: rgba(37,99,235,0.08);  } .card-seo svg       { stroke: #4840cf; }
.card-social .card-icon-wrap    { background: rgba(124,58,237,0.08); } .card-social svg    { stroke: #7c3aed; }
.card-paid .card-icon-wrap      { background: rgba(234,88,12,0.08);  } .card-paid svg      { stroke: #ea580c; }
.card-content .card-icon-wrap   { background: rgba(5,150,105,0.08);  } .card-content svg   { stroke: #059669; }
.card-web .card-icon-wrap       { background: rgba(8,145,178,0.08);  } .card-web svg       { stroke: #0891b2; }
.card-branding .card-icon-wrap  { background: rgba(219,39,119,0.08); } .card-branding svg  { stroke: #db2777; }
.card-email .card-icon-wrap     { background: rgba(217,119,6,0.08);  } .card-email svg     { stroke: #d97706; }
.card-youtube .card-icon-wrap   { background: rgba(220,38,38,0.08);  } .card-youtube svg   { stroke: #dc2626; }
.card-app .card-icon-wrap       { background: rgba(124,58,237,0.08); } .card-app svg       { stroke: #7c3aed; }

.card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
  opacity: 0.7;
}

.card-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.card-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Features list */
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
  padding: 5px 0;
  font-weight: 500;
}

.feat-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.7;
}

.card-seo .feat-dot      { background: #4840cf; }
.card-social .feat-dot   { background: #7c3aed; }
.card-paid .feat-dot     { background: #ea580c; }
.card-content .feat-dot  { background: #059669; }
.card-web .feat-dot      { background: #0891b2; }
.card-branding .feat-dot { background: #db2777; }
.card-email .feat-dot    { background: #d97706; }
.card-youtube .feat-dot  { background: #dc2626; }
.card-app .feat-dot      { background: #7c3aed; }

/* Card CTA link */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.18s;
  margin-top: auto;
}

.card-seo .card-link      { color: #4840cf; }
.card-social .card-link   { color: #7c3aed; }
.card-paid .card-link     { color: #ea580c; }
.card-content .card-link  { color: #059669; }
.card-web .card-link      { color: #0891b2; }
.card-branding .card-link { color: #db2777; }
.card-email .card-link    { color: #d97706; }
.card-youtube .card-link  { color: #dc2626; }
.card-app .card-link      { color: #7c3aed; }

.card-link:hover { gap: 10px; }
.card-link svg { width: 14px; height: 14px; }

/* ═══════════════════════════════
   PROCESS SECTION
═══════════════════════════════ */
.process-section {
  background: var(--white);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

/* Connector line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue));
  opacity: 0.2;
  z-index: 0;
}

.process-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  z-index: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}

.process-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.process-num {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
}

.process-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}

.process-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ═══════════════════════════════
   INDUSTRIES SECTION
═══════════════════════════════ */
.industries-section {
  background: var(--light);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  cursor: default;
}

.industry-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37,99,235,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.industry-icon {
  width: 42px; height: 42px;
  background: var(--blue-t);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-icon svg { width: 20px; height: 20px; stroke: var(--blue); fill: none; stroke-width: 1.8; }

.industry-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.industry-sub {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 1px;
}

/* ═══════════════════════════════
   BOTTOM CTA
═══════════════════════════════ */
.services-cta {
  background: var(--navy);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding: 5px 14px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 20px;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-title em { font-style: normal; color: #60a5fa; }

.cta-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s;
}


/*Testing*/


.ag-services-hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -1px;
}



.cta-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 60px;
}

.ag-services-hero span {
  background: linear-gradient(90deg, rgb(72,64,207), #4840cf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




.cta-phone:hover { color: rgba(255,255,255,0.85); }
.cta-phone svg { width: 15px; height: 15px; }

/* ══ RESPONSIVE ══ */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { padding: 0 1.5rem; }
}

@media (max-width: 620px) {
  .ag-services-hero { padding: 4rem 1.25rem 3.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat { border-right: none; padding: 0; }
  .section-inner { padding: 0; }
  .services-section,
  .process-section,
  .industries-section { padding: 3.5rem 1.25rem; }
  .section-title { font-size: 1.7rem; }
}


